/* ==========================================================================
   Victoria London Tea - Premium Stylesheet
   ========================================================================== */

/* Design Tokens & Theme Variables */
:root {
    --primary-burgundy: #800020;
    --primary-burgundy-light: #9e1b3b;
    --primary-burgundy-dark: #580014;
    --accent-gold: #D4AF37;
    --accent-gold-dark: #b89223;
    --accent-gold-light: #f3d46a;
    --bg-ivory: #FDFBF7;
    --bg-cream: #FAF5EB;
    --text-dark: #2C1A1A;
    --text-light: #FDFBF7;
    --text-muted: #7E6C6C;
    --border-color: #EADEC9;
    --white: #ffffff;
    --shadow-sm: 0 4px 10px rgba(128, 0, 32, 0.05);
    --shadow-md: 0 10px 30px rgba(128, 0, 32, 0.08);
    --shadow-lg: 0 20px 40px rgba(128, 0, 32, 0.15);
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base Styles & Typography */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Vazirmatn', Tahoma, 'Segoe UI', sans-serif;
    background-color: var(--bg-ivory);
    color: var(--text-dark);
    line-height: 1.8;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, button, input, select, textarea, option {
    font-family: 'Vazirmatn', Tahoma, 'Segoe UI', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--primary-burgundy-dark);
    line-height: 1.4;
}

.english-serif {
    font-family: 'Playfair Display', Georgia, serif;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Utilities */
.text-center { text-align: center; }
.gold-text { color: var(--accent-gold); }
.d-none { display: none !important; }
.mb-3 { margin-bottom: 1rem; }
.me-2 { margin-left: 0.5rem; }

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg-cream);
}
::-webkit-scrollbar-thumb {
    background: var(--primary-burgundy);
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary-burgundy-dark);
}

/* Dividers & Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-gold);
    margin-bottom: 10px;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 800;
}

.divider {
    width: 80px;
    height: 3px;
    background-color: var(--accent-gold);
    margin: 15px auto 0;
    position: relative;
}

.divider::before {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: var(--primary-burgundy);
    border: 1px solid var(--accent-gold);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition-normal);
    outline: none;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary-burgundy);
    color: var(--text-light);
    box-shadow: 0 4px 15px rgba(128, 0, 32, 0.2);
}

.btn-primary:hover {
    background-color: var(--primary-burgundy-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(128, 0, 32, 0.3);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

.btn-outline:hover {
    background-color: var(--accent-gold);
    color: var(--primary-burgundy-dark);
    transform: translateY(-2px);
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.main-header {
    background-color: rgba(128, 0, 32, 0.98);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 2px solid var(--accent-gold);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 85px;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-logo-fa {
    height: 52px;
    width: auto;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.2));
}

.brand-logo-en {
    height: 38px;
    width: auto;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.2));
    border-right: 1px solid var(--accent-gold);
    padding-right: 12px;
}

.nav-menu ul {
    display: flex;
    gap: 25px;
}

.nav-link {
    color: var(--bg-ivory);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 8px 16px;
    border-radius: 4px;
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: var(--accent-gold);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 50%;
    transform: translateX(50%);
    width: 0;
    height: 2px;
    background-color: var(--accent-gold);
    transition: var(--transition-fast);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 60%;
}

.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--bg-ivory);
    font-size: 2rem;
    cursor: pointer;
    outline: none;
}

.menu-close-btn {
    display: none;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
    position: relative;
    padding: 180px 0 100px;
    background: linear-gradient(135deg, var(--primary-burgundy-dark) 0%, var(--primary-burgundy) 100%);
    color: var(--text-light);
    overflow: hidden;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}

.hero-content {
    z-index: 2;
}

.hero-subtitle {
    display: inline-block;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--accent-gold);
    font-size: 1.1rem;
    letter-spacing: 3px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 3.25rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 25px;
    line-height: 1.3;
}

.hero-desc {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: rgba(253, 251, 247, 0.85);
    max-width: 580px;
}

.hero-btns {
    display: flex;
    gap: 15px;
}

.hero-images-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.floating-wrapper {
    position: relative;
    animation: floatAnim 6s ease-in-out infinite;
}

.hero-canister {
    max-width: 320px;
    height: auto;
    filter: drop-shadow(10px 20px 30px rgba(0, 0, 0, 0.4));
    transform: rotate(-5deg);
}

.hero-cup {
    position: absolute;
    bottom: -40px;
    left: -60px;
    max-width: 200px;
    height: auto;
    filter: drop-shadow(10px 15px 25px rgba(0, 0, 0, 0.3));
    z-index: 3;
}

@keyframes floatAnim {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(2deg);
    }
}

/* ==========================================================================
   Heritage Section
   ========================================================================== */
