/* =========================================
   GOOGLE FONTS
   Fredoka  -> display / headings (bouncy, kid friendly)
   Baloo 2  -> product names
   Poppins  -> body text
========================================= */

@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@400;500;600;700&family=Baloo+2:wght@400;500;600;700;800&family=Poppins:wght@300;400;500;600;700;800&display=swap');



/* =========================================
   RESET
========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

section[id] {
    scroll-margin-top: 100px;
}

body {
    font-family: "Poppins", sans-serif;
    color: var(--ink);
    background: #ffffff;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    border: none;
    outline: none;
    cursor: pointer;
    font-family: inherit;
}

:focus-visible {
    outline: 3px solid var(--sky);
    outline-offset: 3px;
    border-radius: 6px;
}



/* =========================================
   DESIGN TOKENS + SECTION PADDING
   YAHAN SE HAR SECTION KI
   LEFT / RIGHT PADDING CHANGE KAR SAKTE HAIN
========================================= */

:root {

    /* ---- BRAND COLOURS ---- */

    --ink: #241a17;
    --red: #e63b41;
    --red-dark: #c02a30;
    --yellow: #ffc400;
    --yellow-soft: #ffe98a;
    --mint: #2ec9a8;
    --sky: #45a8ff;
    --grape: #9d6bff;
    --orange: #ff8a3d;
    --cream: #fff6e3;

    /* ---- STICKER LOOK ---- */

    --line: 3px solid var(--ink);
    --pop: 7px 7px 0 var(--ink);
    --pop-sm: 4px 4px 0 var(--ink);
    --pop-hover: 3px 3px 0 var(--ink);


    /* HEADER */
    --header-left: 70px;
    --header-right: 70px;

    /* ABOUT SECTION */
    --about-left: 70px;
    --about-right: 70px;

    /* FEATURED PRODUCTS */
    --featured-left: 70px;
    --featured-right: 70px;

    /* ALL PRODUCTS */
    --products-left: 70px;
    --products-right: 70px;

    /* FUN ZONE */
    --fun-left: 70px;
    --fun-right: 70px;

    /* WHY MOOGY */
    --why-left: 70px;
    --why-right: 70px;

    /* HAPPY SNACKERS */
    --voices-left: 70px;
    --voices-right: 70px;

    /* FAQ */
    --faq-left: 70px;
    --faq-right: 70px;

    /* CONTACT SECTION */
    --contact-left: 70px;
    --contact-right: 70px;

    /* FOOTER */
    --footer-left: 70px;
    --footer-right: 70px;

}



/* =========================================
   KEYFRAMES
========================================= */

@keyframes floaty {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-14px); }
}

@keyframes wiggle {
    0%, 100% { transform: rotate(-3deg); }
    50%      { transform: rotate(3deg); }
}

@keyframes popIn {
    0%   { transform: scale(0.4); opacity: 0; }
    70%  { transform: scale(1.08); opacity: 1; }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-33.333%); }
}

@keyframes crumbBounce {
    0%, 100% { transform: translateY(0) scale(1); }
    50%      { transform: translateY(-22px) scale(1.15); }
}

@keyframes spinGlow {
    0%, 100% { box-shadow: var(--pop); }
    50%      { box-shadow: 7px 7px 0 var(--red); }
}



/* =========================================
   SCROLL REVEAL
========================================= */

[data-reveal] {
    opacity: 0;
    transition:
        opacity 0.7s cubic-bezier(0.34, 1.3, 0.64, 1),
        transform 0.7s cubic-bezier(0.34, 1.3, 0.64, 1);
    will-change: transform, opacity;
}

[data-reveal="up"]    { transform: translateY(45px); }
[data-reveal="left"]  { transform: translateX(-45px); }
[data-reveal="right"] { transform: translateX(45px); }

[data-reveal].revealed {
    opacity: 1;
    transform: none;
}


@media (prefers-reduced-motion: reduce) {

    * {
        animation: none !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    [data-reveal] {
        opacity: 1;
        transform: none;
    }

}



/* =========================================
   PRELOADER
========================================= */

.moogy-loader {

    position: fixed;
    inset: 0;
    z-index: 9999;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;

    background: var(--cream);

    transition: opacity 0.5s ease, visibility 0.5s ease;

}

.moogy-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-pack {
    display: flex;
    gap: 14px;
}

.loader-crumb {

    width: 22px;
    height: 22px;

    border-radius: 50%;
    border: var(--line);

    animation: crumbBounce 0.9s ease-in-out infinite;

}

.loader-crumb:nth-child(1) { background: var(--red);    animation-delay: 0s; }
.loader-crumb:nth-child(2) { background: var(--yellow); animation-delay: 0.15s; }
.loader-crumb:nth-child(3) { background: var(--mint);   animation-delay: 0.3s; }

.moogy-loader p {
    font-family: "Fredoka", sans-serif;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--ink);
}



/* =========================================
   SCROLL PROGRESS BAR
========================================= */

.scroll-progress {

    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;

    width: 0%;
    height: 5px;

    background: linear-gradient(
        90deg,
        var(--red),
        var(--orange),
        var(--yellow),
        var(--mint)
    );

}



/* =========================================
   HEADER
========================================= */

.site-header {

    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;

    background: #ffffff;

    border-bottom: 3px solid var(--ink);

    transition: 0.3s ease;

}

.site-header.scrolled {
    box-shadow: 0 6px 0 rgba(36, 26, 23, 0.12);
}


.header-container {

    min-height: 92px;

    padding-left: var(--header-left);
    padding-right: var(--header-right);

    display: flex;
    align-items: center;

    gap: 40px;

}


.logo {
    width: 120px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: rotate(-4deg) scale(1.05);
}

.logo img {
    width: 100%;
    max-height: 80px;
    object-fit: contain;
}


.main-nav {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 30px;
}


.main-nav a {

    font-family: "Fredoka", sans-serif;

    font-size: 16px;
    font-weight: 500;

    color: var(--ink);

    position: relative;

    padding: 8px 0;

    transition: color 0.25s ease;

}


.main-nav a::after {

    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 0;
    height: 4px;

    border-radius: 4px;

    background: var(--yellow);

    transition: width 0.3s ease;

}


.main-nav a:hover,
.main-nav a.active {
    color: var(--red);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}


