:root {
    --primary-bg: #FFFFFF;
    --secondary-bg: #FDF8F3;
    --accent-green: #6B1D1D;
    --accent-green-light: #8B2E2E;
    --accent-green-dark: #4A1010;
    --accent-gold: #D4A24C;
    --accent-gold-light: #FBF3E4;
    --text-dark: #2C1A14;
    --text-muted: #8A7568;
    --white: #ffffff;
    --glass: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.4);
    --shadow-sm: 0 4px 6px -1px rgba(107, 29, 29, 0.04), 0 2px 4px -1px rgba(107, 29, 29, 0.02);
    --shadow-md: 0 10px 25px -3px rgba(107, 29, 29, 0.06), 0 4px 12px -2px rgba(107, 29, 29, 0.03);
    --shadow-lg: 0 20px 40px -5px rgba(107, 29, 29, 0.1), 0 10px 20px -5px rgba(107, 29, 29, 0.05);
    --font-serif: 'Outfit', 'Poppins', sans-serif;
    --font-sans: 'Outfit', 'Poppins', sans-serif;
    --transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--primary-bg);
    color: var(--text-dark);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-serif);
    color: var(--accent-green-dark);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Global Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: var(--accent-green);
    color: white !important;
    border-radius: 50px;
    font-weight: 700;
    text-align: center;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-family: var(--font-sans);
    font-size: 0.95rem;
}

.btn:hover {
    background: var(--accent-green-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--accent-green);
    color: var(--accent-green) !important;
}

.btn-secondary:hover {
    background: var(--accent-green);
    color: white !important;
}

/* ============================================
   MODERN HERO HEADER
   ============================================ */

/* Announcement Bar */
.announcement-bar {
    background: var(--accent-green-dark);
    color: white;
    text-align: center;
    padding: 0.5rem 0;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.announcement-bar-container span {
    display: block;
}

/* Hero Header Wrapper */
.hero-header {
    background: white;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(74, 14, 23, 0.08);
    background-size: cover !important;
    background-position: center !important;
}

/* Main header row */
.modern-header {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(197, 168, 128, 0.2);
}

/* Header element is just a structural wrapper — styling via .modern-header */
header {
    background: transparent;
    padding: 0;
    margin: 0;
    border: none;
    box-shadow: none;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    padding: 0.9rem 0;
    flex-wrap: nowrap;
}

/* Logo */
.modern-logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
}

.modern-logo-img {
    height: 55px;
    width: auto;
    object-fit: contain;
    border-radius: 50%;
    display: block;
}

.modern-logo-text {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-green-dark);
    letter-spacing: 3px;
    line-height: 1;
}

.logo-accent {
    color: var(--accent-gold);
}

.logo img {
    height: 55px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

/* Search Bar */
.header-search {
    flex: 1;
    max-width: 480px;
    margin: 0 1rem;
    position: relative;
}

.modern-search-form {
    position: relative;
    display: flex;
    align-items: center;
}

.modern-search-icon {
    position: absolute;
    left: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent-gold);
    font-size: 0.9rem;
    pointer-events: none;
    z-index: 1;
}

.modern-search-input {
    width: 100%;
    padding: 0.75rem 1.5rem 0.75rem 3rem;
    border: 1.5px solid #e8e0d5;
    border-radius: 50px;
    background: #faf8f5;
    font-family: var(--font-sans);
    font-size: 0.88rem;
    color: var(--text-dark);
    outline: none;
    transition: all 0.3s ease;
}

.modern-search-input:focus {
    border-color: var(--accent-gold);
    background: white;
    box-shadow: 0 0 0 3px rgba(197, 168, 128, 0.15);
}

.modern-search-input::placeholder {
    color: #aaa;
}

.header-search input {
    width: 100%;
    padding: 0.8rem 1.5rem 0.8rem 3rem;
    border: 2px solid #f0f0f0;
    border-radius: 50px;
    background: #f8f9fa;
    outline: none;
    transition: var(--transition);
}

.header-search i {
    position: absolute;
    left: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent-green);
}

/* Nav Icons (account, cart) */
.nav-icons {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.modern-icon-link {
    font-size: 1.25rem;
    color: var(--accent-green-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
    position: relative;
    text-decoration: none;
}

.modern-icon-link:hover {
    background: rgba(197, 168, 128, 0.15);
    color: var(--accent-green);
}

/* Cart Badge */
.cart-icon {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--accent-green);
    color: white;
    font-size: 0.65rem;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    border: 2px solid var(--white);
}

/* Support / Contact Info in header */
.header-contact {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-shrink: 0;
}

.support-gold-icon {
    color: var(--accent-gold);
    font-size: 1rem;
}

.support-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.support-label {
    font-size: 0.68rem;
    color: #999;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.support-num {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent-green-dark);
}

/* ============================================
   SECONDARY NAV (categories + nav links)
   ============================================ */

.secondary-nav {
    background: #fff;
    border-top: 1px solid #f0ece6;
}

.secondary-nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.4rem 20px;
    gap: 1.5rem;
}

/* Weaves / Categories Dropdown Wrapper */
.categories-dropdown-wrapper {
    position: relative;
}

.categories-dropdown-btn {
    background: var(--accent-green-dark);
    color: white;
    padding: 0.65rem 1.4rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    letter-spacing: 0.5px;
    user-select: none;
    transition: background 0.3s;
    white-space: nowrap;
}

.categories-dropdown-btn:hover {
    background: var(--accent-green);
}

/* Mega-menu: hidden by default, shown on hover */
.mega-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: 520px;
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    padding: 1.2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(74, 14, 23, 0.12);
    border: 1px solid rgba(197, 168, 128, 0.2);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    pointer-events: none;
}

/* Bridge the 8px gap between button and dropdown to prevent hover loss */
.mega-menu::before {
    content: '';
    position: absolute;
    top: -12px;
    left: 0;
    width: 100%;
    height: 12px;
    background: transparent;
    pointer-events: all;
}

.categories-dropdown-wrapper:hover .mega-menu,
.categories-dropdown-wrapper.active .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: all;
}

.mega-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    width: 90px;
    text-align: center;
    text-decoration: none;
    color: var(--text-dark);
    font-size: 0.78rem;
    font-weight: 600;
    transition: all 0.2s ease;
    border-radius: 10px;
    padding: 0.6rem 0.4rem;
}

.mega-item:hover {
    background: #faf6f2;
    color: var(--accent-green-dark);
    transform: translateY(-2px);
}

.mega-item img {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid var(--accent-gold-light);
}

/* Old categories-menu (keep for compat) */
.categories-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 250px;
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 0 0 12px 12px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    border-top: 1px solid #eee;
}

.categories-dropdown-wrapper:hover .categories-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.categories-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 1rem 1.5rem;
    color: #333;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s;
    border-bottom: 1px solid #f9f9f9;
}

.categories-menu a:last-child {
    border-bottom: none;
    border-radius: 0 0 12px 12px;
}

.categories-menu a:hover {
    background: #f8fff8;
    color: var(--accent-green-dark);
    padding-left: 1.8rem;
}

.categories-menu a i {
    color: var(--accent-gold);
    width: 20px;
    text-align: center;
}

/* Track Order Button */
.track-order {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--accent-gold-light), var(--accent-gold));
    color: var(--accent-green-dark);
    padding: 0.55rem 1.1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.track-order:hover {
    background: var(--accent-green-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 14, 23, 0.2);
}

.track-gold-icon {
    color: inherit;
}

/* ============================================
   MOBILE HAMBURGER & RESPONSIVE HEADER
   ============================================ */

/* Hamburger button — hidden on desktop */
.mobile-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: 1.5px solid rgba(74, 14, 23, 0.15);
    border-radius: 10px;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.2s ease;
    padding: 0;
}

.mobile-hamburger:hover {
    background: rgba(74, 14, 23, 0.06);
}

.mobile-hamburger span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--accent-green-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-hamburger.open span:nth-child(2) { opacity: 0; }
.mobile-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 768px) {
    /* Show hamburger */
    .mobile-hamburger { display: flex; }

    /* Hide phone/support in header */
    .header-contact { display: none !important; }

    /* Hide secondary nav bar (WEAVES + nav links + Trace Loom) */
    .secondary-nav { display: none !important; }

    /* Hide search bar completely on mobile */
    .header-search { display: none !important; }

    /* Hide account icon on mobile */
    .nav-icons a[href="account.php"] { display: none !important; }

    /* Compact nav-container */
    .nav-container { padding: 0.6rem 0; gap: 0.6rem; }
}

/* ── Mobile side-menu new items ─────────────────── */

/* Trace Loom button inside menu */
.mobile-trace-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0.8rem 1rem;
    padding: 0.85rem 1.2rem;
    background: linear-gradient(135deg, var(--accent-gold-light), var(--accent-gold));
    color: var(--accent-green-dark) !important;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.2s ease;
    letter-spacing: 0.5px;
}

.mobile-trace-btn:hover {
    background: var(--accent-green-dark);
    color: white !important;
}

.mobile-trace-btn i { font-size: 1rem; }

/* Phone support block inside menu */
.mobile-support-block {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin: 0.4rem 1rem 1.2rem;
    padding: 0.9rem 1.2rem;
    background: #faf6f2;
    border: 1px solid var(--accent-gold-light);
    border-radius: 12px;
}

.mobile-support-block i { font-size: 1.1rem; flex-shrink: 0; }

.mobile-support-label {
    display: block;
    font-size: 0.68rem;
    color: #aaa;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mobile-support-num {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--accent-green-dark);
    text-decoration: none;
}

.mobile-support-num:hover { color: var(--accent-gold); }


.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--accent-green-dark);
    transition: var(--transition);
    z-index: -1;
}

.btn:hover {
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn:hover::after {
    width: 100%;
}

.btn-secondary {
    background: transparent;
    color: var(--accent-green);
    border-color: var(--accent-green);
}

.btn-secondary::after {
    background: var(--accent-green);
}

.btn-secondary:hover {
    color: var(--white);
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.product-card {
    background: white;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card:hover {
    border-color: var(--accent-gold);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.discount-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #FF9800;
    color: white;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    z-index: 2;
}

.product-image {
    width: 100%;
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 1/1;
    padding: 1.5rem;
    background: #fdfdfd;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.product-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-category {
    font-size: 0.75rem;
    color: #999;
    margin-bottom: 0.4rem;
}

.product-title {
    font-size: 1rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.6rem;
    line-height: 1.4;
}

.stars-rating {
    color: #FFC107;
    font-size: 0.75rem;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 4px;
}

.stars-rating span {
    color: #999;
    margin-left: 4px;
    font-weight: 400;
}

.product-author {
    font-size: 0.8rem;
    color: #999;
    margin-bottom: 1rem;
}

.price-action {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 1.2rem;
    border-top: 1px solid #f5f5f5;
    gap: 10px;
}

.price-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.old-price {
    text-decoration: line-through;
    color: #ccc;
    font-size: 0.8rem;
}

.new-price {
    font-size: 1.2rem;
    font-weight: 800;
    color: #D4A017;
}

.add-to-cart-btn {
    background: #E8F5E9;
    color: #2E7D32;
    padding: 0.6rem 1rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.8rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    font-family: inherit;
    width: auto;
}

.add-to-cart-btn:hover {
    background: #2E7D32;
    color: white;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .hero h2 {
        font-size: 2rem;
    }
}

/* Page Banner */
.page-banner {
    background: radial-gradient(circle at 80% 20%, rgba(0, 168, 150, 0.15) 0%, transparent 50%),
                linear-gradient(135deg, #0a111a 0%, #0f1d2a 100%) !important;
    color: var(--white);
    padding: 5rem 0;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
    border-bottom: 4px solid var(--accent-gold) !important;
}

.page-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 80%, rgba(0, 168, 150, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.page-banner h1 {
    color: var(--white);
    margin-bottom: 0.75rem;
    font-size: 2.75rem;
    font-weight: 800;
    position: relative;
    z-index: 1;
    letter-spacing: -0.5px;
    text-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

.breadcrumb {
    font-size: 0.95rem;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.page-banner .breadcrumb a {
    color: rgba(255, 255, 255, 0.85) !important;
    transition: color 0.2s;
    font-weight: 500;
}

.page-banner .breadcrumb a:hover {
    color: var(--accent-gold) !important;
}

/* About Hero Banner Alignment */
.about-hero {
    background: radial-gradient(circle at 80% 20%, rgba(0, 168, 150, 0.18) 0%, transparent 50%),
                linear-gradient(rgba(10, 17, 26, 0.82), rgba(15, 29, 42, 0.92)),
                url('../images/hero2.png') !important;
    background-size: cover !important;
    background-position: center !important;
    padding: 100px 0 !important;
    border-bottom: 4px solid var(--accent-gold) !important;
    position: relative;
    overflow: hidden;
}

.breadcrumb a {
    color: var(--accent-gold);
    transition: color 0.3s ease;
    font-weight: 600;
}

.breadcrumb a:hover {
    color: var(--white);
}

/* Policy Pages */
.policy-container {
    max-width: 900px;
    margin-bottom: 5rem;
    position: relative;
}

.policy-container::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--accent-green) 0%, transparent 70%);
    opacity: 0.08;
    z-index: -1;
    border-radius: 50%;
}

.policy-container::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--accent-gold) 0%, transparent 70%);
    opacity: 0.05;
    z-index: -1;
    border-radius: 50%;
}

.policy-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 4rem;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05), 0 5px 15px rgba(0,0,0,0.03);
    border: 1px solid rgba(255,255,255,0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.policy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 45px rgba(0,0,0,0.08), 0 10px 20px rgba(0,0,0,0.05);
}

.policy-card h2 {
    color: var(--accent-green-dark);
    margin-top: 2.5rem;
    margin-bottom: 1.2rem;
    font-size: 1.8rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.policy-card h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-green), var(--accent-gold));
    border-radius: 2px;
}

.policy-card h2:first-child {
    margin-top: 0;
}

.policy-card p, .policy-card ul {
    color: var(--text-light);
    margin-bottom: 1.2rem;
    line-height: 1.8;
    font-size: 1.05rem;
}

.policy-card ul {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.policy-card li {
    margin-bottom: 0.8rem;
    position: relative;
    list-style-type: none;
}

.policy-card li::before {
    content: 'â€¢';
    color: var(--accent-green);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

@media (max-width: 768px) {
    .policy-card {
        padding: 2.5rem 1.5rem;
    }
    .page-banner {
        padding: 3rem 0;
    }
    .page-banner h1 {
        font-size: 2rem;
    }
}

/* --- Premium Desktop Navbar --- */
.nav-links {
    display: flex;
    align-items: center;
    gap: 2.2rem;
}

.nav-links a {
    position: relative;
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-dark);
    padding: 0.5rem 0;
    transition: var(--transition);
    letter-spacing: 0.5px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-green);
    transition: width 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-radius: 2px;
}

.nav-links a:hover {
    color: var(--accent-green);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Header tag reset — actual styling via .modern-header & .hero-header */
header {
    padding: 0;
    margin: 0;
    background: transparent;
    position: static;
    box-shadow: none;
    border: none;
}

/* Sticky scroll behaviour lives on the outer wrapper */
.hero-header.sticky,
.hero-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow 0.3s ease;
}

.hero-header.scrolled {
    box-shadow: 0 4px 20px rgba(74, 14, 23, 0.1);
}

/* Modern header top bar */
.modern-header {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 0;
}

/* Hide WhatsApp on Desktop */
.whatsapp-nav-btn {
    display: none !important;
}

