:root {
    --primary-red: #c62828;
    --accent-gold: #e5a913;
    --light-gray-texture: #f8f9fa;
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #ffffff;
    color: #333333;
    line-height: 1.6;
}

/* Catalog Style Top Bar Utilities */
.top-bar {
    background-color: #000000;
    color: #ffffff;
    font-size: 11px;
    padding: 8px 4%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 3px solid #d4af37;
}

.top-bar-left span {
    margin-right: 20px;
}

.top-bar-right span {
    margin-left: 15px;
}

/* Main Header Layout */
.sakthi-style-header {
    background: #ffffff;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 2000;
    border-bottom: 1px solid #e0e0e0;
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}

.brand-logo {
    height: 100px;
    width: 100px;
}

.logo-tagline {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #555555;
    margin-top: 4px;
}

.main-navigation {
    display: flex;
    gap: 15px;
}

.menu-toggle,
.menu-backdrop {
    display: none;
}

.nav-item {
    text-decoration: none;
    color: #333333;
    font-weight: 600;
    font-size: 14px;
    padding: 8px 12px;
    transition: color 0.2s;
}

.nav-item:hover,
.nav-item.active {
    color: var(--primary-red);
}

/* Navigation Dropdown Hover State for the Products Button */
.has-dropdown:hover .dropdown-toggle-btn {
    background-color: #c62828 !important;
    color: #a48130 !important;
    border-radius: 20px;
}

/* Navigation Dropdown */
.has-dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    min-width: 250px;
    list-style: none;
    padding: 10px 0;
    border-radius: 4px;
    z-index: 1000;
}

.dropdown-menu li a {
    display: block;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.2s;
    font-weight: 600;
    border-bottom: 1px solid #f0f0f0;
}

.dropdown-menu li:last-child a {
    border-bottom: none;
}

.dropdown-menu li a:hover {
    background: #f8f9fa;
    color: var(--primary-red);
}

/* HERO BANNER SLIDER */
.hero-slider-container {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    background-color: #000;
}

.hero-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 10%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.hero-slide-content {
    max-width: 600px;
    color: #ffffff;
    z-index: 10;
    margin-top: -80px;
}

.hero-slide.active .hero-slide-content {
    animation: heroContentIn 0.75s ease both;
}

.hero-slide-content h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.hero-slide-content p {
    font-size: 16px;
    margin-bottom: 25px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-pack-carousel {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: nowrap;
}

.hero-pack-item {
    position: relative;
    width: 60px;
    height: 80px;
    background: #fff;
    border-radius: 8px;
    padding: 6px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-pack-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.pack-size-badge {
    position: absolute;
    bottom: -10px;
    background: var(--primary-red);
    color: #fff;
    font-size: 10px;
    font-weight: bold;
    padding: 2px 8px;
    border-radius: 10px;
    white-space: nowrap;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.slider-cta-btn {
    display: inline-block;
    background-color: var(--primary-red);
    color: #fff;
    padding: 10px 28px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 4px;
    border: 1px solid #fff;
}

.slide-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.4);
    color: white;
    padding: 14px;
    border: none;
    cursor: pointer;
    font-size: 18px;
    z-index: 100;
}

.left-arrow {
    left: 20px;
}

.right-arrow {
    right: 20px;
}

.slider-dot-navigation {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 100;
}

.navigation-dot {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
}

.navigation-dot.active {
    background: var(--primary-red);
}

/* Layout Grid Elements */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px;
}

.watermark-bg {
    font-size: 70px;
    font-weight: 800;
    color: rgba(0, 0, 0, 0.03);
    position: absolute;
    z-index: 1;
    margin-top: -30px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.watermark-center {
    font-size: 80px;
    font-weight: 800;
    color: rgba(0, 0, 0, 0.02);
    text-align: center;
    width: 100%;
    position: absolute;
    margin-top: 5px;
    z-index: 1;
}

.top-mini-tag {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #777777;
    margin-bottom: 4px;
    position: relative;
    z-index: 2;
}

.sub-heading {
    font-size: 32px;
    color: #222;
    font-weight: 800;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    text-transform: uppercase;
}

.center-heading {
    font-size: 30px;
    color: #222;
    text-align: center;
    font-weight: 700;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.intro-description {
    font-size: 14px;
    color: #666666;
    line-height: 1.7;
    position: relative;
    z-index: 2;
    text-align: justify;
}

.read-more-btn {
    display: inline-block;
    color: #111;
    font-weight: 700;
    text-decoration: none;
    font-size: 12px;
    margin-top: 20px;
    border-bottom: 2px solid var(--accent-gold);
    padding-bottom: 2px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Profile Split Layout */
.profile-split-layout {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 30px;
    align-items: center;
}

.profile-box-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
}

.img-frame {
    background: #fff4de;
    padding: 18px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.06);
    width: 100%;
    max-width: 320px;
    border: 1px solid #f0f0f0;
    position: relative;
    aspect-ratio: 1 / 1;
}

.gallery-photo-element {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-mini-slider {
    overflow: hidden;
}

.intro-slide-img {
    position: absolute;
    top: 18px;
    left: 18px;
    width: calc(100% - 36px);
    height: calc(100% - 36px);
    object-fit: contain;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease-in-out;
    background: radial-gradient(circle at 50% 40%, #fffdf8 0 28%, #fff4de 66%, #f5e4bd 100%);
    z-index: 1;
}

.intro-slide-img.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

/* Dynamic Products Showcase Grid Layout */
.dynamic-showcase-container {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    box-shadow: var(--card-shadow);
    padding: 40px !important;
    border-radius: 8px;
    position: relative;
    z-index: 10;
}

.category-product-grid {
    display: flex;
    gap: 20px;
    width: 100%;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding-bottom: 10px;
    scrollbar-width: none;
}

.category-product-grid::-webkit-scrollbar {
    display: none;
}

.product-card-item {
    flex: 0 0 calc(33.333% - 14px);
    scroll-snap-align: start;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s, box-shadow 0.2s;
}

.showcase-top-row {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 20px;
}

.showcase-arrows {
    display: flex;
    gap: 10px;
}

.showcase-arrow-btn {
    width: 40px;
    height: 40px;
    border: 1px solid #cbd5e0;
    background: #ffffff;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: all 0.2s;
}

.showcase-arrow-btn:hover {
    background: var(--primary-red);
    color: #ffffff;
    border-color: var(--primary-red);
}

.product-card-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.product-card-img-wrap {
    padding: 20px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 180px;
    border-bottom: 1px solid #edf2f7;
}

.product-card-img-wrap img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.product-card-pack {
    margin: 15px;
    border: 1px solid #e2e8f0;
    padding: 8px;
    text-align: left;
    font-size: 13px;
    font-weight: 700;
    color: #4a5568;
    border-radius: 4px;
    position: relative;
}

.product-card-pack::after {
    content: '\2193';
    color: #48bb78;
    position: absolute;
    right: 10px;
    font-weight: bold;
}

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

.product-card-category {
    font-size: 12px;
    color: #a0aec0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.product-card-title {
    font-size: 16px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 15px;
    flex-grow: 1;
}

.product-card-order-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    background: #8b6d28;
    color: #ffffff;
    text-align: center;
    padding: 12px;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.2s;
}

.product-card-order-btn:hover {
    background: #744210;
}

/* Services Layout */
.split-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.services-carousel-side {
    flex: 0.9;
    display: flex;
    gap: 15px;
}

.service-slide-card {
    background: #ffffff;
    border: 1px solid #ddd;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    flex: 1;
}

.service-img-element {
    width: 100%;
    height: 140px;
    object-fit: cover;
}

.service-card-info {
    padding: 12px;
    text-align: center;
}

.service-card-info h4 {
    font-size: 13px;
    color: #333;
    font-weight: 700;
}

/* Testimonials System */
.testimonial-slider-wrapper {
    position: relative;
    max-width: 750px;
    margin: 0 auto;
    height: 180px;
}

.testimonial-card.item-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffecbb;
    border: 1px solid #dddddd;
    padding: 35px;
    border-radius: 12px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.testimonial-card.item-slide.active {
    opacity: 1;
    visibility: visible;
}

.testimonial-quote {
    font-size: 15px;
    font-style: italic;
    color: #444444;
    margin-bottom: 12px;
    line-height: 1.6;
}

.testimonial-author {
    color: var(--primary-red);
    font-weight: 700;
    font-size: 14px;
}

.testimonial-dots-row {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.t-dot {
    width: 8px;
    height: 8px;
    background: #e2e8f0;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.t-dot.active {
    background: var(--accent-gold);
    width: 20px;
    border-radius: 4px;
}

/* ==========================================================================
   UPDATED INLINE LEGAL LINKS BRAND FOOTER (MATCHES IMAGE SPECIFICATION)
   ========================================================================== */
.sakthi-style-footer {
    background: #0d1527;
    /* Sophisticated deep midnight-blue navy base tint */
    color: #ffffff;
    padding: 24px 6%;
    font-size: 13px;
    border-top: 4px solid var(--primary-red);
}

.footer-top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.copyright-side p {
    font-weight: 400;
    letter-spacing: 0.3px;
    opacity: 0.95;
}

.brand-highlight {
    color: var(--accent-gold);
    font-weight: 600;
}

/* Horizontal Link Elements Styling Rule Matrix */
.footer-legal-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0;
}

.footer-legal-links li {
    display: flex;
    align-items: center;
}

/* Insert structural vertical line dividers dynamically between lists safely */
.footer-legal-links li:not(:last-child)::after {
    content: "|";
    color: #ffffff;
    opacity: 0.4;
    margin: 0 15px;
    font-size: 12px;
    font-weight: 300;
}

.footer-legal-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.2px;
    transition: color 0.2s ease;
}

.footer-legal-links a:hover {
    color: var(--accent-gold);
}

/* Page entrance and scroll reveal animations */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--reveal-delay, 0ms);
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