.heritage-section {
    padding: 100px 0;
    background-color: var(--bg-cream);
    position: relative;
}

.heritage-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.heritage-text h3 {
    font-size: 1.75rem;
    margin-bottom: 20px;
}

.heritage-text p {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.feature-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 35px;
}

.badge-item {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
}

.badge-item:hover {
    border-color: var(--accent-gold);
    transform: translateY(-3px);
}

.badge-item i {
    font-size: 1.75rem;
    color: var(--primary-burgundy);
    margin-bottom: 8px;
    display: block;
}

.badge-item span {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-burgundy-dark);
}

.heritage-image-wrapper {
    position: relative;
    background: radial-gradient(circle, var(--primary-burgundy) 0%, var(--primary-burgundy-dark) 100%);
    border: 3px solid var(--accent-gold);
    border-radius: 12px;
    padding: 50px;
    min-height: 400px;
    display: flex;
    align-items: flex-end;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.heritage-logo-watermark {
    position: absolute;
    bottom: -30px;
    left: -60px;
    opacity: 0.22;
    transform: rotate(-5deg);
    max-width: 440px;
    pointer-events: none;
    transition: transform var(--transition-normal);
    filter: invert(1);
    mix-blend-mode: screen;
}

.heritage-image-wrapper:hover .heritage-logo-watermark {
    transform: rotate(0deg) scale(1.05);
}

.heritage-card-box {
    background-color: rgba(253, 251, 247, 0.95);
    padding: 30px;
    border-radius: 8px;
    border-right: 4px solid var(--accent-gold);
    box-shadow: var(--shadow-md);
    z-index: 2;
}

.vintage-stamp {
    display: inline-block;
    border: 1px solid var(--accent-gold-dark);
    padding: 2px 10px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent-gold-dark);
    border-radius: 4px;
    margin-bottom: 12px;
}

.heritage-card-box h4 {
    margin-bottom: 10px;
    font-size: 1.35rem;
}

.heritage-card-box p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin: 0;
}

/* ==========================================================================
   Catalog Section
   ========================================================================== */
.catalog-section {
    padding: 100px 0;
}

.catalog-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
}

.filter-btn {
    background-color: var(--bg-cream);
    border: 1px solid var(--border-color);
    color: var(--primary-burgundy-dark);
    padding: 10px 24px;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition-fast);
    outline: none;
}

.filter-btn:hover, .filter-btn.active {
    background-color: var(--primary-burgundy);
    border-color: var(--primary-burgundy);
    color: var(--text-light);
    box-shadow: var(--shadow-sm);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
    position: relative;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-gold);
}

.product-image-container {
    height: 320px;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid var(--border-color);
    padding: 24px;
}

.product-image-container img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: var(--transition-normal);
}

.product-card:hover .product-image-container img {
    transform: scale(1.06);
}

.product-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--primary-burgundy);
    color: var(--text-light);
    font-weight: 700;
    font-size: 0.75rem;
    padding: 4px 12px;
    border-radius: 4px;
    z-index: 2;
    border: 1px solid var(--accent-gold);
}

.product-info {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-title {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--primary-burgundy-dark);
}

.product-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    height: 55px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product-specs {
    border-top: 1px dashed var(--border-color);
    padding-top: 15px;
    margin-bottom: 25px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 15px;
    font-size: 0.85rem;
}

.spec-item {
    display: flex;
    flex-direction: column;
}

.spec-label {
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.8rem;
}

.spec-value {
    color: var(--primary-burgundy-dark);
    font-weight: 700;
}