/* Desktop Only: add horizontal padding to nav-container */
@media (min-width: 993px) {
    .nav-container {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

.user-name-desktop {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

/* Hamburger Menu Icon */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger-menu span {
    display: block;
    height: 2.5px;
    width: 100%;
    background: var(--accent-green-dark);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger-menu.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* --- Mobile Side Menu --- */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: -320px;
    width: 300px;
    height: 100%;
    background: var(--white);
    z-index: 9999;
    box-shadow: 20px 0 50px rgba(0,0,0,0.1);
    transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    display: flex;
    flex-direction: column;
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu-header {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #f0f0f0;
}

.mobile-logo img {
    height: 40px;
}

.close-menu {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-dark);
    cursor: pointer;
}

.mobile-menu-links {
    padding: 1.5rem 0;
    overflow-y: auto;
    flex-grow: 1;
}

.mobile-menu-links a {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.mobile-menu-links a i {
    width: 20px;
    color: var(--accent-green);
    font-size: 1.1rem;
}

.mobile-menu-links a:hover {
    background: #f8f9fa;
    color: var(--accent-green-dark);
    padding-left: 2rem;
}

.mobile-menu-footer {
    padding: 2rem 1.5rem;
    border-top: 1px solid #f0f0f0;
}

.mobile-socials {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.mobile-socials a {
    font-size: 1.5rem;
    color: var(--text-light);
    transition: color 0.3s ease;
}

.mobile-socials a:hover {
    color: var(--accent-green);
}

/* --- Search Overlay --- */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-overlay-header {
    padding: 2rem 0;
    border-bottom: 1px solid #eee;
}

.search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.search-icon-inner {
    position: absolute;
    left: 0;
    font-size: 1.5rem;
    color: var(--accent-green);
}

.search-input {
    width: 100%;
    border: none;
    padding: 1rem 3rem;
    font-size: 1.8rem;
    font-family: var(--font-serif);
    background: transparent;
    outline: none;
    color: var(--text-dark);
}

.close-search {
    position: absolute;
    right: 0;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--text-light);
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-search:hover {
    color: #d32f2f;
}

.search-results {
    flex-grow: 1;
    overflow-y: auto;
    padding: 3rem 0;
}

.search-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    border: 1px solid #f1f3f5;
    transition: all 0.3s ease;
}

.search-result-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    border-color: var(--accent-green);
}

.result-image {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

.result-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.result-info {
    flex-grow: 1;
}

.result-name {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
}

.result-price {
    color: var(--accent-green);
    font-weight: 700;
}

.search-loading, .no-results {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    padding: 3rem;
}

/* Scroll Lock */
body.no-scroll {
    overflow: hidden;
}

/* Responsive Header & Mobile Optimization */
@media (max-width: 992px) {
    /* Sticky wrapper is .hero-header, not header tag */
    .hero-header {
        position: sticky;
        top: 0;
        z-index: 1000;
        box-shadow: 0 2px 15px rgba(74,14,23,0.08);
    }

    .modern-header {
        background: rgba(255, 255, 255, 0.97);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        padding: 0;
    }

    .nav-links, .user-name-desktop {
        display: none !important;
    }
    
    .nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 15px;
    }

    .header-left {
        display: flex;
        align-items: center;
        gap: 0.8rem;
    }

    .hamburger-menu {
        display: flex;
        flex-shrink: 0;
    }

    .logo img {
        height: 30px !important;
        width: auto;
        display: block;
    }

    .nav-icons {
        display: flex;
        align-items: center;
        gap: 0.6rem;
    }

    .nav-icons a {
        font-size: 1.15rem !important;
        color: var(--text-dark);
        display: flex;
        align-items: center;
        justify-content: center;
        width: 34px;
        height: 34px;
        border-radius: 50%;
        transition: background 0.3s ease;
    }

    .nav-icons a:active {
        background: #f0f0f0;
    }

    /* Cart Badge Fix */
    .cart-icon {
        position: relative;
    }

    .cart-count {
        position: absolute;
        top: -2px;
        right: -2px;
        background: var(--accent-green);
        color: white;
        font-size: 0.65rem;
        min-width: 17px;
        height: 17px;
        padding: 0 4px;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        border: 2px solid var(--white);
        line-height: 1;
        z-index: 1;
    }

    /* Compact WhatsApp Button */
    .whatsapp-nav-btn {
        background: #25d366 !important;
        color: white !important;
        padding: 0 !important;
        width: 36px !important;
        height: 36px !important;
        border-radius: 50% !important;
        margin-left: 0.2rem !important;
        box-shadow: 0 4px 10px rgba(37, 211, 102, 0.2) !important;
    }

    .whatsapp-nav-btn span {
        display: none !important;
    }
    
    .whatsapp-nav-btn i {
        margin: 0 !important;
        font-size: 1.2rem;
    }
}

/* Extra Small Screens Adjustments */
@media (max-width: 375px) {
    .header-left {
        gap: 0.5rem;
    }
    .logo img {
        height: 26px !important;
    }
    .nav-icons {
        gap: 0.3rem;
    }
    .nav-icons a {
        width: 30px;
        height: 30px;
        font-size: 1.05rem !important;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9991;
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    transition: bottom 0.35s cubic-bezier(0.34,1.56,0.64,1), all 0.3s ease;
}

/* Push WhatsApp button up when compare bar is visible */
body.compare-bar-open .whatsapp-float {
    bottom: 96px;
}

.whatsapp-badge {
    background: rgba(255, 255, 255, 0.95);
    padding: 10px 18px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.5);
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: none;
    white-space: nowrap;
    text-align: right;
}

.whatsapp-float:hover .whatsapp-badge {
    opacity: 1;
    transform: translateX(0);
}

.whatsapp-badge .support-status {
    display: block;
    font-size: 0.75rem;
    color: #4caf50;
    margin-top: 2px;
    font-weight: 400;
}

.whatsapp-icon-wrapper {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    position: relative;
    animation: whatsapp-pulse 2s infinite;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.whatsapp-float:hover .whatsapp-icon-wrapper {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.5);
}

@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 25px;
        right: 20px;
    }
    .whatsapp-icon-wrapper {
        width: 55px;
        height: 55px;
        font-size: 28px;
    }
    .whatsapp-badge {
        display: none; /* Hide badge on mobile to prevent clutter */
    }
}

/* --- Our Partners Section --- */
.partners-section {
    padding: 8rem 0;
    background: #fdfaf5;
    border-top: 1px solid rgba(0,0,0,0.03);
}

.partners-section .section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.partners-section .section-header h2 {
    font-size: 3rem;
    color: var(--accent-green-dark);
    font-family: var(--font-serif);
    margin-bottom: 1.2rem;
}

.partners-section .section-header p {
    color: var(--text-light);
    font-size: 1.2rem;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2.5rem;
}

.partner-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.02);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0,0,0,0.02);
    height: 160px;
    position: relative;
    overflow: hidden;
}

.partner-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: transparent;
    transition: background 0.4s ease;
}

.partner-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.08);
    border-color: rgba(0,0,0,0.05);
}

.partner-logo-text {
    font-size: 2.4rem;
    font-weight: 900;
    filter: grayscale(100%);
    opacity: 0.3;
    transition: all 0.5s ease;
    font-family: 'Inter', sans-serif;
}

