:root {
    --brand-gold: #d4af37;
    --brand-bg: #0f0f0f;
    --brand-red: #da1f28;
    /* Lays Red for buttons if needed, or user brand red */
    --brand-red-dark: #a41c1c;
    --text-white: #ffffff;
    --font-primary: 'Montserrat', sans-serif;
    --font-logo: 'Playfair Display', serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    background-color: var(--brand-bg);
    color: var(--text-white);
    overflow-x: hidden;
}

/* Professional Header Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(15, 15, 15, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
    transition: all 0.3s ease;
}

.nav-left,
.nav-right {
    pointer-events: auto;
}

/* Baniq Text Logo matching the product wrapper */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--brand-gold);
    font-size: 2.5rem;
    font-weight: 700;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.8));
    transition: transform 0.3s;
}

.logo-img {
    height: 110px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.04);
    filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.7));
}

.btn-where {
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid white;
    color: white;
    padding: 8px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    text-transform: capitalize;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    /* Clean gap between icon and label */
    white-space: nowrap;
}

.btn-where:hover {
    background: white;
    color: black;
}

/* Label text — hidden on mobile, visible on desktop */
.btn-label {
    display: inline;
}

/* Desktop Navigation */
.desktop-nav {
    display: flex;
    gap: 30px;
    align-items: center;
    pointer-events: auto;
}

.desktop-link {
    color: var(--text-white);
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 700;
    text-transform: uppercase;
    transition: color 0.3s;
    letter-spacing: 1px;
}

.desktop-link:hover {
    color: var(--brand-gold);
}

@media (max-width: 1024px) {
    .desktop-nav {
        display: none;
    }
}
@media (min-width: 1025px) {
    .menu-icon {
        display: none !important;
    }
}

.menu-icon {
    background: var(--brand-red-dark);
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    cursor: pointer;
    pointer-events: auto;
}

/* Hero Section (1:1 Lays) */
.lays-replica-hero {
    position: relative;
    width: 100%;
    height: auto;
    /* Adapts to image so it's fully visible */
    min-height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;

    /* Moon curve matching Lays transition (Reduced to ~10%) */
    border-bottom-left-radius: 50% 5vw;
    border-bottom-right-radius: 50% 5vw;
    z-index: 20;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.hero-bg-img {
    width: 100%;
    height: auto;
    min-height: 50vh;
    /* Show full uncropped image */
    display: block;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}

.hero-content-wrapper {
    position: absolute;
    z-index: 10;
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: right;
    padding-right: 5%;
}

.hero-product-bag {
    height: 80vh;
    max-height: 800px;
    object-fit: contain;
    filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.6));
}

.scroll-arrow {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    border: 2px solid white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    color: white;
    animation: bounce 2s infinite;
}

/* Products Carousel Section (1:1 Lays) */
.products-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: var(--brand-gold);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;

    /* Pull section under the hero curve properly matching new shallowness */
    margin-top: -5vw;
    padding-top: 5vw;
    z-index: 10;
}

.sunburst {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* Base static position for JS to scale */
    width: 800px;
    height: 800px;
    z-index: 1;
}

.sunburst svg {
    width: 100%;
    height: 100%;
    animation: slow-spin 60s linear infinite;
    /* Shifted animation to child element */
}

.products-carousel-wrapper {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0 5%;
}

.nav-arrow {
    background: #111;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
}

.nav-arrow:hover {
    background: black;
    transform: scale(1.1);
}

.center-product-display {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Elegant professional wrapper */
.elegant-bag-container {
    position: relative;
    width: 350px;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

.carousel-product-bag {
    position: relative;
    height: 65vh;
    max-height: 700px;
    object-fit: contain;
    filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.7));
    animation: float-slight 4s ease-in-out infinite;
    z-index: 10;
}

.parallax-chips {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 150%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 5;
}