.product-btn {
    width: 100%;
    margin-top: auto;
    font-size: 0.9rem;
    padding: 10px;
    border-radius: 6px;
    background-color: var(--bg-cream);
    color: var(--primary-burgundy);
    text-align: center;
    font-weight: 700;
    border: 1px solid var(--border-color);
    transition: var(--transition-fast);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.product-btn:hover {
    background-color: var(--primary-burgundy);
    color: var(--text-light);
    border-color: var(--primary-burgundy);
}

/* ==========================================================================
   Steeping Timer Section
   ========================================================================== */
.timer-section {
    padding: 100px 0;
    background: linear-gradient(rgba(128, 0, 32, 0.95), rgba(88, 0, 20, 0.98)), url('assets/products/ctc_450.jpg') center/cover no-repeat fixed;
    color: var(--text-light);
    display: flex;
    justify-content: center;
}

.timer-card {
    background-color: rgba(253, 251, 247, 0.08);
    border: 2px solid var(--accent-gold);
    border-radius: 16px;
    padding: 40px;
    max-width: 600px;
    width: 100%;
    backdrop-filter: blur(15px);
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.timer-tag {
    color: var(--accent-gold);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 2px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
}

.timer-card h3 {
    color: var(--white);
    font-size: 1.85rem;
    margin-bottom: 10px;
}

.timer-intro-text {
    font-size: 0.95rem;
    color: rgba(253, 251, 247, 0.8);
    margin-bottom: 30px;
}

.timer-selector {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    max-width: 400px;
    margin-right: auto;
    margin-left: auto;
}

.timer-selector label {
    font-weight: 700;
    font-size: 0.95rem;
    white-space: nowrap;
}

.form-select {
    width: 100%;
    padding: 10px 15px;
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-family: inherit;
    font-size: 0.9rem;
    color: var(--text-dark);
    outline: none;
    cursor: pointer;
}

.timer-display-wrapper {
    position: relative;
    width: 220px;
    height: 220px;
    margin: 0 auto 30px;
}

.timer-svg {
    transform: rotate(-90deg);
}

.timer-circle-bg {
    fill: none;
    stroke: rgba(253, 251, 247, 0.1);
    stroke-width: 10px;
}

.timer-circle-progress {
    fill: none;
    stroke: var(--accent-gold);
    stroke-width: 10px;
    stroke-linecap: round;
    stroke-dasharray: 596.9; /* 2 * PI * r (2 * 3.14159 * 95) */
    stroke-dashoffset: 0;
    transition: stroke-dashoffset 1s linear;
}

.timer-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
}

.timer-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.btn-timer {
    font-size: 0.9rem;
    padding: 10px 24px;
}

.btn-timer:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

.timer-msg {
    margin-top: 25px;
    font-size: 0.95rem;
    color: var(--accent-gold-light);
    opacity: 0;
    transition: var(--transition-fast);
}

.timer-msg.show {
    opacity: 1;
}

/* ==========================================================================
   Representatives Section
   ========================================================================== */
.representatives-section {
    padding: 100px 0;
    background-color: var(--bg-cream);
}

.rep-panel {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    padding: 24px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.rep-search-box {
    position: relative;
    flex-grow: 1;
}

.rep-search-box i {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    font-size: 1.35rem;
    color: var(--text-muted);
}

.rep-search-box input {
    width: 100%;
    padding: 12px 45px 12px 15px;
    border: 1px solid var(--border-color);
    background-color: var(--bg-ivory);
    border-radius: 6px;
    font-family: inherit;
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition-fast);
}

.rep-search-box input:focus {
    border-color: var(--primary-burgundy);
    box-shadow: 0 0 0 3px rgba(128, 0, 32, 0.1);
}

.rep-select-box {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 250px;
}

.rep-select-box label {
    font-weight: 700;
    font-size: 0.9rem;
    white-space: nowrap;
}

.rep-select-box select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-family: inherit;
    font-size: 0.95rem;
    outline: none;
    cursor: pointer;
    background-color: var(--bg-ivory);
}

.reps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.rep-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 25px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
    position: relative;
    border-right: 4px solid var(--primary-burgundy);
}

.rep-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--border-color);
    border-right-color: var(--accent-gold);
}

.rep-province {
    display: inline-block;
    background-color: var(--bg-cream);
    color: var(--primary-burgundy-dark);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 4px;
    margin-bottom: 12px;
}

.rep-card h4 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--primary-burgundy-dark);
}

.rep-details {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.rep-details p {
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.rep-details i {
    font-size: 1.1rem;
    color: var(--accent-gold-dark);
    margin-top: 3px;
}

.reps-no-result {
    text-align: center;
    padding: 60px 0;
    color: var(--text-muted);
    font-weight: 700;
    display: none;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.main-footer {
    background-color: var(--primary-burgundy-dark);
    color: var(--text-light);
    padding: 80px 0 0;
    border-top: 3px solid var(--accent-gold);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-logo {
    height: 70px;
    margin-bottom: 20px;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.3));
}

.footer-brand p {
    color: rgba(253, 251, 247, 0.75);
    margin-bottom: 25px;
    font-size: 0.95rem;
    max-width: 360px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(253, 251, 247, 0.1);
    color: var(--accent-gold);
    font-size: 1.25rem;
}

.social-links a:hover {
    background-color: var(--accent-gold);
    color: var(--primary-burgundy-dark);
    transform: translateY(-2px);
}

.footer-links h4, .footer-contact h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h4::after, .footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent-gold);
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: rgba(253, 251, 247, 0.75);
    font-size: 0.95rem;
}

.footer-links ul li a:hover {
    color: var(--accent-gold);
    padding-right: 5px;
}