.partner-card.amazon:hover .partner-logo-text { color: #FF9900; filter: grayscale(0%); opacity: 1; }
.partner-card.flipkart:hover .partner-logo-text { color: #2874F0; filter: grayscale(0%); opacity: 1; }
.partner-card.jiomart:hover .partner-logo-text { color: #008ecc; filter: grayscale(0%); opacity: 1; }
.partner-card.blinkit:hover .partner-logo-text { color: #ffcc00; filter: grayscale(0%); opacity: 1; }

.partner-card.amazon:hover::after { background: #FF9900; }
.partner-card.flipkart:hover::after { background: #2874F0; }
.partner-card.jiomart:hover::after { background: #008ecc; }
.partner-card.blinkit:hover::after { background: #ffcc00; }

@media (max-width: 1200px) {
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .partners-grid {
        grid-template-columns: 1fr;
    }
    .partner-card {
        height: 130px;
        padding: 2rem;
    }
    .partner-logo-text {
        font-size: 2rem;
    }
    .partners-section {
        padding: 5rem 0;
    }
}

/* --- Our Story Page Styles --- */
.story-hero {
    height: 60vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/story/story_hero.png') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-bottom: 5rem;
}

.story-hero-content h1 {
    font-size: 4rem;
    font-family: var(--font-serif);
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards;
}

.story-hero-content p {
    font-size: 1.5rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s 0.3s forwards;
}

.story-section {
    padding: 8rem 0;
}

.story-flex {
    display: flex;
    align-items: center;
    gap: 5rem;
    margin-bottom: 8rem;
}

.story-flex:nth-child(even) {
    flex-direction: row-reverse;
}

.story-image {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.story-image:hover img {
    transform: scale(1.1);
}

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 2.5rem;
    color: var(--accent-green-dark);
    margin-bottom: 1.5rem;
    font-family: var(--font-serif);
}

.story-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* Gallery Section */
.story-gallery {
    padding-bottom: 8rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 400px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
    filter: brightness(0.8);
}

/* Trust Section */
.trust-section {
    background: #fdfaf5;
    padding: 8rem 0;
    text-align: center;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
}

.trust-card i {
    font-size: 3rem;
    color: var(--accent-green);
    margin-bottom: 1.5rem;
}

.trust-card h3 {
    margin-bottom: 0.5rem;
    color: var(--accent-green-dark);
}

/* CTA Section */
.story-cta {
    background: linear-gradient(135deg, var(--accent-green-dark), var(--accent-green));
    padding: 6rem 0;
    text-align: center;
    color: white;
}

.story-cta h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    font-family: var(--font-serif);
}

.cta-btn-premium {
    background: white;
    color: var(--accent-green-dark);
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    display: inline-block;
    transition: all 0.3s ease;
}

.cta-btn-premium:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    background: #f8f9fa;
    color: var(--accent-green);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 992px) {
    .story-flex, .story-flex:nth-child(even) {
        flex-direction: column;
        gap: 2rem;
        margin-bottom: 5rem;
    }
    .story-hero-content h1 {
        font-size: 2.5rem;
    }
    .story-section {
        padding: 4rem 0;
    }
}

/* --- Supported By Section --- */
.support-section {
    padding: 8rem 0;
    background: #ffffff;
    border-top: 1px solid rgba(0,0,0,0.03);
}

.support-section .section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.support-section .section-header h2 {
    font-size: 3rem;
    color: var(--accent-green-dark);
    font-family: var(--font-serif);
    margin-bottom: 1.2rem;
}

.support-section .section-header p {
    color: var(--text-light);
    font-size: 1.2rem;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.2rem;
}

.support-card {
    text-align: center;
    padding: 3rem 2rem;
    background: #faf8f6;
    border-radius: 24px;
    border: 1px solid #ebdccb;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
}

.support-card:hover {
    transform: translateY(-8px);
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(107, 31, 56, 0.08);
    border-color: var(--accent-gold);
}

.support-badge {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    background: rgba(107, 31, 56, 0.06) !important;
    color: var(--accent-gold) !important;
    border: 1px solid var(--accent-gold-light) !important;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.support-card:hover .support-badge {
    transform: scale(1.1) rotate(5deg);
    background: var(--accent-green-dark) !important;
    color: #ffffff !important;
    border-color: var(--accent-green-dark) !important;
}

.support-logo-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    width: 100%;
    background: white;
    border-radius: 12px;
    padding: 15px;
}

.support-logo-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: all 0.5s ease;
    filter: grayscale(100%);
    opacity: 0.6;
}

.support-card:hover .support-logo-wrapper img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

.support-card h3 {
    font-size: 1.4rem;
    color: var(--accent-green-dark);
    margin-bottom: 1.2rem;
    font-family: var(--font-serif);
}

.support-card p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
}

@media (max-width: 992px) {
    .support-section {
        padding: 5rem 0;
    }
    .support-grid {
        gap: 2rem;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .support-grid {
        grid-template-columns: 1fr;
    }
    .support-card {
        padding: 2.5rem 1.5rem;
    }
}

/* --- Contact Us Page Styles --- */
.contact-hero {
    height: 40vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/hero2.png') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-bottom: 5rem;
}

.contact-hero h1 {
    font-size: 3.5rem;
    font-family: var(--font-serif);
    margin-bottom: 1rem;
    animation: fadeInUp 1s forwards;
}

.contact-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    animation: fadeInUp 1s 0.3s forwards;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 6rem;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.contact-card {
    background: #fdfaf5;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(0,0,0,0.03);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.contact-card:hover {
    transform: translateY(-5px);
    background: white;
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
    border-color: var(--accent-green);
}

.contact-card i {
    font-size: 1.5rem;
    color: var(--accent-green);
    margin-bottom: 1.2rem;
    width: 45px;
    height: 45px;
    background: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

.contact-card h3 {
    font-size: 1.1rem;
    color: var(--accent-green-dark);
    margin-bottom: 0.5rem;
}

.contact-card p, .contact-card a {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    text-decoration: none;
}

/* Contact Form */
.contact-form-wrapper {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
}

.contact-form-wrapper h2 {
    margin-bottom: 2rem;
    color: var(--accent-green-dark);
    font-family: var(--font-serif);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.form-control {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 1px solid #eee;
    border-radius: 10px;
    background: #fcfcfc;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-green);
    background: white;
    box-shadow: 0 0 0 4px rgba(76, 175, 80, 0.1);
}

/* Map & Hours */
.map-section {
    margin-bottom: 6rem;
}

.map-container {
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.hours-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #f0f0f0;
}

.hours-card h4 {
    color: var(--accent-green);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

/* WhatsApp Card */
.whatsapp-contact-card {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    padding: 2.5rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 4rem;
}

.wa-content h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.wa-btn {
    background: white;
    color: #128C7E;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.wa-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
    .contact-hero h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }
    .whatsapp-contact-card {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
}

/* --- About Us Page Specific Styles --- */
.about-hero {
    height: 70vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/hero1.png') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-bottom: 0;
}

.about-hero-content h1 {
    font-size: 4.5rem;
    font-family: var(--font-serif);
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s forwards;
}

.about-hero-content p {
    font-size: 1.6rem;
    opacity: 0.9;
    animation: fadeInUp 1s 0.3s forwards;
    max-width: 800px;
    margin: 0 auto 2.5rem;
}

.mission-section {
    padding: 8rem 0;
    background: #fdfaf5;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.mission-card {
    background: white;
    padding: 4rem 3rem;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.02);
    border: 1px solid rgba(0,0,0,0.03);
    transition: all 0.5s ease;
}

.mission-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.08);
    border-color: var(--accent-green);
}

.mission-card i {
    font-size: 3rem;
    color: var(--accent-green);
    margin-bottom: 2rem;
}

.mission-card h3 {
    font-size: 1.8rem;
    color: var(--accent-green-dark);
    margin-bottom: 1.5rem;
    font-family: var(--font-serif);
}

.mission-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.value-item {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.value-item:hover {
    background: rgba(255, 255, 255, 0.09);
    border-color: var(--accent-gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.value-item i {
    font-size: 2.2rem;
    color: var(--accent-gold) !important;
    margin-bottom: 1.2rem;
    transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.value-item:hover i {
    transform: scale(1.15);
}

.value-item h4 {
    color: #ffffff !important;
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

/* Counters section */
.about-stats {
    padding: 6rem 0;
    background: var(--accent-green-dark);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 4rem;
    text-align: center;
}

.stat-item h2 {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 0.5rem;
    font-family: var(--font-serif);
}

.stat-item p {
    font-size: 1.1rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 2px;
}

@media (max-width: 992px) {
    .about-hero-content h1 {
        font-size: 3rem;
    }
    .about-hero-content p {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .mission-card {
        padding: 3rem 2rem;
    }
}

/* --- Privacy Policy Page --- */
.policy-container {
    padding-bottom: 8rem;
}

.policy-card {
    background: white;
    padding: 5rem;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.03);
}

.policy-card h2 {
    font-size: 2.2rem;
    color: var(--accent-green-dark);
    margin: 3rem 0 1.5rem;
    font-family: var(--font-serif);
}

.policy-card h2:first-of-type {
    margin-top: 0;
}

.policy-card p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.policy-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.policy-list li {
    position: relative;
    padding-left: 2.5rem;
    margin-bottom: 1.2rem;
    color: var(--text-light);
    line-height: 1.6;
}

.policy-list li::before {
    content: '\f058'; /* fa-check-circle */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--accent-green);
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .policy-card {
        padding: 3rem 2rem;
        border-radius: 20px;
    }
    
    .policy-card h2 {
        font-size: 1.8rem;
    }
}


/* --- Premium Footer --- */
.main-footer {
    background: #0f1a0f; /* Deepest organic green */
    color: white;
    padding: 6rem 0 0;
    margin-top: 8rem;
    position: relative;
    border-top: 4px solid var(--accent-green);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 4rem;
    padding-bottom: 5rem;
}

.footer-brand h3 {
    font-size: 2.2rem;
    color: white;
    margin-bottom: 1.2rem;
    font-family: var(--font-serif);
    letter-spacing: 1px;
}

.footer-brand p {
    opacity: 0.7;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.footer-tagline {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--accent-green);
    font-size: 1.1rem;
    display: block;
    margin-top: 1rem;
}

.footer-heading {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 12px;
    font-family: var(--font-serif);
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background: var(--accent-green);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 1.2rem;
}

.footer-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
}

.footer-links a:hover {
    color: var(--accent-green);
    transform: translateX(8px);
}

.footer-contact-info {
    list-style: none;
}

.footer-contact-info li {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 1.8rem;
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

.footer-contact-info i {
    color: var(--accent-green);
    margin-top: 4px;
    font-size: 1.1rem;
}

.company-meta {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
}

/* Social Icons */
.footer-socials {
    display: flex;
    gap: 0.8rem;
    margin-top: 2rem;
}

.social-icon {
    width: 42px;
    height: 42px;
    background: rgba(255,255,255,0.03);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.4s ease;
    border: 1px solid rgba(255,255,255,0.08);
}

.social-icon:hover {
    background: var(--accent-green);
    color: white;
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(76, 175, 80, 0.3);
    border-color: var(--accent-green);
}

/* Partners Strip */
.footer-strip {
    background: rgba(0,0,0,0.3);
    padding: 3.5rem 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.strip-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 3rem;
}

.partners-strip, .payments-strip {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    opacity: 0.4;
    filter: grayscale(100%);
    transition: all 0.6s ease;
}

.footer-strip:hover .partners-strip, 
.footer-strip:hover .payments-strip {
    opacity: 0.85;
    filter: grayscale(0%);
}

.partners-strip span, .payments-strip span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: white;
    margin-right: 1rem;
}

.strip-icons {
    display: flex;
    gap: 2rem;
    font-weight: 800;
    font-size: 1.1rem;
    color: white;
}

/* Newsletter Overlay */
.newsletter-wrapper {
    margin-top: -120px;
    margin-bottom: 80px;
    position: relative;
    z-index: 10;
}

.footer-newsletter {
    background: linear-gradient(135deg, var(--accent-green-dark), var(--accent-green));
    padding: 4rem 5rem;
    border-radius: 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}

.newsletter-text h3 {
    font-size: 2.2rem;
    color: white;
    margin-bottom: 0.8rem;
    font-family: var(--font-serif);
}

.newsletter-text p {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    background: white;
    padding: 0.6rem;
    border-radius: 60px;
    width: 480px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.newsletter-form input {
    flex: 1;
    border: none;
    padding: 0 1.8rem;
    border-radius: 50px;
    outline: none;
    font-size: 1rem;
}

.newsletter-form button {
    background: #0f1a0f;
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: black;
    transform: scale(1.02);
}

.footer-bottom {
    padding: 2.5rem 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.4);
}

.footer-bottom a {
    color: var(--accent-green);
    text-decoration: none;
}

/* --- Global Mobile Optimizations --- */
@media (max-width: 1200px) {
    .footer-newsletter {
        padding: 3.5rem;
    }
}

@media (max-width: 992px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
    .footer-newsletter {
        flex-direction: column;
        text-align: center;
        gap: 2.5rem;
        padding: 3rem 2rem;
        margin-top: -100px;
    }
    .newsletter-form {
        width: 100%;
        max-width: 500px;
    }
    .main-footer {
        padding-top: 4rem;
    }
    .section-padding {
        padding: 5rem 0;
    }
}

@media (max-width: 768px) {
    .strip-container {
        flex-direction: column;
        gap: 3rem;
    }
    .partners-strip, .payments-strip {
        flex-direction: column;
        gap: 1rem;
        opacity: 0.9;
        filter: grayscale(0%);
    }
    .strip-icons {
        gap: 1.5rem;
        font-size: 1.1rem;
        justify-content: center;
    }
    .hero-slider {
        height: 500px !important;
    }
    .slide h2 {
        font-size: 2.2rem !important;
    }
}

@media (max-width: 576px) {
    .footer-top {
        grid-template-columns: 1fr;
    }
    .footer-newsletter {
        padding: 4rem 1.5rem;
        border-radius: 30px;
        background: linear-gradient(165deg, #1a2e1a, #2d4d2d);
    }
    .newsletter-form {
        flex-direction: column;
        gap: 1rem;
        background: transparent;
        box-shadow: none;
    }
    .newsletter-form input {
        height: 60px;
        width: 100%;
        border-radius: 15px;
        background: #fff;
        text-align: center;
    }
    .newsletter-form button {
        height: 60px;
        width: 100%;
        border-radius: 15px;
        background: #000;
    }
}

/* --- Homepage Base Optimizations (Desktop Safe) --- */
.section-padding {
    padding: 6rem 0;
}

.bg-light {
    background: #fdfaf5;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.8rem;
    color: var(--accent-green-dark);
    font-family: var(--font-serif);
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

.feature-card {
    text-align: center;
    padding: 1.5rem;
}

.feature-card i {
    font-size: 3rem;
    color: var(--accent-green);
    margin-bottom: 1.5rem;
    display: inline-block;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent-green-dark);
}

.health-flex {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.health-image, .health-content {
    flex: 1;
}

.health-image img {
    width: 100%;
    border-radius: 20px;
}

.benefit-list {
    list-style: none;
    padding: 0;
}

.benefit-list li {
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.benefit-list i {
    color: var(--accent-green);
}

.health-content .btn {
    margin-top: 2rem;
}

/* Health Section Mobile Fixes */
@media (max-width: 768px) {
    .health-section {
        padding: 4rem 0;
    }
    .health-flex {
        flex-direction: column;
        gap: 2.5rem;
    }
    .health-image {
        width: 100%;
        max-width: 450px;
        margin: 0 auto;
        order: 1; /* Image on top */
    }
    .health-image img {
        box-shadow: 0 15px 35px rgba(0,0,0,0.1);
        border: 1px solid rgba(0,0,0,0.05);
    }
    .health-content {
        width: 100%;
        text-align: left;
        order: 2; /* Content below */
        padding: 0 5px;
    }
    .health-content h2 {
        font-size: 2.2rem;
        text-align: center;
        margin-bottom: 1.5rem;
        line-height: 1.3;
    }
    .health-content p {
        font-size: 1.05rem;
        margin-bottom: 2rem;
        text-align: center;
    }
    .benefit-list {
        margin-bottom: 2.5rem;
    }
    .benefit-list li {
        align-items: flex-start;
        gap: 1rem;
        margin-bottom: 1.5rem;
        font-size: 1rem;
    }
    .benefit-list i {
        margin-top: 4px;
        font-size: 1.1rem;
    }
    .health-content .btn {
        display: block;
        width: 100%;
        max-width: 280px;
        margin: 0 auto !important;
        text-align: center;
        padding: 1.1rem 2rem;
    }
}

/* --- Coupon Section Styling --- */
#coupon-code {
    transition: all 0.3s ease;
    border: 2px solid #eee;
}

#coupon-code:focus {
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 4px rgba(251, 192, 45, 0.1);
    outline: none;
}

.fa-tag.pulse {
    animation: tag-pulse 2s infinite;
}

@keyframes tag-pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.badge-coupon {
    background: #e8f5e9;
    color: #2e7d32;
    padding: 0.2rem 0.6rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
}

/* --- Premium Testimonials Section --- */
.testimonials-luxury {
    background: linear-gradient(180deg, #ffffff 0%, #fdfaf5 100%);
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.testimonials-luxury::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 20%, rgba(56, 142, 60, 0.03) 0%, transparent 40%),
                radial-gradient(circle at 90% 80%, rgba(251, 192, 45, 0.03) 0%, transparent 40%);
    pointer-events: none;
}

.testimonial-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 5rem;
}

.testimonial-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--accent-green-dark);
}

.testimonial-header .subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.testimonial-card-premium {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.03);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card-premium:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    background: #ffffff;
    border-color: var(--accent-green);
}

.quote-icon {
    position: absolute;
    top: 2rem;
    right: 2.5rem;
    font-size: 2.5rem;
    color: var(--accent-green);
    opacity: 0.1;
    transition: all 0.5s ease;
}

.testimonial-card-premium:hover .quote-icon {
    opacity: 0.2;
    transform: rotate(-10deg);
}

.stars-rating {
    margin-bottom: 1.5rem;
    color: var(--accent-gold);
    font-size: 0.9rem;
    display: flex;
    gap: 4px;
}

.testimonial-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 2.5rem;
    position: relative;
    font-family: var(--font-serif);
}

.customer-meta {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.customer-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.customer-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.customer-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
    color: var(--accent-green-dark);
    font-family: var(--font-sans);
    font-weight: 700;
}

.customer-location {
    font-size: 0.85rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.verified-badge {
    background: rgba(56, 142, 60, 0.1);
    color: var(--accent-green);
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-top: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    align-self: flex-start;
}

/* Scroll Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Layout Grids */
.banner-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.vertical-banner-grid-left {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 2.5rem;
}

.vertical-banner-grid-right {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 2.5rem;
}

@media (max-width: 992px) {
    .banner-grid-2,
    .vertical-banner-grid-left,
    .vertical-banner-grid-right {
        grid-template-columns: 1fr;
    }
    .vertical-banner {
        height: 300px;
    }
}

.review-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.review-stat:hover {
    transform: translateY(-10px);
    border-color: var(--accent-gold) !important;
    box-shadow: var(--shadow-lg);
}

.newsletter-form-responsive {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    gap: 10px;
}

@media (max-width: 768px) {
    .review-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .review-stats-grid {
        grid-template-columns: 1fr;
    }
    .newsletter-form-responsive {
        flex-direction: column;
    }
}

/* Global Responsive Improvements */
html, body {
    overflow-x: hidden;
    width: 100%;
}

img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 1024px) {
    .nav-container {
        gap: 1rem;
    }
    .header-search {
        order: 3;
        flex: 1 1 100%;
        max-width: none;
    }
    .hero-text h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0.5rem 1rem;
    }
    .logo img {
        height: 40px;
    }
    .header-contact {
        display: none;
    }
    .secondary-nav .container {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    .nav-links {
        gap: 1.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    .hero-text h1 {
        font-size: 2.8rem;
    }
    .health-flex {
        flex-direction: column;
    }
    .health-image {
        height: 300px !important;
    }
    .banner-card {
        height: 250px !important;
    }
    .footer-top {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 2rem !important;
    }
}

@media (max-width: 576px) {
    .new-hero {
        padding: 3rem 0;
    }
    .new-hero .container {
        flex-direction: column;
        text-align: center;
    }
    .hero-text h1 {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    .hero-illustration {
        margin-top: 2rem;
    }
    .products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }
    .product-card {
        padding: 0.8rem;
    }
    .product-title {
        font-size: 0.85rem;
        height: 2.4rem;
    }
    .price-action {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    .add-to-cart-btn {
        width: 100%;
        font-size: 0.7rem;
        padding: 0.5rem;
        justify-content: center;
    }
    .section-header h2 {
        font-size: 1.8rem;
    }
    .banner-card {
        height: 200px !important;
    }
    .banner-card h3 {
        font-size: 1.5rem !important;
    }
    .footer-top {
        grid-template-columns: 1fr !important;
    }
    .vertical-banner {
        height: 250px;
    }
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    .whatsapp-badge {
        display: none;
    }
}

/* ==========================================
   MODERN PREMIUM GLASSMORPHIC HEADER STYLES
   ========================================== */

/* Announcement Ticker Bar */
.announcement-bar {
    background: var(--accent-green-dark);
    color: var(--white);
    padding: 0.5rem 0;
    text-align: center;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    border-bottom: 1px solid rgba(197, 168, 128, 0.2);
    text-transform: uppercase;
}

.announcement-bar-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Modern Header Container */
.modern-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.90) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(197, 168, 128, 0.15);
    box-shadow: 0 4px 30px rgba(74, 14, 23, 0.03);
    padding: 0.75rem 0 !important;
    transition: var(--transition);
}

/* Modern Logo styling */
.modern-logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.modern-logo-img {
    height: 52px !important;
    width: auto;
    object-fit: contain;
    border: 2px solid var(--accent-gold);
    border-radius: 50%;
    padding: 2px;
    background: #fff;
    box-shadow: 0 4px 10px rgba(197, 168, 128, 0.15);
    transition: var(--transition);
}

.modern-logo-link:hover .modern-logo-img {
    transform: rotate(360deg);
}

.modern-logo-text {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-green-dark);
    letter-spacing: 3px;
    text-shadow: 0 1px 1px rgba(0,0,0,0.05);
}

.logo-accent {
    color: var(--accent-gold);
    font-size: 2rem;
}

/* Modern minimalist search capsule */
.modern-search-form {
    position: relative;
    width: 100%;
}

.modern-search-input {
    width: 100%;
    padding: 0.75rem 1.5rem 0.75rem 3rem !important;
    border: 1px solid rgba(197, 168, 128, 0.25) !important;
    border-radius: 50px !important;
    background: rgba(252, 251, 249, 0.8) !important;
    outline: none !important;
    color: var(--text-dark);
    font-family: var(--font-sans);
    font-size: 0.85rem;
    transition: var(--transition) !important;
    box-shadow: inset 0 2px 4px rgba(74, 14, 23, 0.01);
}

.modern-search-input:focus {
    background: #fff !important;
    border-color: var(--accent-green) !important;
    box-shadow: 0 0 0 3px rgba(107, 31, 56, 0.08) !important;
}

.modern-search-icon {
    position: absolute;
    left: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent-gold);
    font-size: 0.9rem;
    transition: var(--transition);
}

.modern-search-input:focus + .modern-search-icon {
    color: var(--accent-green);
    transform: translateY(-50%) scale(1.1);
}

/* Modern Action Icons */
.modern-icon-link {
    font-size: 1.5rem;
    color: var(--accent-green-dark);
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    text-decoration: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(197, 168, 128, 0.05);
}

.modern-icon-link:hover {
    color: var(--accent-gold);
    background: rgba(107, 31, 56, 0.05);
    transform: translateY(-2px);
}

.modern-icon-link .cart-count {
    position: absolute;
    top: -2px;
    right: -2px;
    background: var(--accent-green) !important;
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
    box-shadow: 0 2px 5px rgba(107, 31, 56, 0.2);
}

/* Modern Support Widget */
.header-contact {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-left: 15px;
    border-left: 1px solid rgba(197, 168, 128, 0.2);
}

.support-gold-icon {
    color: var(--accent-gold);
    font-size: 1.1rem;
    animation: pulse 2s infinite;
}

.support-text {
    display: flex;
    flex-direction: column;
}

.support-label {
    color: var(--text-muted);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.support-num {
    color: var(--accent-green-dark);
    font-size: 0.8rem;
    font-weight: 700;
}

/* Modern Secondary Navigation Links & Dropdowns */
.secondary-nav {
    background: transparent !important;
    border-top: 1px solid rgba(197, 168, 128, 0.15) !important;
    border-bottom: 1px solid rgba(197, 168, 128, 0.15) !important;
    margin-top: 10px !important;
}

.secondary-nav .container {
    padding: 0.4rem 20px !important;
}

.categories-dropdown-btn {
    background: var(--accent-green-dark) !important;
    border: 1px solid rgba(197, 168, 128, 0.3) !important;
    border-radius: 50px !important;
    font-size: 0.8rem !important;
    letter-spacing: 1px !important;
    padding: 0.6rem 1.4rem !important;
    transition: var(--transition) !important;
}

.categories-dropdown-btn:hover {
    background: var(--accent-green) !important;
    box-shadow: 0 4px 15px rgba(107, 31, 56, 0.2) !important;
    transform: translateY(-1px);
}

/* Animated Underline navigation links */
.nav-links {
    gap: 3rem !important;
}

.nav-links a {
    position: relative;
    padding: 6px 0;
    font-size: 0.85rem !important;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--accent-green-dark) !important;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--accent-gold) !important;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    transform: translateX(-50%);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Modern Track Order button */
.track-order {
    font-size: 0.8rem !important;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--accent-green-dark) !important;
    font-weight: 700 !important;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    padding: 6px 12px;
    border-radius: 50px;
    background: rgba(197, 168, 128, 0.08);
    border: 1px solid rgba(197, 168, 128, 0.15);
}

.track-order:hover {
    color: var(--white) !important;
    background: var(--accent-green) !important;
    border-color: var(--accent-green) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(107, 31, 56, 0.15);
}

.track-gold-icon {
    color: var(--accent-gold);
    font-size: 0.95rem;
    transition: var(--transition);
}

.track-order:hover .track-gold-icon {
    color: var(--white);
    transform: translateX(3px);
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}


/* ============================================
   NCIEM / EDGETECK CUSTOM CLONE STYLES
   ============================================ */

/* Top Utility Bar */
.top-utility-bar {
    background-color: #fafbfc;
    border-bottom: 1px solid #e2e8f0;
    padding: 0.5rem 0;
    font-size: 0.82rem;
    color: #475569;
}
.top-utility-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-utility-bar a {
    color: #475569;
    transition: color 0.2s;
    margin-left: 1.5rem;
}
.top-utility-bar a:hover {
    color: var(--accent-gold);
}

/* Main Header Sticky */
.main-header-sticky {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #ffffff;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid #f1f5f9;
}

/* Search bar nciem style */
.search-bar-nciem {
    display: flex;
    align-items: center;
    border: 1px solid #cbd5e1;
    border-radius: 4px;
    background: #f8fafc;
    flex: 1;
    max-width: 650px;
    overflow: hidden;
}
.search-bar-nciem input {
    border: none;
    background: transparent;
    padding: 0.75rem 1rem;
    flex: 1;
    font-size: 0.88rem;
    outline: none;
}
.search-bar-nciem select {
    border: none;
    border-left: 1px solid #e2e8f0;
    background: transparent;
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
    color: #475569;
    outline: none;
    cursor: pointer;
}
.search-bar-nciem button {
    border: none;
    background: var(--accent-green);
    color: white;
    padding: 0.75rem 1.5rem;
    cursor: pointer;
    transition: background 0.2s;
}
.search-bar-nciem button:hover {
    background: var(--accent-green-light);
}

/* Badges icons on right */
.nciem-header-icons {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.nciem-icon-btn {
    position: relative;
    font-size: 1.35rem;
    color: #334155;
    transition: color 0.2s;
}
.nciem-icon-btn:hover {
    color: var(--accent-green);
}
.nciem-icon-badge {
    position: absolute;
    top: -6px;
    right: -10px;
    background: #ef4444;
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 1px 5px;
    border-radius: 9999px;
    border: 2px solid white;
}

/* Navbar */
.nciem-navbar {
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
}
.nciem-navbar .container {
    display: flex;
    align-items: center;
    gap: 2rem;
}
.all-categories-btn {
    background: var(--accent-green);
    color: white;
    padding: 0.85rem 1.5rem;
    font-weight: 600;
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    border: none;
    transition: background 0.2s;
}
.all-categories-btn:hover {
    background: var(--accent-green-light);
}
.nciem-nav-links {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    flex-wrap: nowrap;
}
.nciem-nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: #334155;
    text-transform: capitalize;
    transition: color 0.2s;
    white-space: nowrap;
}
.nciem-nav-links a:hover {
    color: var(--accent-gold);
}

/* Hero Grid Layout */
.hero-grid-container {
    display: block;
    padding: 1.5rem 0;
}
.hero-sidebar-menu {
    display: none;
}

/* Main Hero Slider */
.hero-main-slider {
    background: #6B1D1D;
    border-radius: 12px;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 2000 / 527;
    height: auto;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), visibility 1s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    overflow: hidden;
}
.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}
.hero-slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1);
}
.hero-slide.active .hero-slide-image {
    animation: kenBurnsZoom 5.2s linear forwards;
}
.hero-main-slider:hover .hero-slide.active .hero-slide-image {
    animation-play-state: paused;
}

