/* ============================================================
   SURYA GANTH AGENCIES — FULL PREMIUM MODERN DESIGN SYSTEM
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Dancing+Script:wght@600;700&display=swap');

/* ─── CSS VARIABLES ─── */
:root {
    --gold: #ca930c;
    --gold-light: #f0c04a;
    --gold-pale: #fdf8ec;
    --dark: #1a1a1a;
    --dark-2: #2d2d2d;
    --text-gray: #6b6b6b;
    --text-light: #a0a0a0;
    --white: #ffffff;
    --bg: #fafaf8;
    --border: #ebebeb;
    --shadow-sm: 0 2px 12px rgba(0,0,0,0.06);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.10);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.12);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --radius: 16px;
    --radius-sm: 8px;
    --radius-lg: 24px;
    --radius-xl: 40px;
}

/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; }

body {
    font-family: 'Poppins', sans-serif !important;
    background-color: var(--bg);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

a { transition: var(--transition); }

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ============================================================
   TOP BAR
   ============================================================ */
.tf-topbar {
    background: var(--dark) !important;
    border-bottom: none !important;
    box-shadow: none !important;
}

.tf-topbar .top-bar-text {
    color: rgba(255,255,255,0.9) !important;
    font-size: 12px;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.05em;
    font-weight: 500;
}

.tf-topbar .navigation-topbar span {
    color: rgba(255,255,255,0.6) !important;
}

/* ============================================================
   HEADER
   ============================================================ */
#header.header-modern {
    background: var(--white);
    padding: 16px 0 0 0;
    box-shadow: 0 1px 0 var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.container.header-top-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 14px;
}

/* Logo */
.logo-header img {
    height: 95px !important;
    width: auto !important;
    object-fit: contain;
}

/* Search bar */
.search-bar-modern {
    position: relative;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
}

.search-bar-modern input {
    width: 100%;
    height: 46px;
    padding: 0 50px 0 24px;
    border: 2px solid #d1d1d1;
    border-radius: 100px;
    background: var(--bg);
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
    outline: none;
    transition: var(--transition);
}

.search-bar-modern input:hover {
    border-color: #b0b0b0;
}

.search-bar-modern input:focus {
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(202,147,12,0.08);
}

.search-bar-modern input::placeholder { color: var(--text-light); }

.search-bar-modern .search-icon {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    background: var(--gold);
    border: none;
    border-radius: 50% !important;
    color: var(--white);
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
    line-height: 1;
    flex-shrink: 0;
}

.search-bar-modern .search-icon:hover { background: var(--dark); }

/* Header Action Icons */
.header-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.action-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--dark);
    text-decoration: none;
    font-size: 12.5px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    gap: 2px;
    position: relative;
    transition: var(--transition);
    white-space: nowrap;
}

.action-item i { font-size: 25px; line-height: 1; }

.action-item:hover { color: var(--gold); }

.cart-badge {
    position: absolute;
    top: -5px;
    right: -10px;
    background: var(--gold);
    color: var(--white);
    font-size: 9px;
    font-weight: 700;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav-modern {
    border-top: 3px solid var(--gold);
    background: var(--white);
    padding: 0;
}

.nav-modern ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-modern ul li { position: relative; }

.nav-modern .nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 13px 20px;
    font-family: 'Poppins', sans-serif;
    font-size: 12.5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--dark);
    text-decoration: none;
    position: relative;
    cursor: pointer;
}

.nav-modern .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20px;
    right: 20px;
    height: 2.5px;
    background: var(--gold);
    border-radius: 2px 2px 0 0;
    transform: scaleX(0);
    transform-origin: center;
    transition: var(--transition);
}

.nav-modern .nav-link:hover,
.nav-modern .nav-link.active { color: var(--dark); }

.nav-modern .nav-link:hover::after,
.nav-modern .nav-link.active::after { transform: scaleX(1); }

/* Dropdown */
.nav-modern .dropdown-menu {
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    padding: 8px 0;
    min-width: 200px;
    animation: fadeInDown 0.2s ease;
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

.nav-modern .dropdown-item {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    padding: 10px 20px;
    font-weight: 400;
    color: var(--dark);
    transition: var(--transition);
}

.nav-modern .dropdown-item:hover {
    background: var(--gold-pale);
    color: var(--gold);
    padding-left: 24px;
}

/* ============================================================
   HERO SECTION — Video Banner (matches newest request)
   ============================================================ */

.hero-video-section {
    position: relative;
    width: 100%;
    height: auto;
    background: transparent;
    overflow: hidden;
    line-height: 0;
    margin: 0;
    padding: 0;
}

.hero-video-bg {
    display: block;
    width: 100%;
    height: auto;
    z-index: 1;
    margin: 0;
    padding: 0;
}


.hero-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
    z-index: 2;
    display: flex;
    align-items: center;
}

.hero-video-content {
    padding: 0 60px;
    max-width: 600px;
    color: #fff;
}

.hero-video-title {
    font-family: 'Dancing Script', cursive;
    font-size: 84px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1;
    color: #ffffff !important;
}

.hero-video-text {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-video-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 42px;
    background: linear-gradient(135deg, var(--gold) 0%, #a6790a 100%);
    color: #fff !important;
    text-decoration: none !important;
    border-radius: 100px;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(202, 147, 12, 0.35);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.15);
    z-index: 10;
}

.hero-video-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 60%);
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.6s ease;
    pointer-events: none;
    z-index: -1;
}

.hero-video-btn:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 15px 45px rgba(202, 147, 12, 0.45);
    background: linear-gradient(135deg, #d4840f 0%, var(--gold) 100%);
}

.hero-video-btn:hover::before {
    transform: translate(-50%, -50%) scale(1);
}

.hero-video-btn i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.hero-video-btn:hover i {
    transform: translateX(8px);
}

/* ── Category Tab Bar ── */
.category-tab-bar {
    background: var(--white);
    border-top: 1.5px solid var(--border);
    border-bottom: 1.5px solid var(--border);
    overflow-x: auto;
    scrollbar-width: none;
}
.category-tab-bar::-webkit-scrollbar { display: none; }

.category-tab-bar ul {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
    white-space: nowrap;
    min-width: max-content;
}

.category-tab-bar ul li { position: relative; }

