/* ==========================================================================
   Premium Corporate Stylesheet: Shri Ganga Masala
   Inspired by Grochy Spice & Organic Food Envato Template Kit Layout
   ========================================================================== */

:root {
    --primary-red: #C62828;      /* Corporate Crimson Red */
    --turmeric-gold: #FBC02D;    /* Vibrant Spice Gold Accent */
    --whatsapp-green: #2E7D32;   /* Action Conversion Green */
    --dark-brown-text: #4E342E;  /* Earthy Roasted Brown Typography */
    --bg-creamy-warm: #FAF6F0;    /* Premium Soft Off-White Background */
    --bg-white: #FFFFFF;
    --slate-gray-muted: #7D6B65;  /* Subtle Subtitle Contrast Gray */
    --font-serif: 'Marcellus', serif;
    --font-sans: 'Hind', sans-serif;
    --transition-standard: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Jost', sans-serif;
    color: var(--dark-brown-text);
    background-color: var(--bg-white);
    line-height: 1.5;
}

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================================================
   1. Top Announcement Strip Bar
   ========================================================================== */
.top-announcement-bar {
    background-color: #0F0A09;
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    padding: 10px 0;
    font-weight: 500;
}

.top-bar-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left span, .top-bar-right span {
    display: inline-flex;
    align-items: center;
}

.top-bar-left i {
    color: var(--turmeric-gold);
    margin-right: 6px;
}

.separator {
    margin: 0 12px;
    opacity: 0.3;
}

/* ==========================================================================
   2. Main Multi-Row Header Styling
   ========================================================================== */
.site-header-wrapper {
    background-color: var(--bg-white);
    border-bottom: 1.5px solid #F0ECE6;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(78, 52, 46, 0.03);
}

/* Upper Row Area Layout */
.header-main-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid #FAF6F0;
}

.brand-identity-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.brand-typography h1 {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--primary-red);
    line-height: 1;
}

.brand-tagline {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 5px;
    color: var(--dark-brown-text);
    text-align: center;
    margin-top: 3px;
}

/* Central Search Input Container Box */
.storefront-search-frame {
    flex: 0 1 460px;
}

.search-form-layout {
    display: flex;
    border: 1.5px solid #E0D9D0;
    border-radius: 30px;
    overflow: hidden;
    background-color: #FFF;
    transition: var(--transition-standard);
}

.search-form-layout:focus-within {
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(198, 40, 40, 0.1);
}

.store-search-input {
    width: 100%;
    padding: 10px 20px;
    border: none;
    outline: none;
    font-size: 14px;
    color: var(--dark-brown-text);
}

.store-search-btn {
    background-color: transparent;
    border: none;
    padding: 0 20px;
    color: var(--dark-brown-text);
    cursor: pointer;
    font-size: 15px;
}

.store-search-btn:hover {
    color: var(--primary-red);
}

/* Right Side Icon Tools Navigation Link Wrappers */
.shopping-utilities-group {
    display: flex;
    align-items: center;
    gap: 24px;
    font-weight: 600;
    font-size: 14px;
}

.utility-link-item {
    color: var(--dark-brown-text);
    cursor: pointer;
}

.clickable-cart-trigger {
    display: flex;
    align-items: center;
    gap: 6px;
}

.utility-icon-element {
    font-size: 18px;
    color: var(--dark-brown-text);
}

/* Lower Row Area Links Grid Layout */
.header-navigation-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.nav-links-list {
    display: flex;
    list-style: none;
    gap: 28px;
}

.menu-link {
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    color: var(--dark-brown-text);
    padding: 6px 0;
    position: relative;
}

.menu-link:hover, .menu-link.active {
    color: var(--primary-red);
}

/* Lower Row Buttons and Hotline Corporate Info Box */
.header-action-ctas {
    display: flex;
    align-items: center;
    gap: 24px;
}

.whatsapp-integration-button {
    background-color: var(--whatsapp-green);
    color: #FFF;
    text-decoration: none;
    padding: 9px 22px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-standard);
}

.whatsapp-integration-button:hover {
    background-color: #1B5E20;
    transform: translateY(-2px);
}

.corporate-hotline-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hotline-icon-graphic {
    font-size: 20px;
    color: var(--dark-brown-text);
}

.hotline-text-block {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    font-weight: 600;
}

.hotline-subtitle-label {
    color: var(--slate-gray-muted);
}

.hotline-main-number {
    color: var(--dark-brown-text);
    font-weight: 700;
}

/* ==========================================================================
   3. Premium Fixed Dropdown Styling Layout Area
   ========================================================================== */
.dropdown-container-item { 
    position: relative; 
}

.submenu-arrow-icon { 
    font-size: 10px; 
    margin-left: 2px; 
}