@keyframes heroContentIn {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .reveal-on-scroll,
    .reveal-on-scroll.revealed,
    .hero-slide.active .hero-slide-content {
        opacity: 1;
        transform: none;
        transition: none;
        animation: none;
    }
}

/* Responsive Adaptive Layer Changes */
@media (max-width: 992px) {
    .profile-split-layout {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .split-layout {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }

    .services-carousel-side {
        width: 100%;
    }

    .showcase-main-body {
        flex-direction: column;
        gap: 30px;
    }

    .showcase-top-row {
        justify-content: center;
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .header-inner {
        flex-direction: row;
        padding: 8px 18px;
    }

    .brand-logo {
        width: 72px;
        height: 72px;
    }

    .hero-slider-container {
        height: 340px;
    }

    .hero-slide-content h1 {
        font-size: 26px;
    }

    .hero-slide-content p {
        font-size: 14px;
    }

    .testimonial-slider-wrapper {
        height: 230px;
    }

    .watermark-bg,
    .watermark-center {
        display: none;
    }

    /* Flip block elements vertically on small screens nicely */
    .footer-top-row {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .footer-legal-links {
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* Hero banner — editorial product showcase */
.hero-slider-container {
    height: clamp(620px, 78vh, 760px);
    min-height: 620px;
    background: #102f26;
    border-radius: 0;
    isolation: isolate;
}

.hero-slider-container::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    background:
        radial-gradient(circle at 82% 48%, rgba(240, 189, 83, .22), transparent 24%),
        linear-gradient(90deg, transparent 0 68%, rgba(255, 255, 255, .07) 68% 68.15%, transparent 68.15%);
}

.hero-slide {
    padding: 0 max(6vw, calc((100% - 1220px) / 2));
    background-position: center;
}

.hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(8, 31, 24, .96) 0%, rgba(11, 39, 30, .88) 46%, rgba(11, 39, 30, .38) 72%, rgba(11, 39, 30, .48) 100%);
}

.hero-slide::after {
    content: "";
    position: absolute;
    width: min(44vw, 610px);
    aspect-ratio: 1;
    right: 3vw;
    top: 50%;
    transform: translateY(-50%);
    border: 1px solid rgba(255, 255, 255, .17);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, .13), rgba(255, 255, 255, .025) 58%, transparent 59%);
    box-shadow: inset 0 0 80px rgba(255, 255, 255, .04);
}

.hero-slide-content {
    width: 100%;
    max-width: 1220px;
    margin: 0 auto;
    color: #fff;
}

.hero-slide-content::before {
    content: "FRESHLY MILLED  /  HONESTLY MADE";
    margin-bottom: 22px;
    padding: 8px 14px;
    border: 1px solid rgba(242, 199, 109, .45);
    border-radius: 999px;
    background: rgba(255, 255, 255, .06);
    color: #f2c76d;
    font-size: 10px;
    letter-spacing: 2.3px;
    backdrop-filter: blur(8px);
}

.hero-slide-content h1 {
    width: 54%;
    max-width: 650px;
    margin-bottom: 20px;
    font-size: clamp(56px, 6vw, 86px);
    line-height: .96;
    letter-spacing: -3px;
    text-shadow: 0 10px 35px rgba(0, 0, 0, .28);
}

.hero-slide-content p {
    width: 47%;
    max-width: 550px;
    margin-bottom: 34px;
    color: rgba(255, 255, 255, .78);
    font-size: 17px;
    line-height: 1.75;
}

.hero-pack-carousel {
    position: absolute;
    z-index: 5;
    top: 50%;
    right: 1%;
    width: 44%;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 14px;
    transform: translateY(-47%);
}

.hero-pack-item {
    width: clamp(100px, 8.5vw, 138px);
    height: clamp(145px, 13vw, 200px);
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, .72);
    border-radius: 22px;
    background: rgba(255, 255, 255, .93);
    box-shadow: 0 30px 55px rgba(0, 0, 0, .32);
    transform: translateY(10px) rotate(-2deg);
}

.hero-pack-item:nth-child(even) {
    transform: translateY(-18px) rotate(2deg);
}

.hero-pack-item:hover {
    transform: translateY(-28px) scale(1.04);
}