.category-tab-bar ul li a {
    display: block;
    padding: 14px 36px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-gray);
    text-decoration: none;
    position: relative;
    transition: var(--transition);
}
.category-tab-bar ul li a:hover { color: var(--gold); }

/* Active — golden arch like screenshot */
.category-tab-bar ul li a.active-cat {
    color: var(--gold);
    font-weight: 600;
}
.category-tab-bar ul li a.active-cat::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 3px;
    background: var(--gold);
    border-radius: 3px 3px 0 0;
}
.category-tab-bar ul li a.active-cat::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 8px;
    right: 8px;
    height: 38px;
    border: 2px solid var(--gold);
    border-bottom: none;
    border-radius: 50px 50px 0 0;
    pointer-events: none;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-banner-img { height: 250px; }
    .amber-hero-banner { height: 260px; }
    .amber-script-title { font-size: 52px; }
    .amber-content { padding: 0 24px; max-width: 65%; }
    .amber-subtitle { font-size: 13px; }
    .category-tab-bar ul { justify-content: flex-start; }

    /* Hero Video Adjustments */
    .hero-video-title {
        font-size: 42px !important;
        margin-bottom: 12px;
    }
    .hero-video-text {
        font-size: 14px !important;
        margin-bottom: 20px;
        max-width: 280px;
    }
    .hero-video-content {
        padding: 0 25px;
    }

    /* Announcement Text Mobile Size */
    #announcement-text {
        font-size: 19px !important;
        padding: 12px 10px !important;
    }
}



.hero-modern {
    position: relative;
    min-height: 92vh;
    background: linear-gradient(135deg, #1a2a4a 0%, #2b4a7a 30%, #3a6fa8 60%, #4a8fc0 100%);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    isolation: isolate;
}

/* Animated background blobs */
.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
    animation: blobPulse 6s ease-in-out infinite alternate;
}
.hero-blob-1 {
    width: 500px; height: 500px;
    background: rgba(74, 143, 192, 0.35);
    top: -150px; right: -100px;
    animation-delay: 0s;
}
.hero-blob-2 {
    width: 350px; height: 350px;
    background: rgba(202, 147, 12, 0.18);
    bottom: 100px; right: 200px;
    animation-delay: 2s;
}
.hero-blob-3 {
    width: 280px; height: 280px;
    background: rgba(255,255,255,0.07);
    top: 50px; left: -80px;
    animation-delay: 4s;
}
@keyframes blobPulse {
    0% { transform: scale(1) translate(0,0); }
    100% { transform: scale(1.12) translate(20px,-20px); }
}

/* Inner layout */
.hero-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 1;
    padding-top: 60px;
    padding-bottom: 40px;
    gap: 40px;
    position: relative;
    z-index: 2;
}

/* LEFT content */
.hero-content { max-width: 520px; }

.hero-tag {
    display: inline-block;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(8px);
    color: rgba(255,255,255,0.9);
    font-size: 12.5px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 100px;
    border: 1px solid rgba(255,255,255,0.2);
    margin-bottom: 22px;
    letter-spacing: 0.04em;
}

.hero-heading {
    font-family: 'Poppins', sans-serif;
    font-size: 52px;
    font-weight: 800;
    color: #fff;
    line-height: 1.12;
    margin-bottom: 20px;
}
.hero-heading span { color: var(--gold-light); display: block; }

.hero-desc {
    font-size: 16px;
    color: rgba(255,255,255,0.72);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 440px;
}

/* CTA Buttons */
.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 44px;
}

.hero-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 100px;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 8px 24px rgba(202,147,12,0.4);
    letter-spacing: 0.02em;
}
.hero-btn-primary:hover {
    background: var(--gold-light);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(202,147,12,0.5);
}

.hero-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 100px;
    text-decoration: none;
    border: 1.5px solid rgba(255,255,255,0.3);
    transition: var(--transition);
}
.hero-btn-outline:hover {
    background: rgba(255,255,255,0.2);
    color: #fff;
    transform: translateY(-2px);
}