.footer-contact ul li {
    margin-bottom: 15px;
    font-size: 0.95rem;
    color: rgba(253, 251, 247, 0.75);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-contact ul li i {
    font-size: 1.2rem;
    color: var(--accent-gold);
    margin-top: 3px;
}

.footer-bottom {
    border-top: 1px solid rgba(253, 251, 247, 0.1);
    padding: 25px 0;
    font-size: 0.85rem;
    color: rgba(253, 251, 247, 0.5);
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1024px) {
    .products-grid, .reps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* Header Navigation */
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -300px;
        width: 280px;
        height: 100vh;
        background-color: var(--primary-burgundy-dark);
        border-left: 2px solid var(--accent-gold);
        z-index: 1001;
        padding: 80px 30px 40px;
        transition: right var(--transition-normal);
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.2);
    }
    
    .nav-menu.open {
        right: 0;
    }
    
    .nav-menu ul {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-link {
        font-size: 1.1rem;
        display: block;
    }
    
    .menu-close-btn {
        display: block;
        position: absolute;
        top: 20px;
        left: 20px;
        background: transparent;
        border: none;
        color: var(--bg-ivory);
        font-size: 2rem;
        cursor: pointer;
    }
    
    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 1000;
        opacity: 0;
        pointer-events: none;
        transition: opacity var(--transition-normal);
    }
    
    .nav-overlay.show {
        opacity: 1;
        pointer-events: auto;
    }

    /* Grid Resets & Section Padding */
    .hero-section {
        padding: 120px 0 60px;
        min-height: auto;
    }

    .hero-container, .heritage-grid, .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-container {
        padding-top: 20px;
        text-align: center;
    }
    
    .hero-content {
        order: 2;
    }

    .hero-images-wrapper {
        order: 1;
        margin-top: 0;
        margin-bottom: 30px;
    }
    
    .hero-desc {
        margin-right: auto;
        margin-left: auto;
    }
    
    .hero-btns {
        justify-content: center;
    }
    
    .hero-canister {
        max-width: 220px;
        transform: rotate(0deg); /* Keep it upright and centered on mobile */
        filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.35));
    }

    .rep-panel {
        flex-direction: column;
    }
    
    .rep-select-box {
        min-width: 100%;
    }
}

@media (max-width: 576px) {
    .products-grid, .reps-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .section-title {
        font-size: 1.85rem;
    }
    
    .hero-btns {
        flex-direction: column;
        gap: 12px;
    }
    
    .hero-btns .btn {
        width: 100%;
    }
    
    .badge-item {
        padding: 10px 5px;
    }
    
    .feature-badges {
        grid-template-columns: 1fr;
    }
    
    .timer-card {
        padding: 20px;
    }
    
    .timer-selector {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .timer-controls {
        flex-direction: column;
        gap: 10px;
    }
    
    .timer-controls .btn {
        width: 100%;
    }
    
    .main-footer {
        padding-top: 50px;
    }
    
    .footer-grid {
        gap: 40px;
    }
}

/* ==========================================================================
   Subpages Style Additions (Shop & Representatives Banner & Digikala Button)
   ========================================================================== */
.page-title-section {
    position: relative;
    padding: 160px 0 60px;
    background: linear-gradient(135deg, var(--primary-burgundy-dark) 0%, var(--primary-burgundy) 100%);
    color: var(--text-light);
    text-align: center;
    border-bottom: 2px solid var(--accent-gold);
}

.page-title-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.page-tag {
    display: inline-block;
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem;
    color: var(--accent-gold);
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.page-title {
    font-size: 2.25rem;
    color: var(--white);
    font-weight: 800;
}

/* Digikala Buy Button */
.btn-digikala {
    background-color: #ef4056; /* Digikala Red */
    color: var(--white);
    border: none;
    padding: 11px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.9rem;
    text-align: center;
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 10px;
    transition: var(--transition-fast);
    box-shadow: 0 4px 10px rgba(239, 64, 86, 0.15);
}

.btn-digikala:hover {
    background-color: #d12f44;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(239, 64, 86, 0.25);
    color: var(--white);
}

.btn-digikala i {
    font-size: 1.2rem;
}

/* Product Badges (Pervar / Jadeed) */
.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--accent-gold);
    color: var(--primary-burgundy-dark);
    font-weight: 800;
    font-size: 0.75rem;
    padding: 4px 12px;
    border-radius: 4px;
    z-index: 2;
    border: 1px solid var(--primary-burgundy-light);
    box-shadow: var(--shadow-sm);
}

/* Brewing Guide Hover Effects */
.guide-card {
    transition: var(--transition-normal) !important;
}

.guide-card:hover {
    transform: translateY(-8px);
    border-top-color: var(--primary-burgundy-light) !important;
    box-shadow: var(--shadow-lg) !important;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.15) !important;
}

/* FAQ Accordion Animations */
.faq-item {
    transition: var(--transition-fast) !important;
}

.faq-item.active {
    border-color: var(--accent-gold) !important;
    box-shadow: var(--shadow-md);
}

.faq-question {
    transition: background-color var(--transition-fast);
}

.faq-question:hover {
    background-color: var(--bg-ivory) !important;
}