.header-btn {

    font-family: "Fredoka", sans-serif;

    background: var(--red);

    color: #ffffff;

    padding: 13px 26px;

    border: var(--line);
    border-radius: 50px;

    box-shadow: var(--pop-sm);

    font-size: 15px;
    font-weight: 600;

    transition: 0.2s ease;

}


.header-btn:hover {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0 var(--ink);
    background: var(--yellow);
    color: var(--ink);
}


.menu-toggle {
    display: none;
}



/* =========================================
   FLOATING DOODLES
========================================= */

.doodle {

    position: absolute;
    z-index: 2;

    font-size: 26px;

    pointer-events: none;

    animation: floaty 5s ease-in-out infinite;

}

.doodle-1 { top: 12%;  left: 5%;   color: var(--yellow); }
.doodle-2 { top: 22%;  right: 7%;  color: var(--mint);   font-size: 18px; animation-delay: 0.6s; }
.doodle-3 { bottom: 25%; left: 9%;  color: var(--sky);    font-size: 20px; animation-delay: 1.2s; }
.doodle-4 { bottom: 32%; right: 12%; color: var(--red);   animation-delay: 0.9s; }
.doodle-5 { top: 55%;  left: 48%;  color: var(--grape); font-size: 16px; animation-delay: 1.6s; }
.doodle-6 { top: 14%;  left: 6%;   color: var(--red);   animation-delay: 0.3s; }
.doodle-7 { bottom: 16%; right: 8%; color: var(--mint);  animation-delay: 1.1s; }



/* =========================================
   HERO SECTION
========================================= */

.hero-section {
    position: relative;
    width: 100%;
    background: var(--cream);
}

.hero-banner {
    width: 100%;
}

.hero-banner,
.hero-banner picture {
    display: block;
    width: 100%;
}


.hero-banner img {

    width: 100%;
    height: auto;
    min-height: 350px;

    object-fit: cover;
    object-position: center;

}


/* MOBILE BANNER
   mobile wali image apni poori height le,
   crop na ho */

@media (max-width: 800px) {

    .hero-banner img {

        min-height: 0;
        height: auto;

        object-fit: contain;

    }

}


.hero-wave {

    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;

    line-height: 0;
    pointer-events: none;

}

.hero-wave svg {
    width: 100%;
    height: 70px;
    display: block;
}

.hero-wave path {
    fill: #ffffff;
}



/* =========================================
   TICKER TAPE
========================================= */

.ticker-tape {

    background: var(--yellow);

    border-top: var(--line);
    border-bottom: var(--line);

    padding: 14px 0;

    overflow: hidden;

    transform: rotate(-1.2deg);

    width: 108%;
    margin: 10px 0 45px -4%;

}


.ticker-track {

    display: flex;

    width: max-content;

    animation: marquee 22s linear infinite;

}


.ticker-track span {

    font-family: "Fredoka", sans-serif;

    font-size: 22px;
    font-weight: 600;

    letter-spacing: 2px;

    text-transform: uppercase;

    color: var(--ink);

    padding-right: 22px;

    white-space: nowrap;

}


.ticker-track b {
    color: var(--red);
}


.ticker-tape:hover .ticker-track {
    animation-play-state: paused;
}



/* =========================================
   COMMON SECTION BITS
========================================= */

.section-padding {
    padding-top: 80px;
    padding-bottom: 80px;
}


.section-tag {

    display: inline-flex;
    align-items: center;
    gap: 10px;

    font-family: "Fredoka", sans-serif;

    font-size: 14px;
    font-weight: 600;

    letter-spacing: 2.5px;
    text-transform: uppercase;

    color: var(--ink);

    background: var(--yellow);

    padding: 8px 18px;

    border: var(--line);
    border-radius: 50px;

    box-shadow: var(--pop-sm);

    transform: rotate(-1.5deg);

}


h2 {

    font-family: "Fredoka", sans-serif;

    font-size: clamp(38px, 4.4vw, 64px);

    line-height: 1.08;
    font-weight: 700;

    letter-spacing: -0.5px;

    color: var(--ink);

}


h2 span {
    color: var(--red);
}


.primary-btn {

    display: inline-flex;
    align-items: center;
    gap: 12px;

    margin-top: 18px;

    font-family: "Fredoka", sans-serif;

    background: var(--red);
    color: #ffffff;

    padding: 15px 30px;

    border: var(--line);
    border-radius: 50px;

    box-shadow: var(--pop);

    font-size: 16px;
    font-weight: 600;

    transition: 0.2s ease;

}


.primary-btn span {
    transition: transform 0.25s ease;
}


.primary-btn:hover {
    transform: translate(4px, 4px);
    box-shadow: var(--pop-hover);
    background: var(--yellow);
    color: var(--ink);
}


.primary-btn:hover span {
    transform: translateX(5px);
}


/* =========================================
   ABOUT SECTION
========================================= */

.about-section {

    position: relative;

    padding-left: var(--about-left);
    padding-right: var(--about-right);

    padding-top: 40px;
    padding-bottom: 100px;

    overflow: hidden;

    background:
        radial-gradient(circle at 10% 45%, rgba(255, 196, 0, 0.18), transparent 32%),
        radial-gradient(circle at 92% 80%, rgba(46, 201, 168, 0.14), transparent 30%),
        #ffffff;

}


.about-container {

    max-width: 1450px;
    margin: 0 auto;

    display: grid;

    grid-template-columns:
        minmax(400px, 1fr)
        minmax(500px, 1.15fr);

    align-items: center;

    gap: 90px;

}


/* =========================================
   ABOUT VISUAL
========================================= */

.about-visual {

    position: relative;

    min-height: 620px;

    display: flex;
    align-items: center;
    justify-content: center;

}


.about-glow {

    position: absolute;

    width: 470px;
    height: 470px;

    border-radius: 50%;

    background: radial-gradient(
        circle,
        rgba(255, 196, 0, 0.45),
        rgba(255, 233, 138, 0.18),
        transparent 70%
    );

    z-index: 0;

}


.about-circle {

    position: absolute;

    border-radius: 50%;

}


.about-circle-one {

    width: 540px;
    height: 540px;

    border: 3px dashed rgba(36, 26, 23, 0.14);

    animation: rotateSlow 40s linear infinite;

}