/* Stats row */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
}
.hero-stat { display: flex; flex-direction: column; }
.hero-stat strong { font-size: 24px; font-weight: 800; color: #fff; line-height: 1; }
.hero-stat span { font-size: 11px; color: rgba(255,255,255,0.55); margin-top: 3px; font-weight: 500; }
.hero-stat-divider { width: 1px; height: 36px; background: rgba(255,255,255,0.2); }

/* RIGHT visual */
.hero-visual {
    flex: 0 0 auto;
    width: 460px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.hero-image-wrap {
    position: relative;
    width: 420px;
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-image-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(74,143,192,0.5) 0%, rgba(42,90,150,0.3) 50%, transparent 70%);
    border-radius: 50%;
    animation: glowPulse 4s ease-in-out infinite alternate;
}
@keyframes glowPulse {
    0% { transform: scale(0.95); opacity: 0.7; }
    100% { transform: scale(1.05); opacity: 1; }
}
.hero-product-img {
    position: relative;
    z-index: 2;
    max-width: 100%;
    max-height: 380px;
    object-fit: contain;
    filter: drop-shadow(0 30px 60px rgba(0,0,0,0.35));
    animation: floatProduct 5s ease-in-out infinite;
}
@keyframes floatProduct {
    0%, 100% { transform: translateY(0px) rotate(-2deg); }
    50% { transform: translateY(-18px) rotate(2deg); }
}

/* BOTTOM cards strip */
.hero-cards-strip {
    position: relative;
    z-index: 3;
    padding: 0 0 40px;
}
.hero-cards {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.hero-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: 20px;
    padding: 14px 18px;
    min-width: 220px;
    max-width: 280px;
    cursor: pointer;
    transition: var(--transition);
}
.hero-card:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}
.hero-card-img {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    overflow: hidden;
    flex-shrink: 0;
    background: rgba(255,255,255,0.15);
}
.hero-card-img img { width: 100%; height: 100%; object-fit: cover; }
.hero-card-info { flex: 1; min-width: 0; }
.hero-card-name {
    font-size: 12.5px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.hero-card-price { font-size: 15px; font-weight: 800; color: var(--gold-light); }
.hero-card-btn { font-size: 26px; color: rgba(255,255,255,0.7); flex-shrink: 0; transition: var(--transition); }
.hero-card:hover .hero-card-btn { color: var(--gold-light); transform: translateX(3px); }

/* Header padding fix when nav removed */
#header.header-modern { padding-bottom: 14px; }


/* Fallback styled banner */
.hero-banner-overlay {
    position: relative;
    width: 100%;
    height: 460px;
    background: linear-gradient(120deg, #b86a0a 0%, #d4840f 45%, #a35310 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-banner-overlay .banner-text {
    position: relative;
    z-index: 2;
    padding: 0 60px;
    max-width: 58%;
}

.hero-banner-overlay .banner-text .script-title {
    font-family: 'Dancing Script', cursive;
    font-size: 96px;
    font-weight: 700;
    color: var(--white);
    line-height: 0.95;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.hero-banner-overlay .banner-subtitle {
    font-size: 16.5px;
    color: rgba(255,255,255,0.9);
    font-weight: 400;
    line-height: 1.65;
    max-width: 360px;
}

.hero-banner-overlay .banner-watermark {
    position: absolute;
    left: -10px;
    bottom: -30px;
    font-family: 'Dancing Script', cursive;
    font-size: 220px;
    color: rgba(255,255,255,0.06);
    font-weight: 700;
    line-height: 1;
    user-select: none;
    pointer-events: none;
}

.hero-banner-overlay .banner-image {
    position: absolute;
    right: 0;
    bottom: 0;
    height: 110%;
    z-index: 1;
    object-fit: contain;
}

/* Carousel controls */
.carousel-control-prev,
.carousel-control-next {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.85);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: var(--transition);
}

#heroCarousel:hover .carousel-control-prev,
#heroCarousel:hover .carousel-control-next { opacity: 1; }

.carousel-control-prev { left: 14px; }
.carousel-control-next { right: 14px; }

.carousel-control-prev-icon,
.carousel-control-next-icon { filter: invert(1); width: 16px; }

/* ============================================================
   CATEGORY TAB BAR
   ============================================================ */
.category-tab-bar {
    background: var(--white);
    border-top: 1.5px solid var(--border);
    border-bottom: 1.5px solid var(--border);
    overflow-x: auto;
    scrollbar-width: none;
}

.category-tab-bar::-webkit-scrollbar { display: none; }

.category-tab-bar ul {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
    white-space: nowrap;
    min-width: max-content;
}

.category-tab-bar ul li { position: relative; }

.category-tab-bar ul li a {
    display: block;
    padding: 14px 32px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-gray);
    text-decoration: none;
    position: relative;
    transition: var(--transition);
}

.category-tab-bar ul li a:hover { color: var(--gold); }

/* Active tab — golden arch */
.category-tab-bar ul li a.active-cat {
    color: var(--gold);
    font-weight: 600;
}

.category-tab-bar ul li a.active-cat::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 3px;
    background: var(--gold);
    border-radius: 3px 3px 0 0;
}

.category-tab-bar ul li a.active-cat::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 8px;
    right: 8px;
    height: 38px;
    border: 2px solid var(--gold);
    border-bottom: none;
    border-radius: 50px 50px 0 0;
    pointer-events: none;
}

/* ============================================================
   SECTION SPACING & TITLES
   ============================================================ */
section { padding: 60px 0; }

.section-badge {
    display: inline-block;
    background: var(--gold-pale);
    color: var(--gold);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 5px 14px;
    border-radius: 100px;
    margin-bottom: 12px;
}

.section-heading {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.25;
    margin-bottom: 10px;
}

.section-heading span { color: var(--gold); }

.section-sub {
    font-size: 15px;
    color: var(--text-gray);
    margin-bottom: 0;
}


/* ============================================================
   PRODUCT CARDS
   ============================================================ */
.modern-product-card {
    background: var(--white);
    border-radius: 24px;
    border: none; /* Removed border for a more modern 'floating' design */
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); /* Softer, wider shadow for differentiation */
    will-change: transform;
}



.modern-product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}



.modern-product-card .img-wrapper {
    position: relative;
    aspect-ratio: 4/5;
    height: auto;
    overflow: hidden;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    border-radius: 20px 20px 0 0;
}

.modern-product-card .img-wrapper img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: contain !important;
    transition: opacity 0.6s ease;
    border-radius: 20px !important;
    background: transparent;
}

.modern-product-card .img-wrapper .img-secondary {
    opacity: 0;
}

.modern-product-card:hover .img-wrapper .img-primary {
    opacity: 0;
    transform: translate(-50%, -50%);
}

.modern-product-card:hover .img-wrapper .img-secondary {
    opacity: 1;
    transform: translate(-50%, -50%);
}

/* Quick add overlay removed */

/* Product badges */
.product-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    color: var(--dark);
    font-size: 11px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 5;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.4);
}

.modern-product-info {
    padding: 16px 18px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.modern-product-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
    line-height: 1.4;
    transition: var(--transition);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 42px; /* Fixed height for alignment */
}

.modern-product-card:hover .modern-product-title {
    color: var(--gold);
}

.modern-product-price {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    margin-top: auto;
}

.price-current {
    font-size: 19px;
    font-weight: 800;
    color: var(--dark);
}