.guide-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

/* Responsive grid adjustments for Brewing Guide and FAQs */
@media (max-width: 992px) {
    .guide-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 768px) {
    .guide-grid {
        grid-template-columns: 1fr !important;
    }
}

/* ==========================================================================
   Persian Brewing Experience (timer.html) Styling
   ========================================================================== */

.timer-experience-page {
    font-family: 'Vazirmatn', Tahoma, 'Segoe UI', sans-serif !important;
}

.timer-experience-page select,
.timer-experience-page button,
.timer-experience-page input {
    font-family: 'Vazirmatn', Tahoma, 'Segoe UI', sans-serif !important;
}

/* Wizard Steps Progress bar */
.wizard-progress-bar {
    direction: rtl;
}

.progress-step .step-num {
    border-color: var(--border-color) !important;
    color: var(--text-muted) !important;
    background-color: var(--white) !important;
}

.progress-step.active .step-num {
    border-color: var(--accent-gold) !important;
    background-color: var(--primary-burgundy) !important;
    color: var(--white) !important;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.2);
}

.progress-step.active .step-label {
    color: var(--primary-burgundy-dark) !important;
    font-weight: 800 !important;
}

.progress-step.completed .step-num {
    border-color: var(--primary-burgundy) !important;
    background-color: var(--accent-gold) !important;
    color: var(--primary-burgundy-dark) !important;
}

.progress-step.completed .step-label {
    color: var(--primary-burgundy) !important;
}

/* Wizard Panels */
.wizard-panel {
    display: none;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
}

.wizard-panel.active {
    display: block;
    opacity: 1;
}

/* Tea Selection Grid */
.tea-selection-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 30px;
}

@media (max-width: 992px) {
    .tea-selection-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .tea-selection-grid {
        grid-template-columns: 1fr;
    }
}

.select-tea-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.select-tea-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-gold);
    box-shadow: 0 10px 20px rgba(140, 29, 47, 0.08);
}

.select-tea-card img {
    max-width: 150px;
    height: auto;
    margin: 0 auto 20px;
    transition: transform 0.3s ease;
}

.select-tea-card:hover img {
    transform: scale(1.05);
}

.select-tea-card h3 {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--primary-burgundy-dark);
    margin-bottom: 10px;
}

.select-tea-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.select-tea-card .btn-select {
    width: 100%;
    padding: 8px 15px;
    font-size: 0.85rem;
    background-color: var(--bg-cream);
    color: var(--primary-burgundy);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-weight: 700;
    transition: all 0.2s ease;
}

.select-tea-card:hover .btn-select {
    background-color: var(--primary-burgundy);
    color: var(--white);
    border-color: var(--primary-burgundy);
}

/* Steeping Visual & Steam - Photorealistic Glassmorphic Dashboard */
.brewing-dashboard-container {
    position: relative;
    width: 100%;
    height: 430px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.1);
    background: #0c0d10;
}

.dashboard-glow-overlay {
    position: absolute;
    inset: 0;
    box-shadow: inset 0 0 50px var(--infusion-glow-color, rgba(212,175,55,0.15));
    pointer-events: none;
    transition: box-shadow 1.5s ease;
}

/* CSS Steam Particles Generator */
.steam-overlay-container {
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 150px;
    pointer-events: none;
    z-index: 5;
}

.steam-particle {
    position: absolute;
    bottom: 0;
    width: 8px;
    height: 25px;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 70%);
    filter: blur(4px);
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
}

@keyframes steamFloatUp {
    0% {
        transform: translateY(0) translateX(0) scaleX(1) scaleY(1);
        opacity: 0;
    }
    15% {
        opacity: 0.35;
    }
    50% {
        transform: translateY(-70px) translateX(-10px) scaleX(2) scaleY(1.4);
        opacity: 0.25;
    }
    100% {
        transform: translateY(-140px) translateX(8px) scaleX(3) scaleY(1.8);
        opacity: 0;
    }
}

.steam-particle.particle-1 {
    animation: steamFloatUp 4s infinite linear;
    left: 20%;
    animation-delay: 0.2s;
}

.steam-particle.particle-2 {
    animation: steamFloatUp 3.5s infinite linear;
    left: 45%;
    animation-delay: 1.2s;
    width: 12px;
    height: 32px;
}

.steam-particle.particle-3 {
    animation: steamFloatUp 4.2s infinite linear;
    left: 70%;
    animation-delay: 2.2s;
}

.steam-particle.particle-4 {
    animation: steamFloatUp 3.2s infinite linear;
    left: 35%;
    animation-delay: 2.9s;
}

.steam-particle.serve-steam-1 {
    animation: steamFloatUp 3.5s infinite linear;
    left: 25%;
    animation-delay: 0.1s;
    width: 6px;
    height: 20px;
}