.real-chip {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -60px;
    /* Centers the 120px width chip */
    margin-left: -60px;
    width: 120px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 15px 20px rgba(0, 0, 0, 0.5));
    transition: transform 1.5s cubic-bezier(0.1, 0.9, 0.2, 1), opacity 1s ease-out;
    opacity: 0;
    /* Hidden until scrolled into view */
}

/* Placements expanding outwards from center on scroll */
.explosive-active .r-chip-1 {
    opacity: 1;
    transform: translate(-280px, -300px) rotate(45deg);
}

.explosive-active .r-chip-2 {
    opacity: 1;
    transform: translate(260px, -280px) rotate(-30deg) scale(0.9);
}

.explosive-active .r-chip-3 {
    opacity: 1;
    transform: translate(-320px, 20px) rotate(120deg) scale(1.1);
}

.explosive-active .r-chip-4 {
    opacity: 1;
    transform: translate(300px, 50px) rotate(-70deg) scale(0.85);
}

.explosive-active .r-chip-5 {
    opacity: 1;
    transform: translate(120px, -380px) rotate(15deg);
}

.explosive-active .r-chip-6 {
    opacity: 1;
    transform: translate(-100px, 320px) rotate(-45deg) scale(1.05);
}

.explosive-active .r-chip-7 {
    opacity: 1;
    transform: translate(-420px, -150px) rotate(80deg) scale(0.8);
}

.explosive-active .r-chip-8 {
    opacity: 1;
    transform: translate(400px, -120px) rotate(-110deg) scale(0.95);
}

.explosive-active .r-chip-9 {
    opacity: 1;
    transform: translate(250px, 350px) rotate(10deg) scale(0.7);
}

.explosive-active .r-chip-10 {
    opacity: 1;
    transform: translate(-250px, 220px) rotate(200deg) scale(1.2);
}

.btn-discover {
    background: var(--brand-red-dark);
    color: white;
    padding: 15px 35px;
    border-radius: 30px;
    font-weight: 800;
    text-transform: capitalize;
    text-decoration: none;
    font-size: 1.2rem;
    transition: 0.3s;
}

.btn-discover:hover {
    background: #7a1515;
}

.products-huge-title {
    position: absolute;
    bottom: -5px;
    left: 20px;
    font-size: 7.5vw;
    /* Reduced from 12vw */
    font-weight: 900;
    color: var(--brand-bg);
    line-height: 0.9;
    z-index: 5;
    pointer-events: none;
    letter-spacing: -2px;
}

/* About Us Section */
.about-section {
    padding: 100px 5%;
    background-color: var(--brand-bg);
    color: var(--text-white);
    display: flex;
    justify-content: center;
}

.about-container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-content {
    flex: 1.2;
}

.section-subtitle {
    color: var(--brand-gold);
    font-family: var(--font-logo);
    font-size: 1.8rem;
    font-style: italic;
    margin-bottom: 15px;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 30px;
    line-height: 1.1;
    letter-spacing: -1px;
}

.about-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 40px;
}

.ingredients-box {
    background: rgba(212, 175, 55, 0.05);
    border-left: 4px solid var(--brand-gold);
    padding: 25px;
    border-radius: 0 10px 10px 0;
}

.ingredients-box h4 {
    color: var(--brand-gold);
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-family: var(--font-logo);
}

.ingredients-box span {
    font-size: 0.9rem;
    color: #888;
    font-style: italic;
    font-family: var(--font-primary);
}

.ingredients-box p {
    color: #eee;
    line-height: 1.6;
}

.about-image-side {
    flex: 0.8;
    display: flex;
    justify-content: center;
}

.about-img {
    width: 100%;
    max-width: 450px;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.2);
    object-fit: cover;
}