.add-to-cart-btn {
    width: 100%;
    background: transparent;
    color: var(--dark);
    border: 1.8px solid var(--dark);
    border-radius: 10px;
    padding: 11px 0;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.add-to-cart-btn:hover {
    background: var(--dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ============================================================
   CATEGORY SHOWCASE CARDS
   ============================================================ */
.cat-showcase-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 16 / 9;
    width: 100%;
    cursor: pointer;
    isolation: isolate;
    transition: var(--transition);
}

.cat-showcase-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.cat-showcase-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.cat-showcase-card:hover img {
    transform: scale(1.08);
}

.cat-showcase-card .cat-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 18px 20px;
}

.cat-showcase-card .cat-name {
    color: var(--white);
    font-size: 17px;
    font-weight: 700;
    margin: 0;
}

.cat-showcase-card .cat-link {
    font-size: 11px;
    color: rgba(255,255,255,0.75);
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-top: 2px;
    display: block;
}

/* ============================================================
   DISCOUNT / CTA BANNER
   ============================================================ */
.discount-banner {
    background: linear-gradient(135deg, var(--gold) 0%, #e5a10e 100%);
    border-radius: var(--radius-lg);
    padding: 44px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    overflow: hidden;
    position: relative;
}

.discount-banner::before {
    content: '';
    position: absolute;
    top: -40px; right: -40px;
    width: 200px; height: 200px;
    background: rgba(255,255,255,0.07);
    border-radius: 50%;
}

.discount-banner::after {
    content: '';
    position: absolute;
    bottom: -60px; left: 30%;
    width: 280px; height: 280px;
    background: rgba(255,255,255,0.04);
    border-radius: 50%;
}

.discount-banner h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
    position: relative;
    z-index: 1;
}

.discount-banner p {
    font-size: 15px;
    color: rgba(255,255,255,0.85);
    margin: 0;
    position: relative;
    z-index: 1;
}

.discount-banner .btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    color: var(--gold);
    font-size: 13px;
    font-weight: 700;
    padding: 13px 28px;
    border-radius: 100px;
    text-decoration: none;
    white-space: nowrap;
    transition: var(--transition);
    border: none;
    position: relative;
    z-index: 1;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
}

.discount-banner .btn-cta:hover {
    background: var(--dark);
    color: var(--white);
    transform: translateY(-2px);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
/* ============================================================
   TESTIMONIAL MARQUEE SECTION
   ============================================================ */
.section-testimonials-premium {
    position: relative;
    padding: 120px 0;
    background: url('../images/backgrounds/testimonial_bg.jpg') no-repeat center center/cover fixed;
    overflow: hidden;
}

.section-testimonials-premium::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7); /* Deep dark overlay to 'fade' the background image */
    z-index: 1;
}

.section-testimonials-premium .container {
    position: relative;
    z-index: 2;
}

.section-testimonials-premium .section-heading,
.section-testimonials-premium .section-sub {
    color: #ffffff; /* White text for headers against dark background */
}

.section-testimonials-premium .section-heading span {
    color: var(--gold);
}

.testimonial-marquee-container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 50px;
}

.marquee-track {
    display: flex;
    gap: 30px;
    width: max-content;
}

.marquee-row-left {
    animation: marquee-left 40s linear infinite;
}

.marquee-row-right {
    animation: marquee-right 40s linear infinite;
}

.marquee-row-left:hover, .marquee-row-right:hover {
    animation-play-state: paused;
}

@keyframes marquee-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes marquee-right {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

.modern-testimonial {
    background: #ffffff; /* Solid high-contrast white */
    border: none;
    border-radius: 28px;
    padding: 40px;
    width: 440px;
    transition: all 0.4s ease;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2); /* Strong shadow for clear separation */
    display: flex;
    flex-direction: column;
}

.modern-testimonial p {
    color: #111111; /* Ultra-dark text for zero fading */
    font-size: 17px;
    line-height: 1.8;
    font-weight: 600;
    margin-bottom: 0;
}

.modern-testimonial .author-name {
    color: #000000;
    font-weight: 800;
    font-size: 16px;
}

.modern-testimonial .author-tag {
    color: var(--gold);
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
}

.modern-testimonial::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at top right, rgba(202,147,12,0.05) 0%, transparent 60%);
    pointer-events: none;
}

.modern-testimonial:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-md);
    transform: translateY(-8px);
}

.testimonial-footer {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 25px;
}

.modern-testimonial .author-avatar {
    width: 48px;
    height: 48px;
    background: var(--gold);
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 16px;
    border: 2px solid rgba(255,255,255,0.1);
    flex-shrink: 0;
}

.modern-testimonial .author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modern-testimonial .author-info {
    flex: 1;
}

.modern-testimonial .author-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0px;
}

.modern-testimonial .author-tag {
    font-size: 11px;
    color: var(--text-gray);
    font-weight: 400;
}

.modern-testimonial .stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.modern-testimonial .stars i { color: var(--gold); font-size: 12px; }

.modern-testimonial p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 0;
    font-style: normal;
    flex: 1;
}

/* ============================================================
   VIDEO SECTION
   ============================================================ */
.video-section-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-lg);
}

.video-section-wrap video {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.video-overlay-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(202,147,12,0.9);
    backdrop-filter: blur(4px);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* ============================================================
   FOOTER
   ============================================================ */
#footer.footer {
    background: var(--dark) !important;
    color: var(--white);
    border-radius: 0 !important;
    padding-top: 60px !important;
    margin-top: 0 !important;
}

.footer-logo img { height: 55px; }

.footer-heading {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--gold);
    margin-bottom: 20px;
}

.footer-text {
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    line-height: 1.8;
}

.footer-links { list-style: none; padding: 0; margin: 0; }

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

.footer-links a {
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-links a::before {
    content: '→';
    font-size: 11px;
    opacity: 0;
    transform: translateX(-6px);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 4px;
}

.footer-links a:hover::before { opacity: 1; transform: translateX(0); }

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 13.5px;
    color: rgba(255,255,255,0.55);
}

.footer-contact-item i { color: var(--gold); font-size: 15px; margin-top: 2px; flex-shrink: 0; }

.footer-social { display: flex; gap: 12px; margin-top: 20px; }

.footer-social a {
    width: 38px;
    height: 38px;
    border: 1.5px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    font-size: 15px;
    transition: var(--transition);
    text-decoration: none;
}

.footer-social a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.07) !important;
    padding: 20px 0;
    margin-top: 0;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255,255,255,0.35);
    margin: 0;
}

.footer-payment-icons img {
    height: 24px;
    filter: brightness(0) invert(1);
    opacity: 0.5;
    margin-left: 8px;
    transition: var(--transition);
}

.footer-payment-icons img:hover { opacity: 1; }

/* ============================================================
   NEWSLETTER SECTION
   ============================================================ */