.steam-particle.serve-steam-2 {
    animation: steamFloatUp 3.8s infinite linear;
    left: 55%;
    animation-delay: 1.3s;
    width: 8px;
    height: 24px;
}

/* Trivia Fade Animation */
.trivia-text-animate {
    animation: triviaFade 0.6s ease-in-out;
}

@keyframes triviaFade {
    0% { opacity: 0; transform: translateY(8px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Pulse Animations for Glassmorphic Status Dot */
@keyframes pulse-gold {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
    }
    70% {
        box-shadow: 0 0 0 8px rgba(212, 175, 55, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

/* Photorealistic Estekan Container */
.estekan-visual-wrapper {
    position: relative;
    max-width: 320px;
    height: 380px;
    margin: 0 auto 30px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    border: 1px solid var(--border-color);
    background: #121316;
}

.estekan-liquid-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
}

.estekan-liquid-overlay svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* Star Rating Styling */
.star-rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    gap: 8px;
}

.star-rating label {
    font-size: 2.2rem;
    color: #e0e0e0;
    cursor: pointer;
    transition: color 0.2s ease, transform 0.2s ease;
}

.star-rating label:hover,
.star-rating label:hover ~ label,
.star-rating input:checked ~ label {
    color: var(--accent-gold) !important;
}

.star-rating label:active {
    transform: scale(0.9);
}

/* Responsive grid for steeping step */
@media (max-width: 768px) {
    .steeping-experience-grid {
        grid-template-columns: 1fr !important;
    }
    
    .guide-details-card {
        grid-template-columns: 1fr !important;
        padding: 25px !important;
    }
}

/* Iranian Market Cultural Product Specs */
.product-specs-cultural {
    border-top: 1px dashed var(--border-color);
    padding-top: 15px;
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 0.85rem;
}

.product-specs-cultural .spec-item.cultural-item {
    display: flex;
    flex-direction: row !important;
    justify-content: space-between;
    align-items: center;
}

.text-gold {
    color: var(--accent-gold-dark) !important;
    letter-spacing: 2px;
}

/* Premium Range Slider Customization */
#dilution-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    background: var(--border-color);
    border-radius: 3px;
    outline: none;
    margin: 15px 0;
}

#dilution-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--accent-gold);
    border: 2px solid var(--primary-burgundy);
    cursor: pointer;
    transition: transform 0.1s ease;
}

#dilution-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    background: var(--accent-gold-light);
}

#dilution-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--accent-gold);
    border: 2px solid var(--primary-burgundy);
    cursor: pointer;
    transition: transform 0.1s ease;
}

#dilution-slider::-moz-range-thumb:hover {
    transform: scale(1.2);
    background: var(--accent-gold-light);
}

/* Waist-narrow glass dynamic transitions */
#estekan-tea-liquid {
    transition: fill 0.5s ease, opacity 0.5s ease;
}

/* RTL phone number rendering fix */
.phone-number {
    direction: ltr;
    display: inline-block;
    unicode-bidi: embed;
}

/* Homepage Product Collections Section */
.collections-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.collection-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background-color: var(--white);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    text-decoration: none;
    transition: var(--transition-normal);
}

.collection-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-gold) !important;
    box-shadow: var(--shadow-lg) !important;
}

.collection-card-image-wrapper {
    height: 220px;
    background-color: var(--white);
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid var(--border-color);
    padding: 20px;
}

.collection-card-image {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: var(--transition-normal);
}

.collection-card:hover .collection-card-image {
    transform: scale(1.06);
}

.collection-card-content {
    padding: 20px 24px 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    background-color: var(--white);
    text-align: right;
}

.collection-card-tag {
    font-size: 0.72rem;
    color: var(--accent-gold-dark);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 6px;
}

.collection-card-title {
    color: var(--primary-burgundy-dark);
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 8px;
    line-height: 1.4;
    transition: var(--transition-fast);
}

.collection-card:hover .collection-card-title {
    color: var(--primary-burgundy);
}

.collection-card-desc {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.collection-hover-glow {
    position: absolute;
    inset: 0;
    box-shadow: inset 0 0 30px rgba(212, 175, 55, 0.15);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 3;
}

.collection-card:hover .collection-hover-glow {
    opacity: 1 !important;
}

@media (max-width: 992px) {
    .collections-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 576px) {
    .collections-grid {
        grid-template-columns: 1fr !important;
    }
}

/* Moving Heritage Silhouette Divider */
.heritage-divider-band {
    position: relative;
    height: 100px;
    background-color: var(--primary-burgundy-dark);
    border-top: 2px solid var(--accent-gold);
    border-bottom: 2px solid var(--accent-gold);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.heritage-divider-band::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, 
        var(--primary-burgundy-dark) 0%, 
        transparent 15%, 
        transparent 85%, 
        var(--primary-burgundy-dark) 100%);
    pointer-events: none;
    z-index: 3;
}