/* Contact Section */
.contact-section {
    padding: 100px 5%;
    background: #080808;
    /* Slightly darker than brand bg for contrast */
    display: flex;
    flex-direction: column;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-title {
    color: var(--brand-gold);
    font-size: 3rem;
    margin-bottom: 60px;
    font-family: var(--font-logo);
    text-align: center;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 900px;
    width: 100%;
}

.contact-card {
    background: var(--brand-bg);
    border: 1px solid rgba(212, 175, 55, 0.15);
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.4s cubic-bezier(0.1, 0.9, 0.2, 1), border-color 0.4s;
}

.contact-card:hover {
    transform: translateY(-15px);
    border-color: rgba(212, 175, 55, 0.6);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.contact-icon {
    font-size: 3rem;
    color: var(--brand-red-dark);
    margin-bottom: 25px;
}

.contact-card h3 {
    color: var(--brand-gold);
    margin-bottom: 20px;
    font-size: 1.4rem;
    font-family: var(--font-logo);
    letter-spacing: 1px;
}

.contact-card strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: white;
}

.contact-card p {
    color: #999;
    line-height: 1.6;
    margin-bottom: 8px;
    font-size: 1.05rem;
}

.care-line {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--brand-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.care-line strong {
    margin-bottom: 0;
    font-size: 1.3rem;
}

.fssai-line {
    margin-top: 25px !important;
    font-weight: 700;
    color: #ddd !important;
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 5px;
    display: inline-block;
}

/* Footer */
.footer-baniq {
    background: #000;
    padding: 40px;
    text-align: center;
    color: #666;
}

/* Animations */
@keyframes bounce {

    0%,
    100% {
        transform: translateY(0) translateX(-50%);
    }

    50% {
        transform: translateY(10px) translateX(-50%);
    }
}

@keyframes slow-spin {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes float-slight {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* Responsive */
@media (max-width: 900px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .ingredients-box {
        border-left: none;
        border-top: 4px solid var(--brand-gold);
        border-radius: 0 0 10px 10px;
        text-align: left;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .about-img {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .lays-replica-hero {
        min-height: 65vh;
        border-bottom-left-radius: 50% 8vw;
        border-bottom-right-radius: 50% 8vw;
    }

    .hero-bg-img {
        min-height: 65vh;
    }

    .products-section {
        margin-top: -8vw;
        padding-top: 8vw;
    }

    .navbar {
        padding: 15px 20px;
        background: transparent !important;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        border-bottom: none;
        box-shadow: none;
        pointer-events: none;
    }

    /* Hide text, show icon only — becomes a clean phone icon button */
    .btn-label {
        display: none;
    }

    .btn-where {
        padding: 10px 14px;
        border-radius: 50%;
        gap: 0;
        font-size: 1rem;
    }

    .hero-product-bag {
        height: 60vh;
    }

    .carousel-product-bag {
        height: 50vh;
    }

    .logo-img {
        height: 70px;
    }

    .nav-arrow {
        width: 45px;
        height: 45px;
    }

    .products-huge-title {
        font-size: 10vw;
        bottom: 20px;
    }
}

/* --- PRODUCT DETAILS PAGE STYLES --- */
.product-detail-container {
    padding: 120px 5% 50px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    min-height: 80vh;
}

.product-bg-glow {
    position: absolute;
    top: 30%;
    left: 20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, rgba(15, 15, 15, 0) 70%);
    z-index: 0;
    pointer-events: none;
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 10;
}

.product-image-column {
    display: flex;
    justify-content: center;
    position: relative;
}

.product-stage {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.magic-tag {
    position: absolute;
    top: 20px;
    right: -20px;
    background-color: var(--brand-red-dark);
    color: white;
    padding: 15px 20px;
    font-family: var(--font-logo);
    font-weight: 700;
    display: flex;
    flex-direction: column;
    text-align: center;
    text-transform: uppercase;
    line-height: 1.2;
    font-size: 1.3rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    z-index: 15;
    border: 2px solid #fff;
    transform: rotate(5deg);
}

.magic-tag span:nth-child(2) {
    font-size: 1.8rem;
    color: var(--brand-gold);
}

.main-product-img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.8));
    z-index: 10;
    position: relative;
}

.detail-chip {
    position: absolute;
    width: 80px;
    z-index: 5;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.6));
}

.dc-1 {
    top: 10%;
    left: -10%;
    transform: rotate(-20deg);
}

.dc-2 {
    bottom: 20%;
    right: -5%;
    transform: rotate(45deg);
    width: 100px;
}

.dc-3 {
    bottom: 5%;
    left: 10%;
    transform: rotate(15deg);
    width: 60px;
}

.float-animation {
    animation: float-slight 4s ease-in-out infinite;
}

.float-slow {
    animation: float-slight 5s ease-in-out infinite 0.5s;
}

.float-slower {
    animation: float-slight 6s ease-in-out infinite 1s;
}

.float-slowest {
    animation: float-slight 7s ease-in-out infinite 1.5s;
}

.product-info-column {
    display: flex;
    flex-direction: column;
}

.badge-wrapper {
    margin-bottom: 15px;
}

.badge-gold {
    background: rgba(212, 175, 55, 0.1);
    color: var(--brand-gold);
    border: 1px solid var(--brand-gold);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    display: inline-block;
}

.product-main-title {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 5px;
    color: var(--text-white);
}

.italic-chips {
    font-family: var(--font-logo);
    font-style: italic;
    color: var(--brand-gold);
    font-size: 4.5rem;
    font-weight: 400;
}

.product-subtitle {
    font-size: 2.2rem;
    font-family: var(--font-logo);
    color: var(--brand-gold);
    margin-bottom: 5px;
}

.product-weight {
    font-size: 1.2rem;
    color: #aaa;
    font-weight: 700;
    margin-bottom: 25px;
}

.product-divider {
    width: 60px;
    height: 4px;
    background: var(--brand-gold);
    margin-bottom: 30px;
}

.block-title {
    color: var(--brand-gold);
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-family: var(--font-logo);
    text-transform: uppercase;
}

.block-title span {
    font-size: 0.9rem;
    color: #aaa;
    font-family: var(--font-primary);
    text-transform: none;
    font-style: italic;
}

.product-description-block p,
.ingredients-section p {
    color: #ccc;
    line-height: 1.8;
    font-size: 1.1rem;
}

.mt-4 {
    margin-top: 2rem;
}

.mt-5 {
    margin-top: 3rem;
}

/* Accordions */
.product-accordions {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.custom-accordion {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.custom-accordion summary {
    padding: 20px 0;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    list-style: none;
    /* Hide default arrow */
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    transition: 0.3s;
}

.custom-accordion summary::-webkit-details-marker {
    display: none;
}

.custom-accordion summary:hover {
    color: var(--brand-gold);
}

.custom-accordion[open] summary i {
    transform: rotate(180deg);
}

.custom-accordion summary i {
    transition: transform 0.3s;
    color: var(--brand-gold);
}

.accordion-content {
    padding-bottom: 20px;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Nutrition Table */
.nutrition-note {
    font-style: italic;
    color: #aaa;
    margin-bottom: 15px;
}

.nutrition-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.nutrition-table th {
    text-align: left;
    padding: 12px 0;
    border-bottom: 2px solid var(--brand-gold);
    color: var(--brand-gold);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nutrition-table th:nth-child(2),
.nutrition-table th:nth-child(3) {
    text-align: right;
}

.nutrition-table td {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #ddd;
    font-size: 1.05rem;
}

.nutrition-table td:nth-child(2),
.nutrition-table td:nth-child(3) {
    text-align: right;
    font-weight: 700;
    color: white;
}

.nutrition-table tr:last-child td {
    border-bottom: none;
}

/* Responsive Nutrition Table */
@media (max-width: 600px) {
    .nutrition-table thead {
        display: none;
    }
    
    .nutrition-table, 
    .nutrition-table tbody, 
    .nutrition-table tr, 
    .nutrition-table td {
        display: block;
        width: 100%;
    }
    
    .nutrition-table tr {
        margin-bottom: 15px;
        border-bottom: 2px solid rgba(212, 175, 55, 0.3);
        padding-bottom: 10px;
    }
    
    .nutrition-table td {
        text-align: right;
        padding-left: 50%;
        position: relative;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        padding-top: 10px;
        padding-bottom: 10px;
    }
    
    .nutrition-table td::before {
        content: attr(data-label);
        position: absolute;
        left: 0;
        width: 50%;
        padding-left: 10px;
        font-weight: 700;
        text-align: left;
        color: var(--brand-gold);
        font-size: 0.8rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    .nutrition-table td:last-child {
        border-bottom: none;
    }
}

/* Process Steps */
.process-steps {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.step-item {
    text-align: center;
    flex: 1;
    min-width: 80px;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid var(--brand-gold);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 10px;
    color: var(--brand-gold);
    font-size: 1.5rem;
    transition: 0.3s;
}

.step-item:hover .step-icon {
    background: var(--brand-gold);
    color: var(--brand-bg);
    transform: scale(1.1);
}

.step-item p {
    font-size: 0.9rem;
    color: #ccc;
    font-weight: 600;
    line-height: 1.4;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    gap: 30px;
    align-items: center;
    flex-wrap: wrap;
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-radius: 15px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
}

.gold-icon {
    color: var(--brand-gold);
}

.trust-badge span {
    font-size: 0.95rem;
    font-weight: 700;
    color: #eee;
    line-height: 1.2;
}

.fssai-badge {
    flex-direction: column;
    align-items: flex-start;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    padding-left: 20px;
    margin-left: auto;
}

.fssai-badge span {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 900;
}

.fssai-badge small {
    color: #999;
}

/* Responsive Product Page */
@media (max-width: 1024px) {
    .product-grid {
        grid-template-columns: 1fr;
    }

    .product-main-title {
        font-size: 3.5rem;
    }

    .italic-chips {
        font-size: 3.5rem;
    }

    .product-image-column {
        order: -1;
    }

    .fssai-badge {
        margin-left: 0;
        border-left: none;
        padding-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 15px;
        width: 100%;
    }
}

/* WhatsApp Minimal Icon Button */
.btn-whatsapp-icon {
    background: transparent;
    color: #25D366;
    width: 45px;
    height: 45px;
    border: 2px solid #25D366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    cursor: pointer;
    text-decoration: none;
    transition: 0.3s;
}

.btn-whatsapp-icon:hover {
    background: #25D366;
    color: white;
    transform: scale(1.1);
}

/* Professional Logo Sizing */
.logo-img {
    height: 62px;
    width: auto;
    object-fit: contain;
}

/* Product Detail Styles (Transferred from product.html) */
.lays-product-hero {
    position: relative;
    background: #1a1a1a;
    padding: 180px 5% 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    overflow: hidden;
}

.bg-huge-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 25vw;
    font-weight: 900;
    color: rgba(235, 174, 52, 0.05);
    white-space: nowrap;
    z-index: 1;
    pointer-events: none;
    letter-spacing: -10px;
}

.lays-hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    width: 100%;
    z-index: 10;
    gap: 40px;
}

.hero-text-side {
    flex: 1;
    padding-right: 50px;
}

.magic-badge {
    display: inline-block;
    background: #da1f28;
    color: #fff;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 1.2rem;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(218, 31, 40, 0.4);
    border: 2px solid #5a0d10;
}

.hero-product-title {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1.1;
    color: #EBAE34;
    margin-bottom: 10px;
    text-transform: uppercase;
    text-shadow: 0 4px 20px rgba(235, 174, 52, 0.3);
}

.hero-product-subtitle {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 2.8rem;
    color: #f7d58d;
    margin-bottom: 25px;
    font-weight: 700;
}

.hero-weight {
    font-weight: 800;
    color: #1a1a1a;
    font-size: 1.3rem;
    display: block;
    margin-bottom: 40px;
    background: #EBAE34;
    padding: 10px 20px;
    border-radius: 30px;
    display: inline-block;
}

.hero-image-side {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.massive-product-img {
    width: 100%;
    max-width: 550px;
    height: auto;
    filter: drop-shadow(0 40px 60px rgba(0, 0, 0, 0.9));
    transform: rotate(5deg);
    z-index: 10;
}

.lays-details-section {
    background: #1e1e1e;
    padding: 100px 5%;
    position: relative;
    z-index: 20;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    margin-top: -50px;
    box-shadow: 0 -20px 40px rgba(0, 0, 0, 0.6);
    border-top: 1px solid #333;
}

.details-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
}

.detail-box-title {
    font-size: 2rem;
    font-weight: 900;
    color: #EBAE34;
    margin-bottom: 20px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 15px;
}

.detail-box-title::before {
    content: '';
    display: inline-block;
    width: 40px;
    height: 4px;
    background: #da1f28;
}

.text-body {
    font-size: 1.25rem;
    color: #bbb;
    line-height: 1.8;
    margin-bottom: 40px;
}

.info-card {
    background: #252525;
    border: 1px solid #333;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.info-card:hover {
    transform: translateY(-5px);
    border-color: rgba(235, 174, 52, 0.5);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.nutrition-row {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid #333;
    font-size: 1.1rem;
}

.nutrition-row:last-child {
    border-bottom: none;
}

.nutrition-label {
    color: #aaa;
}

.nutrition-value {
    font-weight: 800;
    color: #fff;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.process-box {
    text-align: center;
    background: #252525;
    border: 1px solid #333;
    border-radius: 15px;
    padding: 20px 10px;
    transition: 0.3s;
}

.process-box:hover {
    background: #2a2a2a;
    border-color: #EBAE34;
    transform: translateY(-5px);
}

.p-icon {
    width: 70px;
    height: 70px;
    background: #1a1a1a;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 15px;
    font-size: 1.8rem;
    color: #EBAE34;
    border: 1px solid #333;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.p-text {
    font-weight: 800;
    font-size: 1rem;
    color: #eee;
    margin-bottom: 5px;
}

.p-sub {
    font-size: 0.85rem;
    color: #888;
    line-height: 1.3;
}

.trust-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    margin-top: 50px;
    padding-top: 50px;
    border-top: 1px solid #333;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 800;
    font-size: 1.2rem;
    color: #ddd;
}

.trust-item i {
    color: #EBAE34;
    font-size: 2.2rem;
}

.trust-item i.green-icon {
    color: #28a745; /* Eco Green */
}

@media (max-width: 1024px) {
    .lays-hero-container {
        flex-direction: column;
        text-align: center;
        padding-top: 50px;
    }

    .hero-text-side {
        padding-right: 0;
    }

    .hero-product-title {
        font-size: 4rem;
    }

    .massive-product-img {
        max-width: 400px;
    }

    .details-grid {
        grid-template-columns: 1fr;
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-product-title {
        font-size: 3rem;
    }
}

/* Overlay Menu */
.overlay-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 350px;
    height: 100vh;
    background: rgba(15, 15, 15, 0.98);
    backdrop-filter: blur(10px);
    z-index: 2000;
    transition: 0.4s cubic-bezier(0.8, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
}

.overlay-menu.active {
    right: 0;
}

.close-menu {
    position: absolute;
    top: 35px;
    right: 40px;
    font-size: 2rem;
    color: white;
    cursor: pointer;
    transition: 0.3s;
}

.close-menu:hover {
    color: var(--brand-gold);
    transform: rotate(90deg);
}

.menu-links {
    list-style: none;
    text-align: center;
    padding: 0;
}



.menu-links li {
    margin: 25px 0;
}

.menu-link {
    font-size: 1.8rem;
    color: #da1f28;
    text-decoration: none;
    font-family: var(--font-logo);
    transition: 0.3s;
    position: relative;
    display: inline-block;
}

.menu-link:hover {
    color: var(--brand-gold);
    transform: scale(1.1);
}

/* Mega Footer */
.mega-footer {
    background: #ffffff;
    color: #333;
    padding: 0 0 30px;
    border-top: 1px solid #eee;
    font-family: var(--font-primary);
}

.footer-yellow-bar {
    height: 8px;
    background: var(--brand-gold);
    width: 100%;
    margin-bottom: 60px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    padding: 0 5% 50px;
}

.footer-col h3 {
    color: #000;
    font-size: 1.1rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 800;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 8px;
}

.footer-list a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s, transform 0.3s;
    display: inline-block;
}

.footer-list a:hover {
    color: var(--brand-red);
    transform: translateX(3px);
}

.footer-list strong {
    color: #000;
    font-weight: 700;
}

.payment-icons {
    display: flex;
    gap: 12px;
    margin-top: 15px;
    flex-wrap: wrap;
    align-items: center;
}

.payment-icon {
    height: 25px;
    width: auto;
    object-fit: contain;
    filter: grayscale(0.2);
    transition: filter 0.3s;
}

.payment-icon:hover {
    filter: grayscale(0);
}

/* Socials - Circular Red Icons */
.footer-socials-new {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-item {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #444;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.social-item:hover {
    color: var(--brand-red);
}

.social-icon-circle {
    width: 32px;
    height: 32px;
    background: #e41e26;
    /* haldiram red */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 0.9rem;
    transition: transform 0.3s;
}

.social-item:hover .social-icon-circle {
    transform: scale(1.1);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    padding: 30px 5% 0;
    border-top: 1px solid #eee;
    color: #777;
    font-size: 0.9rem;
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Social Gallery Section */
.social-gallery-section {
    padding: 80px 0 0;
    background-color: var(--brand-bg);
    text-align: center;
}

.social-gallery-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto 40px;
    padding: 0 20px;
}

.social-gallery-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--brand-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
}

.social-title-icons {
    display: flex;
    gap: 12px;
}

.social-title-icon {
    width: 35px;
    height: 35px;
    background-color: #FFD700; /* Bright Yellow like in the image */
    color: #000 !important;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 1rem;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.social-title-icon:hover {
    transform: scale(1.1);
    background-color: #e6c200;
}

@media (max-width: 768px) {
    .social-gallery-header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    .social-gallery-title {
        font-size: 2.5rem;
    }
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px 80px;
}

.gallery-item {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    cursor: pointer;
    border-radius: 12px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.gallery-item img,
.gallery-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
    text-align: center;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img,
.gallery-item:hover video {
    transform: scale(1.1);
}

.feed-desc {
    color: white;
    font-size: 0.95rem;
    line-height: 1.4;
    margin-bottom: 20px;
    font-weight: 400;
}

.btn-original-post {
    background: var(--brand-red-dark);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 700;
    transition: 0.3s;
    border: 1px solid transparent;
}

.btn-original-post:hover {
    background: white;
    color: var(--brand-red-dark);
    border-color: var(--brand-red-dark);
}

@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .social-gallery-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 1200px) {
    .footer-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }

    .footer-yellow-bar {
        margin-bottom: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
    }
}

/* Floating WhatsApp Button (Matching Header Icon Style) */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    background: transparent;
    border: 2px solid #25D366;
    color: #25D366;
    border-radius: 50%;
    text-align: center;
    font-size: 28px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #25D366;
    color: #fff;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 24px;
    }
}
/* Custom Form Styles */
.custom-form { background: rgba(255, 255, 255, 0.05); padding: 30px; border-radius: 10px; border: 1px solid rgba(212, 175, 55, 0.2); max-width: 600px; margin: 40px 0; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; color: var(--brand-gold); font-weight: 700; }
.form-control { width: 100%; padding: 12px; background: rgba(0, 0, 0, 0.5); border: 1px solid rgba(255, 255, 255, 0.1); color: white; border-radius: 5px; font-family: var(--font-primary); }
.form-control:focus { outline: none; border-color: var(--brand-gold); }
.btn-submit { background: var(--brand-red-dark); color: white; padding: 12px 30px; border: none; border-radius: 30px; font-weight: 800; cursor: pointer; transition: 0.3s; }
.btn-submit:hover { background: #7a1515; }