.section-newsletter {
    background: linear-gradient(135deg, var(--dark) 0%, #2d1a00 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.section-newsletter::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 350px; height: 350px;
    background: radial-gradient(circle, rgba(202,147,12,0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    max-width: 480px;
    margin: 20px auto 0;
}

.newsletter-form input {
    flex: 1;
    height: 50px;
    padding: 0 20px;
    border: 1.5px solid rgba(255,255,255,0.15);
    border-radius: 100px;
    background: rgba(255,255,255,0.07);
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    outline: none;
    transition: var(--transition);
}

.newsletter-form input::placeholder { color: rgba(255,255,255,0.35); }
.newsletter-form input:focus { border-color: var(--gold); background: rgba(255,255,255,0.1); }

.newsletter-form button {
    height: 50px;
    padding: 0 28px;
    background: var(--gold);
    color: var(--white);
    border: none;
    border-radius: 100px;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.newsletter-form button:hover { background: var(--gold-light); transform: none; }

/* ============================================================
   MOBILE BOTTOM BAR
   ============================================================ */
.tf-toolbar-bottom {
    background: var(--white) !important;
    border-top: 1.5px solid var(--border) !important;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.06) !important;
}

.tf-toolbar-bottom .toolbar-label {
    font-family: 'Poppins', sans-serif !important;
    font-size: 10px !important;
    color: var(--text-gray) !important;
}

/* ============================================================
   WHATSAPP BUTTON
   ============================================================ */
#whatsapp {
    position: fixed;
    bottom: 30px;
    right: 24px;
    left: auto !important;
    z-index: 99999;
}

#whatsapp a {
    position: relative !important;
    width: 58px;
    height: 58px;
    background: #25d366;
    border-radius: 50%;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    font-size: 28px;
    line-height: 1;
    color: var(--white);
    box-shadow: 0 6px 20px rgba(37,211,102,0.35);
    transition: var(--transition);
    text-decoration: none;
    overflow: visible;
}

#whatsapp a:hover { transform: scale(1.1); box-shadow: 0 10px 30px rgba(37,211,102,0.45); }

/* ============================================================
   VIEW ALL BTN
   ============================================================ */
.btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--dark);
    border: 2px solid var(--dark);
    border-radius: 100px;
    padding: 12px 32px;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    letter-spacing: 0.03em;
}

.btn-view-all:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
    transform: translateX(4px);
}

/* ============================================================
   UTILITY OVERRIDES
   ============================================================ */
.preload { background-color: var(--bg) !important; }

/* Remove old sidebar */
.hero-container, .category-sidebar, .hero-carousel { display: none !important; }

/* Responsive */
@media (max-width: 991px) {
    .section-heading { font-size: 24px; }
    .discount-banner { flex-direction: column; text-align: center; padding: 32px; }
    .discount-banner h3 { font-size: 22px; }
    /* Hero tablet */
    .hero-inner {
        flex-direction: column;
        text-align: center;
        padding-top: 40px;
        padding-bottom: 20px;
    }
    .hero-content { max-width: 100%; }
    .hero-desc { margin-left: auto; margin-right: auto; }
    .hero-actions { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-visual { width: 100%; max-width: 340px; }
    .hero-image-wrap { width: 300px; height: 300px; }
    .hero-product-img { max-height: 280px; }
    .hero-heading { font-size: 38px; }
}

@media (max-width: 575px) {
    .hero-modern { min-height: auto; }
    .hero-heading { font-size: 28px; }
    .hero-tag { font-size: 11px; }
    .hero-desc { font-size: 14px; }
    .hero-btn-primary, .hero-btn-outline { padding: 12px 22px; font-size: 13px; }
    .hero-cards { gap: 10px; }
    .hero-card { min-width: 0; width: 100%; max-width: 100%; }
    .hero-visual { display: none; }
    .hero-stats { gap: 14px; }
    .hero-stat strong { font-size: 18px; }
    .feature-strip .row > div:not(:last-child) { border-bottom: 1px solid rgba(255,255,255,0.1); }
}


/* ============================================================
   BEHIND THE PROCESS — VIDEO GALLERY
   ============================================================ */
.process-gallery-section {
    background: var(--white);
    padding: 100px 0;
    overflow: hidden;
}

.video-gallery-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.12);
    background: #000;
}

.video-main-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.6s ease-in-out;
}

.video-gallery-container .video-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 10;
    pointer-events: none;
}

.video-gallery-container .control-btn {
    width: 54px;
    height: 54px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: auto;
}

.video-gallery-container .control-btn i { font-size: 20px; }

.video-gallery-container .control-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(202,147,12,0.3);
}

.video-index-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    color: #fff;
    padding: 6px 18px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    z-index: 10;
    letter-spacing: 0.1em;
    border: 1px solid rgba(255,255,255,0.1);
}

.process-features {
    margin-top: 80px;
}

.feature-item {
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    background: var(--gold-pale);
    height: 100%;
    transition: all 0.4s ease;
    border: 1px solid transparent;
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    background: var(--white);
    border-color: var(--gold-pale);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: var(--white);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--gold);
    margin: 0 auto 25px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.feature-item:hover .feature-icon {
    background: var(--gold);
    color: var(--white);
}

.feature-item h5 {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--dark);
}

.feature-item p {
    font-size: 14.5px;
    color: var(--text-gray);
    margin-bottom: 0;
    line-height: 1.6;
}

@media (max-width: 991px) {
    .video-gallery-container { max-width: 100%; border-radius: 0; }
    .process-gallery-section { padding: 60px 0; }
    .video-main-wrapper { aspect-ratio: 16/9; }
}

@media (max-width: 575px) {
    .video-gallery-container .control-btn { width: 44px; height: 44px; }
    .video-gallery-container .video-controls { padding: 0 15px; }
    .feature-item { padding: 30px 20px; }
}

/* ============================================================
   SERVICE FEATURES BOX
   ============================================================ */
.service-feature-box {
    padding: 20px 10px;
    transition: var(--transition);
}

.service-feature-box .sf-icon {
    font-size: 32px;
    color: var(--gold);
    margin-bottom: 15px;
}

.service-feature-box .sf-text {
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.4;
}

/* ============================================================
   ACCOUNT & LOGIN MODERN STYLES
   ============================================================ */