@keyframes kenBurnsZoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.06);
    }
}

/* Dark gradient overlays — colour coded per slide */
.hero-slide-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(0, 0, 0, 0.05);
}
.hero-slide-overlay--blue {
    background: linear-gradient(120deg, rgba(10,20,50,0.2) 0%, rgba(15,50,120,0.1) 60%, rgba(0,0,0,0) 100%);
}
.hero-slide-overlay--teal {
    background: linear-gradient(120deg, rgba(5,35,35,0.2) 0%, rgba(10,90,80,0.1) 60%, rgba(0,0,0,0) 100%);
}
.hero-slide-overlay--gold {
    background: linear-gradient(120deg, rgba(20,14,4,0.2) 0%, rgba(90,55,10,0.1) 60%, rgba(0,0,0,0) 100%);
}

/* Slide content sits above the overlay */
.hero-slide-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3.5rem 4rem;
    max-width: 62%;
}

/* Category tag above heading */
.hero-slide-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent-gold);
    margin-bottom: 0.9rem;
}

/* Main heading */
.hero-slide-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.18;
    margin-bottom: 1rem;
    text-shadow: 0 3px 16px rgba(0,0,0,0.45);
}

/* Subtext */
.hero-slide-content p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.82);
    line-height: 1.65;
    margin-bottom: 2rem;
    max-width: 480px;
}

/* CTA button row */
.hero-slide-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-green);
    color: #ffffff;
    padding: 0.75rem 1.8rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: background 0.2s, gap 0.2s, transform 0.2s;
    box-shadow: 0 4px 16px rgba(0,0,0,0.25);
}
.hero-btn-primary:hover {
    background: var(--accent-green-dark, #15803d);
    gap: 12px;
    transform: translateY(-1px);
}

.hero-btn-ghost {
    display: inline-flex;
    align-items: center;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.35);
    color: #ffffff;
    padding: 0.75rem 1.6rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: background 0.2s;
}
.hero-btn-ghost:hover {
    background: rgba(255,255,255,0.22);
}
.hero-slider-prev,
.hero-slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero-main-slider:hover .hero-slider-prev,
.hero-main-slider:hover .hero-slider-next {
    opacity: 1;
}
.hero-slider-prev:hover,
.hero-slider-next:hover {
    background: #ffffff;
    color: #6B1D1D;
    border-color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.hero-slider-prev {
    left: 25px;
    transform: translateY(-50%) translateX(-10px);
}
.hero-slider-next {
    right: 25px;
    transform: translateY(-50%) translateX(10px);
}
.hero-main-slider:hover .hero-slider-prev {
    transform: translateY(-50%) translateX(0);
}
.hero-main-slider:hover .hero-slider-next {
    transform: translateY(-50%) translateX(0);
}
.hero-slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
    background: rgba(15, 23, 42, 0.35);
    padding: 6px 14px;
    border-radius: 30px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.15);
}
.hero-slider-dots .dot {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    border-radius: 50%;
    transition: transform 0.2s ease;
}
.hero-slider-dots .dot:hover {
    transform: scale(1.15);
}
.circle-timer {
    width: 24px;
    height: 24px;
    transform: rotate(-90deg);
}
.circle-timer__bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.25);
    stroke-width: 3;
}
.circle-timer__progress {
    fill: none;
    stroke: #ffffff;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-dasharray: 100.5; /* 2 * PI * 16 = 100.53 */
    stroke-dashoffset: 100.5;
}
.hero-slider-dots .dot.active .circle-timer__progress {
    animation: circleTimerProgress 5s linear forwards;
}
.hero-main-slider:hover .hero-slider-dots .dot.active .circle-timer__progress {
    animation-play-state: paused;
}

@keyframes circleTimerProgress {
    0% {
        stroke-dashoffset: 100.5;
    }
    100% {
        stroke-dashoffset: 0;
    }
}
/* (legacy rules removed — hero-slide-content now defined above with white text) */

/* Policy Features Bar */
.policy-features-bar {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}
.policy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
}
.policy-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}
.policy-item i {
    font-size: 2rem;
    color: var(--accent-green);
}
.policy-item h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #6B1D1D;
    margin: 0;
}
.policy-item p {
    font-size: 0.85rem;
    color: #64748b;
    margin: 0;
}

/* Top Categories in Sales - Modernized Premium UI */
.top-cats-section {
    padding: 4.5rem 0;
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 24px;
    margin: 4rem 0;
    border: 1px solid #e2e8f0;
}
.top-cats-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 0 2rem;
}
.top-cats-subtitle {
    display: block;
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--accent-gold, #D4A24C);
    letter-spacing: 3px;
    margin-bottom: 0.6rem;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
}
.top-cats-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #6B1D1D;
    margin: 0;
    letter-spacing: -0.5px;
    font-family: 'Poppins', sans-serif;
    line-height: 1.2;
}
.top-cats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}
@media (max-width: 1200px) {
    .top-cats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 768px) {
    .top-cats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    .top-cats-section {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
    .top-cats-title {
        font-size: 1.75rem;
    }
}
.category-premium-card {
    background: #ffffff;
    border: 1px solid #e8ecf1;
    border-radius: 20px;
    padding: 2.5rem 1.75rem;
    text-align: center;
    transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    box-shadow: 0 4px 12px -2px rgba(0, 0, 0, 0.04), 0 2px 6px -1px rgba(0, 0, 0, 0.02);
    position: relative;
    overflow: hidden;
}
.category-premium-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--cat-accent), color-mix(in srgb, var(--cat-accent) 60%, #fff));
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: 2;
}
.category-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 30%, rgba(var(--cat-accent-rgb), 0.05) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}
.category-premium-card:hover {
    border-color: rgba(var(--cat-accent-rgb), 0.3);
    transform: translateY(-10px);
    box-shadow: 0 24px 48px -12px rgba(var(--cat-accent-rgb), 0.2), 0 8px 20px -6px rgba(0,0,0,0.06);
}
.category-premium-card:hover::before {
    opacity: 1;
}
.category-icon-box {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--cat-accent-rgb), 0.08);
    color: var(--cat-accent);
    font-size: 1.75rem;
    transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    z-index: 1;
}
.category-premium-card:hover .category-icon-box {
    background: var(--cat-accent);
    color: #ffffff;
    transform: scale(1.12) rotate(3deg);
    box-shadow: 0 12px 24px -6px rgba(var(--cat-accent-rgb), 0.45);
}
.category-card-details {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    z-index: 1;
}
.category-card-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #4D1515;
    margin: 0;
    transition: color 0.3s ease;
    font-family: 'Poppins', sans-serif;
    line-height: 1.3;
}
.category-premium-card:hover .category-card-title {
    color: var(--cat-accent);
}
.category-card-count {
    font-size: 0.75rem;
    font-weight: 600;
    color: #64748b;
    background: #f1f5f9;
    padding: 0.2rem 0.7rem;
    border-radius: 100px;
    display: inline-block;
    transition: all 0.3s ease;
}
.category-premium-card:hover .category-card-count {
    background: rgba(var(--cat-accent-rgb), 0.08);
    color: var(--cat-accent);
}
.category-card-action {
    position: absolute;
    bottom: 1.25rem;
    right: 1.25rem;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #f1f5f9;
    color: #94a3b8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
    transform: translateX(-8px);
}
.category-premium-card:hover .category-card-action {
    opacity: 1;
    background: var(--cat-accent);
    color: #ffffff;
    transform: translateX(0) scale(1.05);
    box-shadow: 0 4px 14px -3px rgba(var(--cat-accent-rgb), 0.5);
}
.top-cats-footer {
    text-align: center;
    margin-top: 2.5rem;
}
.top-cats-view-all {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary, #6B1D1D);
    text-decoration: none;
    padding: 0.65rem 1.5rem;
    border-radius: 100px;
    border: 1.5px solid rgba(107, 29, 29, 0.15);
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}
.top-cats-view-all:hover {
    background: var(--primary, #6B1D1D);
    color: #ffffff;
    border-color: var(--primary, #6B1D1D);
    box-shadow: 0 4px 14px -3px rgba(107, 29, 29, 0.35);
}
.top-cats-view-all i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}
.top-cats-view-all:hover i {
    transform: translateX(4px);
}

/* Product Cards Grid & Design */
.nciem-product-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    transition: all 0.3s;
}
.nciem-product-card:hover {
    border-color: var(--accent-green);
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}
.nciem-product-image {
    width: 100%;
    aspect-ratio: 1.1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    background: #fafbfc;
    border-radius: 4px;
    overflow: hidden;
}
.nciem-product-image img {
    max-height: 160px;
    max-width: 90%;
    object-fit: contain;
    transition: transform 0.3s;
}
.nciem-product-card:hover .nciem-product-image img {
    transform: scale(1.05);
}
.nciem-product-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #4D1515;
    line-height: 1.4;
    height: 2.8rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-bottom: 0.75rem;
}
.nciem-product-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 0.75rem;
    border-top: 1px solid #f1f5f9;
}
.nciem-product-price {
    font-size: 1rem !important;
    font-weight: 700 !important;
    color: var(--accent-green) !important;
    white-space: nowrap !important;
}
.nciem-product-cart-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--accent-green);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 2px 6px rgba(15, 29, 42, 0.15);
}
.nciem-product-cart-btn:hover {
    background: var(--accent-gold);
    color: white;
    transform: scale(1.08);
}

/* Unified Shop & Homepage Product Card Styles */
.shop-card {
    background: white;
    border-radius: 18px;
    border: 1px solid #f0ece6;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.shop-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(74,14,23,0.1);
    border-color: var(--accent-gold-light);
}

.card-img-wrap {
    position: relative;
    aspect-ratio: 1/1;
    overflow: hidden;
    background: #faf8f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.shop-card:hover .card-img-wrap img {
    transform: scale(1.06);
}

.card-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #6B1D1D;
    color: white;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 6px;
    z-index: 2;
}

.card-body {
    padding: 0.8rem 1rem 1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-name {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: #4D1515;
    font-weight: 600;
    margin-bottom: 0.4rem;
    line-height: 1.35;
    height: 2.5rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.card-stars {
    color: #FBC02D;
    font-size: 0.75rem;
    margin-bottom: 0.4rem;
    display: flex;
    align-items: center;
    gap: 3px;
    height: 1rem;
}
.card-stars:not(:has(i)) {
    display: none !important;
}

.card-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 0.6rem;
    border-top: 1px solid #f5f0ea;
}

.price-new {
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    color: var(--accent-green) !important;
    white-space: nowrap !important;
}

.price-old {
    font-size: 0.78rem;
    color: #94a3b8;
    text-decoration: line-through;
    margin-left: 5px;
}

/* Tabs & Filter slider */
.tab-navigation {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 0.5rem;
}
.tab-btn {
    border: none;
    background: transparent;
    font-size: 0.95rem;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.2s;
}
.tab-btn:hover {
    color: var(--accent-green);
}
.tab-btn.active {
    color: var(--accent-green);
}
.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -9px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent-green);
}

/* Promos layout */
.promo-tri-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 1.5rem;
    margin: 3rem 0;
}
.promo-banner-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.promo-banner-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #6B1D1D;
    margin-bottom: 0.5rem;
}
.promo-banner-card p {
    font-size: 0.88rem;
    color: #475569;
    margin-bottom: 1.5rem;
}
.promo-banner-card img {
    position: absolute;
    right: 10px;
    bottom: 10px;
    max-height: 120px;
    object-fit: contain;
    pointer-events: none;
}

/* Footer structure */
.nciem-footer {
    background: #6B1D1D;
    color: #94a3b8;
    padding: 4rem 0 2rem;
}
.nciem-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr;
    gap: 3rem;
}
.nciem-footer h4 {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}
.nciem-footer ul {
    list-style: none;
}
.nciem-footer li {
    margin-bottom: 0.75rem;
}
.nciem-footer a {
    color: #94a3b8;
    font-size: 0.88rem;
    transition: color 0.2s;
}
.nciem-footer a:hover {
    color: white;
}
.nciem-footer-bottom {
    border-top: 1px solid #4D1515;
    padding-top: 2rem;
    margin-top: 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
}

/* Category Round Cards Overrides Removed to Prevent Conflicts */

/* Tab Navigation styles */
.tab-navigation {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 1rem;
    flex-wrap: wrap;
}
.tab-btn {
    background: none;
    border: none;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    padding: 0.5rem 1rem;
    position: relative;
    transition: color 0.2s;
}
.tab-btn.active {
    color: var(--accent-green);
}
.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent-green);
}

/* NCIEM Product Page Layout */
.product-breadcrumb {
    padding: 1.5rem 0;
    font-size: 0.85rem;
    color: #64748b;
    border-bottom: 1px solid #f1f5f9;
    margin-bottom: 2.5rem;
}
.product-breadcrumb a {
    color: #475569;
    font-weight: 500;
    transition: color 0.2s;
}
.product-breadcrumb a:hover {
    color: var(--accent-gold);
}
.product-breadcrumb span {
    margin: 0 0.5rem;
    color: #cbd5e1;
}

.nciem-product-container {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 3rem;
    margin-bottom: 4rem;
}
@media (max-width: 992px) {
    .nciem-product-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Image Showcase */
.nciem-product-gallery {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.nciem-main-image-wrapper {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    box-shadow: var(--shadow-sm);
    position: relative;
}
.nciem-main-image-wrapper img {
    max-width: 100%;
    max-height: 380px;
    object-fit: contain;
}
.nciem-thumbnail-list {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.nciem-thumbnail-btn {
    width: 80px;
    height: 80px;
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    padding: 0.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}
.nciem-thumbnail-btn:hover,
.nciem-thumbnail-btn.active {
    border-color: var(--accent-gold);
    transform: scale(1.05);
}
.nciem-thumbnail-btn img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Product Info */
.nciem-product-info-panel {
    display: flex;
    flex-direction: column;
}
.nciem-brand-disclaimer {
    background: #f8fafc;
    border-left: 3px solid #cbd5e1;
    padding: 0.75rem 1rem;
    font-size: 0.78rem;
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.4;
    border-radius: 0 4px 4px 0;
}
.nciem-single-product-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--accent-green-dark);
    margin-bottom: 0.75rem;
    line-height: 1.25;
}
.nciem-stock-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0.35rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 9999px;
    text-transform: uppercase;
    width: fit-content;
    margin-bottom: 1.5rem;
}
.nciem-stock-badge.in-stock {
    background: #e2fbe8;
    color: #15803d;
}
.nciem-stock-badge.out-of-stock {
    background: #fee2e2;
    color: #b91c1c;
}
.nciem-single-product-price {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--accent-green);
    margin-bottom: 1.5rem;
}
.nciem-single-product-price span.old-price {
    font-size: 1.4rem;
    text-decoration: line-through;
    color: #94a3b8;
    margin-left: 1rem;
    font-weight: 500;
}

/* Service specs list */
.nciem-service-specs {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    padding: 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.nciem-service-specs li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.88rem;
    color: #475569;
}
.nciem-service-specs li i {
    color: var(--accent-gold);
    font-size: 0.95rem;
    margin-top: 3px;
    width: 16px;
    text-align: center;
}

/* SKU categories */
.nciem-meta-details {
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.nciem-meta-details strong {
    color: #334155;
}

/* Action forms */
.nciem-purchase-wrapper {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}
.nciem-qty-selector {
    display: flex;
    align-items: center;
    border: 1px solid #cbd5e1;
    border-radius: 4px;
    height: 48px;
    overflow: hidden;
}
.nciem-qty-btn {
    border: none;
    background: #f8fafc;
    width: 38px;
    height: 100%;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: #475569;
    transition: background 0.2s;
}
.nciem-qty-btn:hover {
    background: #ebdccb;
}
.nciem-qty-input {
    border: none;
    width: 50px;
    height: 100%;
    text-align: center;
    font-size: 0.95rem;
    font-weight: 600;
    color: #4D1515;
    outline: none;
}
.nciem-add-to-cart-btn {
    background: transparent;
    color: var(--accent-green-dark);
    border: 2px solid var(--accent-green-dark);
    border-radius: 4px;
    height: 48px;
    padding: 0 2rem;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex: 1;
    min-width: 140px;
}
.nciem-add-to-cart-btn:hover {
    background: var(--accent-green-dark);
    color: white;
}
.nciem-buy-now-btn {
    background: var(--accent-green-dark);
    color: white;
    border: 2px solid var(--accent-green-dark);
    border-radius: 4px;
    height: 48px;
    padding: 0 2rem;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex: 1;
    min-width: 140px;
}
.nciem-buy-now-btn:hover {
    background: var(--accent-green);
    border-color: var(--accent-green);
}

/* Tabs implementation */
.nciem-product-tabs-wrapper {
    margin-top: 4rem;
    margin-bottom: 4rem;
}
.nciem-tab-content-panel {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 2.5rem;
    margin-top: -1px;
}
.nciem-tab-pane {
    display: none;
}
.nciem-tab-pane.active {
    display: block;
}
.nciem-tab-pane h3 {
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    color: var(--accent-green-dark);
}

/* Request a Quotation Sidebar Widget */
.nciem-quotation-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.nciem-quotation-header {
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 1rem;
}
.nciem-quotation-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent-green-dark);
    margin-bottom: 0.25rem;
}
.nciem-quotation-header p {
    font-size: 0.82rem;
    color: #64748b;
}
.nciem-quotation-method {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.nciem-quotation-icon-box {
    width: 40px;
    height: 40px;
    background: #f1f5f9;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-green);
    font-size: 1.1rem;
    flex-shrink: 0;
}
.nciem-quotation-method-details {
    flex: 1;
}
.nciem-quotation-method-details h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #334155;
    margin-bottom: 0.25rem;
}
.nciem-quotation-method-details p {
    font-size: 0.8rem;
    color: #64748b;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}
.nciem-quotation-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #f8fafc;
    border: 1px solid #cbd5e1;
    color: #475569;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.2s;
}
.nciem-quotation-btn:hover {
    background: var(--accent-green-dark);
    color: white;
    border-color: var(--accent-green-dark);
}