.moving-silhouette-track {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/fox_hunt_heritage.png');
    background-repeat: repeat-x;
    background-position: left center;
    background-size: 450px 450px;
    opacity: 0.14;
    filter: invert(1);
    mix-blend-mode: screen;
    animation: scrollSilhouette 28s linear infinite;
    pointer-events: none;
    will-change: background-position;
    z-index: 1;
}

.heritage-divider-text {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--accent-gold);
    letter-spacing: 4px;
    text-transform: uppercase;
    z-index: 4;
    opacity: 0.95;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
}


@keyframes scrollSilhouette {
    from {
        background-position-x: 0;
    }
    to {
        background-position-x: -450px;
    }
}

/* Variant size selection pills styling */
.variant-selector {
    margin-top: 15px;
    margin-bottom: 18px;
}
.size-pill {
    background-color: var(--bg-ivory);
    color: var(--text-dark);
    border: 1px solid var(--border-color);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.2s ease;
}
.size-pill:hover {
    border-color: var(--accent-gold);
    color: var(--primary-burgundy);
}
.size-pill.active {
    background-color: var(--primary-burgundy);
    color: var(--white);
    border-color: var(--primary-burgundy);
}

/* ==========================================================================
   Product Detail Page (product.html) Styling
   ========================================================================== */
.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 120px 0 20px;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 700;
}
.breadcrumbs a:hover {
    color: var(--primary-burgundy);
}
.breadcrumbs i {
    font-size: 0.75rem;
}

.product-detail-section {
    padding: 30px 0 60px;
}
.product-detail-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}
.product-image-box {
    background: radial-gradient(circle, var(--bg-cream) 0%, var(--white) 100%);
    border-radius: 12px;
    padding: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}
.product-image-box img {
    max-height: 400px;
    object-fit: contain;
    filter: drop-shadow(0 15px 30px rgba(128, 0, 32, 0.15));
    transition: transform 0.5s ease;
}
.product-image-box:hover img {
    transform: scale(1.05);
}

.product-details-content {
    display: flex;
    flex-direction: column;
}
.product-details-badge {
    color: var(--accent-gold-dark);
    font-weight: 800;
    font-size: 0.85rem;
    margin-bottom: 8px;
    letter-spacing: 1px;
}
.product-details-title {
    font-size: 2.25rem;
    margin-bottom: 12px;
    font-weight: 800;
    color: var(--primary-burgundy-dark);
}
.product-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--accent-gold);
    margin-bottom: 20px;
}
.product-rating span {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-right: 8px;
    font-weight: 700;
}
.product-details-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-burgundy);
    margin-bottom: 20px;
}
.product-details-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 30px;
}

.purchase-row {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.qty-selector {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    background: var(--bg-cream);
    overflow: hidden;
}
.qty-btn {
    background: none;
    border: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    font-size: 1.1rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}
.qty-btn:hover {
    background-color: var(--border-color);
}
.qty-input {
    width: 45px;
    height: 40px;
    border: none;
    border-left: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
    text-align: center;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    background: var(--white);
    outline: none;
}

/* Specs Grid */
.specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding-top: 30px;
    border-top: 1px dashed var(--border-color);
}
.spec-item {
    display: flex;
    align-items: center;
    gap: 12px;
}
.spec-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--bg-cream);
    color: var(--primary-burgundy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    border: 1px solid var(--border-color);
}
.spec-text h5 {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 700;
}
.spec-text p {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-dark);
}

/* Tab Content / Info Sections */
.info-section {
    padding: 60px 0;
    background-color: var(--bg-cream);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}
.info-container {
    max-width: 900px;
    margin: 0 auto;
}
.info-block {
    margin-bottom: 40px;
}
.info-block:last-child {
    margin-bottom: 0;
}
.info-block h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    border-bottom: 2px solid var(--accent-gold);
    display: inline-block;
    padding-bottom: 4px;
    font-weight: 800;
}
.info-block p {
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.8;
}
.tasting-notes-box {
    background: var(--white);
    border-right: 4px solid var(--accent-gold);
    padding: 20px 25px;
    margin: 20px 0;
    border-radius: 4px 0 0 4px;
    font-style: italic;
    font-size: 1rem;
    color: var(--primary-burgundy-dark);
    font-weight: 700;
    line-height: 1.6;
}

/* Comments Section */
.reviews-section {
    padding: 60px 0;
}
.reviews-container {
    max-width: 900px;
    margin: 0 auto;
}
.comments-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
    margin-bottom: 50px;
}
.comment-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 25px;
    box-shadow: var(--shadow-sm);
}
.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    flex-wrap: wrap;
    gap: 10px;
}
.comment-author {
    font-weight: 800;
    color: var(--primary-burgundy-dark);
    font-size: 0.95rem;
}
.comment-stars {
    color: var(--accent-gold);
}
.comment-date {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 700;
}
.comment-body {
    font-size: 0.92rem;
    color: var(--text-dark);
    line-height: 1.7;
}