.submenu-dropdown-panel {
    position: absolute; 
    top: 100%; 
    left: 0; 
    background-color: var(--bg-white); 
    min-width: 200px;
    box-shadow: 0 10px 30px rgba(78, 52, 46, 0.12); 
    border-radius: 6px; 
    list-style: none; /* Strips away standard browser list-style bullet dots */
    padding: 8px 0; 
    display: none;
    border-top: 3px solid var(--primary-red); /* Premium accent row boundary line */
}

.submenu-dropdown-panel li {
    list-style-type: none !important; /* Explicit validation to overwrite root rules */
    margin: 0;
    padding: 0;
}

.submenu-dropdown-panel li a { 
    padding: 10px 20px; 
    display: block; 
    font-size: 14px; 
    text-decoration: none; 
    color: var(--dark-brown-text) !important; /* Forces link text away from browser blue to deep brown */
    font-weight: 600;
    transition: var(--transition-standard);
    text-align: left;
}

.submenu-dropdown-panel li a:hover { 
    background-color: var(--bg-creamy-warm); 
    color: var(--primary-red) !important; /* Turns highlighted hover link premium red */
    padding-left: 24px; /* Subtle animated right-slide micro-interaction */
}

.dropdown-container-item:hover .submenu-dropdown-panel { 
    display: block; 
}

/* ==========================================================================
   4. Hero Billboard Stage Section Styling
   ========================================================================== */
.hero-showcase-stage {
    background-color: var(--bg-creamy-warm);
    padding: 80px 0;
    overflow: hidden;
}

.hero-split-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}

.hero-text-billboard h2 {
    font-family: 'Jost', sans-serif;
    font-size: 48px;
    line-height: 1.2;
    color: var(--dark-brown-text);
    margin: 16px 0 20px 0;
}

.billboard-badge-tag {
    background-color: rgba(46, 125, 50, 0.1);
    color: var(--whatsapp-green);
    padding: 6px 16px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 13px;
    display: inline-block;
}

.hero-text-billboard p {
    font-size: 17px;
    color: var(--slate-gray-muted);
    margin-bottom: 32px;
}

.billboard-action-buttons {
    display: flex;
    gap: 16px;
}

.action-btn {
    padding: 14px 28px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-standard);
}

.btn-filled {
    background-color: var(--primary-red);
    color: #FFF;
}

.btn-filled:hover {
    background-color: #0F0A09;
    transform: translateY(-3px);
}

.btn-outlined {
    border: 2px solid var(--dark-brown-text);
    color: var(--dark-brown-text);
}

.btn-outlined:hover {
    background-color: var(--dark-brown-text);
    color: #FFF;
    transform: translateY(-3px);
}

/* Right Column Hero Product Packaging Stack Layout */
.hero-graphics-display {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.circular-seal-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background-color: var(--primary-red);
    color: #FFF;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 10px;
    border: 2px double var(--turmeric-gold);
    z-index: 10;
}

.graphic-items-stack-container {
    display: flex;
    gap: 20px;
    align-items: flex-end;
}

.mockup-spice-pouch {
    width: 140px;
    height: 220px;
    border-radius: 8px;
    padding: 14px;
    color: #FFF;
    box-shadow: 0 15px 35px rgba(78, 52, 46, 0.15);
}