/* ── Mobile Layout Overhaul ── */

/* Default Hide Mobile Controls on Desktop */
.mobile-hamburger-btn {
    display: none !important;
}
.mobile-search-trigger, .mobile-lang-btn {
    display: none !important;
}

@media (max-width: 768px) {
    /* Hide top bar & secondary desktop navbar */
    .top-utility-bar {
        display: none !important;
    }
    .nciem-navbar {
        display: none !important;
    }

    /* Main sticky header mobile formatting */
    .main-header-sticky .container {
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 0.75rem 15px !important;
        gap: 0.5rem !important;
        max-width: 100% !important;
    }

    /* Left: Mobile hamburger button */
    .mobile-hamburger-btn {
        display: flex !important;
        background: none !important;
        border: none !important;
        font-size: 1.5rem !important;
        color: #334155 !important;
        cursor: pointer !important;
        padding: 0 !important;
        width: 32px !important;
        height: 32px !important;
        align-items: center !important;
        justify-content: flex-start !important;
    }

    /* Center: Centered Logo */
    .main-header-sticky .logo {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        flex: 1 !important;
    }
    .main-header-sticky .logo img {
        height: 35px !important;
        width: auto !important;
        margin: 0 auto !important;
    }

    /* Hide desktop search */
    .search-wrapper-nciem {
        display: none !important;
    }

    /* Right: Icons Bar with Cart + Search + Language */
    .nciem-header-icons {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-end !important;
        gap: 0.9rem !important;
        flex-shrink: 0 !important;
    }
    .nciem-header-icons .desktop-only-icon {
        display: none !important;
    }
    .mobile-search-trigger, .mobile-lang-btn {
        display: inline-flex !important;
        color: #334155 !important;
        font-size: 1.25rem !important;
    }

    /* ── Hero Section & Slider Mobile Overhaul ── */
    .hero-grid-container {
        grid-template-columns: 1fr !important;
        gap: 0 !important;
        padding: 0.5rem 0 !important;
    }
    
    .hero-sidebar-menu {
        display: none !important; /* Hide vertical category list on homepage */
    }

    .hero-main-slider {
        aspect-ratio: 16 / 9 !important;
        height: auto !important;
        min-height: 180px !important;
        border-radius: 6px !important;
        position: relative !important;
    }

    .hero-slide {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        display: block !important;
        opacity: 0 !important;
        visibility: hidden !important;
        transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), visibility 1s cubic-bezier(0.4, 0, 0.2, 1) !important;
    }

    .hero-slide.active {
        opacity: 1 !important;
        visibility: visible !important;
    }

    .hero-slide-content {
        max-width: 100% !important;
        width: 100% !important;
        padding: 1.5rem 1.25rem 1.75rem !important;
        justify-content: flex-end !important;
        box-sizing: border-box !important;
    }

    .hero-slide-tag {
        font-size: 0.65rem !important;
        margin-bottom: 0.4rem !important;
    }

    .hero-slide-content h2 {
        font-size: 1.4rem !important;
        margin-bottom: 0.5rem !important;
        line-height: 1.2 !important;
        color: #ffffff !important;
        font-weight: 800 !important;
    }

    .hero-slide-content p {
        font-size: 0.8rem !important;
        margin-bottom: 1rem !important;
        line-height: 1.4 !important;
        color: rgba(255,255,255,0.82) !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
    }

    .hero-slide-actions {
        gap: 0.6rem !important;
        flex-wrap: wrap !important;
    }

    .hero-btn-primary {
        padding: 0.55rem 1.2rem !important;
        font-size: 0.8rem !important;
        border-radius: 50px !important;
    }

    .hero-btn-ghost {
        padding: 0.55rem 1.1rem !important;
        font-size: 0.8rem !important;
        border-radius: 50px !important;
    }

    /* Navigation controls on mobile */
    .hero-slider-prev,
    .hero-slider-next {
        width: 32px !important;
        height: 32px !important;
        background: rgba(255,255,255,0.15) !important;
        opacity: 1 !important;
    }
    .hero-slider-prev {
        left: 8px !important;
    }
    .hero-slider-next {
        right: 8px !important;
    }
    .hero-slider-dots {
        bottom: 8px !important;
    }
    .hero-slider-dots .dot {
        width: 7px !important;
        height: 7px !important;
    }

    /* Policy Features Bar: Horizontal Auto Scroll Slider */
    .policy-features-bar {
        padding: 1rem 0.5rem !important;
        margin-bottom: 1.5rem !important;
        position: relative !important;
        overflow: hidden !important;
    }
    .policy-grid {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        -webkit-overflow-scrolling: touch !important;
        scroll-behavior: smooth !important;
        gap: 0 !important;
        scrollbar-width: none !important; /* Firefox */
    }
    .policy-grid::-webkit-scrollbar {
        display: none !important; /* Chrome/Safari */
    }
    .policy-item {
        flex: 0 0 100% !important;
        width: 100% !important;
        scroll-snap-align: center !important;
        border: none !important;
        padding: 0.5rem 1.5rem !important;
    }

    /* Tabbed navigation horizontal scrolling bar */
    .tab-navigation {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
        padding-bottom: 0.75rem !important;
        margin-bottom: 1.5rem !important;
        scrollbar-width: none !important; /* Firefox */
        gap: 0.5rem !important;
        border-bottom: 1px solid #e2e8f0 !important;
    }
    .tab-navigation::-webkit-scrollbar {
        display: none !important; /* Chrome/Safari */
    }
    .tab-btn {
        flex: 0 0 auto !important;
        white-space: nowrap !important;
        font-size: 0.88rem !important;
        padding: 0.5rem 1rem !important;
        border-radius: 9999px !important;
        background: #f1f5f9 !important;
        color: #475569 !important;
        transition: all 0.2s ease !important;
        border: none !important;
    }
    .tab-btn::after {
        display: none !important; /* Remove bottom border accent line on mobile */
    }
    .tab-btn.active {
        background: var(--accent-green) !important;
        color: #ffffff !important;
    }
}

/* ── Responsive Grid Layouts ── */
.nciem-product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.milestones-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

@media (max-width: 992px) {
    .nciem-product-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }
    .milestones-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
}

@media (max-width: 768px) {
    .nciem-product-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
        padding-bottom: 80px !important; /* Prevent overlap with floating buttons */
    }
    
    .nciem-product-card {
        padding: 0.75rem !important;
        border-radius: 6px !important;
    }
    
    .nciem-product-image {
        margin-bottom: 0.5rem !important;
        aspect-ratio: 1.05 !important;
    }
    
    .nciem-product-image img {
        max-height: 120px !important;
    }
    
    .nciem-product-title {
        font-size: 0.8rem !important;
        line-height: 1.35 !important;
        height: 2.7em !important;
        min-height: 2.7em !important;
        margin-bottom: 0.5rem !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
    }
    
    .nciem-product-price-row {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 6px !important;
        width: 100% !important;
        padding-top: 0.5rem !important;
    }
    
    .nciem-product-price {
        font-size: 0.85rem !important;
        font-weight: 700 !important;
        color: var(--accent-green, #00875a) !important;
        white-space: nowrap !important;
    }
    
    .nciem-product-cart-btn {
        width: 28px !important;
        height: 28px !important;
        font-size: 0.7rem !important;
        border-radius: 50% !important;
        background: var(--accent-green, #00875a) !important;
        color: #ffffff !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        flex-shrink: 0 !important;
        box-shadow: 0 2px 8px rgba(0, 135, 90, 0.2) !important;
        border: none !important;
    }

    /* Mobile overrides for shop-card (unified) */
    .shop-card {
        padding: 0.5rem !important;
        border-radius: 12px !important;
        border: 1px solid var(--accent-gold-light) !important;
        box-shadow: 0 4px 15px rgba(20, 13, 15, 0.03) !important;
    }
    .card-img-wrap {
        padding: 0.4rem !important;
        border-radius: 10px !important;
        margin-bottom: 0.4rem !important;
        background: #faf8f6 !important;
    }
    .card-body {
        padding: 0 !important;
        margin-top: 0.4rem !important;
        display: flex !important;
        flex-direction: column !important;
        flex: 1 !important;
    }
    .card-name {
        font-size: 0.8rem !important;
        line-height: 1.35 !important;
        height: 2.7em !important;
        min-height: 2.7em !important;
        margin-top: 0 !important;
        margin-bottom: 0.4rem !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
        color: #2A2A2A !important;
    }
    .card-stars {
        flex-wrap: wrap !important;
        row-gap: 2px !important;
        margin-bottom: 0.4rem !important;
        font-size: 0.68rem !important;
        gap: 2px !important;
        height: auto !important;
    }
    .card-stars i {
        color: #FFD700 !important;
    }
    .card-stars span {
        display: block !important;
        margin-left: 0 !important;
        width: 100% !important;
        font-size: 0.68rem !important;
        color: #888 !important;
    }
    .card-price-row {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 4px !important;
        width: 100% !important;
        margin-top: auto !important;
        padding-top: 0.6rem !important;
        border-top: 1px solid #f5f0ea !important;
    }
    .card-price-row > div {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 2px !important;
        flex: 1 !important;
        min-width: 0 !important;
    }
    .price-new {
        font-size: 0.78rem !important;
        color: var(--accent-green) !important;
        font-weight: 700 !important;
        white-space: nowrap !important;
    }
    .price-old {
        font-size: 0.65rem !important;
        color: #94a3b8 !important;
        text-decoration: line-through !important;
        white-space: nowrap !important;
        margin-left: 0 !important;
    }
}

@media (max-width: 576px) {
    .milestones-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
}

/* ── Product Page Mobile Redesign ── */
.nciem-product-mobile-layout {
    display: none;
}
.nciem-product-desktop-layout {
    display: grid;
}

/* Custom quantity selector with stacked + and - arrows */
.custom-qty-wrapper {
    display: flex;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    background: #ffffff;
    height: 48px;
    width: 90px;
    overflow: hidden;
    flex-shrink: 0;
}
.custom-qty-input {
    width: 55px;
    border: none;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: #6B1D1D;
    outline: none;
    background: transparent;
}
.custom-qty-arrows {
    display: flex;
    flex-direction: column;
    width: 35px;
    border-left: 1px solid #cbd5e1;
}
.qty-up, .qty-down {
    flex: 1;
    background: #f8fafc;
    border: none;
    color: #475569;
    font-size: 0.85rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    outline: none;
}
.qty-up {
    border-bottom: 1px solid #cbd5e1;
}
.qty-up:hover, .qty-down:hover {
    background: #e2e8f0;
}

@media (max-width: 768px) {
    .nciem-product-desktop-layout {
        display: none !important;
    }
    
    .nciem-product-mobile-layout {
        display: block !important;
        padding: 0 15px;
        margin-top: 1rem;
    }

    /* 1. Thumbnails row at top */
    .mobile-thumbnails-list {
        display: flex;
        gap: 0.5rem;
        overflow-x: auto;
        padding: 0.5rem 0;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
        margin-bottom: 0.75rem;
    }
    .mobile-thumbnails-list::-webkit-scrollbar {
        display: none;
    }
    .mobile-thumbnail-btn {
        width: 75px;
        height: 75px;
        background: #ffffff;
        border: 1px solid #e2e8f0;
        border-radius: 8px;
        padding: 0.4rem;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        transition: border-color 0.2s;
    }
    .mobile-thumbnail-btn.active {
        border: 2px solid var(--accent-gold);
    }
    .mobile-thumbnail-btn img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }

    /* Mobile Main Image Preview */
    .mobile-main-image-preview {
        display: flex;
        justify-content: center;
        align-items: center;
        background: #ffffff;
        border: 1px solid #e2e8f0;
        border-radius: 8px;
        padding: 1rem;
        margin-bottom: 1.25rem;
        min-height: 250px;
    }
    .mobile-main-image-preview img {
        max-height: 240px;
        max-width: 100%;
        object-fit: contain;
        transition: opacity 0.15s ease-in-out;
    }

    /* 2. Title */
    .mobile-product-title {
        font-size: 1.35rem;
        font-weight: 700;
        color: #6B1D1D;
        line-height: 1.3;
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
    }

    /* 3. Disclaimer */
    .mobile-brand-disclaimer {
        font-size: 0.75rem;
        color: #64748b;
        line-height: 1.45;
        margin-bottom: 0.75rem;
    }

    /* 4. Stock Badge */
    .mobile-stock-status {
        font-size: 0.88rem;
        font-weight: 600;
        margin-bottom: 0.75rem;
    }
    .mobile-stock-status.in-stock {
        color: var(--accent-green);
    }
    .mobile-stock-status.out-of-stock {
        color: #ef4444;
    }

    /* 5. Description snippet */
    .mobile-desc-snippet {
        font-size: 0.85rem;
        color: #475569;
        line-height: 1.6;
        margin-bottom: 0.75rem;
    }

    /* 6. Actions row (wishlist/compare) */
    .mobile-utility-actions {
        display: flex;
        gap: 1.5rem;
        margin-bottom: 1rem;
    }
    .mobile-utility-actions a {
        font-size: 0.88rem;
        font-weight: 600;
        color: #475569;
        display: flex;
        align-items: center;
        gap: 0.4rem;
        text-decoration: none;
    }

    /* 7. Price Display */
    .mobile-price-container {
        font-size: 1.6rem;
        font-weight: 700;
        color: #6B1D1D;
        margin-bottom: 1rem;
    }
    .mobile-price-container .old-price {
        font-size: 1.1rem;
        text-decoration: line-through;
        color: #94a3b8;
        margin-left: 0.5rem;
        font-weight: 400;
    }

    /* 8. Purchase actions row */
    .mobile-purchase-action-row {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        margin-bottom: 1.5rem;
    }
    .mobile-action-btn {
        flex: 1;
        height: 48px;
        border: none;
        border-radius: 8px;
        font-weight: 700;
        font-size: 0.88rem;
        line-height: 1.2;
        text-align: center;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background 0.2s;
    }
    .btn-add-cart {
        background: transparent;
        color: var(--accent-green-dark);
        border: 2px solid var(--accent-green-dark);
    }
    .btn-add-cart:hover {
        background: var(--accent-green-dark);
        color: #ffffff;
    }
    .btn-buy-now {
        background: var(--accent-green-dark);
        color: #ffffff;
        border: 2px solid var(--accent-green-dark);
    }
    .btn-buy-now:hover {
        background: var(--accent-green);
        border-color: var(--accent-green);
    }

    /* Tabs Section */
    .mobile-product-tabs {
        margin-top: 2rem;
        border: 1px solid #e2e8f0;
        border-radius: 8px;
        overflow: hidden;
        background: #ffffff;
        margin-bottom: 2rem;
    }
    .mobile-tabs-nav {
        display: flex;
        background: #f8fafc;
        border-bottom: 1px solid #e2e8f0;
    }
    .mobile-tab-nav-btn {
        flex: 1;
        border: none;
        background: transparent;
        padding: 0.85rem 0.5rem;
        font-size: 0.85rem;
        font-weight: 600;
        color: #475569;
        cursor: pointer;
        text-align: center;
        transition: all 0.2s;
        outline: none;
    }
    .mobile-tab-nav-btn.active {
        background: #ffffff;
        color: var(--accent-gold);
        border-bottom: 2px solid var(--accent-gold);
    }
    .mobile-tab-panes {
        padding: 1.25rem;
    }
    .mobile-tab-pane {
        display: none;
    }
    .mobile-tab-pane.active {
        display: block;
    }
    .mobile-specs-table {
        width: 100%;
        border-collapse: collapse;
        margin-top: 1rem;
    }
    .mobile-specs-table td {
        padding: 0.65rem 0.75rem;
        border-bottom: 1px solid #f1f5f9;
        font-size: 0.85rem;
    }
    .mobile-specs-table tr:last-child td {
        border-bottom: none;
    }
    .mobile-specs-table td:first-child {
        color: #64748b;
        width: 40%;
    }
    .mobile-specs-table td:last-child {
        color: #6B1D1D;
    }
    .mobile-download-link {
        background: #4D1515;
        color: #ffffff !important;
        padding: 0.5rem 1rem;
        border-radius: 4px;
        font-size: 0.8rem;
        font-weight: 600;
        text-decoration: none !important;
    }
}