.account-container {
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
    padding: 100px 0;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.modern-auth-card {
    background: var(--white);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 50px 120px rgba(0,0,0,0.15);
    display: flex;
    max-width: 1050px;
    width: 100%;
    margin: 0 auto;
    border: 1px solid rgba(0,0,0,0.05);
}

.auth-image-side {
    flex: 1;
    background: var(--gold-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    position: relative;
}

.auth-image-side img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

.auth-form-side {
    flex: 1;
    padding: 60px;
    background: var(--white);
}

.auth-tabs {
    display: flex;
    gap: 30px;
    margin-bottom: 35px;
    border-bottom: 1px solid var(--border);
}

.auth-tab {
    padding-bottom: 12px;
    font-weight: 600;
    color: var(--text-gray);
    cursor: pointer;
    position: relative;
    font-size: 15px;
}

.auth-tab.active {
    color: var(--gold);
}

.auth-tab.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gold);
    border-radius: 100px;
}

.modern-form .form-group {
    margin-bottom: 20px;
}

.modern-form label {
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 8px;
    display: block;
    color: var(--dark);
}

.modern-form .form-control {
    height: 52px;
    border-radius: 12px;
    border: 1.5px solid var(--border);
    padding: 0 20px;
    font-size: 14px;
    transition: var(--transition);
}

.modern-form .form-control:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(202,147,12,0.1);
}

.btn-modern-auth {
    height: 52px;
    background: var(--gold);
    color: var(--white);
    border: none;
    border-radius: 12px;
    width: 100%;
    font-weight: 600;
    font-size: 15px;
    margin-top: 10px;
    transition: var(--transition);
}