.hero-pack-item img {
    filter: drop-shadow(0 10px 10px rgba(0, 0, 0, .14));
}

.pack-size-badge {
    bottom: -12px;
    padding: 5px 12px;
    background: #a92d25;
    border: 3px solid #fff;
}

.slider-cta-btn {
    position: relative;
    padding: 15px 30px;
    border-radius: 8px;
    background: #e6ad43;
    color: #17352b;
    font-size: 13px;
    letter-spacing: .7px;
    box-shadow: 0 16px 38px rgba(0, 0, 0, .24);
}

.slider-cta-btn::after {
    content: "  →";
    margin-left: 10px;
    font-size: 17px;
}

.slide-arrow {
    top: auto;
    bottom: 34px;
    transform: none;
}

.left-arrow {
    left: max(6vw, calc((100% - 1220px) / 2));
}

.right-arrow {
    left: calc(max(6vw, calc((100% - 1220px) / 2)) + 58px);
    right: auto;
}

.slider-dot-navigation {
    left: auto;
    right: max(6vw, calc((100% - 1220px) / 2));
    bottom: 48px;
    transform: none;
}

@media (max-width: 900px) {
    .hero-slider-container {
        height: 680px;
        min-height: 680px;
    }

    .hero-slide {
        padding: 55px 22px 70px;
        align-items: flex-end;
        text-align: center;
    }

    .hero-slide::before {
        background: linear-gradient(0deg, rgba(8, 31, 24, .98) 0%, rgba(8, 31, 24, .72) 66%, rgba(8, 31, 24, .35) 100%);
    }

    .hero-slide::after {
        width: 330px;
        top: 31%;
        right: 50%;
        transform: translate(50%, -50%);
    }

    .hero-slider-container::before {
        background: radial-gradient(circle at 50% 28%, rgba(240, 189, 83, .18), transparent 27%);
    }

    .hero-slide-content::before {
        margin-bottom: 14px;
    }

    .hero-slide-content h1,
    .hero-slide-content p {
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-slide-content h1 {
        font-size: clamp(39px, 12vw, 58px);
        letter-spacing: -1.5px;
    }

    .hero-slide-content p {
        margin-bottom: 23px;
        font-size: 14px;
        line-height: 1.6;
    }

    .hero-pack-carousel {
        top: 29%;
        right: 50%;
        width: 92%;
        gap: 8px;
        transform: translate(50%, -50%);
    }

    .hero-pack-item {
        width: min(20vw, 86px);
        height: min(27vw, 118px);
        padding: 8px;
        border-radius: 14px;
    }

    .pack-size-badge {
        padding: 2px 7px;
        border-width: 2px;
        font-size: 9px;
    }

    .slide-arrow {
        display: none;
    }

    .slider-dot-navigation {
        right: 50%;
        bottom: 22px;
        transform: translateX(50%);
        max-width: 82%;
        gap: 5px;
    }

    .navigation-dot {
        width: 10px;
    }

    .navigation-dot.active {
        width: 24px;
    }
}

/* Preserve the established shree Ganga theme colors in the new banner. */
.hero-slider-container {
    background: var(--forest);
}

.hero-slider-container::before {
    background: var(--accent-gold);
    opacity: .16;
}

.hero-slide::before {
    background: linear-gradient(90deg, rgba(10, 34, 27, .97) 0%, rgba(16, 52, 41, .92) 48%, rgba(16, 52, 41, .62) 72%, rgba(16, 52, 41, .44) 100%);
}

.hero-slide::after {
    border-color: rgba(229, 169, 19, .34);
    background: rgba(255, 255, 255, .1);
    box-shadow: 0 30px 80px rgba(0, 0, 0, .28);
}

.hero-brand-label,
.hero-slide-content:not(:has(.hero-brand-label))::before {
    color: #f0c865;
}

.hero-slide-content h1 {
    color: #fff;
}

.hero-slide-content p {
    color: rgba(255, 255, 255, .82);
}

.hero-slide-content p::after {
    color: #f0c865;
}

.slider-cta-btn {
    background: var(--primary-red);
    color: #fff;
}

.navigation-dot {
    border-color: rgba(255, 255, 255, .75);
}

.navigation-dot.active {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
}

@media (max-width: 900px) {
    .hero-slide::before {
        background: linear-gradient(0deg, rgba(10, 34, 27, .98) 0%, rgba(16, 52, 41, .9) 62%, rgba(16, 52, 41, .46) 100%);
    }

    .hero-slide-content p {
        color: rgba(255, 255, 255, .82);
    }
}

/* Banner redesign v2 — clean FMCG campaign style */
.hero-slider-container {
    height: 640px;
    min-height: 640px;
    overflow: hidden;
    background: #f8edda;
}

.hero-slider-container::before {
    inset: auto -8vw -34% auto;
    width: 52vw;
    height: 52vw;
    border-radius: 50%;
    background: #e7ad3f;
    opacity: .95;
}

.hero-slide {
    padding: 0 max(7vw, calc((100% - 1180px) / 2));
    background-size: cover;
    background-position: center;
}

.hero-slide::before {
    background: linear-gradient(90deg, rgba(250, 244, 232, .98) 0%, rgba(250, 244, 232, .96) 48%, rgba(250, 244, 232, .48) 72%, rgba(250, 244, 232, .22) 100%);
}

.hero-slide::after {
    width: 490px;
    right: 7%;
    border: 2px dashed rgba(169, 45, 37, .22);
    background: #fff8ec;
    box-shadow: 0 30px 80px rgba(94, 61, 21, .18);
}

.hero-slide-content {
    color: var(--ink);
}

.hero-slide-content::before {
    display: none;
}

.hero-slide-content:not(:has(.hero-brand-label))::before {
    content: "Made with care. Packed with purity.";
    display: inline-flex;
    margin-bottom: 20px;
    padding: 0;
    border: 0;
    background: none;
    color: var(--primary-red);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

.hero-brand-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    color: var(--primary-red);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

.hero-brand-label::before {
    content: "";
    width: 34px;
    height: 2px;
    background: var(--accent-gold);
}

.hero-slide-content h1 {
    width: 52%;
    color: #173b31;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(58px, 6.4vw, 92px);
    line-height: .94;
    text-shadow: none;
}

.hero-slide-content p {
    width: 43%;
    color: #626a64;
    font-size: 17px;
    text-shadow: none;
}

.hero-slide-content p::after {
    content: "100% quality checked   •   Hygienically packed";
    display: block;
    margin-top: 18px;
    color: #8a6720;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .6px;
    text-transform: uppercase;
}

.hero-pack-carousel {
    top: 50%;
    right: 7%;
    width: 490px;
    height: 490px;
    align-items: center;
}

.hero-pack-item {
    display: none;
}

.hero-pack-item:first-child {
    display: flex;
    width: 285px;
    height: 380px;
    padding: 22px;
    border: 0;
    border-radius: 26px;
    background: #fff;
    box-shadow: 0 35px 65px rgba(69, 43, 16, .22);
    transform: rotate(3deg);
}

.hero-pack-item:first-child:hover {
    transform: rotate(0) translateY(-10px) scale(1.02);
}

.pack-size-badge {
    bottom: 16px;
    right: -22px;
    padding: 9px 16px;
    border: 4px solid #fff;
    font-size: 12px;
}

.slider-cta-btn {
    background: var(--primary-red);
    color: #fff;
    border-radius: 999px;
}

.slider-cta-btn:hover {
    background: #842018;
    color: #fff;
}

.slide-arrow {
    background: #173b31;
    border: 0;
}

.navigation-dot {
    border-color: #173b31;
}

.navigation-dot.active {
    background: var(--primary-red);
    border-color: var(--primary-red);
}

@media (max-width: 900px) {
    .hero-slider-container {
        height: 690px;
        min-height: 690px;
    }

    .hero-slide {
        padding: 36px 22px 68px;
        align-items: flex-end;
    }

    .hero-slide::before {
        background: linear-gradient(0deg, rgba(250, 244, 232, 1) 0%, rgba(250, 244, 232, .96) 58%, rgba(250, 244, 232, .55) 100%);
    }

    .hero-slide::after {
        top: 28%;
        right: 50%;
        width: 280px;
        transform: translate(50%, -50%);
    }

    .hero-pack-carousel {
        top: 28%;
        right: 50%;
        width: 280px;
        height: 280px;
        transform: translate(50%, -50%);
    }

    .hero-pack-item:first-child {
        width: 150px;
        height: 205px;
        padding: 12px;
        border-radius: 17px;
    }

    .hero-brand-label {
        margin-bottom: 10px;
        font-size: 9px;
    }

    .hero-slide-content h1 {
        width: 100%;
        font-size: clamp(42px, 13vw, 58px);
    }

    .hero-slide-content p {
        width: 100%;
        margin-bottom: 20px;
        color: #626a64;
    }

    .hero-slide-content p::after {
        margin-top: 10px;
        font-size: 9px;
    }

    .pack-size-badge {
        right: -15px;
        bottom: 10px;
        padding: 5px 9px;
    }

    .slider-dot-navigation {
        bottom: 20px;
    }
}

/* ========================================================================== 
   PREMIUM BRAND REDESIGN
   ========================================================================== */
:root {
    --primary-red: #b52b24;
    --accent-gold: #d79b2b;
    --forest: #173d31;
    --cream: #f7f1e7;
    --ink: #18221e;
    --muted: #6e746f;
    --card-shadow: 0 24px 60px rgba(32, 45, 39, 0.1);
}

html {
    scroll-behavior: smooth;
}

body {
    background: #fffdf9;
    color: var(--ink);
}

.top-bar {
    background: var(--forest);
    border: 0;
    padding: 7px max(4%, calc((100% - 1180px) / 2));
    color: rgba(255, 255, 255, .86);
    letter-spacing: .3px;
}

.sakthi-style-header {
    box-shadow: 0 8px 30px rgba(23, 61, 49, .07);
    border: 0;
}

.header-inner {
    max-width: 1180px;
    padding: 7px 20px;
}

/* .brand-logo {
    width: 82px;
    height: 82px;
    object-fit: contain;
} */

.main-navigation {
    align-items: center;
    gap: 5px;
}

.nav-item {
    padding: 10px 14px;
    border-radius: 999px;
    color: #39443f;
}

.nav-item:hover,
.nav-item.active {
    color: #fff;
    background: var(--primary-red);
}

.hero-slider-container {
    height: min(650px, 72vh);
    min-height: 500px;
}

.hero-slide {
    padding: 0 max(8%, calc((100% - 1160px) / 2));
    background-position: center;
}

.hero-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(12, 31, 25, .76) 0%, rgba(12, 31, 25, .30) 52%, transparent 78%);
}