.about-circle-two {

    width: 620px;
    height: 620px;

    border: 3px solid rgba(230, 59, 65, 0.12);

}


@keyframes rotateSlow {
    to { transform: rotate(360deg); }
}


/* =========================================
   PRODUCT PACK CARD
========================================= */

.about-product-card {

    position: relative;
    z-index: 2;

    width: 400px;
    height: 500px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: var(--line);
    border-radius: 40px;

    background: linear-gradient(145deg, #fffbe8, #ffe98a);

    box-shadow: 10px 10px 0 var(--ink);

    transform: rotate(-3deg);

    transition: 0.4s cubic-bezier(0.34, 1.3, 0.64, 1);

}


.about-product-card:hover {
    transform: rotate(1.5deg) translateY(-10px);
    box-shadow: 14px 14px 0 var(--red);
}


/* washi tape on top of the pack */

.pack-tape {

    position: absolute;
    top: -16px;
    left: 50%;

    width: 130px;
    height: 34px;

    transform: translateX(-50%) rotate(-4deg);

    background: repeating-linear-gradient(
        45deg,
        var(--red) 0 10px,
        #ffffff 10px 20px
    );

    border: var(--line);
    border-radius: 4px;

    opacity: 0.95;

}


.about-product-card img {

    position: relative;
    z-index: 2;

    width: 88%;
    max-height: 440px;

    object-fit: contain;

    transition: transform 0.4s ease;

}


.about-product-card:hover img {
    transform: scale(1.05) rotate(-2deg);
}


/* =========================================
   FLOATING STICKERS
========================================= */

.float-sticker {

    position: absolute;
    z-index: 5;

    display: flex;
    align-items: center;
    gap: 12px;

    padding: 12px 18px;

    background: #ffffff;

    border: var(--line);
    border-radius: 18px;

    box-shadow: var(--pop-sm);

    animation: floaty 4.5s ease-in-out infinite;

}


.float-sticker span {
    font-size: 24px;
}


.float-sticker strong {

    display: block;

    font-family: "Fredoka", sans-serif;

    font-size: 15px;
    font-weight: 600;

    color: var(--ink);

}


.float-sticker small {

    display: block;
    margin-top: 2px;

    font-size: 11px;
    color: #7c706c;

}


.float-sticker-one {
    top: 60px;
    right: -10px;
    transform: rotate(4deg);
}


.float-sticker-two {
    bottom: 60px;
    left: -20px;
    transform: rotate(-5deg);
    animation-delay: 1s;
}


/* =========================================
   ABOUT CONTENT
========================================= */

.about-content {
    max-width: 680px;
}


.tag-line {
    display: none;
}


.about-content h2 {

    margin-top: 22px;

    font-size: clamp(40px, 4.8vw, 68px);

    line-height: 1.06;

}


.about-content h2 span {
    display: block;
    margin-top: 4px;
    color: var(--red);
}


.about-content p {

    max-width: 660px;

    margin-top: 20px;

    font-size: 16px;
    line-height: 1.9;

    color: #6c625f;

}


.about-content .about-intro {

    font-size: 19px;
    line-height: 1.7;

    color: #423b39;
    font-weight: 500;

}


/* HIGHLIGHTS */

.about-highlights {

    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 20px;
    margin-top: 35px;

}


.highlight-item {

    display: flex;
    align-items: flex-start;
    gap: 14px;

    padding: 18px;

    background: #ffffff;

    border: var(--line);
    border-radius: 20px;

    box-shadow: var(--pop-sm);

    transition: 0.25s ease;

}


.highlight-item:nth-child(1) { transform: rotate(-1.5deg); }
.highlight-item:nth-child(2) { transform: rotate(1.5deg); }


.highlight-item:hover {
    transform: rotate(0deg) translate(3px, 3px);
    box-shadow: 1px 1px 0 var(--ink);
    background: var(--cream);
}


.highlight-icon {

    width: 48px;
    height: 48px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border: var(--line);
    border-radius: 15px;

    background: linear-gradient(135deg, #fff1a8, var(--yellow));

    font-size: 22px;

}


.highlight-item h4 {

    margin: 2px 0 5px;

    font-family: "Fredoka", sans-serif;
    font-size: 16px;
    font-weight: 600;

    color: var(--ink);

}


.highlight-item p {

    margin: 0;

    font-size: 12px;
    line-height: 1.6;

    color: #7c706c;

}


.about-content .primary-btn {
    margin-top: 38px;
}



/* =========================================
   STATS BAND
========================================= */

.stats-band {

    background: var(--ink);

    padding: 55px var(--about-left);

    position: relative;

}


.stats-band::before,
.stats-band::after {

    content: "";

    position: absolute;
    left: 0;
    right: 0;
    height: 10px;

    background: repeating-linear-gradient(
        90deg,
        var(--red) 0 26px,
        var(--yellow) 26px 52px,
        var(--mint) 52px 78px,
        var(--sky) 78px 104px
    );

}


.stats-band::before { top: 0; }
.stats-band::after  { bottom: 0; }


.stats-wrapper {

    max-width: 1450px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 25px;

}


.stat-chip {
    text-align: center;
    color: #ffffff;
}


.stat-chip strong {

    display: block;

    font-family: "Fredoka", sans-serif;

    font-size: clamp(40px, 4vw, 58px);
    font-weight: 700;

    line-height: 1;

    color: var(--yellow);

}


.stat-chip:nth-child(2) strong { color: var(--mint); }
.stat-chip:nth-child(3) strong { color: var(--sky); }
.stat-chip:nth-child(4) strong { color: var(--orange); }


.stat-chip span {

    display: block;
    margin-top: 10px;

    font-size: 14px;
    letter-spacing: 0.5px;

    color: #cfc4c0;

}



/* =========================================
   FEATURED PRODUCTS
========================================= */

.featured-section {

    padding-left: var(--featured-left);
    padding-right: var(--featured-right);

    background: #ffffff;

    overflow: hidden;

}


.section-heading {

    max-width: 1450px;

    margin: 0 auto 20px;

    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 30px;

}


.section-heading h2 {
    margin-top: 18px;
    font-size: clamp(38px, 4vw, 56px);
}


/* SLIDER BUTTONS */

.slider-buttons {

    display: flex;
    align-items: center;
    gap: 12px;

    flex-shrink: 0;

}


.slider-btn {

    width: 52px;
    height: 52px;

    border-radius: 50%;

    background: #ffffff;
    border: var(--line);

    box-shadow: var(--pop-sm);

    color: var(--ink);
    font-size: 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: 0.2s ease;

}


.slider-btn:hover {
    background: var(--red);
    color: #ffffff;
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0 var(--ink);
}


/* SLIDER WRAPPER */

.featured-slider-wrapper {

    max-width: 1450px;
    margin: 0 auto;

    padding: 15px 2px 25px;

    overflow: hidden;

}


.featured-slider {

    display: flex;
    gap: 22px;

    overflow-x: auto;
    overflow-y: visible;

    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;

    scrollbar-width: none;
    -ms-overflow-style: none;

    padding: 14px 6px 18px;

    cursor: grab;

}


.featured-slider.dragging {
    cursor: grabbing;
    scroll-snap-type: none;
}


.featured-slider::-webkit-scrollbar {
    display: none;
}


/* PRODUCT CARD */

.product-card {

    flex: 0 0 calc((100% - 88px) / 5);

    min-width: 0;

    background: #ffffff;

    border: var(--line);
    border-radius: 22px;

    box-shadow: var(--pop-sm);

    padding: 12px 12px 18px;

    scroll-snap-align: start;

    transition: transform 0.3s cubic-bezier(0.34, 1.3, 0.64, 1),
                box-shadow 0.3s ease;

}


.product-card:nth-child(odd)  { transform: rotate(-1.2deg); }
.product-card:nth-child(even) { transform: rotate(1.2deg); }


.product-card:hover {
    transform: rotate(0deg) translateY(-10px);
    box-shadow: 8px 12px 0 var(--red);
}


.product-image {

    height: 290px;

    border: 3px solid var(--ink);
    border-radius: 16px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

}


/* rotating pastel backgrounds so the row never looks flat */

.product-card:nth-child(5n+1) .product-image { background: linear-gradient(145deg, #fff8d9, #ffe98a); }
.product-card:nth-child(5n+2) .product-image { background: linear-gradient(145deg, #e2fbf4, #9df0dd); }
.product-card:nth-child(5n+3) .product-image { background: linear-gradient(145deg, #e6f2ff, #a9d5ff); }
.product-card:nth-child(5n+4) .product-image { background: linear-gradient(145deg, #ffe9e9, #ffb9bb); }
.product-card:nth-child(5n+5) .product-image { background: linear-gradient(145deg, #f2e9ff, #d3bcff); }


.product-image img {

    width: 100%;
    height: 100%;

    object-fit: contain;

    padding: 28px;

    transition: transform 0.35s ease;

    pointer-events: none;
    user-select: none;

}


.product-card:hover .product-image img {
    transform: scale(1.07) rotate(-3deg);
}


.product-card h3 {

    font-family: "Fredoka", sans-serif;

    font-size: 20px;
    font-weight: 600;
    line-height: 1.2;

    margin-top: 16px;

    color: var(--ink);
    text-align: center;

}


/* =========================================
   ALL PRODUCTS
========================================= */

.products-section {

    padding-left: var(--products-left);
    padding-right: var(--products-right);

    background:
        radial-gradient(circle at 50% 0%, rgba(255, 196, 0, 0.16), transparent 45%),
        var(--cream);

}


.center-heading {

    max-width: 850px;

    margin: 0 auto 60px;

    text-align: center;

}


.center-heading .section-tag {
    justify-content: center;
}


.center-heading h2 {
    margin-top: 20px;
}


.center-heading p {

    max-width: 620px;

    margin: 20px auto 0;

    color: #6c625f;
    line-height: 1.85;

}


.products-grid {

    max-width: 1450px;
    margin: auto;

    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 26px;

}


.grid-product-card {

    background: #ffffff;

    border: var(--line);
    border-radius: 24px;

    box-shadow: var(--pop-sm);

    padding: 22px 20px 24px;

    text-align: center;

    transition: transform 0.3s cubic-bezier(0.34, 1.3, 0.64, 1),
                box-shadow 0.3s ease;

}


.grid-product-card:nth-child(odd)  { transform: rotate(-1deg); }
.grid-product-card:nth-child(even) { transform: rotate(1deg); }


.grid-product-card:hover {
    transform: rotate(0deg) translateY(-9px);
    box-shadow: 8px 12px 0 var(--ink);
}


.grid-product-card img {

    width: 100%;
    height: 230px;

    object-fit: contain;

    transition: transform 0.35s ease;

}


.grid-product-card:hover img {
    transform: scale(1.08) rotate(-3deg);
}


.grid-product-card h3 {

    font-family: "Fredoka", sans-serif;

    font-size: 21px;
    font-weight: 600;

    margin-top: 16px;

    color: var(--ink);

}


/* small colour bar under each name */

.grid-product-card h3::after {

    content: "";

    display: block;

    width: 40px;
    height: 5px;

    margin: 10px auto 0;

    border-radius: 5px;

    background: var(--yellow);

    transition: width 0.3s ease;

}


.grid-product-card:nth-child(4n+2) h3::after { background: var(--mint); }
.grid-product-card:nth-child(4n+3) h3::after { background: var(--sky); }
.grid-product-card:nth-child(4n+4) h3::after { background: var(--red); }


.grid-product-card:hover h3::after {
    width: 75px;
}


.products-button {
    text-align: center;
    margin-top: 50px;
}



/* =========================================
   FUN ZONE
========================================= */

.fun-section {

    position: relative;

    padding-left: var(--fun-left);
    padding-right: var(--fun-right);

    background:
        repeating-linear-gradient(
            45deg,
            rgba(255, 196, 0, 0.07) 0 22px,
            transparent 22px 44px
        ),
        #ffffff;

    overflow: hidden;

}


.fun-wrapper {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}


.spinner-box {

    margin-top: 10px;

    background: #ffffff;

    border: var(--line);
    border-radius: 32px;

    box-shadow: var(--pop);

    padding: 40px;

    text-align: center;

}


.spinner-window {

    position: relative;

    height: 260px;

    border: var(--line);
    border-radius: 22px;

    background: linear-gradient(180deg, var(--cream), #fff);

    overflow: hidden;

}


.spinner-reel {

    display: flex;

    height: 100%;

    transition: transform 0.25s linear;

}


.spinner-slot {

    flex: 0 0 100%;

    height: 100%;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 12px;

    padding: 22px;

}


.spinner-slot img {

    max-height: 165px;
    max-width: 80%;

    object-fit: contain;

}


.spinner-slot b {

    font-family: "Fredoka", sans-serif;

    font-size: 22px;
    font-weight: 600;

    color: var(--ink);

}


.spinner-pointer {

    position: absolute;

    top: 8px;
    left: 50%;

    transform: translateX(-50%);

    font-size: 24px;
    color: var(--red);

    animation: floaty 2s ease-in-out infinite;

}


.spinner-result {

    margin-top: 24px;

    font-family: "Fredoka", sans-serif;

    font-size: 20px;
    font-weight: 500;

    color: var(--ink);

    min-height: 30px;

}


.spinner-result.win {
    animation: popIn 0.5s cubic-bezier(0.34, 1.5, 0.64, 1);
    color: var(--red);
    font-weight: 600;
}


.spin-btn {

    display: inline-flex;
    align-items: center;
    gap: 12px;

    margin-top: 22px;

    font-family: "Fredoka", sans-serif;

    background: var(--mint);
    color: var(--ink);

    padding: 16px 34px;

    border: var(--line);
    border-radius: 50px;

    box-shadow: var(--pop);

    font-size: 17px;
    font-weight: 600;

    transition: 0.2s ease;

}


.spin-btn span {
    font-size: 20px;
    display: inline-block;
}


.spin-btn:hover:not(:disabled) {
    transform: translate(4px, 4px);
    box-shadow: var(--pop-hover);
    background: var(--yellow);
}


.spin-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    animation: spinGlow 0.6s ease-in-out infinite;
}


.spin-btn:disabled span {
    animation: rotateSlow 0.5s linear infinite;
}



/* =========================================
   WHY MOOGY
========================================= */

.why-section {

    padding-left: var(--why-left);
    padding-right: var(--why-right);

    background:
        radial-gradient(circle at 85% 20%, rgba(69, 168, 255, 0.14), transparent 35%),
        linear-gradient(135deg, #fff9db, #ffffff);

}


.why-container {

    max-width: 1450px;
    margin: auto;

    display: grid;
    grid-template-columns: 0.9fr 1.4fr;

    align-items: center;

    gap: 70px;

}


.why-content h2 {
    margin: 20px 0;
}


.why-content p {

    color: #6c625f;
    line-height: 1.85;

    max-width: 550px;

}


.why-grid {

    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 24px;

}


.why-card {

    background: #ffffff;

    padding: 30px;

    border: var(--line);
    border-radius: 24px;

    box-shadow: var(--pop-sm);

    transition: transform 0.3s cubic-bezier(0.34, 1.3, 0.64, 1),
                box-shadow 0.3s ease;

}


.why-card:nth-child(1) { transform: rotate(-1.4deg); }
.why-card:nth-child(2) { transform: rotate(1.4deg); }
.why-card:nth-child(3) { transform: rotate(1deg); }
.why-card:nth-child(4) { transform: rotate(-1deg); }


.why-card:hover {
    transform: rotate(0deg) translateY(-8px);
    box-shadow: 8px 12px 0 var(--ink);
}


.why-icon {

    width: 62px;
    height: 62px;

    border: var(--line);
    border-radius: 50%;

    background: var(--yellow);

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 27px;

    margin-bottom: 20px;

    transition: transform 0.3s ease;

}


.why-card:nth-child(2) .why-icon { background: var(--mint); }
.why-card:nth-child(3) .why-icon { background: #ffb9bb; }
.why-card:nth-child(4) .why-icon { background: #a9d5ff; }


.why-card:hover .why-icon {
    animation: wiggle 0.5s ease-in-out 2;
}


.why-card h3 {

    font-family: "Fredoka", sans-serif;

    font-size: 22px;
    font-weight: 600;

    color: var(--ink);

}


.why-card p {

    color: #7c706c;

    font-size: 14px;
    line-height: 1.75;

    margin-top: 8px;

}



/* =========================================
   HAPPY SNACKERS
========================================= */

.voices-section {

    padding-left: var(--voices-left);
    padding-right: var(--voices-right);

    background: var(--cream);

}


.voices-grid {

    max-width: 1450px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 30px;

}


.voice-card {

    position: relative;

    background: #ffffff;

    border: var(--line);
    border-radius: 26px;

    box-shadow: var(--pop-sm);

    padding: 46px 28px 28px;

    transition: transform 0.3s cubic-bezier(0.34, 1.3, 0.64, 1),
                box-shadow 0.3s ease;

}


.voice-card:nth-child(1) { transform: rotate(-1.5deg); }
.voice-card:nth-child(2) { transform: rotate(1deg); }
.voice-card:nth-child(3) { transform: rotate(-0.8deg); }


.voice-card:hover {
    transform: rotate(0deg) translateY(-8px);
    box-shadow: 8px 12px 0 var(--red);
}


.voice-face {

    position: absolute;

    top: -30px;
    left: 26px;

    width: 62px;
    height: 62px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 30px;

    background: var(--yellow);

    border: var(--line);
    border-radius: 50%;

}


.voice-card:nth-child(2) .voice-face { background: var(--mint); }
.voice-card:nth-child(3) .voice-face { background: #a9d5ff; }


.voice-card blockquote {

    font-size: 16px;
    line-height: 1.85;

    color: #5a504d;

}


.voice-card blockquote::before {

    content: "“";

    display: block;

    font-family: "Fredoka", sans-serif;
    font-size: 50px;
    line-height: 0.6;

    color: var(--red);

    margin-bottom: 8px;

}


.voice-card figcaption {

    margin-top: 20px;
    padding-top: 16px;

    border-top: 2px dashed rgba(36, 26, 23, 0.15);

}


.voice-card figcaption strong {

    display: block;

    font-family: "Fredoka", sans-serif;

    font-size: 17px;
    font-weight: 600;

    color: var(--ink);

}


.voice-card figcaption span {

    display: block;
    margin-top: 3px;

    font-size: 13px;
    color: #8a7e7a;

}



/* =========================================
   FAQ
========================================= */

.faq-section {

    padding-left: var(--faq-left);
    padding-right: var(--faq-right);

    background: #ffffff;

}


.faq-wrapper {

    max-width: 1450px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 0.85fr 1.15fr;

    gap: 70px;

    align-items: start;

}


.faq-intro h2 {
    margin: 20px 0;
}


.faq-intro p {

    color: #6c625f;
    line-height: 1.85;

    max-width: 460px;

}


.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}


.faq-item {

    background: #ffffff;

    border: var(--line);
    border-radius: 20px;

    box-shadow: var(--pop-sm);

    overflow: hidden;

    transition: background 0.3s ease, box-shadow 0.3s ease;

}


.faq-item.open {
    background: var(--cream);
    box-shadow: 7px 7px 0 var(--red);
}


.faq-question {

    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    padding: 22px 24px;

    background: transparent;

    font-family: "Fredoka", sans-serif;

    font-size: 18px;
    font-weight: 500;

    text-align: left;

    color: var(--ink);

}


.faq-sign {

    position: relative;

    width: 30px;
    height: 30px;

    flex-shrink: 0;

    border: 3px solid var(--ink);
    border-radius: 50%;

    background: var(--yellow);

}


.faq-sign::before,
.faq-sign::after {

    content: "";

    position: absolute;
    top: 50%;
    left: 50%;

    background: var(--ink);

    border-radius: 2px;

    transform: translate(-50%, -50%);

    transition: transform 0.3s ease;

}


.faq-sign::before {
    width: 13px;
    height: 3px;
}


.faq-sign::after {
    width: 3px;
    height: 13px;
}


.faq-item.open .faq-sign {
    background: var(--red);
}


.faq-item.open .faq-sign::after {
    transform: translate(-50%, -50%) rotate(90deg);
}


.faq-item.open .faq-sign::before {
    background: #ffffff;
}


.faq-item.open .faq-sign::after {
    background: #ffffff;
}


.faq-answer {

    max-height: 0;

    overflow: hidden;

    transition: max-height 0.4s ease;

}


.faq-answer p {

    padding: 0 24px 24px;

    font-size: 15px;
    line-height: 1.85;

    color: #6c625f;

}


/* =========================================
   CONTACT SECTION
========================================= */

.contact-section {

    position: relative;

    padding-left: var(--contact-left);
    padding-right: var(--contact-right);

    background: linear-gradient(
        135deg,
        #fff8e1 0%,
        #ffffff 50%,
        #fff3cf 100%
    );

    overflow: hidden;

}


.contact-section::before {

    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    border-radius: 50%;

    background: rgba(255, 196, 0, 0.16);

    top: -150px;
    right: -100px;

}


.contact-section::after {

    content: "";

    position: absolute;

    width: 250px;
    height: 250px;

    border-radius: 50%;

    background: rgba(46, 201, 168, 0.14);

    bottom: -120px;
    left: -100px;

}


.contact-wrapper {

    max-width: 1450px;
    margin: auto;

    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 80px;

    align-items: center;

    position: relative;
    z-index: 2;

}


.contact-content h2 {

    font-size: clamp(38px, 4.2vw, 58px);
    line-height: 1.12;

    margin-top: 18px;

}


.contact-content h2 span {
    display: block;
    color: var(--red);
}


.contact-content > p {

    max-width: 580px;

    margin-top: 25px;

    font-size: 17px;
    line-height: 1.85;

    color: #6c625f;

}


.contact-info {

    margin-top: 40px;

    display: flex;
    flex-direction: column;
    gap: 18px;

}


.contact-info-box {

    display: inline-flex;
    align-items: center;
    gap: 18px;

    width: fit-content;

    padding: 12px 22px 12px 12px;

    background: #ffffff;

    border: var(--line);
    border-radius: 50px;

    box-shadow: var(--pop-sm);

    color: var(--ink);

    transition: 0.2s ease;

}


.contact-info-box:hover {
    transform: translate(3px, 3px);
    box-shadow: 1px 1px 0 var(--ink);
    background: var(--yellow);
}


.contact-icon {

    width: 52px;
    height: 52px;

    flex-shrink: 0;

    border: var(--line);
    border-radius: 50%;

    background: var(--yellow);

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 22px;

}


.contact-info-box:nth-child(2) .contact-icon {
    background: var(--mint);
}


.contact-info-box span {

    display: block;

    font-size: 12px;
    color: #8a7e7a;

    margin-bottom: 3px;

}


.contact-info-box strong {

    font-family: "Fredoka", sans-serif;

    font-size: 17px;
    font-weight: 600;

    color: var(--ink);

}


/* FORM BOX */

.contact-form-box {

    background: #ffffff;

    padding: 42px;

    border: var(--line);
    border-radius: 30px;

    box-shadow: 12px 12px 0 var(--ink);

}


.contact-form-box h3 {

    font-family: "Fredoka", sans-serif;

    font-size: 32px;
    font-weight: 600;

    color: var(--ink);

}


.contact-form-box > p {

    margin-top: 8px;

    color: #7c706c;
    font-size: 15px;

}


.contact-form {
    margin-top: 30px;
}


.form-row {

    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 18px;

}


.form-group {

    display: flex;
    flex-direction: column;
    gap: 8px;

    margin-bottom: 18px;

}


.form-group label {

    font-family: "Fredoka", sans-serif;

    font-size: 14px;
    font-weight: 500;

    color: var(--ink);

}


.form-group input,
.form-group textarea {

    width: 100%;

    border: 3px solid rgba(36, 26, 23, 0.16);

    background: #fffdf7;

    border-radius: 14px;

    padding: 14px 17px;

    font-family: inherit;
    font-size: 14px;
    color: var(--ink);

    outline: none;

    transition: 0.25s ease;

}


.form-group textarea {
    resize: vertical;
    min-height: 130px;
}


.form-group input:focus,
.form-group textarea:focus {

    border-color: var(--ink);
    background: #ffffff;

    box-shadow: var(--pop-sm);

}


.contact-submit-btn {

    width: 100%;

    background: var(--red);
    color: #ffffff;

    padding: 16px 25px;

    border: var(--line);
    border-radius: 50px;

    box-shadow: var(--pop);

    font-family: "Fredoka", sans-serif;
    font-size: 17px;
    font-weight: 600;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    transition: 0.2s ease;

}


.contact-submit-btn span {
    font-size: 20px;
    transition: transform 0.25s ease;
}


.contact-submit-btn:hover {
    transform: translate(4px, 4px);
    box-shadow: var(--pop-hover);
    background: var(--yellow);
    color: var(--ink);
}


.contact-submit-btn:hover span {
    transform: translateX(5px);
}


.form-note {

    margin-top: 16px;

    font-size: 14px;
    text-align: center;

    color: var(--mint);
    font-weight: 600;

}



/* =========================================
   FOOTER
========================================= */

.site-footer {

    background: var(--ink);
    color: #ffffff;

    border-top: 10px solid var(--yellow);

}


.footer-main {

    padding-left: var(--footer-left);
    padding-right: var(--footer-right);

    padding-top: 80px;
    padding-bottom: 60px;

}


.footer-wrapper {

    max-width: 1450px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.4fr;

    gap: 60px;

}


.footer-logo {

    display: inline-block;
    margin-bottom: 20px;

    background: #ffffff;

    padding: 12px 18px;

    border: var(--line);
    border-radius: 18px;

    transition: transform 0.3s ease;

}


.footer-logo:hover {
    transform: rotate(-3deg);
}


.footer-logo img {

    width: 150px;
    max-width: 100%;
    height: auto;

    object-fit: contain;

}


.footer-brand p {

    max-width: 380px;

    color: #bdb2ae;

    font-size: 15px;
    line-height: 1.85;

}


.footer-social {

    display: flex;
    gap: 12px;
    margin-top: 28px;

}


.footer-social a {

    width: 46px;
    height: 46px;

    border: 3px solid #ffffff;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: transparent;
    color: #ffffff;

    font-size: 18px;

    transition: 0.25s ease;

}


.footer-social a:hover {
    transform: translateY(-6px) rotate(-8deg);
}


.footer-social .facebook:hover  { background: var(--sky);   border-color: var(--sky); }
.footer-social .instagram:hover { background: var(--red);   border-color: var(--red); }
.footer-social .threads:hover   { background: var(--yellow); border-color: var(--yellow); color: var(--ink); }
.footer-social .linkedin:hover  { background: var(--mint);  border-color: var(--mint); color: var(--ink); }


.footer-column h3 {

    font-family: "Fredoka", sans-serif;

    font-size: 21px;
    font-weight: 600;

    margin-bottom: 24px;

    color: var(--yellow);

}


.footer-column ul {
    list-style: none;
}


.footer-column ul li {
    margin-bottom: 14px;
}


.footer-column ul li a {

    color: #bdb2ae;
    font-size: 15px;

    display: inline-block;

    transition: 0.25s ease;

}


.footer-column ul li a:hover {
    color: var(--yellow);
    transform: translateX(7px);
}


.footer-contact {
    display: flex;
    flex-direction: column;
}


.footer-contact > a {

    display: flex;
    align-items: center;
    gap: 14px;

    color: #ffffff;

    margin-bottom: 22px;

    transition: transform 0.25s ease;

}


.footer-contact > a:hover {
    transform: translateX(5px);
}


.footer-contact > a > span {

    width: 48px;
    height: 48px;

    border: 3px solid #ffffff;
    border-radius: 15px;

    background: var(--red);

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 19px;

    flex-shrink: 0;

}


.footer-contact > a:nth-of-type(2) > span {
    background: var(--mint);
    color: var(--ink);
}


.footer-contact small {

    display: block;

    color: #9c918d;
    font-size: 12px;

    margin-bottom: 4px;

}


.footer-contact strong {

    font-size: 15px;
    color: #ffffff;
    font-weight: 600;

    transition: 0.25s ease;

}


.footer-contact > a:hover strong {
    color: var(--yellow);
}


/* FOOTER BOTTOM */

.footer-bottom {

    padding-left: var(--footer-left);
    padding-right: var(--footer-right);

    border-top: 2px dashed rgba(255, 255, 255, 0.18);

    padding-top: 22px;
    padding-bottom: 22px;

}


.footer-bottom-wrapper {

    max-width: 1450px;
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

}


.footer-bottom p {

    margin: 0;

    font-size: 14px;
    color: #9c918d;

    text-align: center;

}


.footer-bottom p a {

    color: var(--yellow);
    font-weight: 600;

    transition: 0.25s ease;

}


.footer-bottom p a:hover {
    color: #ffffff;
}



/* =========================================
   FLOATING BUTTONS
========================================= */

.whatsapp-btn {

    position: fixed;

    right: 28px;
    bottom: 28px;

    width: 62px;
    height: 62px;

    border: var(--line);
    border-radius: 50%;

    background: #25d366;
    color: #ffffff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 30px;

    z-index: 998;

    box-shadow: var(--pop-sm);

    transition: 0.25s ease;

}


.whatsapp-btn:hover {
    transform: translateY(-6px) rotate(-8deg);
    box-shadow: 6px 8px 0 var(--ink);
}


.to-top-btn {

    position: fixed;

    right: 28px;
    bottom: 102px;

    width: 52px;
    height: 52px;

    border: var(--line);
    border-radius: 50%;

    background: var(--yellow);
    color: var(--ink);

    font-size: 22px;
    font-weight: 700;

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 998;

    box-shadow: var(--pop-sm);

    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);

    transition: 0.3s ease;

}


.to-top-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


.to-top-btn:hover {
    background: var(--red);
    color: #ffffff;
    transform: translateY(-5px);
}



/* =========================================
   TABLET
========================================= */

@media (max-width: 1100px) {

    :root {

        --header-left: 40px;
        --header-right: 40px;

        --about-left: 40px;
        --about-right: 40px;

        --featured-left: 40px;
        --featured-right: 40px;

        --products-left: 40px;
        --products-right: 40px;

        --fun-left: 40px;
        --fun-right: 40px;

        --why-left: 40px;
        --why-right: 40px;

        --voices-left: 40px;
        --voices-right: 40px;

        --faq-left: 40px;
        --faq-right: 40px;

        --contact-left: 40px;
        --contact-right: 40px;

        --footer-left: 40px;
        --footer-right: 40px;

    }


    .main-nav {
        gap: 22px;
    }

    .main-nav a {
        font-size: 15px;
    }

    /* STACK HONE PAR ORDER ULTA:
       pehle content, uske baad image */

    .about-container {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .about-content {
        order: 1;
        max-width: 800px;
        margin: auto;
    }

    .about-visual {
        order: 2;
        min-height: 550px;
    }

    .about-content .primary-btn {
        margin-top: 30px;
    }

    .stats-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px 25px;
    }

    .product-card {
        flex: 0 0 calc((100% - 44px) / 3);
    }

    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .why-container {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .voices-grid {
        grid-template-columns: 1fr;
        gap: 45px;
        max-width: 620px;
    }

    .faq-wrapper {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 55px;
    }

}



/* =========================================
   MOBILE
========================================= */

@media (max-width: 800px) {

    :root {

        /* YAHAN MOBILE KI HAR SECTION KI
           PADDING ALAG-ALAG CHANGE KAR SAKTE HAIN */

        --header-left: 20px;
        --header-right: 20px;

        --about-left: 20px;
        --about-right: 20px;

        --featured-left: 20px;
        --featured-right: 20px;

        --products-left: 20px;
        --products-right: 20px;

        --fun-left: 20px;
        --fun-right: 20px;

        --why-left: 20px;
        --why-right: 20px;

        --voices-left: 20px;
        --voices-right: 20px;

        --faq-left: 20px;
        --faq-right: 20px;

        --contact-left: 20px;
        --contact-right: 20px;

        --footer-left: 20px;
        --footer-right: 20px;

    }


    .section-padding {
        padding-top: 65px;
        padding-bottom: 65px;
    }

    .header-container {
        min-height: 75px;
    }

    .logo {
        width: 105px;
    }

    .header-btn {
        display: none;
    }

    .menu-toggle {

        display: flex;
        flex-direction: column;
        gap: 5px;

        margin-left: auto;

        padding: 10px;

        background: var(--yellow);

        border: var(--line);
        border-radius: 12px;

        box-shadow: var(--pop-sm);

    }

    .menu-toggle span {

        width: 24px;
        height: 3px;

        border-radius: 3px;

        background: var(--ink);

        transition: 0.3s ease;

    }

    .menu-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }


    .main-nav {

        position: fixed;

        top: 78px;
        left: 0;

        width: 100%;

        background: #ffffff;

        flex-direction: column;
        align-items: flex-start;

        gap: 0;

        padding: 20px;

        border-bottom: var(--line);

        box-shadow: 0 12px 0 rgba(36, 26, 23, 0.1);

        transform: translateY(-150%);

        opacity: 0;
        pointer-events: none;

        transition: 0.35s ease;

    }

    .main-nav.mobile-active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .main-nav a {
        width: 100%;
        padding: 13px 0;
        font-size: 17px;
    }


    .ticker-track span {
        font-size: 17px;
    }

    .about-container {
        gap: 45px;
    }

    .about-visual {
        min-height: 470px;
    }

    .about-glow {
        width: 330px;
        height: 330px;
    }

    .about-circle-one {
        width: 370px;
        height: 370px;
    }

    .about-circle-two {
        width: 420px;
        height: 420px;
    }

    .about-product-card {
        width: 280px;
        height: 360px;
        border-radius: 30px;
        box-shadow: 7px 7px 0 var(--ink);
    }

    .about-product-card img {
        max-height: 320px;
    }

    .float-sticker {
        padding: 9px 13px;
        gap: 9px;
    }

    .float-sticker span {
        font-size: 18px;
    }

    .float-sticker strong {
        font-size: 12px;
    }

    .float-sticker small {
        font-size: 10px;
    }

    .float-sticker-one {
        top: 25px;
        right: -5px;
    }

    .float-sticker-two {
        bottom: 25px;
        left: -5px;
    }

    .about-content .about-intro {
        font-size: 16px;
    }

    .about-content p {
        font-size: 14.5px;
    }

    .about-highlights {
        grid-template-columns: 1fr;
    }

    .section-heading {
        flex-direction: column;
        align-items: flex-start;
    }

    .product-card {
        flex: 0 0 calc((100% - 22px) / 2);
    }

    .product-image {
        height: 220px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .grid-product-card {
        padding: 16px 14px 18px;
        border-radius: 20px;
    }

    .grid-product-card img {
        height: 165px;
    }

    .grid-product-card h3 {
        font-size: 17px;
    }

    .spinner-box {
        padding: 26px 18px;
        border-radius: 26px;
    }

    .spinner-window {
        height: 225px;
    }

    .spinner-slot img {
        max-height: 135px;
    }

    .spinner-result {
        font-size: 17px;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-box {
        padding: 26px 20px;
        border-radius: 24px;
        box-shadow: 7px 7px 0 var(--ink);
    }

    .contact-form-box h3 {
        font-size: 26px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-content > p {
        font-size: 15px;
    }

    .faq-question {
        font-size: 16px;
        padding: 18px 18px;
    }

    .footer-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 45px 35px;
    }

}



/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 520px) {

    :root {

        --header-left: 15px;
        --header-right: 15px;

        --about-left: 15px;
        --about-right: 15px;

        --featured-left: 15px;
        --featured-right: 15px;

        --products-left: 15px;
        --products-right: 15px;

        --fun-left: 15px;
        --fun-right: 15px;

        --why-left: 15px;
        --why-right: 15px;

        --voices-left: 15px;
        --voices-right: 15px;

        --faq-left: 15px;
        --faq-right: 15px;

        --contact-left: 15px;
        --contact-right: 15px;

        --footer-left: 15px;
        --footer-right: 15px;

    }


    h2 {
        font-size: 36px;
    }

    .hero-wave svg {
        height: 40px;
    }

    .featured-slider-wrapper {
        padding-left: 0;
        padding-right: 0;
    }

    .featured-slider {
        gap: 16px;
    }

    .product-card {
        flex: 0 0 82%;
        padding: 14px 14px 18px;
    }

    .product-image {
        height: 250px;
    }

    .product-card h3 {
        font-size: 21px;
    }

    .stats-wrapper {
        gap: 30px 15px;
    }

    .stat-chip span {
        font-size: 12.5px;
    }

    .footer-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .whatsapp-btn {
        width: 55px;
        height: 55px;
        right: 18px;
        bottom: 18px;
        font-size: 26px;
    }

    .to-top-btn {
        width: 46px;
        height: 46px;
        right: 18px;
        bottom: 85px;
    }

}