.btn-modern-auth:hover {
    background: #d4840f;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Dashboard Styles */
.dashboard-wrapper {
    display: flex;
    gap: 40px;
}

.dashboard-sidebar {
    width: 280px;
    flex-shrink: 0;
}

.dashboard-content {
    flex: 1;
    min-width: 0;
}

.modern-sidebar-card {
    background: var(--white);
    border-radius: 20px;
    border: 1px solid var(--border);
    padding: 30px;
    box-shadow: var(--shadow-sm);
}

.sidebar-user-info {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.sidebar-avatar {
    width: 80px;
    height: 80px;
    background: var(--gold-pale);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    margin: 0 auto 15px;
}

.sidebar-nav {
    list-style: none;
    padding: 0;
}

.sidebar-nav li {
    margin-bottom: 10px;
}

.sidebar-nav a {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 14px 20px;
    border-radius: 12px;
    color: var(--text-gray);
    font-weight: 500;
    transition: var(--transition);
    text-decoration: none;
}

.sidebar-nav a i {
    font-size: 18px;
}

.sidebar-nav a:hover, .sidebar-nav a.active {
    background: var(--gold-pale);
    color: var(--gold);
}

.modern-card {
    background: var(--white);
    border-radius: 20px;
    border: 1px solid var(--border);
    padding: 40px;
    box-shadow: var(--shadow-sm);
}

.modern-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 10px;
}

.modern-table th {
    padding: 15px 20px;
    font-weight: 600;
    color: var(--text-gray);
    font-size: 14px;
    border: none;
    background: transparent;
    text-align: left;
    vertical-align: middle;
}

.modern-table tr {
    transition: var(--transition);
}

.modern-table td {
    padding: 20px;
    background: var(--white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    font-size: 14px;
    text-align: left;
    vertical-align: middle;
}

.modern-table td:first-child {
    border-left: 1px solid var(--border);
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
}

.modern-table td:last-child {
    border-right: 1px solid var(--border);
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
}

.modern-status-badge {
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
}

.status-completed { background: #ecfdf5; color: #059669; }
.status-pending { background: #fffbeb; color: #d97706; }
.status-processing { background: #eff6ff; color: #2563eb; }

@media (max-width: 991px) {
    .modern-auth-card { flex-direction: column; }
    .auth-image-side { display: none; }
    .dashboard-wrapper { flex-direction: column; }
    .dashboard-sidebar { width: 100%; }
}

/* ============================================================
   PRODUCT DETAIL PAGE
   ============================================================ */
.product-detail-section {
    padding: 60px 0 100px;
    background: var(--white);
}

.product-gallery-modern {
    position: sticky;
    top: 100px;
}

.main-img-wrap {
    background: var(--bg);
    border-radius: 30px;
    padding: 40px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1/1;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--border);
}

.main-img-wrap img, .main-img-wrap video {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.thumb-gallery {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

.thumb-item {
    aspect-ratio: 1/1;
    background: var(--bg);
    border-radius: 12px;
    border: 2px solid transparent;
    cursor: pointer;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    transition: var(--transition);
}

.thumb-item img, .thumb-item video {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.thumb-item.active {
    border-color: var(--gold);
    background: var(--white);
}

.product-detail-info {
    padding-left: 20px;
}

.product-tag-modern {
    display: inline-block;
    background: var(--gold-pale);
    color: var(--gold);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 15px;
}

.product-title-modern {
    font-size: 36px;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 20px;
}

.product-price-modern {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.price-current-large {
    font-size: 32px;
    font-weight: 900;
    color: var(--dark);
}

.price-original-large {
    font-size: 20px;
    color: var(--text-light);
    text-decoration: line-through;
}

.variant-label {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.variant-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 35px;
}

.variant-pill {
    padding: 10px 24px;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-gray);
    cursor: pointer;
    transition: var(--transition);
}

.variant-pill:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.variant-pill.active {
    background: var(--dark);
    border-color: var(--dark);
    color: var(--white);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.qty-selector-modern {
    display: flex;
    align-items: center;
    background: var(--bg);
    border-radius: 15px;
    width: fit-content;
    padding: 4px;
    margin-bottom: 35px;
}

.qty-btn {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: none;
    background: transparent;
    color: var(--dark);
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.qty-btn:hover { background: var(--white); box-shadow: var(--shadow-sm); }

.qty-input {
    width: 60px;
    background: transparent;
    border: none;
    text-align: center;
    font-weight: 700;
    font-size: 16px;
    color: var(--dark);
}

.detail-actions-modern {
    display: flex;
    gap: 20px;
    margin-bottom: 45px;
}

.add-to-cart-premium {
    flex: 1; /* Equal size with Buy Now */
    background: var(--dark);
    color: var(--white);
    border: none;
    height: 60px;
    border-radius: 18px;
    font-weight: 700;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: var(--transition);
}

.add-to-cart-premium:hover {
    background: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(202,147,12,0.3);
}

.buy-now-premium {
    flex: 1;
    background: transparent;
    color: var(--dark);
    border: 2px solid var(--dark);
    height: 60px;
    border-radius: 18px;
    font-weight: 700;
    font-size: 16px;
    transition: var(--transition);
}

/* Info Cards Layout */
.product-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 60px;
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 60px;
}

.info-card-modern {
    background: var(--bg);
    border-radius: 24px;
    padding: 40px;
    height: 100%;
    transition: var(--transition);
    border: 1px solid transparent;
}

.info-card-modern:hover {
    background: var(--white);
    border-color: var(--gold-pale);
    box-shadow: 0 20px 40px rgba(0,0,0,0.03);
    transform: translateY(-5px);
}

.info-card-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.info-card-title i {
    color: var(--gold);
    font-size: 22px;
}

.info-card-body {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-gray);
}

@media (max-width: 767px) {
    .product-info-grid {
        grid-template-columns: 1fr;
    }
}

.buy-now-premium:hover {
    background: var(--dark);
    color: var(--white);
}

@media (max-width: 991px) {
    .product-detail-info { padding-left: 0; padding-top: 40px; }
    .product-gallery-modern { position: static; }
    .product-title-modern { font-size: 28px; }
}

@media (max-width: 575px) {
    .detail-actions-modern { flex-direction: column; }
    .thumb-gallery { grid-template-columns: repeat(4, 1fr); }
}
/* Gallery Navigation Arrows */
.gallery-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    color: var(--dark);
    opacity: 0;
}

.main-img-wrap:hover .gallery-nav-btn {
    opacity: 1;
}

.gallery-nav-btn:hover {
    background: var(--dark);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.gallery-nav-prev { left: 20px; }
.gallery-nav-next { right: 20px; }

/* Related Products Section Update */
.related-products-section {
    margin-top: 100px;
    padding-top: 80px;
    border-top: 1px solid rgba(0,0,0,0.05);
    text-align: center;
}

.related-title-wrapper {
    margin-bottom: 50px;
}

.related-title-main {
    font-size: 42px;
    font-weight: 800;
    color: #1b4d3e; /* Dark green from image */
    margin-bottom: 10px;
}

.related-title-sub {
    font-size: 20px;
    color: #333;
    font-weight: 400;
}

.modern-product-card {
    border-radius: 15px !important;
    border: none !important;
    background: transparent !important;
}

.product-card-img-wrap {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #ffffff;
    aspect-ratio: 4/5;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.product-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain !important;
    border-radius: 16px !important;
    background: transparent;
}

.save-badge-red {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #ff5e5e;
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 6px;
    z-index: 2;
}

.rp-title {
    font-size: 16px;
    font-weight: 600;
    color: #222;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
    text-align: left;
}

.rp-price-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    text-align: left;
}

.rp-price-current {
    font-size: 18px;
    font-weight: 700;
    color: #000;
}

.rp-price-original {
    font-size: 14px;
    color: #888;
    text-decoration: line-through;
}

.rp-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #444;
    font-size: 13px;
    font-weight: 700;
    text-align: left;
}

.rp-rating i {
    color: #000;
    font-size: 14px;
}

/* Simply Better Features Section */
.simply-better-section {
    padding: 100px 0;
    background: var(--white);
}

.simply-better-header {
    margin-bottom: 70px;
    text-align: center;
}

.simply-better-title {
    font-size: 38px;
    font-weight: 800;
    color: #1b4d3e;
    margin-bottom: 15px;
}

.features-grid-modern {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-card-modern {
    text-align: center;
    padding: 40px 30px;
    border-radius: 24px;
    background: #f9fbf9;
    transition: var(--transition);
    border: 1px solid transparent;
}

.feature-card-modern:hover {
    background: var(--white);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    border-color: #ccdccd;
}

.feature-icon-wrap {
    width: 70px;
    height: 70px;
    background: #eef3ef;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: #1b4d3e;
    font-size: 32px;
    transition: var(--transition);
}

.feature-card-modern:hover .feature-icon-wrap {
    background: #1b4d3e;
    color: var(--white);
    border-radius: 50%;
}

.feature-text-main {
    font-size: 19px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 8px;
    line-height: 1.3;
}

.feature-text-sub {
    font-size: 13px;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

@media (max-width: 991px) {
    .features-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .features-grid-modern {
        grid-template-columns: 1fr;
    }
    .simply-better-title { font-size: 28px; }
}

/* Culinary Gallery Accordion Section */
.culinary-gallery-section {
    padding: 100px 0;
    background: var(--white);
    overflow: hidden;
}

.culinary-header {
    text-align: center;
    margin-bottom: 60px;
}

.culinary-title {
    font-size: 38px;
    font-weight: 800;
    color: #1b4d3e;
    margin-bottom: 15px;
}

.culinary-subtitle {
    font-size: 18px;
    color: var(--text-gray);
    font-weight: 400;
}

.culinary-accordion {
    display: flex;
    width: 100%;
    height: 550px;
    gap: 15px;
    padding: 0 5%;
}

.culinary-accordion-item {
    flex: 1; /* All same width by default */
    border-radius: 40px;
    overflow: hidden;
    position: relative;
    transition: all 0.7s cubic-bezier(0.25, 1, 0.5, 1);
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Gradient Overlay for Legibility */
.culinary-accordion-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
    opacity: 0.4;
    transition: var(--transition);
}

.culinary-accordion-item:hover::after {
    opacity: 0.9;
    height: 70%;
}

.culinary-accordion-item:hover {
    flex: 4; /* Expand on hover */
}

.culinary-accordion-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
}

.culinary-accordion-item:hover img {
    transform: scale(1.1);
}

.culinary-caption {
    position: absolute;
    bottom: 40px;
    left: 40px;
    right: 40px;
    color: #ffffff;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1) 0.2s;
    z-index: 5;
    pointer-events: none;
}

.culinary-accordion-item:hover .culinary-caption {
    opacity: 1;
    transform: translateY(0);
}

.cap-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 5px;
    line-height: 1.1;
    color: #ffffff;
    text-shadow: 0 2px 15px rgba(0,0,0,0.3);
}

.cap-sub {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #c9930c; /* High contrast gold */
    margin-bottom: 8px;
    display: block;
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
    .culinary-accordion {
        height: 600px;
        flex-direction: column;
    }
    .culinary-accordion-item:hover {
        flex: 3;
    }
    .culinary-caption {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 575px) {
    .cap-title { font-size: 22px; }
}

/* ─── MOBILE HEADER FIXES ─── */
@media (max-width: 768px) {
    .container.header-top-row {
        flex-wrap: wrap !important;
        justify-content: space-between !important;
        padding: 10px 15px !important;
        gap: 5px !important;
    }

    /* Ensure Logo is visible and correctly sized */
    .logo-header img {
        height: 45px !important;
        width: auto !important;
        display: block !important;
    }

    /* Make search bar full width and move it below the logo/actions */
    .header-top-row > div:nth-child(2) {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        margin: 10px 0 5px 0 !important;
        order: 3; /* Move search below logo and icons */
    }

    .search-bar-modern {
        max-width: 100% !important;
    }

    .search-bar-modern input {
        height: 42px !important;
        font-size: 13px !important;
    }

    /* Adjust header actions for mobile */
    .header-actions {
        gap: 15px !important;
    }

    .action-item i {
        font-size: 20px !important;
    }

    .action-item span {
        display: none; /* Hide labels on mobile to keep it clean */
    }

    /* Fix header height */
    #header.header-modern {
        padding: 10px 0 !important;
    }
}

.category-tab-bar { border-top: 3.5px solid var(--gold) !important; }
/* Toast Notification */
.toast-container {
    position: fixed;
    top: 30px;
    right: 30px;
    z-index: 99999;
}

.modern-toast {
    background: #fff;
    border-left: 5px solid var(--gold);
    padding: 16px 24px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 300px;
    animation: slideInRight 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform-origin: right;
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(100px); }
    to { opacity: 1; transform: translateX(0); }
}

.toast-icon {
    width: 40px;
    height: 40px;
    background: var(--gold-pale);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.toast-content h5 {
    font-size: 14px;
    font-weight: 700;
    margin: 0;
    color: var(--dark);
}

.toast-content p {
    font-size: 13px;
    margin: 4px 0 0;
    color: var(--text-gray);
}

/* ============================================================
   MOBILE ALIGNMENT REFINEMENTS
   ============================================================ */
/* ============================================================
   GLOBAL HEADER & NAVIGATION (FOR ALL DEVICES)
   ============================================================ */
.header-top-row {
    flex-wrap: nowrap !important;
    gap: 15px;
    padding: 10px 20px;
    justify-content: space-between !important;
    min-height: 80px;
}

.logo-col { flex-shrink: 0; }
.search-col { flex: 1; }

.main-logo-img {
    height: 70px;
    width: auto;
    object-fit: contain;
    display: block;
}

.search-bar-modern {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
}

.search-bar-modern input {
    width: 100%;
    height: 42px;
    font-size: 14px;
    border-radius: 50px;
    border: 1px solid #ddd;
    padding: 0 45px 0 20px;
}

.search-bar-modern .search-icon {
    position: absolute;
    right: 3px;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    background: var(--gold);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-actions {
    gap: 15px;
}

.action-item span {
    display: block !important;
    font-size: 11px;
    font-weight: 600;
}

.action-item i {
    font-size: 22px;
}

/* Horizontal Category Navigation */
.nav-modern-wrap {
    background: #fff;
    border-bottom: 1px solid var(--border);
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.nav-modern-wrap::-webkit-scrollbar { display: none; }

.nav-modern-list {
    display: flex;
    padding: 12px 20px;
    margin: 0;
    list-style: none;
    gap: 25px;
    justify-content: center;
}

/* Mobile scaling removed to keep tablet view */
@media (max-width: 600px) {
    /* No shrinking - keep tablet proportions */
}

html, body {
    overflow-x: hidden !important;
    width: 100%;
}

/* ============================================================
   MOBILE SPECIFIC (REMAINING)
   ============================================================ */
@media (max-width: 768px) {


    /* Bottom Toolbar Fixes */
    .tf-toolbar-bottom {
        display: flex !important; /* Ensure it's visible on mobile */
        height: 70px;
        padding: 0 !important;
        align-items: center;
        justify-content: space-around;
    }
    
    .tf-toolbar-bottom .toolbar-item {
        flex: 1;
        height: 100%;
    }
    
    .tf-toolbar-bottom .toolbar-item a {
        height: 100%;
        padding: 10px 0;
        gap: 2px;
    }
    
    .tf-toolbar-bottom .toolbar-item a .toolbar-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .tf-toolbar-bottom .toolbar-item a .toolbar-label {
        font-size: 11px !important;
        font-weight: 600 !important;
        margin-top: 4px;
    }
    
    .tf-toolbar-bottom .toolbar-item a .toolbar-icon i {
        font-size: 24px;
        display: block;
    }

    /* WhatsApp Icon Adjustment on Mobile — Moved to right and higher to clear toolbar */
    #whatsapp {
        left: auto !important;
        right: 20px !important;
        bottom: 120px !important; /* Even higher to ensure absolute clearance */
        display: block !important;
        position: fixed !important;
    }
    
    #whatsapp a {
        left: auto !important;
        right: 0 !important;
    }
    
    /* Header Row Force */
    .header-top-row {
        flex-wrap: nowrap !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 8px !important;
    }

    /* Announcement Bar Wrapping */
    .tf-topbar {
        height: auto !important;
        min-height: 40px;
    }
    
    .tf-topbar .top-bar-text {
        white-space: normal !important;
        text-align: center;
        padding: 8px 15px !important;
        line-height: 1.4 !important;
    }

    .tf-topbar .swiper-wrapper {
        height: auto !important;
    }

    .tf-topbar .swiper-slide {
        height: auto !important;
    }

    /* Product Card Mobile Fixes */
    .modern-product-card .img-wrapper {
        aspect-ratio: 1/1; /* Square on mobile often looks better */
        padding: 10px;
    }
    
    .modern-product-title {
        font-size: 13px;
        height: 38px;
    }
    
    .price-current {
        font-size: 16px;
    }
    
    .add-to-cart-btn {
        padding: 8px 0;
        font-size: 12px;
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    .header-actions {
        gap: 12px;
    }
}