.hero-slide-content {
    position: relative;
    max-width: 660px;
}

.hero-slide-content::before {
    content: "shree GANGA • PURE FOOD COLLECTION";
    display: inline-block;
    margin-bottom: 18px;
    color: #ffd88a;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2.2px;
}

.hero-slide-content h1 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(42px, 5vw, 70px);
    line-height: 1.02;
    letter-spacing: -1.5px;
    margin-bottom: 22px;
}

.hero-slide-content p {
    max-width: 580px;
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255, 255, 255, .9);
    margin-bottom: 25px;
}

.hero-pack-carousel {
    display: flex;
    gap: 15px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.hero-pack-item {
    width: 85px;
    height: 110px;
    padding: 10px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
    cursor: pointer;
}

.hero-pack-item:hover {
    transform: translateY(-5px);
}

.pack-size-badge {
    background: var(--forest);
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 11px;
    padding: 3px 10px;
}

.slider-cta-btn {
    padding: 13px 27px;
    border: 0;
    border-radius: 999px;
    box-shadow: 0 10px 30px rgba(181, 43, 36, .3);
    transition: transform .25s, background .25s;
}

.slider-cta-btn:hover {
    background: #d13a31;
    transform: translateY(-3px);
}

.slide-arrow {
    width: 46px;
    height: 46px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 50%;
    backdrop-filter: blur(6px);
}

.navigation-dot {
    width: 22px;
    height: 4px;
    border-radius: 10px;
}

.trust-strip {
    position: relative;
    z-index: 20;
    max-width: 1060px;
    margin: -42px auto 0;
    padding: 22px 30px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 22px 60px rgba(23, 61, 49, .15);
}

.trust-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 4px 24px;
    border-right: 1px solid #e6e4dc;
}

.trust-item:last-child {
    border-right: 0;
}

.trust-icon {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    border-radius: 50%;
    background: #f8e6df;
    color: var(--primary-red);
    font-size: 11px;
    font-weight: 800;
}

.trust-item strong,
.trust-item small {
    display: block;
}

.trust-item strong {
    font-size: 14px;
    color: var(--forest);
}

.trust-item small {
    color: var(--muted);
    font-size: 11px;
}

.brand-intro-section {
    position: relative;
    padding: 105px 0 110px;
    background: #fffdf9;
    overflow: hidden;
}

.section-container {
    max-width: 1180px;
    padding: 55px 25px;
}

.profile-split-layout {
    display: flex !important;
    flex-wrap: wrap;
    gap: 0 !important;
    margin-left: auto;
    margin-right: auto;
}

.profile-split-layout>.intro-text-block {
    flex: 0 0 50%;
    width: 50%;
    min-width: 0;
}

.profile-split-layout>.profile-box-wrapper {
    flex: 0 0 25%;
    width: 25%;
    min-width: 0;
}

.top-mini-tag,
.section-kicker {
    color: var(--primary-red);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2.2px;
}

.sub-heading,
.center-heading {
    font-family: Georgia, 'Times New Roman', serif;
    color: var(--forest);
    text-transform: none;
}

.sub-heading {
    font-size: clamp(38px, 4vw, 55px);
    line-height: 1.1;
}

.intro-description {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.9;
    text-align: left;
}

.read-more-btn {
    color: var(--forest);
    border-color: var(--primary-red);
}