/* Scroll to Top Button */
.scroll-to-top-btn {
    position: fixed;
    bottom: 95px;
    right: 20px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    color: #475569;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    z-index: 9991;
    opacity: 0;
    visibility: hidden;
    transition: bottom 0.35s cubic-bezier(0.34,1.56,0.64,1), opacity 0.3s ease, visibility 0.3s ease, background 0.2s ease;
}

/* Push scroll-to-top button above compare bar */
body.compare-bar-open .scroll-to-top-btn {
    bottom: 160px;
}
.scroll-to-top-btn.visible {
    opacity: 1;
    visibility: visible;
}
.scroll-to-top-btn:hover {
    background: #f1f5f9;
    color: #6B1D1D;
}

/* Mobile Footer Enhancements */
@media (max-width: 768px) {
    .nciem-footer {
        padding: 3rem 0 1.5rem !important;
    }
    .nciem-footer-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        text-align: left !important;
    }
    .nciem-footer-grid > div {
        border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
        padding-bottom: 1.5rem !important;
    }
    .nciem-footer-grid > div:last-child {
        border-bottom: none !important;
        padding-bottom: 0 !important;
    }
    .nciem-footer-grid .footer-socials {
        justify-content: flex-start !important;
    }
    .nciem-footer-grid .footer-contact-list {
        padding: 0 !important;
    }
    .nciem-footer-grid .footer-contact-list li {
        justify-content: flex-start !important;
        text-align: left !important;
    }
    .nciem-footer-payments {
        flex-direction: column !important;
        gap: 1rem !important;
        text-align: left !important;
        align-items: flex-start !important;
    }
}



/* ── Promo Banner Grid ── */
.promo-tri-grid {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 3rem;
    align-items: stretch;
}

.promo-banner-card {
    flex: 1;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.75rem 1.5rem;
    overflow: hidden;
    position: relative;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
    gap: 1rem;
    text-decoration: none;
}

.promo-banner-card:hover {
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}

.promo-banner-card--featured {
    flex: 1.5;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-color: #bbf7d0;
}

.promo-banner-body {
    flex: 1;
    min-width: 0;
}

.promo-banner-label {
    display: inline-block;
    color: var(--accent-gold);
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.4rem;
}

.promo-banner-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #6B1D1D;
    line-height: 1.3;
    margin-bottom: 0.5rem;
}

.promo-banner-card--featured .promo-banner-title {
    font-size: 1.3rem;
}

.promo-banner-desc {
    font-size: 0.84rem;
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.promo-banner-link {
    color: var(--accent-green);
    font-weight: 700;
    font-size: 0.82rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s;
}

.promo-banner-link:hover {
    gap: 10px;
}

.promo-banner-img-wrap {
    flex-shrink: 0;
    width: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.promo-banner-card--featured .promo-banner-img-wrap {
    width: 120px;
}

.promo-banner-img-wrap img {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.12));
    transition: transform 0.3s ease;
}

.promo-banner-card:hover .promo-banner-img-wrap img {
    transform: scale(1.06) rotate(-2deg);
}

@media (max-width: 768px) {
    .promo-tri-grid {
        flex-direction: column !important;
        gap: 1rem !important;
    }
    .promo-banner-card,
    .promo-banner-card--featured {
        flex: unset !important;
        padding: 1.25rem !important;
    }
    .promo-banner-img-wrap,
    .promo-banner-card--featured .promo-banner-img-wrap {
        width: 80px !important;
    }
    .promo-banner-title,
    .promo-banner-card--featured .promo-banner-title {
        font-size: 1rem !important;
    }
}

/* ── Promo BG Cards (Desktop 3-col + Mobile Slider) ── */
.promo-section {
    overflow: hidden;
}

.promo-track-wrapper {
    position: relative;
}

/* DESKTOP: 3-column flex row */
.promo-track {
    display: flex;
    gap: 1rem;
    align-items: stretch;
}

.promo-card {
    flex: 1;
    min-height: 240px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.promo-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.promo-card--featured {
    flex: 1.3;
}

/* Color Themes using Edgeteck soft accents */
.promo-card--blue {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}
.promo-card--gold {
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
}
.promo-card--green {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

/* Hot Deals badge */
.promo-card-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #ef4444;
    color: white;
    font-size: 0.68rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 50px;
    z-index: 3;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Card Content (Left side) */
.promo-card-content {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
    padding-right: 0.5rem;
}

.promo-card-label {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent-gold);
    margin-bottom: 0.35rem;
}

.promo-card-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--accent-green-dark);
    line-height: 1.25;
    margin-bottom: 0.5rem;
}

.promo-card--featured .promo-card-title {
    font-size: 1.5rem;
}

.promo-card-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.4;
    margin-bottom: 1rem;
}

/* Card Button */
.promo-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-green);
    color: #ffffff !important;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.5rem 1.1rem;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.2s, gap 0.2s;
    width: fit-content;
}

.promo-card-btn:hover {
    background: var(--accent-green-dark);
    gap: 12px;
}

/* Card Image (Right side) */
.promo-card-img-wrap {
    flex: 0.8;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    mix-blend-mode: multiply;
}

.promo-card-img-wrap img {
    max-width: 100%;
    max-height: 160px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.promo-card:hover .promo-card-img-wrap img {
    transform: scale(1.06) rotate(2deg);
}

.promo-card--blue .promo-card-img-wrap img {
    filter: brightness(1.08) contrast(1.08);
}

/* Dot indicators — hidden on desktop */
.promo-dots {
    display: none;
}

/* MOBILE: horizontal scroll slider */
@media (max-width: 768px) {
    .promo-track {
        display: flex;
        flex-direction: row !important;
        overflow-x: scroll;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 1rem !important;
        padding-bottom: 0.5rem;
        scrollbar-width: none;
    }
    .promo-track::-webkit-scrollbar {
        display: none;
    }
    .promo-card,
    .promo-card--featured {
        flex: 0 0 85vw !important;
        min-height: 200px !important;
        scroll-snap-align: start;
        border-radius: 12px !important;
        padding: 1.1rem !important;
    }
    .promo-card-title {
        font-size: 1.15rem !important;
    }
    .promo-card--featured .promo-card-title {
        font-size: 1.25rem !important;
    }
    .promo-card-desc {
        font-size: 0.75rem !important;
        margin-bottom: 0.8rem !important;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .promo-card-img-wrap img {
        max-height: 120px !important;
    }
    /* Show dots on mobile */
    .promo-dots {
        display: flex;
        justify-content: center;
        gap: 6px;
        margin-top: 1rem;
    }
    .promo-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #cbd5e1;
        cursor: pointer;
        transition: background 0.2s, transform 0.2s;
    }
    .promo-dot.active {
        background: var(--accent-green);
        transform: scale(1.3);
    }
}

/* ── Hero Slider Mobile Overrides (consolidated) ── */
@media (max-width: 768px) {
    .hero-grid-container {
        grid-template-columns: 1fr !important;
    }
    .hero-sidebar-menu {
        display: none !important;
    }
    .hero-main-slider {
        aspect-ratio: 16 / 9 !important;
        height: auto !important;
        min-height: 180px !important;
        border-radius: 10px !important;
    }
    .hero-slide-content {
        max-width: 100% !important;
        padding: 1.5rem 1.25rem 1.75rem !important;
        justify-content: flex-end !important;
    }
    .hero-slide-tag {
        font-size: 0.65rem !important;
        margin-bottom: 0.35rem !important;
    }
    .hero-slide-content h2 {
        font-size: 1.35rem !important;
        color: #ffffff !important;
        margin-bottom: 0.4rem !important;
        text-shadow: 0 2px 10px rgba(0,0,0,0.5) !important;
    }
    .hero-slide-content p {
        font-size: 0.78rem !important;
        color: rgba(255,255,255,0.82) !important;
        margin-bottom: 1rem !important;
        -webkit-line-clamp: 2 !important;
    }
    .hero-slide-actions {
        gap: 0.5rem !important;
    }
    .hero-btn-primary,
    .hero-btn-ghost {
        padding: 0.55rem 1.1rem !important;
        font-size: 0.78rem !important;
    }
}

/* ── Hot Sellers Section Redesign ── */
.hot-sellers-section {
    padding: 3.5rem 0;
    margin-bottom: 2rem;
}
.hot-sellers-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-bottom: 1.5px solid #e2e8f0;
    margin-bottom: 2.25rem;
    padding-bottom: 0px;
}
.hot-sellers-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: #6B1D1D;
    margin: 0;
    padding-bottom: 0.75rem;
    position: relative;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.5px;
}
.hot-sellers-title::after {
    content: '';
    position: absolute;
    bottom: -1.5px;
    left: 0;
    width: 45px;
    height: 3px;
    background: var(--accent-green, #00875a);
}
.hot-sellers-tabs {
    display: flex;
    gap: 1.5rem;
}
.hot-sellers-tab {
    background: none;
    border: none;
    font-size: 0.95rem;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    padding: 0 0 0.75rem 0;
    position: relative;
    transition: all 0.2s ease;
    font-family: 'Poppins', sans-serif;
}
.hot-sellers-tab:hover {
    color: #6B1D1D;
}
.hot-sellers-tab.active {
    color: #6B1D1D;
}
.hot-sellers-tab.active::after {
    content: '';
    position: absolute;
    bottom: -1.5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #6B1D1D; /* Dark indicator line as requested */
    border-radius: 3px 3px 0 0;
}
.hot-sellers-tab.active::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 7px;
    height: 7px;
    background: #6B1D1D;
    border-radius: 50%;
    z-index: 2;
}
.hot-sellers-contents {
    position: relative;
}
.hot-sellers-tab-content {
    display: none;
}
.hot-sellers-tab-content.active {
    display: block;
}
.hot-sellers-slider-track {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    gap: 1.5rem;
    padding: 0.5rem 0.25rem 1rem 0.25rem;
    scrollbar-width: none;
}
.hot-sellers-slider-track::-webkit-scrollbar {
    display: none;
}
.hot-sellers-card {
    flex: 0 0 calc(25% - 1.125rem);
    scroll-snap-align: start;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
}
.hot-sellers-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px -5px rgba(15, 23, 42, 0.08);
    border-color: #cbd5e1;
}
.hot-sellers-img-wrap {
    width: 100%;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}
.hot-sellers-img-wrap img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}
.hot-sellers-card:hover .hot-sellers-img-wrap img {
    transform: scale(1.05);
}
.hot-sellers-card-title-link {
    text-decoration: none;
}
.hot-sellers-card-title {
    font-size: 0.95rem;
    font-weight: 650;
    color: #4D1515;
    line-height: 1.45;
    height: 2.8rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin: 0 0 1.25rem 0;
    transition: color 0.2s;
    font-family: 'Poppins', sans-serif;
}
.hot-sellers-card:hover .hot-sellers-card-title {
    color: var(--accent-green, #00875a);
}
.hot-sellers-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}
.hot-sellers-price {
    font-size: 1.15rem;
    font-weight: 700;
    color: #6B1D1D;
    font-family: 'Poppins', sans-serif;
}
.hot-sellers-cart-btn {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: #f1f5f9;
    border: none;
    color: #475569;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}
.hot-sellers-cart-btn:hover {
    background: var(--accent-green, #00875a);
    color: #ffffff;
    transform: scale(1.05);
}
.hot-sellers-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 1.5rem;
}
.hot-sellers-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #cbd5e1;
    cursor: pointer;
    transition: all 0.2s ease;
}
.hot-sellers-dot.active {
    background: #6B1D1D;
    transform: scale(1.25);
}

/* Responsive Overrides */
@media (max-width: 1200px) {
    .hot-sellers-card {
        flex: 0 0 calc(33.333% - 1rem);
    }
}
@media (max-width: 768px) {
    .hot-sellers-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding-bottom: 0px;
    }
    .hot-sellers-tabs {
        width: 100%;
        overflow-x: auto;
        padding-bottom: 0.5rem;
        scrollbar-width: none;
    }
    .hot-sellers-tabs::-webkit-scrollbar {
        display: none;
    }
    .hot-sellers-card {
        flex: 0 0 calc(50% - 0.75rem);
        padding: 1.25rem;
    }
    .hot-sellers-img-wrap {
        height: 150px;
    }
    .hot-sellers-title {
        font-size: 1.5rem;
    }
}
@media (max-width: 480px) {
    .hot-sellers-card {
        flex: 0 0 85vw;
    }
}

.hot-sellers-play-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.35);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    backdrop-filter: blur(4px);
    transition: all 0.25s ease;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}
.hot-sellers-play-badge:hover {
    background: rgba(15, 23, 42, 0.7);
    transform: scale(1.1);
}

/* ==========================================================================
   FLIR EX PRO SERIES SLIDE STYLING
   ========================================================================== */

.hero-slide--flir {
    display: block;
    background: transparent;
}

.hero-slide-overlay--flir {
    /* Rich dynamic thermal mesh gradient mimicking heat mapping signature colors */
    background: linear-gradient(135deg, #0a0606 0%, #d84315 45%, #c62828 75%, #4a148c 100%);
    opacity: 0.95;
}

.flir-layout-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 1.1fr 1.6fr 1.3fr;
    align-items: center;
    padding: 1rem 3.5rem;
    z-index: 5;
    color: #ffffff;
    gap: 1rem;
}

.flir-top-right {
    position: absolute;
    top: 1.5rem;
    right: 3rem;
    z-index: 10;
}

.flir-brand-text {
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: 2px;
    color: #ffffff;
    font-family: var(--font-sans);
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.flir-col-left {
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 0.5rem;
    position: relative;
}

.flir-cameras-img {
    max-height: 380px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.75));
    animation: flirFloat 5s ease-in-out infinite;
    transform-origin: bottom center;
}

@keyframes flirFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-10px) scale(1.02); }
}

.flir-col-center {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 1rem;
}

.flir-tag {
    font-size: 0.72rem;
    font-weight: 800;
    color: #ffb74d;
    letter-spacing: 4px;
    margin-bottom: 0.6rem;
    text-transform: uppercase;
}

.flir-title {
    font-size: 3.4rem !important;
    font-weight: 800;
    color: #ffffff !important;
    line-height: 1.05;
    margin-bottom: 0.75rem;
    letter-spacing: -1px;
    text-shadow: 0 4px 12px rgba(0,0,0,0.35);
}

.flir-desc {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 1.8rem;
    line-height: 1.6;
    border-left: 3px solid #ff7043;
    padding-left: 12px;
    text-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.flir-actions {
    display: flex;
    gap: 1rem;
}

.flir-btn-primary {
    background: #ff5722;
    color: #ffffff !important;
    padding: 0.75rem 1.6rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(255, 87, 34, 0.4);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.flir-btn-primary:hover {
    background: #f4511e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 87, 34, 0.6);
}

.flir-btn-ghost {
    border: 1.5px solid rgba(255,255,255,0.45);
    background: rgba(255,255,255,0.08);
    color: #ffffff !important;
    padding: 0.75rem 1.6rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    backdrop-filter: blur(5px);
}

.flir-btn-ghost:hover {
    background: rgba(255,255,255,0.2);
    border-color: #ffffff;
    transform: translateY(-2px);
}

.flir-col-right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding: 3rem 0 1rem 1.5rem;
    align-items: flex-end;
}

.flir-spec-list {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    width: 100%;
    max-width: 290px;
}

.flir-spec-item {
    background: rgba(0, 0, 0, 0.35);
    border-right: 4px solid #ff5722;
    padding: 0.7rem 1.1rem;
    border-radius: 4px 0 0 4px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.06);
    border-right: 4px solid #ff5722;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.flir-spec-item:hover {
    background: rgba(0, 0, 0, 0.5);
    transform: translateX(-6px);
    border-color: rgba(255,255,255,0.15);
}

.flir-spec-name {
    display: block;
    font-size: 1.15rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
}

.flir-spec-desc {
    display: block;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.75);
    margin-top: 2px;
    letter-spacing: 0.5px;
}

.flir-badges {
    display: flex;
    gap: 0.6rem;
    margin-top: auto;
    width: 100%;
    justify-content: flex-end;
}

.flir-badge {
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255,255,255,0.12);
    padding: 0.45rem 0.65rem;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 5px;
    color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    white-space: nowrap;
}

.flir-badge i {
    color: #ff5722;
}

