: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;
}

/* Navbar exactly like Lays (No header background) */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 30px 40px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    background: transparent !important;
    pointer-events: none; /* Let user click items underneath the header */
}

.nav-left, .nav-right {
    pointer-events: auto; /* Enable clicks only on the logo and buttons */
}

/* 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:hover {
    transform: scale(1.05);
}

.logo-b {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 55px;
    height: 55px;
    border: 3px solid var(--brand-gold);
    border-radius: 50%;
    color: var(--brand-gold);
    font-family: var(--font-logo);
    margin-right: 5px;
}

.logo-text {
    font-family: var(--font-logo);
    letter-spacing: 2px;
}

.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;
}

.btn-where:hover {
    background: white;
    color: black;
}

.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;
}

/* Hero Section (1:1 Lays) */
.lays-replica-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.hero-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-content-wrapper {
    position: relative;
    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;
}

.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: space-between;
    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.8;
    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) {
    .navbar { padding: 15px 20px; }
    .hero-product-bag { height: 60vh; }
    .carousel-product-bag { height: 50vh; }
    .nav-arrow { width: 45px; height: 45px; }
    .products-huge-title { font-size: 10vw; bottom: 20px; }
}