.red-pouch-variant { background: linear-gradient(135deg, #E53935, #B71C1C); transform: rotate(-6deg); }
.gold-pouch-variant { background: linear-gradient(135deg, #FDD835, #F57F17); color: var(--dark-brown-text); }
.forward-focus-item { transform: scale(1.1) translateY(-10px); z-index: 2; }

.pouch-inner-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
    text-align: center;
}

.pouch-brand { font-size: 11px; font-weight: bold; letter-spacing: 1px; }
.pouch-title { font-family: 'Jost', sans-serif; font-size: 14px; font-weight: bold; margin-top: 10px; }
.pouch-purity-tag { font-size: 12px; font-weight: bold; }

/* ==========================================================================
   5. Quality Value Trust Ribbon Bar Layout
   ========================================================================== */
.quality-ribbon-bar {
    background-color: var(--primary-red);
    color: #FFF;
    padding: 24px 0;
    border-top: 4px solid var(--turmeric-gold);
}

.ribbon-grid-layout {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.ribbon-card-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.ribbon-icon {
    font-size: 24px;
    color: var(--turmeric-gold);
}

.ribbon-text h4 { font-size: 16px; font-family: 'Jost', sans-serif; }
.ribbon-text p { font-size: 13px; opacity: 0.8; }

/* ==========================================================================
   6. Keyframe Animations Interface
   ========================================================================== */
.animate-fade-up {
    opacity: 0;
    animation: fadeUpAnimation 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.animate-fade-in-delayed {
    opacity: 0;
    animation: fadeInAnimation 1s cubic-bezier(0.25, 1, 0.5, 1) 0.3s forwards;
}

.animated-rotation-drift {
    animation: sealDrift 4s ease-in-out infinite;
}

@keyframes fadeUpAnimation {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInAnimation {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes sealDrift {
    0%, 100% { transform: translateY(0) rotate(12deg); }
    50% { transform: translateY(-6px) rotate(10deg); }
}

/* ==========================================================================
   7. Shopping Cart Slide Modal Drawer
   ========================================================================== */
.cart-modal { 
    position: fixed; 
    top: 0; 
    right: -400px; 
    width: 400px; 
    height: 100%; 
    background-color: #FFF; 
    box-shadow: -10px 0 40px rgba(0,0,0,0.1); 
    z-index: 2000; 
    transition: var(--transition-standard); 
}

.cart-modal.open { 
    right: 0; 
}

.cart-modal-content { 
    display: flex; 
    flex-direction: column; 
    height: 100%; 
}

.cart-modal-header { 
    padding: 20px; 
    background-color: var(--primary-red); 
    color: #FFF; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
}

.close-modal { 
    font-size: 24px; 
    cursor: pointer; 
}

.cart-modal-body { 
    padding: 20px; 
    color: var(--slate-gray-muted); 
    font-size: 14px; 
    text-align: center; 
}

/* ==========================================================================
   8. Responsive Infrastructure Breakpoints
   ========================================================================== */
@media (max-width: 992px) {
    .header-main-row { flex-direction: column; gap: 16px; text-align: center; }
    .storefront-search-frame { width: 100%; }
    .header-navigation-row { flex-direction: column; gap: 16px; }
    .hero-split-grid { grid-template-columns: 1fr; text-align: center; }
    .billboard-action-buttons, .graphic-items-stack-container { justify-content: center; }
    .ribbon-grid-layout { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 576px) {
    .ribbon-grid-layout { grid-template-columns: 1fr; }
    .top-bar-flex { flex-direction: column; gap: 4px; text-align: center; }
}   

/* --- CLICK-TRIGGERED DROPDOWN SYSTEM --- */
.dropdown-container-item { 
    position: relative; 
}

.submenu-arrow-icon { 
    font-size: 10px; 
    margin-left: 4px;
    transition: transform 0.3s ease;
}

/* This rotates the arrow upside down when the menu is active */
.dropdown-container-item.active .submenu-arrow-icon {
    transform: rotate(180deg);
}

.submenu-dropdown-panel {
    position: absolute; 
    top: 100%; 
    left: 0; 
    background-color: var(--bg-white); 
    min-width: 220px;
    box-shadow: 0 10px 30px rgba(78, 52, 46, 0.12); 
    border-radius: 6px; 
    list-style: none !important; 
    padding: 8px 0; 
    display: none; /* Keeps it hidden by default */
    border-top: 3px solid var(--primary-red);
}

/* Show the menu ONLY when the active class is added via JavaScript click */
.submenu-dropdown-panel.show { 
    display: block; 
}

.submenu-dropdown-panel li {
    list-style-type: none !important;
    margin: 0;
    padding: 0;
}

.submenu-dropdown-panel li a { 
    padding: 12px 20px; 
    display: block; 
    font-size: 14px; 
    text-decoration: none; 
    color: var(--dark-brown-text) !important;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: left;
}

.submenu-dropdown-panel li a:hover { 
    background-color: var(--bg-creamy-warm); 
    color: var(--primary-red) !important; 
    padding-left: 24px;
}
 :root {
            --primary-red: #C62828;      /* Deep Red from your design */
            --turmeric-gold: #FBC02D;    /* Turmeric Yellow */
            --whatsapp-green: #2E7D32;   /* Accent Green */
            --dark-brown-text: #4E342E;  /* Elegant Dark Brown for text */
            --bg-warm-cream: #FAF6F0;    /* Soft beige background like Grochy kit */
            --bg-white: #FFFFFF;
            --muted-gray: #7D6B65;
            --font-serif: 'Marcellus', serif;
            --font-sans: 'Hind', sans-serif;
            --transition-smooth: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-sans);
            color: var(--dark-brown-text);
            background-color: var(--bg-white);
            line-height: 1.6;
        }

        h1, h2, h3, h4, .section-title {
            font-family: 'Jost', sans-serif;
            font-weight: 400;
        }

        .container {
            width: 100%;
            max-width: 1240px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* --- 1. TOP ANNOUNCEMENT BAR --- */
        .top-announcement-bar {
            background-color: #0F0A09;
            color: rgba(255, 255, 255, 0.9);
            font-size: 13px;
            padding: 10px 0;
            font-weight: 500;
            border-bottom: 2px solid var(--turmeric-gold);
        }

        .top-bar-flex {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .top-bar-left span, .top-bar-right span {
            display: inline-flex;
            align-items: center;
        }

        .top-bar-left i {
            color: var(--turmeric-gold);
            margin-right: 6px;
        }

        .separator {
            margin: 0 12px;
            opacity: 0.3;
        }

        /* --- 2. MULTI-ROW PREMIUM HEADER --- */
        .site-header-wrapper {
            background-color: var(--bg-white);
            border-bottom: 1.5px solid #F0ECE6;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(78, 52, 46, 0.03);
        }

        .header-main-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 16px 0;
            border-bottom: 1px solid #FAF6F0;
        }

        .brand-identity-logo {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
        }

        .brand-typography h1 {
            font-size: 26px;
            font-weight: 700;
            letter-spacing: 1.5px;
            color: var(--primary-red);
            line-height: 1;
        }

        .brand-tagline {
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 5px;
            color: var(--dark-brown-text);
            text-align: center;
            margin-top: 3px;
        }

        .storefront-search-frame {
            flex: 0 1 480px;
        }

        .search-form-layout {
            display: flex;
            border: 1.5px solid #E0D9D0;
            border-radius: 30px;
            overflow: hidden;
            background-color: #FFF;
            transition: var(--transition-standard);
        }

        .store-search-input {
            width: 100%;
            padding: 10px 20px;
            border: none;
            outline: none;
            font-size: 14px;
            color: var(--dark-brown-text);
        }

        .store-search-btn {
            background-color: #4E342E;
            border: none;
            padding: 0 22px;
            color: #FFF;
            cursor: pointer;
            font-size: 14px;
            transition: var(--transition-smooth);
        }

        .store-search-btn:hover {
            background-color: var(--primary-red);
        }

        .shopping-utilities-group {
            display: flex;
            align-items: center;
            gap: 24px;
            font-weight: 600;
            font-size: 14px;
        }

        .utility-link-item {
            color: var(--dark-brown-text);
            cursor: pointer;
            text-decoration: none;
            transition: var(--transition-smooth);
        }

        .utility-link-item:hover {
            color: var(--primary-red);
        }

        .clickable-cart-trigger {
            display: flex;
            align-items: center;
            gap: 6px;
            background: var(--bg-warm-cream);
            padding: 6px 14px;
            border-radius: 20px;
        }

        .utility-icon-element {
            font-size: 16px;
            color: var(--primary-red);
        }

        .header-navigation-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 0;
        }

        .nav-links-list {
            display: flex;
            list-style: none;
            gap: 32px;
        }

        .menu-link {
            text-decoration: none;
            font-weight: 600;
            font-size: 15px;
            color: var(--dark-brown-text);
            padding: 6px 0;
            position: relative;
        }

        .menu-link:hover, .menu-link.active {
            color: var(--primary-red);
        }

        .menu-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary-red);
            transition: var(--transition-smooth);
        }

        .menu-link:hover::after, .menu-link.active::after {
            width: 100%;
        }

        .header-action-ctas {
            display: flex;
            align-items: center;
            gap: 24px;
        }

        .whatsapp-integration-button {
            background-color: var(--whatsapp-green);
            color: #FFF;
            text-decoration: none;
            padding: 10px 22px;
            border-radius: 30px;
            font-weight: 700;
            font-size: 14px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            box-shadow: 0 4px 12px rgba(46, 125, 50, 0.2);
            transition: var(--transition-smooth);
        }

        .whatsapp-integration-button:hover {
            background-color: #1B5E20;
            transform: translateY(-3px);
        }

        .corporate-hotline-container {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .hotline-icon-graphic {
            font-size: 22px;
            color: var(--turmeric-gold);
        }

        .hotline-text-block {
            display: flex;
            flex-direction: column;
            font-size: 13px;
            font-weight: 600;
            line-height: 1.2;
        }

        .hotline-subtitle-label {
            color: var(--slate-gray-muted);
            font-size: 11px;
        }

        .hotline-main-number {
            color: var(--dark-brown-text);
            font-weight: 700;
        }

        /* --- 3. HERO SHOWCASE HERO SECTION --- */
        .hero-showcase-stage {
            background-color: var(--bg-warm-cream);
            padding: 90px 0;
            position: relative;
            overflow: hidden;
            border-bottom: 1px solid #E0D9D0;
        }

        .hero-split-grid {
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 50px;
            align-items: center;
        }

        .hero-text-billboard h2 {
            font-size: 52px;
            line-height: 1.15;
            color: var(--dark-brown-text);
            margin: 16px 0 24px 0;
        }

        .billboard-badge-tag {
            background-color: rgba(46, 125, 50, 0.1);
            color: var(--whatsapp-green);
            padding: 6px 18px;
            border-radius: 30px;
            font-weight: 700;
            font-size: 13px;
            display: inline-block;
            letter-spacing: 0.5px;
        }

        .hero-text-billboard p {
            font-size: 18px;
            color: var(--slate-gray-muted);
            margin-bottom: 36px;
        }

        .billboard-action-buttons {
            display: flex;
            gap: 16px;
        }

        .action-btn {
            padding: 14px 32px;
            border-radius: 6px;
            font-weight: 700;
            font-size: 15px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: var(--transition-smooth);
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
        }

        .btn-filled {
            background-color: var(--primary-red);
            color: #FFF;
        }

        .btn-filled:hover {
            background-color: #0F0A09;
            transform: translateY(-4px);
        }

        .btn-outlined {
            border: 2px solid var(--dark-brown-text);
            color: var(--dark-brown-text);
            background: transparent;
        }

        .btn-outlined:hover {
            background-color: var(--dark-brown-text);
            color: #FFF;
            transform: translateY(-4px);
        }

        /* Right Side Floating Product Graphics */
        .hero-graphics-display {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 350px;
        }

        .circular-seal-badge {
            position: absolute;
            top: -20px;
            right: 10px;
            background-color: var(--primary-red);
            color: #FFF;
            width: 100px;
            height: 100px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            font-size: 11px;
            line-height: 1.3;
            border: 2px double var(--turmeric-gold);
            z-index: 10;
            box-shadow: 0 10px 25px rgba(198, 40, 40, 0.2);
        }

        .graphic-items-stack-container {
            display: flex;
            gap: 30px;
            align-items: flex-end;
        }

        .mockup-spice-pouch {
            width: 170px;
            height: 260px;
            border-radius: 10px;
            padding: 20px;
            color: #FFF;
            box-shadow: 0 20px 45px rgba(78, 52, 46, 0.18);
            position: relative;
            transition: var(--transition-smooth);
        }

        .mockup-spice-pouch:hover {
            transform: translateY(-10px) scale(1.03);
        }

        .red-pouch-variant { 
            background: linear-gradient(135deg, #E53935, #B71C1C); 
            transform: rotate(-5deg); 
        }
        
        .gold-pouch-variant { 
            background: linear-gradient(135deg, #FDD835, #F57F17); 
            color: var(--dark-brown-text); 
            transform: scale(1.08) translateY(-15deg);
            z-index: 2; 
        }

        .pouch-inner-content {
            display: flex;
            flex-direction: column;
            height: 100%;
            justify-content: space-between;
            text-align: center;
        }

        .pouch-brand { font-size: 12px; font-weight: bold; letter-spacing: 1px; opacity: 0.9; }
        .pouch-title { font-family: 'Jost', sans-serif; font-size: 16px; font-weight: bold; margin-top: 15px; line-height: 1.2; }
        .pouch-tamil { font-size: 14px; font-weight: bold; margin-bottom: 10px; }

        /* --- 4. QUALITY VALUE TRUST PILLARS RIBBON BAR --- */
        .quality-ribbon-bar {
            background-color: var(--primary-red);
            color: #FFF;
            padding: 26px 0;
            border-top: 4px solid var(--turmeric-gold);
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        }

        .ribbon-grid-layout {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }

        .ribbon-card-item {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .ribbon-icon {
            font-size: 26px;
            color: var(--turmeric-gold);
        }

        .ribbon-text h4 { font-size: 17px; font-family: 'Jost', sans-serif; letter-spacing: 0.5px; margin-bottom: 2px; }
        .ribbon-text p { font-size: 13px; opacity: 0.85; }

        /* --- 5. ABOUT CORPORATE OVERVIEW SECTION --- */
        .about-section {
            padding: 100px 0;
            background-color: var(--bg-white);
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .about-image-collage {
            position: relative;
            height: 400px;
            background-color: var(--bg-warm-cream);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px dashed rgba(198, 40, 40, 0.2);
        }

        .graphic-element-box {
            position: absolute;
            top: -15px;
            left: -15px;
            width: 100%;
            height: 100%;
            border: 3px solid var(--turmeric-gold);
            border-radius: 12px;
            pointer-events: none;
            z-index: 1;
        }

        .large-spice-icon {
            font-size: 110px;
            color: var(--primary-red);
            margin-bottom: 20px;
        }

        .about-main-graphic {
            text-align: center;
            z-index: 2;
        }

        .experience-badge {
            position: absolute;
            bottom: -25px;
            right: -15px;
            background-color: var(--whatsapp-green);
            color: #FFF;
            padding: 16px 24px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            gap: 14px;
            box-shadow: 0 10px 25px rgba(46, 125, 50, 0.25);
            z-index: 3;
        }

        .experience-badge .years {
            font-size: 34px;
            font-weight: 700;
            color: var(--turmeric-gold);
            font-family: 'Jost', sans-serif;
        }

        .section-subtitle {
            color: var(--primary-red);
            font-weight: 700;
            text-transform: uppercase;
            font-size: 13px;
            letter-spacing: 2px;
            margin-bottom: 8px;
            display: inline-block;
        }

        .section-title {
            font-size: 38px;
            color: var(--dark-brown-text);
            margin-bottom: 20px;
            line-height: 1.25;
        }

        .lead-text {
            font-size: 18px;
            font-weight: 500;
            color: var(--primary-red);
            margin-bottom: 16px;
        }

        .founders-note {
            display: flex;
            gap: 30px;
            margin: 24px 0;
            padding: 20px 0;
            border-top: 1px solid rgba(78, 52, 46, 0.1);
            border-bottom: 1px solid rgba(78, 52, 46, 0.1);
        }

        .founder-profile {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .founder-profile i {
            font-size: 20px;
            color: var(--whatsapp-green);
            background: var(--bg-warm-cream);
            width: 44px;
            height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
        }

        /* --- 6. PREMIUM INTERACTIVE STOREFRONT --- */
        .products-section {
            padding: 100px 0;
            background-color: var(--bg-warm-cream);
        }

        .section-header-center {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 45px auto;
        }

        .filter-tabs {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-top: 24px;
        }

        .tab-btn {
            padding: 10px 26px;
            border: 1px solid rgba(198, 40, 40, 0.2);
            background-color: var(--bg-white);
            font-family: var(--font-sans);
            font-weight: 600;
            font-size: 14px;
            border-radius: 30px;
            cursor: pointer;
            transition: var(--transition-smooth);
        }

        .tab-btn.active, .tab-btn:hover {
            background-color: var(--primary-red);
            color: #FFF;
            border-color: var(--primary-red);
            box-shadow: 0 4px 12px rgba(198, 40, 40, 0.15);
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }

        .product-card {
            background-color: var(--bg-white);
            border-radius: 8px;
            padding: 24px;
            text-align: center;
            position: relative;
            border: 1px solid rgba(0,0,0,0.02);
            box-shadow: 0 10px 25px rgba(78, 52, 46, 0.05);
            transition: var(--transition-smooth);
        }

        .product-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 15px 35px rgba(198, 40, 40, 0.12);
        }

        .product-badge {
            position: absolute;
            top: 14px;
            left: 14px;
            background-color: var(--whatsapp-green);
            color: #FFF;
            font-size: 11px;
            padding: 3px 10px;
            border-radius: 4px;
            font-weight: bold;
        }

        .product-img-holder {
            height: 140px;
            background-color: #FFF5F5;
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 16px;
        }

        .product-img-holder.jar-style {
            background-color: #FFF9E6;
        }

        .product-placeholder-icon {
            font-size: 64px;
            transition: var(--transition-smooth);
        }

        .product-card:hover .product-placeholder-icon {
            transform: scale(1.1);
        }

        .red-chilli { color: #D32F2F; }
        .turmeric-gold { color: #FBC02D; }
        .coriander-green { color: #689F38; }
        .jar-accent { color: #E65100; }

        .prod-cat { font-size: 11px; text-transform: uppercase; font-weight: 700; color: var(--muted-gray); letter-spacing: 0.5px; }
        .product-details h3 { font-size: 18px; margin: 4px 0; color: var(--dark-brown-text); }
        .tamil-title { font-size: 14px; color: var(--primary-red); font-weight: bold; margin-bottom: 12px; }
        
        .product-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-top: 1px dashed rgba(78, 52, 46, 0.15);
            padding-top: 12px;
            margin-bottom: 16px;
            font-size: 14px;
        }
        
        .product-meta .price { font-size: 18px; font-weight: 700; color: var(--whatsapp-green); }

        .add-to-cart-btn {
            width: 100%;
            padding: 11px;
            background-color: var(--dark-brown-text);
            color: #FFF;
            border: none;
            border-radius: 6px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            transition: var(--transition-smooth);
        }

        .add-to-cart-btn:hover {
            background-color: var(--primary-red);
        }

        .other-products-footer {
            text-align: center;
            margin-top: 40px;
            padding: 24px;
            background-color: var(--bg-white);
            border-radius: 8px;
            border-left: 5px solid var(--turmeric-gold);
            box-shadow: 0 5px 15px rgba(0,0,0,0.02);
        }

        /* --- 7. SERVICES & COMMERCIAL SPECIALIZATION --- */
        .services-section {
            padding: 100px 0;
            background-color: var(--bg-white);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }

        .service-card {
            padding: 30px 24px;
            background-color: var(--bg-warm-cream);
            border-radius: 8px;
            border-bottom: 4px solid transparent;
            transition: var(--transition-smooth);
        }

        .service-card:hover {
            background-color: #FFF;
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(78, 52, 46, 0.08);
            border-bottom-color: var(--primary-red);
        }

        .service-icon { font-size: 36px; color: var(--primary-red); margin-bottom: 16px; }
        .service-card h3 { font-size: 18px; margin-bottom: 10px; color: var(--dark-brown-text); }
        .service-card p { font-size: 14px; color: var(--muted-gray); }

        /* --- 8. BULK QUOTE FORM & DUAL OFFICES --- */
        .contact-section {
            padding: 100px 0;
            background-color: var(--dark-brown-text);
            color: #FFF;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 60px;
        }

        .contact-info-panel .section-subtitle { color: var(--turmeric-gold); }
        .contact-info-panel .section-title { color: #FFF; }
        .contact-info-panel p { opacity: 0.85; margin-bottom: 30px; }

        .contact-card-vcard {
            background-color: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 8px;
            padding: 24px;
            margin-bottom: 30px;
        }

        .contact-card-vcard h3 { color: var(--turmeric-gold); font-size: 22px; margin-bottom: 4px; }
        .prop-title { font-size: 12px; text-transform: uppercase; color: #FFF; opacity: 0.6; margin-bottom: 16px; letter-spacing: 1px; }
        .vcard-link { display: block; margin-bottom: 10px; text-decoration: none; color: #FFF; font-size: 16px; }
        .vcard-link i { color: var(--turmeric-gold); margin-right: 12px; }

        .offices-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
        .office-box h4 { color: var(--turmeric-gold); margin-bottom: 8px; font-size: 16px; }
        .office-box p { font-size: 14px; opacity: 0.8; line-height: 1.5; }

        .contact-form-panel { background-color: var(--bg-white); color: var(--dark-brown-text); padding: 40px; border-radius: 12px; box-shadow: 0 20px 40px rgba(0,0,0,0.15); }
        .contact-form-panel h3 { font-size: 22px; margin-bottom: 24px; color: var(--primary-red); border-bottom: 2px solid var(--bg-warm-cream); padding-bottom: 12px; }
        .form-group { margin-bottom: 20px; }
        .form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
        .form-group label { display: block; font-weight: 600; font-size: 13px; margin-bottom: 6px; }
        .form-group input, .form-group select, .form-group textarea {
            width: 100%; padding: 12px; border: 1px solid rgba(0,0,0,0.15); background-color: var(--bg-warm-cream); border-radius: 6px; font-family: inherit; font-size: 14px;
        }
        .form-submit-btn { width: 100%; padding: 14px; background-color: var(--primary-red); color: #FFF; border: none; border-radius: 6px; font-weight: 700; font-size: 16px; cursor: pointer; transition: var(--transition-smooth); }
        .form-submit-btn:hover { background-color: var(--whatsapp-green); }

        /* --- 9. CORPORATE FOOTER HUB --- */
        .footer-main { background-color: #1A110F; color: #FFF; padding: 70px 0 0 0; }
        .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 50px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.05); }
        .footer-logo h2 { color: var(--turmeric-gold); font-size: 24px; }
        .footer-logo p { font-size: 12px; opacity: 0.6; margin-bottom: 16px; letter-spacing: 1px; }
        .footer-about p { font-size: 14px; opacity: 0.7; margin-bottom: 20px; }
        .social-icons a { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; background-color: rgba(255,255,255,0.05); border-radius: 50%; margin-right: 10px; color: #FFF; transition: var(--transition-smooth); }
        .social-icons a:hover { background-color: var(--primary-red); transform: translateY(-3px); }
        
        .footer-links h4 { color: var(--turmeric-gold); margin-bottom: 20px; }
        .footer-links ul { list-style: none; }
        .footer-links li { margin-bottom: 12px; font-size: 14px; opacity: 0.8; }
        .footer-links a { text-decoration: none; color: #FFF; transition: var(--transition-smooth); }
        .footer-links a:hover { color: var(--turmeric-gold); padding-left: 5px; }
        .footer-bottom { background-color: #0F0A09; padding: 20px 0; font-size: 13px; opacity: 0.5; }
        .footer-bottom-inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; }

        /* --- 10. PREMIUM INTERACTIVE ANIMATIONS --- */
        .animate-fade-up {
            opacity: 0;
            animation: fadeUpAnimation 0.9s cubic-bezier(0.25, 1, 0.5, 1) forwards;
        }

        .animate-fade-in-delayed {
            opacity: 0;
            animation: fadeInAnimation 1.1s cubic-bezier(0.25, 1, 0.5, 1) 0.2s forwards;
        }

        .animated-rotation-drift {
            animation: sealDrift 4s ease-in-out infinite;
        }

        @keyframes fadeUpAnimation {
            from { opacity: 0; transform: translateY(40px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes fadeInAnimation {
            from { opacity: 0; transform: scale(0.96); }
            to { opacity: 1; transform: scale(1); }
        }

        @keyframes sealDrift {
            0%, 100% { transform: translateY(0) rotate(5deg); }
            50% { transform: translateY(-8px) rotate(2deg); }
        }

        /* Shopping Cart Slider Drawer Layout */
        .cart-modal {
            position: fixed; top: 0; right: -420px; width: 400px; height: 100%; background-color: #FFF; box-shadow: -10px 0 40px rgba(0,0,0,0.12); z-index: 2000; transition: var(--transition-smooth);
        }
        .cart-modal.open { right: 0; }
        .cart-modal-content { display: flex; flex-direction: column; height: 100%; }
        .cart-modal-header { padding: 20px; background-color: var(--primary-red); color: #FFF; display: flex; justify-content: space-between; align-items: center; }
        .close-modal { font-size: 24px; cursor: pointer; }
        .cart-modal-body { padding: 24px; color: var(--slate-gray-muted); font-size: 14px; text-align: center; }

        /* --- RESPONSIVENESS MODULES --- */
        @media (max-width: 992px) {
            .header-main-row { flex-direction: column; gap: 16px; text-align: center; }
            .storefront-search-frame { width: 100%; }
            .header-navigation-row { flex-direction: column; gap: 16px; }
            .hero-split-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; text-align: center; }
            .billboard-action-buttons, .graphic-items-stack-container, .founders-note { justify-content: center; }
            .products-grid, .services-grid, .ribbon-grid-layout { grid-template-columns: repeat(2, 1fr); }
            .hero-graphics-display { min-height: auto; margin-top: 40px; }
        }
        @media (max-width: 576px) {
            .products-grid, .services-grid, .ribbon-grid-layout, .footer-grid, .form-row-2, .offices-layout { grid-template-columns: 1fr; }
            .top-bar-flex { flex-direction: column; gap: 6px; text-align: center; }
            .cart-modal { width: 100%; right: -100%; }
        }

        .mobile-menu-btn{
    display:none;
    font-size:28px;
    cursor:pointer;
    color:#C62828;
}

.mobile-sidebar{
    position:fixed;
    top:0;
    left:-280px;
    width:280px;
    height:100%;
    background:#fff;
    z-index:9999;
    transition:0.4s;
    box-shadow:0 0 20px rgba(0,0,0,.2);
    padding-top:60px;
}

.mobile-sidebar a{
    display:block;
    padding:15px 25px;
    color:#4E342E;
    text-decoration:none;
    font-weight:600;
    border-bottom:1px solid #eee;
}

.mobile-sidebar a:hover{
    background:#faf6f0;
    color:#C62828;
}

.close-btn{
    position:absolute;
    top:15px;
    right:20px;
    font-size:30px;
    cursor:pointer;
}

@media(max-width:768px){

    .mobile-menu-btn{
        display:block;
    }

    .header-navigation-row{
        display:none;
    }

    .shopping-utilities-group{
        display:none;
    }

    .header-main-row{
        display:flex;
        justify-content:space-between;
        align-items:center;
        flex-direction:row;
    }

    .storefront-search-frame{
        display:none;
    }
}
@media (max-width:768px){

    .header-main-row{
        position:relative;
        justify-content:center;
    }

    .brand-identity-logo{
        position:absolute;
        left:50%;
        transform:translateX(-50%);
        display:flex;
        align-items:center;
    }

    .mobile-menu-btn{
        position:absolute;
        left:15px;
        top:50%;
        transform:translateY(-50%);
    }

    .clickable-cart-trigger{
        position:absolute;
        right:15px;
        top:50%;
        transform:translateY(-50%);
    }
}
@media (max-width: 480px){

    .logo-badge-container svg{
        width:30px;
        height:30px;
    }

    .brand-typography h1{
        font-size:16px;
    }

    .brand-tagline{
        font-size:7px;
        letter-spacing:1.5px;
    }

}
@media (max-width:768px){

    .header-main-row{
        position:relative;
        justify-content:center;
        height:110px !important;
    }

    .brand-identity-logo{
        position:absolute;
        left:50%;
        transform:translateX(-50%);
    }
}
@media(max-width:768px){

    .mobile-cart{
        position:absolute;
        right:15px;
        top:50%;
        transform:translateY(-50%);
        display:flex;
        align-items:center;
        justify-content:center;
        width:40px;
        height:40px;
        background:transparent;
        border:none;
        box-shadow:none;
        z-index:999;
    }

    .mobile-cart i{
        font-size:22px;
        color:#C62828;
    }

    .mobile-cart span{
        position:absolute;
        top:-5px;
        right:-5px;
        min-width:18px;
        height:18px;
        line-height:18px;
        text-align:center;
        border-radius:50%;
        background:#C62828;
        color:#fff;
        font-size:10px;
        font-weight:700;
    }
}
.mobile-cart{
    display:none;
}