/* Responsive adjustments for tablet / mobile viewports */
@media (max-width: 992px) {
    .flir-layout-container {
        grid-template-columns: 1fr;
        padding: 1.5rem 2.5rem;
        gap: 0.5rem;
    }
    .flir-top-right {
        display: none;
    }
    .flir-col-left {
        display: none; /* Hide cameras to save viewport space */
    }
    .flir-col-right {
        display: none; /* Hide specs on mobile/tablet */
    }
    .flir-col-center {
        padding: 0;
        text-align: center;
        align-items: center;
    }
    .flir-title {
        font-size: 2.2rem !important;
    }
    .flir-desc {
        font-size: 0.85rem;
        border-left: none;
        padding-left: 0;
        margin-bottom: 1.25rem;
    }
    .flir-actions {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .flir-layout-container {
        padding: 1.5rem 1.25rem !important;
    }
    .flir-title {
        font-size: 1.8rem !important;
        line-height: 1.2;
    }
    .flir-desc {
        font-size: 0.78rem;
        margin-bottom: 1rem;
        line-height: 1.4;
    }
    .flir-btn-primary, .flir-btn-ghost {
        padding: 0.55rem 1.2rem;
        font-size: 0.78rem;
    }
}

/* ==========================================================================
   BRAND AND LOCAL HERO SLIDES LAYOUT OVERRIDES
   ========================================================================== */

/* Additel Slide Specifics */
.hero-slide--additel {
    display: block;
    background: transparent;
}
.hero-slide-overlay--additel {
    background: linear-gradient(135deg, #6B1D1D 0%, #1e3a8a 50%, #0ea5e9 100%);
    opacity: 0.95;
}
.hero-slide--additel .flir-tag {
    color: #38bdf8;
}
.hero-slide--additel .flir-btn-primary {
    background: #0284c7;
    box-shadow: 0 4px 15px rgba(2, 132, 199, 0.4);
}
.hero-slide--additel .flir-btn-primary:hover {
    background: #0369a1;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(2, 132, 199, 0.6);
}
.hero-slide--additel .flir-spec-item {
    border-right-color: #0284c7;
}
.hero-slide--additel .flir-badge i {
    color: #38bdf8;
}

/* Testo Slide Specifics */
.hero-slide--testo {
    display: block;
    background: transparent;
}
.hero-slide-overlay--testo {
    background: linear-gradient(135deg, #111827 0%, #374151 55%, #ea580c 100%);
    opacity: 0.95;
}
.hero-slide--testo .flir-tag {
    color: #fb923c;
}
.hero-slide--testo .flir-btn-primary {
    background: #ea580c;
    box-shadow: 0 4px 15px rgba(234, 88, 12, 0.4);
}
.hero-slide--testo .flir-btn-primary:hover {
    background: #c2410c;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(234, 88, 12, 0.6);
}
.hero-slide--testo .flir-spec-item {
    border-right-color: #ea580c;
}
.hero-slide--testo .flir-badge i {
    color: #fb923c;
}

/* Mitutoyo Slide Specifics */
.hero-slide--mitutoyo {
    display: block;
    background: transparent;
}
.hero-slide-overlay--mitutoyo {
    background: linear-gradient(135deg, #090d16 0%, #4D1515 65%, #ca8a04 100%);
    opacity: 0.95;
}
.hero-slide--mitutoyo .flir-tag {
    color: #fef08a;
}
.hero-slide--mitutoyo .flir-btn-primary {
    background: #ca8a04;
    box-shadow: 0 4px 15px rgba(202, 138, 4, 0.4);
}
.hero-slide--mitutoyo .flir-btn-primary:hover {
    background: #a16207;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(202, 138, 4, 0.6);
}
.hero-slide--mitutoyo .flir-spec-item {
    border-right-color: #ca8a04;
}
.hero-slide--mitutoyo .flir-badge i {
    color: #eab308;
}

/* Local Slide 1 Specifics */
.hero-slide--local1 {
    display: block;
    background: transparent;
}
.hero-slide--local1 .flir-tag {
    color: #93c5fd;
}
.hero-slide--local1 .flir-btn-primary {
    background: #2563eb;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
}
.hero-slide--local1 .flir-btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.6);
}
.hero-slide--local1 .flir-spec-item {
    border-right-color: #2563eb;
}
.hero-slide--local1 .flir-badge i {
    color: #60a5fa;
}

/* Local Slide 2 Specifics */
.hero-slide--local2 {
    display: block;
    background: transparent;
}
.hero-slide-overlay--teal {
    background: linear-gradient(135deg, #042f2e 0%, #115e59 60%, #0d9488 100%);
    opacity: 0.95;
}
.hero-slide--local2 .flir-tag {
    color: #2dd4bf;
}
.hero-slide--local2 .flir-btn-primary {
    background: #0d9488;
    box-shadow: 0 4px 15px rgba(13, 148, 136, 0.4);
}
.hero-slide--local2 .flir-btn-primary:hover {
    background: #0f766e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(13, 148, 136, 0.6);
}
.hero-slide--local2 .flir-spec-item {
    border-right-color: #0d9488;
}
.hero-slide--local2 .flir-badge i {
    color: #2dd4bf;
}

/* Local Slide 3 Specifics */
.hero-slide--local3 {
    display: block;
    background: transparent;
}
.hero-slide--local3 .flir-tag {
    color: #fcd34d;
}
.hero-slide--local3 .flir-btn-primary {
    background: #d97706;
    box-shadow: 0 4px 15px rgba(217, 119, 6, 0.4);
}
.hero-slide--local3 .flir-btn-primary:hover {
    background: #b45309;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(217, 119, 6, 0.6);
}
.hero-slide--local3 .flir-spec-item {
    border-right-color: #d97706;
}
.hero-slide--local3 .flir-badge i {
    color: #fbbf24;
}


/* ================================================================
   NEW SIDE BANNER SECTION (SBS) STYLES — Professional Redesign
   ================================================================ */

/* Section wrapper */
.sbs-section {
    margin: 2.5rem 0;
}

/* ---- Section Header ---- */
.sbs-section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 1.2rem;
    padding-bottom: 0.9rem;
    border-bottom: 2px solid #e2e8f0;
    gap: 1.5rem;
}

.sbs-header-left {
    flex: 1;
}

.sbs-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: #D4A24C;
    margin-bottom: 0.6rem;
}

.sbs-eyebrow i {
    font-size: 0.85rem;
}

.sbs-heading {
    font-size: 1.45rem;
    font-weight: 800;
    color: #0a111a;
    line-height: 1.2;
    margin-bottom: 0.3rem;
    letter-spacing: -0.5px;
}

.sbs-subheading {
    color: #64748b;
    font-size: 0.93rem;
    line-height: 1.5;
    margin: 0;
    max-width: 520px;
}

.sbs-view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    font-weight: 700;
    color: #0a111a;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid #D4A24C;
    padding-bottom: 3px;
    white-space: nowrap;
    transition: all 0.25s ease;
    flex-shrink: 0;
}

.sbs-view-all:hover {
    color: #D4A24C;
    gap: 14px;
}

/* ---- Layout Grid ---- */
.sbs-layout {
    display: grid;
    grid-template-columns: 210px 1fr;
    gap: 1.2rem;
    align-items: stretch;
}

.sbs-layout--reverse {
    grid-template-columns: 1fr 210px;
}

.sbs-layout--reverse .sbs-promo {
    order: 2;
}

.sbs-layout--reverse .sbs-products {
    order: 1;
}

/* ---- Side Promo Card ---- */
.sbs-promo {
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
    min-height: 0;
}

.sbs-promo:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 50px rgba(15, 23, 42, 0.22);
}

/* Teal variant (QC) */
.sbs-promo--teal {
    background: linear-gradient(160deg, #071118 0%, #0c1c2e 55%, #0d2535 100%);
    box-shadow: 0 10px 35px rgba(15, 23, 42, 0.18);
    border: 1px solid rgba(0, 168, 150, 0.15);
}

/* Gold variant (Calibrators) */
.sbs-promo--gold {
    background: linear-gradient(160deg, #100e0b 0%, #1f1a11 55%, #2a2215 100%);
    box-shadow: 0 10px 35px rgba(15, 23, 42, 0.18);
    border: 1px solid rgba(212, 162, 76, 0.15);
}

/* Decorative dot-grid pattern overlay */
.sbs-promo-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
    background-size: 22px 22px;
    pointer-events: none;
    z-index: 1;
}

/* Glowing accent orb */
.sbs-promo--teal::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, rgba(0, 168, 150, 0.25) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.sbs-promo--gold::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, rgba(212, 162, 76, 0.22) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

/* Body — top text zone */
.sbs-promo-body {
    flex: 1;
    padding: 1.3rem 1.4rem 1rem;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
}

/* Tag / badge */
.sbs-promo-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 168, 150, 0.15);
    border: 1px solid rgba(0, 168, 150, 0.3);
    color: #4dd9cc;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: 50px;
    width: fit-content;
    margin-bottom: 0.8rem;
}

.sbs-promo-tag--gold {
    background: rgba(212, 162, 76, 0.12);
    border-color: rgba(212, 162, 76, 0.3);
    color: #e6c84e;
}

.sbs-promo-title {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.3px;
    margin-bottom: 0.8rem;
}

/* Feature checklist */
.sbs-promo-features {
    list-style: none;
    padding: 0;
    margin: 0 0 0.8rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.sbs-promo-features li {
    display: flex;
    align-items: center;
    gap: 7px;
    color: rgba(255,255,255,0.78);
    font-size: 0.78rem;
    font-weight: 500;
}

.sbs-promo-features li i {
    color: #D4A24C;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.sbs-promo--gold .sbs-promo-features li i {
    color: #d4af37;
}

/* CTA button */
.sbs-promo-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #D4A24C;
    color: #ffffff;
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 50px;
    width: fit-content;
    margin-top: auto;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 168, 150, 0.35);
}

.sbs-promo-cta:hover {
    background: #009485;
    gap: 15px;
    box-shadow: 0 6px 22px rgba(0, 168, 150, 0.55);
    transform: translateY(-1px);
}

.sbs-promo-cta--gold {
    background: #d4af37;
    color: #1a1108;
    box-shadow: 0 4px 15px rgba(212, 162, 76, 0.4);
}

.sbs-promo-cta--gold:hover {
    background: #c49e2a;
    box-shadow: 0 6px 22px rgba(212, 162, 76, 0.6);
}

/* Foot — image + stat zone */
.sbs-promo-foot {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 0.8rem 1.2rem 1rem;
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(0, 168, 150, 0.15);
    margin-top: 0.6rem;
    gap: 0.7rem;
}

.sbs-promo-foot--gold {
    border-top-color: rgba(212, 162, 76, 0.15);
}

.sbs-promo-foot img {
    width: 62px;
    height: 62px;
    object-fit: contain;
    filter: drop-shadow(0 6px 12px rgba(0,0,0,0.5));
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    flex-shrink: 0;
}

.sbs-promo:hover .sbs-promo-foot img {
    transform: translateY(-6px) scale(1.08) rotate(-3deg);
}

.sbs-promo-foot-text {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
}

.sbs-promo-stat {
    font-size: 1.4rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
    letter-spacing: -0.5px;
}

.sbs-promo-stat-label {
    font-size: 0.72rem;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 3px;
}

/* ---- Products Grid ---- */
.sbs-products {
    flex: 1;
}

.sbs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    align-content: start;
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1100px) {
    .sbs-layout {
        grid-template-columns: 260px 1fr;
    }
    .sbs-layout--reverse {
        grid-template-columns: 1fr 260px;
    }
    .sbs-promo-title {
        font-size: 1.45rem;
    }
}

@media (max-width: 900px) {
    .sbs-layout,
    .sbs-layout--reverse {
        grid-template-columns: 1fr;
    }
    .sbs-layout--reverse .sbs-promo,
    .sbs-layout--reverse .sbs-products {
        order: unset;
    }
    .sbs-promo {
        min-height: 320px;
    }
    .sbs-promo-body {
        padding: 1.8rem 1.8rem 1.2rem;
    }
    .sbs-section-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 600px) {
    .sbs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    .sbs-heading {
        font-size: 1.45rem;
    }
    .sbs-promo-title {
        font-size: 1.4rem;
    }
    .sbs-promo-foot img {
        width: 70px;
        height: 70px;
    }
}

/* Product image hover zoom */
.nciem-main-image-wrapper img,
.mobile-main-image-preview img {
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.nciem-main-image-wrapper:hover img,
.mobile-main-image-preview:hover img {
    transform: scale(1.12);
}

/* ==========================================================================
   HOMEPAGE PROFESSIONAL REDESIGN
   ========================================================================== */

/* Main Homepage Wrapper */
.hp-main {
    background: var(--secondary-bg);
    padding-bottom: 4rem;
}

/* ── Section Headers ── */
.hp-section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}
.hp-section-eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--accent-gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 0.6rem;
}
.hp-section-title {
    font-size: 2rem;
    font-weight: 800;
    color: #6B1D1D;
    margin: 0 0 0.5rem;
    letter-spacing: -0.5px;
    line-height: 1.2;
}
.hp-section-subtitle {
    color: #64748b;
    font-size: 0.95rem;
    margin: 0;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* ── Policy Features Bar (Redesigned) ── */
/* Full-width section inner constraint */
main.hp-main > .hp-policy-section,
main.hp-main > .top-cats-section,
main.hp-main > .hot-sellers-section,
main.hp-main > .hp-products-section,
main.hp-main > .hp-about-section,
main.hp-main > .hp-trusted-section,
main.hp-main > .hp-milestones-section {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px !important;
    padding-right: 24px !important;
}

.hp-policy-section {
    margin-bottom: 2.5rem;
}
.hp-policy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
.hp-policy-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 1.75rem;
    transition: background 0.25s ease;
    position: relative;
}
.hp-policy-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 25%;
    height: 50%;
    width: 1px;
    background: #e2e8f0;
}
.hp-policy-item:hover {
    background: #f8fafc;
}
.hp-policy-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(107, 29, 29, 0.06) 0%, rgba(212, 162, 76, 0.06) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.2rem;
    color: var(--accent-green);
    transition: all 0.3s ease;
}
.hp-policy-item:hover .hp-policy-icon {
    background: var(--accent-green);
    color: #ffffff;
    transform: scale(1.05);
}
.hp-policy-text h4 {
    font-size: 0.92rem;
    font-weight: 700;
    color: #6B1D1D;
    margin: 0 0 0.2rem;
    font-family: var(--font-sans);
}
.hp-policy-text p {
    font-size: 0.8rem;
    color: #64748b;
    margin: 0;
    line-height: 1.45;
}

/* ── Tabbed Product Section ── */
.hp-products-section {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    margin-bottom: 3rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
.hp-products-section .tab-navigation {
    border-bottom: 1px solid #f1f5f9;
    margin-bottom: 2rem;
    padding-bottom: 0;
}
.hp-products-section .tab-btn {
    font-size: 0.88rem;
    padding: 0.6rem 1.2rem;
    border-radius: 8px 8px 0 0;
    font-weight: 600;
    color: #64748b;
    transition: all 0.25s ease;
    position: relative;
}
.hp-products-section .tab-btn:hover {
    color: var(--accent-green);
    background: rgba(107, 29, 29, 0.04);
}
.hp-products-section .tab-btn.active {
    color: var(--accent-green);
    background: rgba(107, 29, 29, 0.06);
}
.hp-products-section .tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent-green);
    border-radius: 3px 3px 0 0;
}

/* View More Button */
.hp-view-more-wrap {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #f1f5f9;
}
.hp-view-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--accent-green);
    border: 2px solid var(--accent-green);
    padding: 0.75rem 2.2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.88rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.hp-view-more-btn:hover {
    background: var(--accent-green);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(107, 29, 29, 0.2);
}
.hp-view-more-btn i {
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}
.hp-view-more-btn:hover i {
    transform: translateX(4px);
}

/* ── About KBR Foods Section ── */
.hp-about-section {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 3.5rem;
    margin-bottom: 3rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.03);
}
.hp-about-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 3.5rem;
    align-items: center;
}
.hp-about-content {
    min-width: 0;
}
.hp-about-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(212, 162, 76, 0.1) 0%, rgba(212, 162, 76, 0.05) 100%);
    border: 1px solid rgba(212, 162, 76, 0.2);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
}
.hp-about-badge i {
    font-size: 0.65rem;
}
.hp-about-title {
    font-size: 2rem;
    font-weight: 800;
    color: #6B1D1D;
    margin: 0 0 1.25rem;
    line-height: 1.2;
    letter-spacing: -0.5px;
}
.hp-about-desc {
    color: #475569;
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 1.25rem;
}
.hp-about-desc strong {
    color: #6B1D1D;
}
.hp-about-desc-muted {
    color: #64748b;
    line-height: 1.8;
    font-size: 0.92rem;
    margin-bottom: 2rem;
}
.hp-about-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent-green);
    color: #ffffff;
    padding: 0.85rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(107, 29, 29, 0.2);
}
.hp-about-cta:hover {
    background: var(--accent-green-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(107, 29, 29, 0.3);
}
.hp-about-cta i {
    transition: transform 0.3s ease;
}
.hp-about-cta:hover i {
    transform: translateX(4px);
}

/* Quality Promise Card */
.hp-quality-card {
    background: linear-gradient(145deg, #f8fafc 0%, #f1f5f9 100%);
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 2.25rem;
    position: relative;
    overflow: hidden;
}
.hp-quality-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-gold) 0%, var(--accent-green) 100%);
}
.hp-quality-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #6B1D1D;
    margin: 0 0 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(212, 162, 76, 0.3);
    display: flex;
    align-items: center;
    gap: 10px;
}
.hp-quality-title i {
    color: var(--accent-gold);
}
.hp-quality-item {
    margin-bottom: 1.25rem;
}
.hp-quality-item:last-child {
    margin-bottom: 0;
}
.hp-quality-item h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.92rem;
    font-weight: 700;
    color: #6B1D1D;
    margin: 0 0 0.35rem;
}
.hp-quality-item h4 i {
    color: var(--accent-gold);
    font-size: 0.85rem;
}
.hp-quality-item p {
    color: #475569;
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.6;
    padding-left: 1.85rem;
}
.hp-quality-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.hp-quality-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #475569;
    font-size: 0.85rem;
    margin-bottom: 0.6rem;
    line-height: 1.5;
}
.hp-quality-list li i {
    color: var(--accent-gold);
    font-size: 0.75rem;
    margin-top: 4px;
    flex-shrink: 0;
}