.img-frame {
    max-width: none;
    padding: 10px;
    border: 0;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

.gallery-photo-element,
.intro-slide-img {
    border-radius: 17px;
}

.watermark-bg,
.watermark-center {
    font-family: Georgia, serif;
    color: rgba(23, 61, 49, .035);
}

.category-section {
    position: relative;
    max-width: 1180px;
    margin: 0 auto;
    padding: 50px 25px 140px;
}

.category-heading-row {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 38px;
}

.category-heading-row .sub-heading {
    margin: 6px 0 0;
}

.category-heading-row>p {
    max-width: 430px;
    color: var(--muted);
    line-height: 1.8;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.category-card {
    position: relative;
    min-height: 390px;
    overflow: hidden;
    background: #fff4de;
    border-radius: 24px;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 18px 45px rgba(23, 61, 49, .12);
    isolation: isolate;
}

.category-card::after {
    display: none;
}

.category-card img {
    position: absolute;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    /* Keep the entire product pack visible within every equal-sized card. */
    object-fit: contain;
    transition: transform .65s cubic-bezier(.22, 1, .36, 1), filter .4s;
}

.category-card:hover img {
    transform: scale(1.09);
    filter: saturate(1.12);
}

.category-card:hover::after {
    background: linear-gradient(0deg, rgba(181, 43, 36, .92), rgba(10, 28, 22, .05) 72%);
}

.category-number {
    display: none;
}

.category-card-copy {
    display: none;
}

.category-card-copy small,
.category-card-copy strong,
.category-card-copy span {
    display: block;
}

.category-card-copy small {
    margin-bottom: 5px;
    color: #f2ca7d;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.7px;
}

.category-card-copy strong {
    font-family: Georgia, serif;
    font-size: 30px;
    line-height: 1.1;
}

.category-card-copy span {
    margin-top: 13px;
    font-size: 12px;
    font-weight: 700;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .35s, transform .35s;
}

.category-card:hover .category-card-copy {
    transform: translateY(0);
}

.category-card:hover .category-card-copy span {
    opacity: 1;
    transform: translateY(0);
}

.brand-intro-section>.section-container,
.category-section>.category-heading-row,
.category-section>.category-grid,
.trending-products-section>.watermark-center,
.trending-products-section>.section-kicker,
.trending-products-section>.center-heading,
.trending-products-section>.dynamic-showcase-container,
.testimonials-section>.watermark-center,
.testimonials-section>.section-kicker,
.testimonials-section>.center-heading,
.testimonials-section>.section-container {
    position: relative;
    z-index: 1;
}

.trending-products-section {
    position: relative;
    padding: 90px 20px 110px;
    background: var(--cream);
    overflow: hidden;
}

.section-kicker {
    display: block;
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 8px;
}

.center-heading {
    font-size: clamp(34px, 4vw, 48px);
    margin-bottom: 42px;
}

.dynamic-showcase-container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 24px 34px 34px !important;
    border: 1px solid rgba(23, 61, 49, .08);
    border-radius: 28px;
    box-shadow: var(--card-shadow);
}

.mini-icon-circle {
    width: 70px;
    height: 70px;
    border: 0;
    background: #f7f3ec;
}

.mini-icon-circle:hover,
.mini-icon-circle.active {
    border: 0;
    background: #fff;
    box-shadow: 0 0 0 3px var(--primary-red), 0 10px 25px rgba(23, 61, 49, .12);
}

.showcase-arrow-btn {
    border: 0;
    border-radius: 50%;
    background: var(--forest);
    color: #fff;
}

.showcase-main-body {
    display: grid !important;
    grid-template-columns: minmax(320px, .9fr) minmax(360px, 1.1fr);
    align-items: center;
    gap: 55px;
    min-height: 440px;
    padding: 22px 28px 5px;
    overflow: hidden;
}

.showcase-main-body>.showcase-display-left,
.showcase-main-body>.showcase-content-right {
    width: 100%;
    min-width: 0;
}

.main-display-image-wrap {
    position: relative;
    min-height: 350px;
    border-radius: 28px;
    background: radial-gradient(circle, #fff 20%, #f5eee2 100%);
}

.main-display-image-wrap::after {
    content: "PREMIUM QUALITY";
    position: absolute;
    left: 18px;
    bottom: 16px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(23, 61, 49, .9);
    color: #fff;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.2px;
}

.main-display-image-wrap img {
    max-height: 310px;
}

.showcase-content-right h3 {
    font-family: Georgia, serif;
    color: var(--forest);
    font-size: clamp(34px, 4vw, 48px);
    line-height: 1.1;
}

.showcase-tag-bubble {
    background: #f7e6cb;
    border: 0;
    color: #805b17;
}

.showcase-content-right p {
    color: var(--muted);
    line-height: 1.9;
    text-align: left;
}

.all-products-action-link {
    display: inline-block;
    padding: 11px 22px;
    color: #fff;
    background: var(--primary-red);
    border: 0;
    border-radius: 999px;
}

.all-products-action-link,
.showcase-arrow-btn,
.nav-item {
    transition: transform .25s ease, background .25s ease, color .25s ease, box-shadow .25s ease;
}

.all-products-action-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(181, 43, 36, .25);
}

.showcase-arrow-btn:hover {
    transform: translateY(-2px) scale(1.06);
}

.showcase-main-body.slide-changing .showcase-display-left {
    animation: productImageSlide .45s ease both;
}

.showcase-main-body.slide-changing .showcase-content-right {
    animation: productContentSlide .45s ease both;
}

@keyframes productImageSlide {
    from {
        opacity: 0;
        transform: translateX(-25px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes productContentSlide {
    from {
        opacity: 0;
        transform: translateX(25px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.testimonials-section {
    position: relative;
    padding: 95px 20px 105px;
    background: var(--forest);
    overflow: hidden;
}

.testimonials-section .center-heading {
    color: #fff;
}

.testimonials-section .section-kicker {
    color: #eac16e;
}

.testimonials-section .watermark-center {
    color: rgba(255, 255, 255, .035);
}

.testimonials-section .section-container {
    padding-top: 0;
}

.testimonial-slider-wrapper {
    max-width: 850px;
    height: 205px;
}

.testimonial-card.item-slide {
    padding: 42px 70px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 24px;
    background: #234d40;
    box-shadow: 0 22px 50px rgba(0, 0, 0, .16);
}

.testimonial-quote {
    color: rgba(255, 255, 255, .9);
    font-family: Georgia, serif;
    font-size: 18px;
    line-height: 1.8;
}

.testimonial-author {
    color: #efc778;
}

.t-dot {
    background: rgba(255, 255, 255, .25);
}

.sakthi-style-footer {
    padding: 0;
    background: #102e25;
    border: 0;
    color: #fff;
}

.footer-main {
    padding-top: 72px;
    padding-bottom: 65px;
}

.footer-brand-column {
    display: flex;
    align-items: flex-start;
    gap: 22px;
}

.footer-logo {
    width: 82px;
    height: 82px;
    padding: 6px;
    flex: 0 0 82px;
    object-fit: contain;
    background: #fff;
    border-radius: 18px;
}

.footer-eyebrow {
    display: block;
    margin-bottom: 9px;
    color: #efc778;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.8px;
}

.footer-brand-column h2 {
    margin: 0 0 14px;
    color: #fff;
    font: 42px/1.05 Georgia, serif;
}

.footer-brand-column p {
    max-width: 390px;
    margin: 0;
    color: rgba(255, 255, 255, .65);
    font-size: 13px;
    line-height: 1.75;
}

.footer-column h3 {
    position: relative;
    margin: 0 0 24px;
    padding-bottom: 12px;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
}

.footer-column h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: var(--accent-gold);
}

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

.footer-nav-list li {
    margin-bottom: 11px;
}

.footer-nav-list a,
.footer-column address a,
.footer-column address span {
    display: block;
    color: rgba(255, 255, 255, .7);
    text-decoration: none;
    font-size: 13px;
    font-style: normal;
    transition: color .2s, transform .2s;
}

.footer-nav-list a:hover,
.footer-column address a:hover {
    color: #efc778;
    transform: translateX(4px);
}

.footer-column address {
    margin: 0 0 20px;
    line-height: 1.9;
}

.footer-contact-btn {
    display: inline-block;
    padding: 10px 18px;
    border: 1px solid rgba(239, 199, 120, .65);
    border-radius: 999px;
    color: #efc778;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    transition: .25s;
}

.footer-contact-btn:hover {
    color: #102e25;
    background: #efc778;
}

.footer-bottom {
    padding: 19px 0;
    background: #0a211a;
    border-top: 1px solid rgba(255, 255, 255, .08);
}

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

.brand-highlight {
    color: #efc778;
}

.footer-legal-links {
    margin: 0;
    padding: 0;
}

@media (max-width: 991.98px) {
    .profile-split-layout>.intro-text-block {
        flex: 0 0 100%;
        width: 100%;
    }

    .profile-split-layout>.profile-box-wrapper {
        flex: 0 0 50%;
        width: 50%;
    }

    .showcase-main-body {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .top-bar-right {
        display: none;
    }

    .top-bar {
        justify-content: center;
        text-align: center;
    }

    .top-bar-left span:last-child {
        display: none;
    }

    .brand-logo {
        width: 66px;
        height: 66px;
    }

    .main-navigation {
        padding-top: 95px;
        background: #fffdf9;
    }

    .hero-slider-container {
        height: 520px;
        min-height: 520px;
    }

    .hero-slide {
        padding: 0 28px 35px;
        align-items: flex-end;
    }

    .hero-slide::after {
        background: linear-gradient(0deg, rgba(12, 31, 25, .9) 0%, rgba(12, 31, 25, .3) 80%);
    }

    .hero-slide-content h1 {
        font-size: 39px;
    }

    .hero-slide-content p {
        font-size: 14px;
        line-height: 1.65;
    }

    .slide-arrow {
        display: none;
    }

    .trust-strip {
        width: calc(100% - 30px);
        margin-top: -20px;
        padding: 18px;
        grid-template-columns: 1fr;
    }

    .trust-item {
        justify-content: flex-start;
        padding: 12px 4px;
        border-right: 0;
        border-bottom: 1px solid #eee9df;
    }

    .trust-item:last-child {
        border-bottom: 0;
    }

    .brand-intro-section {
        padding: 55px 0 75px;
    }

    .section-container {
        padding: 35px 18px;
    }

    .profile-split-layout {
        width: 100%;
        padding-left: 18px;
        padding-right: 18px;
    }

    .profile-split-layout>.intro-text-block {
        flex: 0 0 100%;
        width: 100%;
    }

    .profile-split-layout>.profile-box-wrapper {
        flex: 0 0 50%;
        width: 50%;
        padding-left: 6px;
        padding-right: 6px;
    }

    .img-frame {
        aspect-ratio: 1 / 1;
    }

    .intro-description {
        width: 100%;
        max-width: none;
    }

    .category-section {
        padding: 45px 15px 95px;
    }

    .category-heading-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

    .category-grid {
        grid-template-columns: 1fr;
    }

    .category-card {
        min-height: 320px;
    }

    .category-card-copy {
        transform: none;
    }

    .category-card-copy span {
        opacity: 1;
        transform: none;
    }

    .intro-text-block {
        text-align: left;
    }

    .trending-products-section,
    .testimonials-section {
        padding: 65px 10px 75px;
    }

    .dynamic-showcase-container {
        padding: 18px 16px 34px !important;
    }

    .mini-icons-grid {
        width: 100%;
        justify-content: space-between;
        gap: 7px;
    }

    .mini-icon-circle {
        width: 55px;
        height: 55px;
    }

    .main-display-image-wrap {
        min-height: 270px;
    }

    .showcase-main-body {
        width: 100%;
        min-height: 0;
        padding: 10px 0 0;
    }

    .showcase-content-right h3 {
        font-size: 34px;
    }

    .testimonial-slider-wrapper {
        height: 285px;
    }

    .testimonial-card.item-slide {
        padding: 30px 24px;
    }

    .testimonial-quote {
        font-size: 15px;
    }

    .footer-main {
        padding: 50px 22px 42px;
    }

    .footer-brand-column {
        flex-direction: column;
        gap: 18px;
    }

    .footer-logo {
        width: 70px;
        height: 70px;
        flex-basis: 70px;
    }

    .footer-brand-column h2 {
        font-size: 34px;
    }

    .footer-column h3 {
        margin-bottom: 18px;
    }

    .footer-bottom {
        padding: 20px 18px;
        text-align: center;
    }

    .footer-legal-links li:not(:last-child)::after {
        margin: 0 9px;
    }
}

/* --- NEW DROPDOWN MENU STYLES --- */
.has-dropdown {
    position: relative;
}

.dropdown-arrow {
    font-size: 10px;
    margin-left: 4px;
    vertical-align: middle;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    min-width: 200px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s ease;
    border-radius: 8px;
    padding: 10px 0;
    list-style: none;
    z-index: 999;
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    color: #4a5568;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.2s, color 0.2s;
}

.dropdown-menu li a:hover {
    background: #f7fafc;
    color: var(--primary-red);
}

/* --- EXCLUSIVE STAPLES BANNER GRID --- */
.category-banner-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

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

@media (max-width: 576px) {
    .category-banner-grid {
        grid-template-columns: 1fr;
    }
}

.category-banner {
    position: relative;
    height: 180px;
    border-radius: 12px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.category-banner:hover {
    transform: translateY(-5px);
}

.category-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2));
    z-index: 1;
}

.category-banner h3 {
    position: relative;
    z-index: 2;
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.category-banner.active {
    border: 3px solid var(--primary-red);
}


/* Responsive Design */
@media (max-width: 991px) {
    .header-inner {
        padding: 10px;
    }

    .brand-logo {
        height: 70px;
        width: 70px;
    }

    .nav-list {
        gap: 10px !important;
    }

    .hero-content-left h1 {
        font-size: 32px;
    }

    .hero-content-left p {
        font-size: 16px;
    }

    .trust-strip {
        flex-wrap: wrap;
        justify-content: center;
    }

    .trust-item {
        flex: 1 1 45%;
        margin-bottom: 10px;
        justify-content: center;
    }

    .staples-layout {
        flex-direction: column !important;
    }

    .staples-sidebar {
        width: 100% !important;
        border-right: none;
        border-bottom: 1px solid #e2e8f0;
    }

    .category-list {
        display: flex;
        overflow-x: auto;
        scrollbar-width: none;
        max-height: none !important;
    }

    .category-list::-webkit-scrollbar {
        display: none;
    }

    .cat-item {
        flex: 0 0 auto;
        border-bottom: none !important;
        border-right: 1px solid #e2e8f0;
    }

    .dynamic-showcase-container {
        padding: 15px !important;
    }

    .product-card-item {
        flex: 0 0 calc(50% - 10px);
    }

    .split-layout {
        flex-direction: column;
    }

    .video-side {
        order: -1;
        margin-bottom: 20px;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .contact-grid {
        flex-direction: column;
    }

    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .top-bar {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }

    .top-bar-left span,
    .top-bar-right span {
        display: block;
        margin: 2px 0;
    }

    .menu-toggle {
        display: flex !important;
        flex-direction: column;
        justify-content: space-around;
        width: 30px;
        height: 25px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 2001;
    }

    .menu-toggle span {
        display: block;
        width: 100%;
        height: 3px;
        background: #333;
        transition: all 0.3s;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: translateY(11px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-11px) rotate(-45deg);
    }

    .main-navigation {
        position: fixed;
        top: 0;
        right: -100%;
        width: 250px;
        height: 100vh;
        background: #fff;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        transition: right 0.3s;
        z-index: 2000;
        padding-top: 80px;
    }

    .main-navigation.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column !important;
        align-items: flex-start !important;
        padding: 20px;
        width: 100%;
    }

    .nav-list li {
        width: 100%;
        border-bottom: 1px solid #eee;
    }

    .nav-list li a {
        display: block;
        padding: 15px !important;
    }

    .dropdown-menu {
        position: static !important;
        box-shadow: none !important;
        border-left: 2px solid transparent !important;
        padding-left: 15px;
        display: block !important;
        max-height: 0;
        overflow: hidden;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
        margin: 0;
        opacity: 0;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, padding 0.4s ease, border-color 0.4s ease;
    }

    .has-dropdown.active .dropdown-menu {
        max-height: 450px;
        opacity: 1;
        padding-top: 10px !important;
        padding-bottom: 10px !important;
        border-left-color: #8b6d28 !important;
    }

    .menu-backdrop {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1999;
    }

    .menu-backdrop.active {
        display: block;
    }

    .hero-slide {
        justify-content: center;
        text-align: center;
    }

    .hero-slide-content {
        margin-top: 0;
        text-align: center;
    }

    .hero-content-left {
        align-items: center;
    }

    .product-card-item {
        flex: 0 0 calc(50% - 10px) !important;
        scroll-snap-align: start;
    }

    .showcase-info-left {
        max-width: 100% !important;
    }

    #mainShowcaseTitle {
        font-size: 24px !important;
    }

    .showcase-top-row {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }

    .showcase-arrows {
        margin-top: 15px;
    }

    .staples-content {
        padding: 20px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .staples-layout {
        width: 100% !important;
        overflow: hidden !important;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .category-banner {
        height: 150px;
    }

    .category-banner-overlay h3 {
        font-size: 20px;
    }
}


/* Fixes for category sections */
@media (max-width: 768px) {
    .category-grid {
        display: flex !important;
        overflow-x: auto !important;
        scrollbar-width: none;
        scroll-snap-type: x mandatory;
        padding-bottom: 20px;
    }

    .category-grid::-webkit-scrollbar {
        display: none;
    }

    .category-card {
        flex: 0 0 calc(85%) !important;
        scroll-snap-align: start;
    }

    .category-list {
        display: block !important;
        overflow: hidden !important;
        max-height: 0 !important;
        transition: max-height 0.3s ease-out !important;
    }

    .category-list.open {
        max-height: 500px !important;
    }

    .cat-item {
        border-bottom: 1px solid #e2e8f0 !important;
        border-right: none !important;
    }

    .sidebar-header {
        justify-content: space-between !important;
        display: flex !important;
    }
}

/* Final visual system: warm, modern and distinctly food-led. */
:root {
    --primary-red: #a92d25;
    --accent-gold: #d8a33b;
    --forest: #173b31;
    --cream: #f6efe3;
    --ink: #202822;
}

body {
    background: #fffdf8;
    background-image: radial-gradient(circle at 10% 10%, rgba(216, 163, 59, .06), transparent 28%);
}

.sakthi-style-header {
    backdrop-filter: blur(14px);
    background: rgba(255, 253, 248, .95);
}

.header-inner {
    min-height: 88px;
}

.nav-list {
    gap: 4px !important;
}

.nav-list .nav-item {
    padding: 11px 15px !important;
}

.has-dropdown:hover .dropdown-toggle-btn {
    background: var(--primary-red) !important;
    color: #fff !important;
}

.dropdown-menu {
    border-top-color: var(--accent-gold) !important;
    border-radius: 12px;
}

.hero-slider-container {
    border-radius: 0 0 34px 34px;
}

.hero-slide::after {
    background: linear-gradient(90deg, rgba(13, 38, 30, .9) 0%, rgba(13, 38, 30, .63) 45%, rgba(13, 38, 30, .08) 82%);
}

.hero-slide-content {
    margin-top: 0;
}

.hero-slide-content::before {
    content: "shree GANGA \2022  PURE FOOD COLLECTION";
}

.hero-slide-content h1 {
    max-width: 720px;
    text-wrap: balance;
}

.slider-cta-btn {
    background: var(--accent-gold);
    color: #24342c;
    box-shadow: 0 12px 32px rgba(0, 0, 0, .2);
}

.slider-cta-btn:hover {
    background: #efbd57;
    color: #17251f;
}

.navigation-dot {
    border: 1px solid rgba(255, 255, 255, .8);
    background: transparent;
}

.navigation-dot.active {
    width: 38px;
    background: var(--accent-gold);
    border-color: var(--accent-gold);
}

.trust-strip {
    border: 1px solid rgba(23, 59, 49, .07);
}

.trust-icon {
    background: var(--forest);
    color: #f3cf81;
}

.brand-intro-section {
    padding-top: 76px;
}

.sub-heading,
.center-heading {
    letter-spacing: -.03em;
}

.read-more-btn {
    padding: 10px 0 7px;
}

.category-card {
    border: 1px solid rgba(255, 255, 255, .5);
}

.category-card-copy strong {
    text-wrap: balance;
}

.dynamic-showcase-container {
    background: rgba(255, 255, 255, .9);
}

.staples-layout {
    align-items: stretch !important;
}

.staples-sidebar {
    border: 0 !important;
    border-radius: 18px !important;
    box-shadow: none !important;
    background: #f1eadf !important;
}

.sidebar-header {
    background: var(--forest) !important;
    color: #fff !important;
    border: 0 !important;
}

.cat-item {
    border-color: rgba(23, 59, 49, .08) !important;
    transition: background .2s, color .2s;
}

.cat-item.active {
    background: var(--primary-red) !important;
    color: #fff !important;
}

.product-card-item {
    border: 0;
    border-radius: 18px;
}

.product-card-img-wrap {
    height: 210px;
    background: #faf7f1;
}

.product-card-order-btn {
    background: var(--forest);
    border-radius: 999px;
}

@media (max-width: 768px) {
    .top-bar {
        padding: 7px 14px;
    }

    .hero-slider-container {
        height: 560px;
        min-height: 560px;
        border-radius: 0 0 24px 24px;
    }

    .hero-slide {
        padding: 40px 24px 62px;
    }

    .hero-slide-content::before {
        margin-bottom: 12px;
        font-size: 9px;
    }

    .hero-slide-content h1 {
        font-size: clamp(34px, 11vw, 46px);
    }

    .hero-pack-carousel {
        justify-content: center;
    }

    .hero-pack-item {
        width: 68px;
        height: 88px;
    }

    .trust-strip {
        margin-top: -25px;
    }

    .brand-intro-section {
        padding-top: 38px;
    }

    .nav-list .nav-item {
        border-radius: 8px;
    }

    .product-card-item {
        flex-basis: 82% !important;
    }
}

/* Keep the new banner composition above legacy mobile overrides. */
@media (max-width: 900px) {
    .hero-slider-container {
        height: 680px;
        min-height: 680px;
        border-radius: 0;
    }

    .hero-slide {
        padding: 55px 22px 70px;
        align-items: flex-end;
    }

    .hero-slide-content h1 {
        font-size: clamp(39px, 12vw, 58px);
    }

    .hero-pack-carousel {
        top: 29%;
        right: 50%;
        width: 92%;
        justify-content: center;
        transform: translate(50%, -50%);
    }

    .hero-pack-item {
        width: min(20vw, 86px);
        height: min(27vw, 118px);
    }
}

/* Banner palette lock: retain the original brand theme. */
.hero-slider-container {
    background: var(--forest);
}

.hero-slider-container::before {
    background: var(--accent-gold);
    opacity: .16;
}

.hero-slide::before {
    background: linear-gradient(90deg, rgba(10, 34, 27, .97), rgba(16, 52, 41, .91) 49%, rgba(16, 52, 41, .44));
}

.hero-slide::after {
    border-color: rgba(229, 169, 19, .34);
    background: rgba(255, 255, 255, .1);
    box-shadow: 0 30px 80px rgba(0, 0, 0, .28);
}

.hero-brand-label,
.hero-slide-content:not(:has(.hero-brand-label))::before,
.hero-slide-content p::after {
    color: #f0c865;
}

.hero-slide-content h1 {
    color: #fff;
}

.hero-slide-content p {
    color: rgba(255, 255, 255, .82);
}

.slider-cta-btn {
    background: var(--primary-red);
    color: #fff;
}

.navigation-dot {
    border-color: rgba(255, 255, 255, .75);
}

.navigation-dot.active {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
}

@media (max-width: 900px) {
    .hero-slide::before {
        background: linear-gradient(0deg, rgba(10, 34, 27, .98), rgba(16, 52, 41, .88) 62%, rgba(16, 52, 41, .44));
    }

    .hero-slide-content p {
        color: rgba(255, 255, 255, .82);
    }
}

/* Final banner: visible photography with a clean branded content card. */
.hero-slider-container {
    height: 620px;
    min-height: 620px;
    background: #142f27;
    border-radius: 0;
}

.hero-slider-container::before {
    display: none;
}

.hero-slide {
    padding: 0 max(5vw, calc((100% - 1180px) / 2));
    background-size: cover;
    background-position: center;
}

.hero-slide::before {
    content: "";
    display: block;
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(5, 25, 19, .66) 0%, rgba(5, 25, 19, .38) 42%, rgba(5, 25, 19, .03) 72%);
}

.hero-slide::after {
    display: none;
}

.hero-slide-content {
    width: min(600px, 54%);
    max-width: 600px;
    margin: 0;
    padding: 46px 48px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 24px;
    background: rgba(12, 43, 34, .78);
    box-shadow: 0 28px 70px rgba(0, 0, 0, .3);
    backdrop-filter: blur(10px);
}

.hero-brand-label,
.hero-slide-content:not(:has(.hero-brand-label))::before {
    margin-bottom: 15px;
    color: #f0c865;
}

.hero-slide-content h1 {
    width: 100%;
    max-width: none;
    margin-bottom: 18px;
    color: #fff;
    font-size: clamp(48px, 5.2vw, 72px);
    line-height: 1;
    letter-spacing: -2px;
}

.hero-slide-content p {
    width: 100%;
    max-width: 500px;
    margin-bottom: 28px;
    color: rgba(255, 255, 255, .84);
    font-size: 15px;
    line-height: 1.7;
}

.hero-slide-content p::after {
    display: none;
}

.hero-pack-carousel {
    top: 50%;
    right: max(5vw, calc((100% - 1180px) / 2));
    width: 330px;
    height: 440px;
    transform: translateY(-50%);
}

.hero-pack-item {
    display: none;
}

.hero-pack-item:first-child {
    display: flex;
    width: 260px;
    height: 360px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, .7);
    border-radius: 24px;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 30px 65px rgba(0, 0, 0, .38);
    transform: rotate(2deg);
}

.hero-pack-item:first-child:hover {
    transform: translateY(-8px) rotate(0);
}

.slider-cta-btn {
    padding: 13px 26px;
    background: var(--primary-red);
    color: #fff;
    border-radius: 8px;
}

.slide-arrow {
    bottom: 28px;
    background: rgba(12, 43, 34, .84);
}

.slider-dot-navigation {
    bottom: 45px;
}

@media (max-width: 900px) {
    .hero-slider-container {
        height: 650px;
        min-height: 650px;
    }

    .hero-slide {
        padding: 24px 18px 55px;
        align-items: flex-end;
        background-position: center;
    }

    .hero-slide::before {
        background: linear-gradient(0deg, rgba(5, 25, 19, .92) 0%, rgba(5, 25, 19, .25) 68%, rgba(5, 25, 19, .06) 100%);
    }

    .hero-slide-content {
        width: 100%;
        max-width: 540px;
        padding: 26px 22px;
        border-radius: 18px;
        text-align: left;
    }

    .hero-slide-content h1 {
        font-size: clamp(38px, 11vw, 52px);
    }

    .hero-slide-content p {
        margin-bottom: 19px;
        font-size: 13px;
    }

    .hero-pack-carousel {
        top: 24%;
        right: 50%;
        width: 190px;
        height: 230px;
        transform: translate(50%, -50%);
    }

    .hero-pack-item:first-child {
        width: 130px;
        height: 180px;
        padding: 9px;
        border-radius: 14px;
    }

    .pack-size-badge {
        right: -12px;
        bottom: 8px;
        padding: 4px 8px;
        font-size: 9px;
    }

    .slider-dot-navigation {
        bottom: 18px;
    }
}