.review-form-container {
    background: var(--bg-cream);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 30px;
    box-shadow: var(--shadow-sm);
}
.review-form-container h4 {
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--primary-burgundy-dark);
}
.form-group {
    margin-bottom: 15px;
}
.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}
.form-control {
    width: 100%;
    padding: 10px 15px;
    font-size: 0.9rem;
    border-radius: 6px;
    border: 1px solid var(--border-color);
    background: var(--white);
    outline: none;
    font-family: inherit;
    color: var(--text-dark);
    transition: var(--transition-fast);
}
.form-control:focus {
    border-color: var(--primary-burgundy);
    box-shadow: 0 0 5px rgba(128, 0, 32, 0.1);
}
.stars-input-wrapper {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 6px;
}
.stars-input-wrapper input {
    display: none;
}
.stars-input-wrapper label {
    font-size: 1.5rem;
    color: #ccc;
    cursor: pointer;
    transition: color 0.2s;
    margin: 0;
}
.stars-input-wrapper input:checked ~ label,
.stars-input-wrapper label:hover,
.stars-input-wrapper label:hover ~ label {
    color: var(--accent-gold);
}

/* ==========================================================================
   Admin Page (admin.html) Styling
   ========================================================================== */
.admin-dashboard-page {
    background-color: var(--bg-ivory);
    padding: 120px 0 60px;
}
.admin-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}
.admin-stat-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}
.admin-stat-val {
    font-size: 2.25rem;
    font-weight: 900;
    color: var(--primary-burgundy);
    margin-bottom: 5px;
}
.admin-stat-lbl {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 700;
}

.admin-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--shadow-md);
    margin-bottom: 40px;
}
.admin-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 15px;
    flex-wrap: wrap;
    gap: 15px;
}
.admin-card-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--primary-burgundy-dark);
}

.admin-table-responsive {
    overflow-x: auto;
    width: 100%;
}
.admin-table {
    width: 100%;
    border-collapse: collapse;
    direction: rtl;
    text-align: right;
}
.admin-table th, .admin-table td {
    padding: 12px 15px;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.9rem;
}
.admin-table th {
    background-color: var(--bg-cream);
    color: var(--primary-burgundy-dark);
    font-weight: 800;
}
.admin-table tr:hover {
    background-color: rgba(234, 222, 201, 0.2);
}

.admin-action-btn {
    padding: 6px 12px;
    font-size: 0.8rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    border: 1px solid transparent;
    transition: var(--transition-fast);
}
.admin-btn-edit {
    background-color: var(--bg-cream);
    color: var(--text-dark);
    border-color: var(--border-color);
}
.admin-btn-edit:hover {
    background-color: var(--accent-gold);
    color: var(--primary-burgundy-dark);
}
.admin-btn-delete {
    background-color: rgba(211, 47, 47, 0.05);
    color: #D32F2F;
    border-color: rgba(211, 47, 47, 0.2);
}
.admin-btn-delete:hover {
    background-color: #D32F2F;
    color: var(--white);
}

/* Toast Notifications */
.toast-container {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.toast {
    background: var(--white);
    border-right: 4px solid var(--primary-burgundy);
    box-shadow: var(--shadow-lg);
    border-radius: 4px;
    padding: 15px 25px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 10px;
    transform: translateX(-120%);
    transition: transform 0.3s ease;
}
.toast.show {
    transform: translateX(0);
}
.toast-success {
    border-right-color: #2E7D32;
}
.toast-error {
    border-right-color: #D32F2F;
}

/* Responsive details page grid */
@media (max-width: 992px) {
    .product-detail-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .product-image-box {
        padding: 30px;
    }
    .product-image-box img {
        max-height: 300px;
    }
}

/* ==========================================================================
   Reversible Product Hiding & Coming Soon System
   ========================================================================== */
body.products-disabled .products-only,
body.products-disabled a[href*="shop.html"],
body.products-disabled a[href*="product.html"],
body.products-disabled a[href*="representatives.html"],
body.products-disabled .collections-section,
body.products-disabled .footer-links {
    display: none !important;
}

.coming-soon-wrapper {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
}

.coming-soon-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 50px 30px;
    max-width: 600px;
    width: 100%;
    box-shadow: var(--shadow-md);
}

.coming-soon-icon {
    width: 80px;
    height: 80px;
    background: var(--bg-cream);
    color: var(--primary-burgundy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2.5rem;
    border: 2px solid var(--accent-gold);
}