/* ── Trusted Bakers Section ── */
.hp-trusted-section {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 2rem 2.5rem;
    overflow: hidden;
    margin-bottom: 3rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
.hp-trusted-label {
    font-size: 0.7rem;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-align: center;
    margin-bottom: 1.5rem;
}
.hp-trusted-brands {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}
.hp-trusted-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.45;
    transition: opacity 0.3s ease;
}
.hp-trusted-brand:hover {
    opacity: 0.8;
}
.hp-trusted-brand-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: #64748b;
}
.hp-trusted-brand-name {
    font-weight: 800;
    font-size: 1.05rem;
    color: #475569;
    letter-spacing: 1px;
}

/* ── Milestones Section (Redesigned) ── */
.hp-milestones-section {
    padding: 3rem 0;
    margin-bottom: 1rem;
}
.hp-milestones-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.hp-milestone-card {
    background: #ffffff;
    padding: 2rem 1.5rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}
.hp-milestone-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent-gold);
    border-radius: 0 0 3px 3px;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.hp-milestone-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px -8px rgba(107, 29, 29, 0.1);
    border-color: rgba(212, 162, 76, 0.3);
}
.hp-milestone-card:hover::before {
    opacity: 1;
}
.hp-milestone-number {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--accent-green);
    margin-bottom: 0.75rem;
    line-height: 1;
    letter-spacing: -1px;
}
.hp-milestone-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(107, 29, 29, 0.06) 0%, rgba(212, 162, 76, 0.06) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
    color: var(--accent-gold);
    font-size: 1.15rem;
    transition: all 0.3s ease;
}
.hp-milestone-card:hover .hp-milestone-icon {
    background: var(--accent-green);
    color: #ffffff;
    transform: scale(1.1);
}
.hp-milestone-label {
    font-weight: 700;
    color: #6B1D1D;
    font-size: 0.88rem;
    margin-bottom: 0.25rem;
}
.hp-milestone-desc {
    color: #64748b;
    font-size: 0.78rem;
    margin: 0;
    line-height: 1.4;
}

/* ── Responsive: Homepage Professional ── */
@media (max-width: 992px) {
    .hp-about-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .hp-milestones-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hp-section-title {
        font-size: 1.6rem;
    }
    .hp-policy-grid {
        grid-template-columns: 1fr;
        border-radius: 12px;
    }
    .hp-policy-item:not(:last-child)::after {
        display: none;
    }
    .hp-policy-item {
        border-bottom: 1px solid #f1f5f9;
        padding: 1.25rem 1.5rem;
    }
    .hp-policy-item:last-child {
        border-bottom: none;
    }
    .hp-about-section {
        padding: 2rem 1.5rem;
        border-radius: 12px;
    }
    .hp-about-title {
        font-size: 1.5rem;
    }
    .hp-trusted-brands {
        gap: 1.5rem;
    }
    .hp-trusted-brand-name {
        font-size: 0.9rem;
    }
    .hp-products-section {
        padding: 1.5rem;
        border-radius: 12px;
    }
    .hp-milestones-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    .hp-milestone-card {
        padding: 1.5rem 1rem;
    }
    .hp-milestone-number {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .hp-milestones-grid {
        grid-template-columns: 1fr;
    }
    .hp-trusted-brands {
        gap: 1rem;
    }
}

/* ==========================================================================
   PREMIUM BAKING HERO SECTION
   ========================================================================== */

/* ==========================================================================
   MODERN HERO SECTION
   ========================================================================== */
.hp-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #FDF8F3 0%, #FEF5E7 30%, #FFF9F0 70%, #FDF8F3 100%);
    padding: 5rem 0 4rem;
    min-height: 600px;
    display: flex;
    align-items: center;
}

/* Mesh gradient blobs */
.hp-hero-blob {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(80px);
    z-index: 0;
}
.hp-hero-blob--1 {
    width: 500px; height: 500px;
    background: rgba(107, 29, 29, 0.06);
    top: -150px; left: -100px;
    animation: blob-drift 20s ease-in-out infinite;
}
.hp-hero-blob--2 {
    width: 400px; height: 400px;
    background: rgba(212, 162, 76, 0.08);
    bottom: -120px; right: 10%;
    animation: blob-drift 22s ease-in-out infinite reverse;
}
.hp-hero-blob--3 {
    width: 300px; height: 300px;
    background: rgba(192, 57, 43, 0.05);
    top: 20%; right: -80px;
    animation: blob-drift 18s ease-in-out infinite 3s;
}
.hp-hero-blob--4 {
    width: 250px; height: 250px;
    background: rgba(212, 162, 76, 0.06);
    bottom: 10%; left: 20%;
    animation: blob-drift 25s ease-in-out infinite 6s;
}
@keyframes blob-drift {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -20px) scale(1.05); }
    66% { transform: translate(-20px, 15px) scale(0.95); }
}

/* Inner grid */
.hp-hero-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
}

/* ── Content Side ── */
.hp-hero-content {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Entrance animations */
.hp-hero-animate {
    opacity: 0;
    transform: translateY(28px);
    animation: hero-fade-up 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: calc(var(--d, 0) * 0.12s);
}
@keyframes hero-fade-up {
    to { opacity: 1; transform: translateY(0); }
}

/* Badge */
.hp-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(107, 29, 29, 0.06);
    border: 1px solid rgba(107, 29, 29, 0.1);
    color: var(--accent-green, #6B1D1D);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    width: fit-content;
    margin-bottom: 1.75rem;
    font-family: var(--font-sans);
}
.hp-hero-badge i {
    color: var(--accent-gold, #D4A24C);
    font-size: 0.85rem;
}

/* Title */
.hp-hero-title {
    font-family: var(--font-serif);
    font-size: 4.2rem;
    line-height: 1.08;
    color: #6B1D1D;
    margin: 0 0 1.5rem;
    font-weight: 400;
    letter-spacing: -1.5px;
}
.hp-hero-title-accent {
    background: linear-gradient(135deg, var(--accent-gold, #D4A24C) 0%, #c9982e 50%, var(--accent-green, #6B1D1D) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: italic;
    font-weight: 500;
}

/* Description */
.hp-hero-desc {
    font-size: 1.08rem;
    line-height: 1.75;
    color: #64748b;
    margin: 0 0 2.25rem;
    max-width: 520px;
    font-family: var(--font-sans);
}

/* CTAs */
.hp-hero-ctas {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}
.hp-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0.9rem 2rem;
    border-radius: 14px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    font-family: var(--font-sans);
    letter-spacing: 0.3px;
    cursor: pointer;
}
.hp-hero-btn--primary {
    background: var(--accent-green, #6B1D1D);
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(107, 29, 29, 0.2);
}
.hp-hero-btn--primary:hover {
    background: var(--accent-gold, #D4A24C);
    color: #6B1D1D;
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(212, 162, 76, 0.3);
}
.hp-hero-btn--outline {
    background: transparent;
    color: var(--accent-green, #6B1D1D);
    border: 2px solid rgba(107, 29, 29, 0.15);
}
.hp-hero-btn--outline:hover {
    border-color: var(--accent-green, #6B1D1D);
    background: rgba(107, 29, 29, 0.04);
    transform: translateY(-2px);
}
.hp-hero-btn i {
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}
.hp-hero-btn--primary:hover i,
.hp-hero-btn--outline:hover i {
    transform: translateX(3px);
}

/* Trust row */
.hp-hero-trust {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.hp-hero-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
}
.hp-hero-trust-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(107, 29, 29, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-green, #6B1D1D);
    font-size: 0.85rem;
    flex-shrink: 0;
}
.hp-hero-trust-item strong {
    display: block;
    font-size: 0.78rem;
    color: #6B1D1D;
    font-weight: 700;
    line-height: 1.2;
}
.hp-hero-trust-item span {
    font-size: 0.68rem;
    color: #94a3b8;
    font-weight: 500;
}
.hp-hero-trust-divider {
    width: 1px;
    height: 32px;
    background: #e2e8f0;
    flex-shrink: 0;
}

/* ── Visual Side: Floating Product Cards ── */
.hp-hero-visual {
    position: relative;
    height: 500px;
}

.hp-hero-cards {
    position: relative;
    width: 100%;
    height: 100%;
}

.hp-hero-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 14px;
    background: #ffffff;
    border-radius: 18px;
    padding: 16px 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06), 0 1px 4px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.04);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    width: 270px;
    text-decoration: none;
    opacity: 0;
    animation: card-float-in 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hp-hero-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1), 0 4px 12px rgba(0,0,0,0.05);
    border-color: rgba(var(--card-clr-rgb, 0,0,0), 0.1);
}

.hp-hero-card--1 { top: 4%; left: 0; animation-delay: 0.4s; }
.hp-hero-card--2 { top: 30%; right: 0; animation-delay: 0.6s; }
.hp-hero-card--3 { top: 56%; left: 0; animation-delay: 0.8s; }
.hp-hero-card--4 { top: 80%; right: 0; animation-delay: 1.0s; }

@keyframes card-float-in {
    from { opacity: 0; transform: translateY(24px) scale(0.92); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Icon swatch */
.hp-hero-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--card-bg, #f1f5f9);
    color: var(--card-clr, #333);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: all 0.35s ease;
}
.hp-hero-card:hover .hp-hero-card-icon {
    transform: scale(1.08) rotate(-3deg);
}

.hp-hero-card-info {
    display: flex;
    flex-direction: column;
    gap: 1px;
    min-width: 0;
    flex: 1;
}
.hp-hero-card-cat {
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #94a3b8;
}
.hp-hero-card-info strong {
    font-size: 0.88rem;
    color: #6B1D1D;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.hp-hero-card-price {
    font-size: 0.78rem;
    color: var(--accent-gold, #D4A24C);
    font-weight: 700;
}
.hp-hero-card-arrow {
    color: #cbd5e1;
    font-size: 0.7rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}
.hp-hero-card:hover .hp-hero-card-arrow {
    color: var(--card-clr, #333);
    transform: translateX(3px);
}

/* Stats overlay */
.hp-hero-stats {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 0;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.7);
    border-radius: 18px;
    padding: 1.1rem 2.25rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.06), 0 1px 4px rgba(0,0,0,0.03);
    z-index: 5;
    opacity: 0;
    animation: card-float-in 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards 1.2s;
}
.hp-hero-stat {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 1.5rem;
}
.hp-hero-stat-divider {
    width: 1px;
    height: 36px;
    background: #e2e8f0;
    flex-shrink: 0;
}
.hp-hero-stat-num {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--accent-green, #6B1D1D);
    font-family: var(--font-serif);
    line-height: 1;
}
.hp-hero-stat-plus {
    font-size: 1rem;
    font-weight: 800;
    color: var(--accent-gold, #D4A24C);
}
.hp-hero-stat-label {
    font-size: 0.62rem;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 3px;
}

/* ── Hero Responsive ── */
@media (max-width: 1200px) {
    .hp-hero-title { font-size: 3.4rem; }
    .hp-hero { padding: 4rem 0 3.5rem; min-height: 540px; }
}
@media (max-width: 991px) {
    .hp-hero-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }
    .hp-hero-content { align-items: center; }
    .hp-hero-badge { margin: 0 auto 1.5rem; }
    .hp-hero-title { font-size: 2.8rem; }
    .hp-hero-desc { margin: 0 auto 2rem; text-align: center; }
    .hp-hero-ctas { justify-content: center; }
    .hp-hero-trust { justify-content: center; }
    .hp-hero-visual { display: none; }
}
@media (max-width: 576px) {
    .hp-hero { padding: 3rem 0 2.5rem; min-height: auto; }
    .hp-hero-title { font-size: 2.1rem; letter-spacing: -0.5px; }
    .hp-hero-desc { font-size: 0.95rem; }
    .hp-hero-ctas { flex-direction: column; width: 100%; }
    .hp-hero-btn { width: 100%; justify-content: center; }
    .hp-hero-trust-divider { display: none; }
    .hp-hero-trust { gap: 1rem; }
}

/* ==========================================================================
   PROMO COLLAGE SECTION
   ========================================================================== */

.hp-promo-collage {
    background: var(--secondary-bg);
    overflow: hidden;
    padding: 5rem 0;
    border-top: 2px solid var(--accent-gold-light);
    border-bottom: 2px solid var(--accent-gold-light);
}

.hp-promo-collage-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 220px 1fr 220px;
    gap: 2rem;
    align-items: center;
    padding: 0 1.5rem;
    height: 500px;
}

/* Scrolling Track Wrapper */
.hp-collage-track {
    height: 100%;
    overflow: hidden;
    position: relative;
    border-radius: 16px;
    border: 1px solid var(--accent-gold-light);
    background: var(--secondary-bg);
}
.hp-collage-track::before,
.hp-collage-track::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 70px;
    z-index: 2;
    pointer-events: none;
}
.hp-collage-track::before {
    top: 0;
    background: linear-gradient(to bottom, var(--secondary-bg), transparent);
}
.hp-collage-track::after {
    bottom: 0;
    background: linear-gradient(to top, var(--secondary-bg), transparent);
}

.hp-collage-scroll {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    padding: 1.25rem 0;
}
.hp-collage-scroll--up {
    animation: collage-scroll-up 22s linear infinite;
}
.hp-collage-scroll--down {
    animation: collage-scroll-down 22s linear infinite;
}
@keyframes collage-scroll-up {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}
@keyframes collage-scroll-down {
    0% { transform: translateY(-50%); }
    100% { transform: translateY(0); }
}

.hp-collage-card {
    width: 100%;
    height: 180px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(212, 162, 76, 0.1);
    flex-shrink: 0;
    border: 2px solid rgba(212, 162, 76, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
}
.hp-collage-card:hover {
    transform: scale(1.04);
    box-shadow: 0 6px 20px rgba(212, 162, 76, 0.2);
    border-color: var(--accent-gold);
}
.hp-collage-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Center Promo Banner */
.hp-promo-center {
    height: 100%;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    border: 3px solid var(--accent-gold);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
    background-size: cover;
    background-position: center;
}

.hp-promo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.92) 30%, rgba(107, 29, 29, 0.5));
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2.5rem;
}

.hp-promo-frame {
    width: 100%;
    height: 100%;
    border: 2px dashed rgba(212, 162, 76, 0.4);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}
.hp-promo-frame::before {
    content: "";
    position: absolute;
    top: 12px;
    bottom: 12px;
    left: 12px;
    right: 12px;
    border: 1px solid rgba(212, 162, 76, 0.15);
    border-radius: 12px;
    pointer-events: none;
}

.hp-promo-tagline {
    color: var(--accent-gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.78rem;
    margin-bottom: 1rem;
}

.hp-promo-title {
    color: #ffffff;
    font-family: var(--font-serif);
    font-size: 3rem;
    line-height: 1.1;
    margin: 0 0 1rem;
    letter-spacing: 1px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

.hp-promo-divider {
    width: 60px;
    height: 2px;
    background: var(--accent-gold);
    margin-bottom: 1.5rem;
}

.hp-promo-subtitle {
    color: #ffffff;
    font-family: var(--font-sans);
    font-weight: 800;
    font-size: 2.2rem;
    margin: 0 0 2rem;
    background: linear-gradient(to right, #ffffff, var(--accent-gold), #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hp-promo-cta {
    display: inline-block;
    background: var(--accent-gold);
    color: #6B1D1D !important;
    padding: 0.85rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.82rem;
    transition: all 0.3s ease;
    border: 2px solid rgba(255,255,255,0.4);
    box-shadow: 0 4px 15px rgba(212,175,55,0.4);
}
.hp-promo-cta:hover {
    background: var(--accent-gold);
    border-color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 162, 76, 0.4);
}

/* Collage Responsive */
@media (max-width: 991px) {
    .hp-promo-collage-grid {
        grid-template-columns: 1fr;
        height: auto;
    }
    .hp-collage-track {
        display: none;
    }
    .hp-promo-center {
        height: auto !important;
        min-height: 420px !important;
    }
    .hp-promo-overlay {
        padding: 1.5rem !important;
    }
    .hp-promo-frame {
        padding: 2rem 1.5rem !important;
    }
    .hp-promo-frame::before {
        top: 8px !important;
        bottom: 8px !important;
        left: 8px !important;
        right: 8px !important;
    }
    .hp-promo-tagline {
        font-size: 0.7rem !important;
        margin-bottom: 0.6rem !important;
    }
    .hp-promo-title {
        font-size: 1.8rem !important;
        margin-bottom: 0.6rem !important;
    }
    .hp-promo-subtitle {
        font-size: 1.3rem !important;
        margin-bottom: 1.5rem !important;
    }
    .hp-promo-cta {
        padding: 0.7rem 2rem !important;
        font-size: 0.75rem !important;
    }
}
