/* ================= GLOBAL RESET ================= */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: auto; }
html, body {
    width: 100%;
    min-height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    font-family: "Poppins", sans-serif;
    background: #180303;
}

/* ================= LENIS ================= */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }

/* ================= INTRO PAGE ================= */
.intro-page {
    width: 100%;
    height: 100vh;
    position: relative;
    z-index: 1;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #180303;
}
.intro-bg {
    position: absolute;
    inset: 0;
    background-image: url("images/sweet-making.gif");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.08);
    z-index: 1;
}
.intro-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at center, rgba(90,0,0,0.35), rgba(10,0,0,0.95)),
        linear-gradient(rgba(40,0,0,0.65), rgba(20,0,0,0.85));
    z-index: 2;
}
.intro-page::before {
    content: "";
    position: absolute;
    inset: 28px;
    border: 1px solid rgba(216,166,55,0.45);
    z-index: 3;
    pointer-events: none;
}
/* .intro-page::after {
    content: "✦";
    position: absolute;
    bottom: 55px;
    left: 50%;
    transform: translateX(-50%);
    color: #d8a637;
    font-size: 24px;
    z-index: 3;
} */
.intro-content {
    position: relative;
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.intro-logo {
    width: 360px;
    max-width: 80vw;
    object-fit: contain;
    opacity: 0 !important;
    visibility: hidden !important;
}
.intro-line {
    width: 180px;
    height: 2px;
    margin-top: 28px;
    margin-bottom: 18px;
    background: linear-gradient(90deg, transparent, #d8a637, transparent);
}
.intro-since {
    color: #f0be4c;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 6px;
    text-transform: uppercase;
    font-family: "Cormorant Garamond", serif;
}
.intro-subtitle {
    margin-top: 10px;
    color: #fff4dc;
    font-size: 17px;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.intro-btn { display: none !important; }

/* ================= MOVING LOGO ================= */
.moving-logo {
    position: fixed !important;
    width: 360px;
    max-width: 80vw;
    left: 50%;
    top: 43%;
    transform: translate(-50%, -50%);
    z-index: 999998 !important;
    object-fit: contain;
    pointer-events: none;
    filter:
        drop-shadow(0 25px 45px rgba(0,0,0,0.75))
        drop-shadow(0 0 28px rgba(230,174,45,0.35));
    will-change: width, left, top, transform, opacity;
}

/* ================= NAVBAR  (z-index: 999999 = highest) ================= */
nav {
    width: 92%;
    height: 78px;
    position: fixed !important;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0 28px;
    background: rgba(105,5,5,0.78);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,215,0,0.26);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 20px 60px rgba(0,0,0,0.35), inset 0 0 30px rgba(255,210,95,0.04);
    z-index: 999999 !important;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    will-change: transform, opacity;
}
.logo-area {
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 270px;
    overflow: hidden;
}
.logo-img-box {
    width: 58px;
    height: 58px;
    min-width: 58px;
    max-width: 58px;
    max-height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 50%;
    background: transparent;
    opacity: 0;
    visibility: hidden;
    will-change: opacity;
}
.logo-img-box img {
    width: 100%;
    height: 100%;
    max-width: 58px;
    max-height: 58px;
    object-fit: contain;
    display: block;
}
.logo-text { opacity: 0; visibility: hidden; will-change: opacity; }
.logo-text h3 {
    color: #fff;
    font-size: 18px;
    line-height: 1;
    font-family: "Cormorant Garamond", serif;
    font-weight: 700;
}
.logo-text p {
    margin-top: 5px;
    color: #e9c77a;
    font-size: 9px;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 38px;
    opacity: 0;
    visibility: hidden;
    will-change: opacity;
}
.nav-links a {
    text-decoration: none;
    color: #fff;
    font-size: 17px;
    font-weight: 500;
    position: relative;
    transition: 0.3s ease;
}
.nav-links a:hover { color: #f3c04d; }
.nav-links a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -9px;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #f3c04d;
    border-radius: 20px;
    transition: 0.35s ease;
}
.nav-links a:hover::after { width: 100%; }
.logo-circle { display: none !important; }

/* ================= HERO ================= */
.hero {
    width: 100%;
    height: auto;
    min-height: 100vh;
    position: relative;
    z-index: 2;
    background:
        linear-gradient(rgba(35,0,0,0.82), rgba(35,0,0,0.9)),
        url("https://images.unsplash.com/photo-1517244683847-7456b63c5969?q=80&w=1600&auto=format&fit=crop");
    background-size: cover;
    background-position: center;
    overflow: visible;
    border: none;
    box-shadow: none;
}
.hero::before, .hero::after { display: none !important; }

.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(20,0,0,0.92) 0%, rgba(55,0,0,0.72) 42%, rgba(35,0,0,0.35) 100%);
    z-index: 1;
}

/* ================= HERO CONTENT ================= */
.hero-content {
    width: 52%;
    height: auto;
    min-height: 100vh;
    padding-left: 7%;
    padding-top: 110px;
    padding-bottom: 100px;
    position: relative;
    z-index: 10;
    overflow: visible;
    will-change: transform, opacity;
}
.hero-content::before {
    content: "✦";
    position: absolute;
    left: 4.5%;
    top: 145px;
    color: #d8a637;
    font-size: 22px;
    opacity: 0.8;
}
.hero-content::after {
    content: "";
    position: absolute;
    left: 7%;
    bottom: 90px;
    width: 160px;
    height: 2px;
    background: linear-gradient(90deg, #d8a637, transparent);
    opacity: 0.75;
}
.small-heading {
    color: #e3b34a;
    font-size: 15px;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 18px;
    font-weight: 700;
    position: relative;
    display: inline-block;
}
.small-heading::before {
    content: "";
    display: inline-block;
    width: 55px;
    height: 1px;
    background: #d8a637;
    margin-right: 15px;
    vertical-align: middle;
}
.hero-content h1 {
    color: #fff;
    font-size: clamp(56px, 5.8vw, 76px);
    line-height: 0.95;
    font-family: "Cormorant Garamond", serif;
    font-weight: 700;
    margin-bottom: 22px;
    text-shadow: 0 18px 45px rgba(0,0,0,0.55);
}
.hero-content h1 span {
    display: inline-block;
    color: #f0be4c;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.hero-para {
    color: #eee0df;
    font-size: 18px;
    line-height: 1.7;
    max-width: 610px;
    margin-bottom: 20px;
}
.explore-btn {
    padding: 15px 34px;
    border: none;
    border-radius: 50px;
    background: linear-gradient(145deg, #f8d36d, #d89517);
    color: #3b0a00;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 18px 35px rgba(216,149,23,0.28), inset 0 1px 0 rgba(255,255,255,0.45);
    transition: 0.35s ease;
}
.explore-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 45px rgba(216,149,23,0.38), inset 0 1px 0 rgba(255,255,255,0.45);
}

/* ================= FEATURES ================= */
.features {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    margin-top: 30px;
    position: relative;
    z-index: 10;
    overflow: visible;
    padding-bottom: 10px;
}
.feature {
    padding-right: 22px;
    border-right: 1px solid rgba(255,255,255,0.16);
    overflow: visible;
}
.feature:last-child { border-right: none; }
.feature h4 {
    color: #f0be4c;
    font-size: 15px;
    margin-bottom: 6px;
    font-weight: 800;
    text-transform: uppercase;
    white-space: normal;
    display: block;
}
.feature p {
    color: #ddd;
    font-size: 13px;
    white-space: normal;
    max-width: 160px;
    line-height: 1.5;
    display: block;
    overflow: visible;
}

/* ================= SWEET IMAGE ================= */
.sweet-image {
    position: absolute;
    right: 4%;
    bottom: 0;
    width: 41%;
    height: 80vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    z-index: 4;
    will-change: transform, opacity;
}
.sweet-image::before {
    content: "";
    position: absolute;
    width: 88%;
    height: 88%;
    bottom: 4%;
    border-radius: 35px 35px 0 0;
    background: rgba(255,196,68,0.12);
    filter: blur(35px);
    z-index: -1;
}
.sweet-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 32px 32px 0 0;
    border: 2px solid rgba(255,215,0,0.2);
    box-shadow: 0 30px 80px rgba(0,0,0,0.55), 0 0 40px rgba(255,183,0,0.13);
}
.sweet-tag {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    padding: 13px 28px;
    background: rgba(255,248,230,0.92);
    color: #7a0000;
    border: 1px solid rgba(216,166,55,0.5);
    border-radius: 16px;
    font-size: 28px;
    font-weight: 700;
    font-family: "Cormorant Garamond", serif;
    letter-spacing: 1px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 14px 30px rgba(0,0,0,0.26);
}

/* ================= KAJU PARALLAX SECTION ================= */
.kaju-parallax-section {
    width: 100%;
    height: 50vh;
    min-height: 400px;
    position: relative;
    display: block;
    margin: 0;
    padding: 0;
    overflow: hidden;
    line-height: 0;
    font-size: 0;
    z-index: 0;
    background-image: url("images/kajukatli.webp");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-color: transparent;
    border: none;
    box-shadow: none;
}
.kaju-parallax-section::before, .kaju-parallax-section::after { display: none !important; }
.kaju-parallax-overlay {
    position: absolute;
    inset: 0;
    background: rgba(24,3,3,0.16);
    z-index: 1;
    pointer-events: none;
}
.kaju-yellow-band, .kaju-parallax-img, .kaju-parallax-bg,
.fixed-kajukatli, .fixed-dhokla, .hero-about-dhokla, .kaju-break-section {
    display: none !important;
}

/* ================= ABOUT SECTION ================= */
.about-section {
    width: 100%;
    position: relative;
    z-index: 3;
    margin-top: 0;
    padding: 100px 6% 125px;
    background:
        radial-gradient(circle at 12% 18%, rgba(245,245,245,0.95) 0%, rgba(245,245,245,0) 28%),
        radial-gradient(circle at 88% 78%, rgba(228,228,228,0.85) 0%, rgba(228,228,228,0) 26%),
        linear-gradient(180deg, #ffffff 0%, #f7f7f7 52%, #ffffff 100%);
    overflow: hidden;
    min-height: auto;
}
.about-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(170,170,170,0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(170,170,170,0.055) 1px, transparent 1px);
    background-size: 110px 110px;
    mask-image: linear-gradient(to bottom, transparent, black 16%, black 84%, transparent);
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 16%, black 84%, transparent);
    pointer-events: none;
    z-index: 0;
}
.about-section::after {
    content: "";
    position: absolute;
    width: 460px;
    height: 460px;
    top: -140px;
    right: -130px;
    background: radial-gradient(circle, rgba(220,220,220,0.85) 0%, rgba(220,220,220,0) 70%);
    border-radius: 50%;
    filter: blur(8px);
    pointer-events: none;
    z-index: 0;
}
.about-wave-top, .about-wave-bottom, .about-down-icon, .bottom-icon { display: none !important; }

.about-heading {
    text-align: center;
    position: relative;
    z-index: 3;
    margin-bottom: 50px;
}
.about-heading h2 {
    color: #171717;
    font-family: "Cormorant Garamond", serif;
    font-size: 48px;
    font-weight: 700;
    letter-spacing: 2px;
}
.heading-line {
    width: 300px;
    height: 3px;
    margin: 12px auto 0;
    background: linear-gradient(90deg, transparent, #c9a23c, transparent);
    border-radius: 50px;
}
.about-container {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}
.about-container::before {
    content: "";
    position: absolute;
    left: -55px;
    bottom: -45px;
    width: 170px;
    height: 170px;
    border: 1px solid rgba(160,160,160,0.18);
    border-radius: 26px;
    background: linear-gradient(135deg, rgba(255,255,255,0.55), rgba(238,238,238,0.28));
    transform: rotate(-12deg);
    z-index: -1;
}
.about-container::after {
    content: "";
    position: absolute;
    right: -35px;
    top: -35px;
    width: 130px;
    height: 130px;
    border: 1px solid rgba(180,180,180,0.16);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245,245,245,0.75), rgba(245,245,245,0));
    z-index: -1;
}
.about-image-side { width: 100%; position: relative; z-index: 3; }
.about-image-card {
    width: 100%;
    height: 520px;
    overflow: hidden;
    border-radius: 18px;
    background: #f4f4f4;
    border: 1px solid rgba(170,170,170,0.18);
    box-shadow: 0 25px 70px rgba(0,0,0,0.14), 0 0 0 10px rgba(255,255,255,0.42);
}
.about-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: 0.6s ease;
}
.about-image-card:hover img { transform: scale(1.06); }
.about-text-side { text-align: left; max-width: 680px; position: relative; z-index: 3; }
.about-label {
    display: inline-block;
    padding: 9px 18px;
    margin-bottom: 18px;
    background: rgba(183,25,22,0.08);
    color: #b71916;
    border: 1px solid rgba(183,25,22,0.18);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
}
.about-text-side h3 {
    color: #3c0805;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(42px, 4vw, 64px);
    line-height: 1;
    font-weight: 700;
    margin-bottom: 24px;
}
.about-para {
    color: #5f514c;
    font-size: 20px;
    line-height: 1.75;
    margin-bottom: 22px;
    max-width: 650px;
}
.about-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 34px;
    position: relative;
    z-index: 3;
}
.about-highlights div {
    padding: 20px 22px;
    background: linear-gradient(145deg, rgba(255,255,255,0.96), rgba(244,244,244,0.9));
    border: 1px solid rgba(180,180,180,0.16);
    border-radius: 22px;
    box-shadow: 0 18px 45px rgba(0,0,0,0.06);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}
.about-highlights strong {
    display: block;
    color: #b71916;
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 6px;
}
.about-highlights span { color: #7a5a45; font-size: 14px; line-height: 1.5; }

/* ================= PINNED PRODUCT SHOWCASE ================= */

/* ================= FINAL GSAP PINNED PRODUCT SHOWCASE ================= */

/* ================= DMB PRODUCT SHOWCASE — BELGIAN WAFFLE STYLE ================= */

/* ================= FINAL DMB PRODUCT PIN SHOWCASE ================= */

/* ================= FINAL STICKY CENTER PRODUCT SHOWCASE ================= */

/* ================= FINAL WORKING PRODUCT STICKY SHOWCASE ================= */

/* ================= FINAL MANUAL FIXED PRODUCT SHOWCASE ================= */

.pinned-products-section {
    width: 100%;
    min-height: 650vh;
    position: relative;
    padding: 0 7%;
    background:
        radial-gradient(circle at top left, rgba(244,181,28,0.18), transparent 28%),
        radial-gradient(circle at bottom right, rgba(183,25,22,0.12), transparent 32%),
        linear-gradient(180deg, #fff8ea 0%, #f4dfbf 100%);
    overflow: visible;
    z-index: 5;
}

/* white box default position */
.product-showcase-window {
    width: min(1180px, 86vw);
    height: 650px;

    position: absolute;
    top: calc(50vh - 325px);
    left: 50%;
    transform: translateX(-50%);

    display: flex;
    flex-direction: column;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,0.96),
            rgba(255,248,230,0.82)
        );

    border: 1px solid rgba(183,25,22,0.14);
    border-radius: 38px;

    box-shadow:
        0 35px 95px rgba(78,24,5,0.16),
        inset 0 1px 0 rgba(255,255,255,0.85);

    overflow: hidden;
    z-index: 50;
}

/* this class is added by JS while product section is active */
.product-showcase-window.product-window-fixed {
    position: fixed !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
}

/* this class is added by JS after the product scroll ends */
.product-showcase-window.product-window-ended {
    position: absolute !important;
    top: auto !important;
    bottom: 90px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
}

.product-showcase-window::before {
    content: "";
    position: absolute;
    inset: 20px;
    border: 1px solid rgba(216,166,55,0.26);
    border-radius: 28px;
    pointer-events: none;
    z-index: 80;
}

/* heading inside white window */
.pinned-products-heading {
    width: 100%;
    max-width: 920px;
    text-align: center;
    margin: 0 auto;
    padding: 30px 30px 14px;
    position: relative;
    z-index: 90;
}

.pinned-products-heading p {
    color: #b71916;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin: 0 0 8px;
}

.pinned-products-heading h2 {
    color: #3c0805;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(40px, 4.4vw, 64px);
    line-height: 0.95;
    font-weight: 700;
    margin: 0 0 10px;
}

.pinned-products-heading span {
    display: block;
    color: #71503c;
    font-size: 16px;
    line-height: 1.45;
    margin: 0;
}

/* slide area */
.product-slides-area {
    flex: 1;
    width: 100%;
    position: relative;
    overflow: hidden;
}

/* products stacked inside same white box */
.product-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;

    padding: 24px 46px 44px;

    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 44px;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    z-index: 1;
}

.product-slide.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    z-index: 5;
}

.product-showcase-left {
    position: relative;
    z-index: 60;
}

.product-count {
    color: #b71916;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 4px;
    margin-bottom: 16px;
}

.showcase-title {
    color: #3c0805;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(48px, 5vw, 78px);
    line-height: 0.95;
    font-weight: 700;
    margin-bottom: 20px;
}

.showcase-desc {
    color: #6d5143;
    font-size: 19px;
    line-height: 1.7;
    max-width: 520px;
}

.showcase-line {
    width: 180px;
    height: 3px;
    margin-top: 26px;
    background: linear-gradient(90deg, #b71916, #f4b51c, transparent);
    border-radius: 50px;
}

.product-showcase-right {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 60;
    border-radius: 30px;
    overflow: hidden;
    background: rgba(255,244,220,0.78);
    box-shadow: 0 25px 70px rgba(78,24,5,0.22);
}

.product-showcase-right img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    padding: 22px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 950px) {
    .pinned-products-section {
        min-height: 650vh;
        padding: 0 5%;
    }

    .product-showcase-window {
        width: 92vw;
        height: 720px;
        top: calc(50vh - 360px);
    }

    .pinned-products-heading {
        padding: 26px 22px 12px;
    }

    .pinned-products-heading h2 {
        font-size: 42px;
    }

    .pinned-products-heading span {
        font-size: 15px;
    }

    .product-slide {
        grid-template-columns: 1fr;
        padding: 18px 30px 34px;
        text-align: center;
        gap: 20px;
    }

    .showcase-desc {
        margin: 0 auto;
        font-size: 17px;
    }

    .showcase-line {
        margin-left: auto;
        margin-right: auto;
    }

    .product-showcase-right {
        height: 280px;
    }
}

@media (max-width: 700px) {
    .product-showcase-window {
        height: 690px;
        top: calc(50vh - 345px);
        border-radius: 28px;
    }

    .product-showcase-window::before {
        inset: 14px;
        border-radius: 22px;
    }

    .pinned-products-heading p {
        font-size: 12px;
        letter-spacing: 3px;
    }

    .pinned-products-heading h2 {
        font-size: 34px;
    }

    .pinned-products-heading span {
        font-size: 13px;
    }

    .product-slide {
        padding: 16px 22px 28px;
    }

    .showcase-title {
        font-size: 38px;
    }

    .showcase-desc {
        font-size: 15px;
        line-height: 1.6;
    }

    .product-showcase-right {
        height: 230px;
        border-radius: 22px;
    }

    .product-showcase-right img {
        padding: 14px;
    }
}
/* ================= SWEET STYLING FOR PRODUCT WHITE BOX ================= */

/* Main mithai-style white box upgrade */
.product-showcase-window {
    background:
        radial-gradient(circle at 8% 12%, rgba(244, 181, 28, 0.16), transparent 24%),
        radial-gradient(circle at 92% 88%, rgba(183, 25, 22, 0.10), transparent 28%),
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.97),
            rgba(255, 248, 230, 0.86)
        ) !important;

    border: 1px solid rgba(183, 25, 22, 0.18) !important;

    box-shadow:
        0 35px 100px rgba(78, 24, 5, 0.20),
        0 0 0 10px rgba(255, 240, 205, 0.42),
        inset 0 1px 0 rgba(255, 255, 255, 0.95),
        inset 0 -40px 90px rgba(244, 181, 28, 0.08) !important;
}

/* Inner royal border */
.product-showcase-window::before {
    border: 1px solid rgba(216, 166, 55, 0.38) !important;
    box-shadow:
        inset 0 0 28px rgba(244, 181, 28, 0.10),
        0 0 24px rgba(244, 181, 28, 0.08);
}

/* Subtle sweet-pattern background */
.product-showcase-window::after {
    content: "";
    position: absolute;
    inset: 0;

    background-image:
        radial-gradient(circle, rgba(183, 25, 22, 0.055) 2px, transparent 2px),
        radial-gradient(circle, rgba(244, 181, 28, 0.10) 2px, transparent 2px);

    background-size: 44px 44px, 64px 64px;
    background-position: 0 0, 22px 22px;

    opacity: 0.42;
    pointer-events: none;
    z-index: 2;

    mask-image: linear-gradient(to bottom, transparent 0%, black 18%, black 82%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 18%, black 82%, transparent 100%);
}

/* Keep content above the pattern */
.pinned-products-heading,
.product-slides-area,

.product-showcase-left,
.product-showcase-right {
    position: relative;
    z-index: 10;
}

/* Decorative mithai glow behind the product image */
.product-showcase-right::before {
    content: "";
    position: absolute;
    width: 72%;
    height: 72%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);

    background:
        radial-gradient(circle, rgba(244, 181, 28, 0.22), transparent 68%);

    border-radius: 50%;
    filter: blur(10px);
    z-index: 1;
}

/* Richer image frame */
.product-showcase-right {
    background:
        radial-gradient(circle at center, rgba(255, 246, 222, 0.95), rgba(255, 232, 181, 0.65)) !important;

    border: 1px solid rgba(216, 166, 55, 0.30) !important;

    box-shadow:
        0 26px 70px rgba(78, 24, 5, 0.24),
        inset 0 0 45px rgba(255, 255, 255, 0.35),
        inset 0 -20px 50px rgba(244, 181, 28, 0.12) !important;
}

/* Product image above glow */
.product-showcase-right img {
    position: relative;
    z-index: 5;
    filter:
        drop-shadow(0 22px 28px rgba(78, 24, 5, 0.22))
        saturate(1.06);
}

/* Sweet count badge */
.product-count {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 8px 14px;
    border-radius: 999px;

    background: rgba(183, 25, 22, 0.08);
    border: 1px solid rgba(183, 25, 22, 0.16);

    color: #b71916 !important;
}

.product-count::before {
    content: "✦";
    color: #f4b51c;
    font-size: 12px;
}

/* Premium title feel */
.showcase-title {
    text-shadow: 0 10px 30px rgba(78, 24, 5, 0.10);
}

/* Decorative line upgrade */
.showcase-line {
    height: 4px !important;
    background:
        linear-gradient(
            90deg,
            #b71916,
            #f4b51c,
            rgba(244, 181, 28, 0.25),
            transparent
        ) !important;

    box-shadow: 0 6px 18px rgba(244, 181, 28, 0.25);
}

/* Heading sweet underline */
.pinned-products-heading h2 {
    position: relative;
}

.pinned-products-heading h2::after {
    content: "";
    display: block;

    width: 160px;
    height: 3px;

    margin: 14px auto 0;

    background: linear-gradient(90deg, transparent, #f4b51c, #b71916, #f4b51c, transparent);
    border-radius: 999px;
}

/* Small decorative dots near heading */
.pinned-products-heading p::before,
.pinned-products-heading p::after {
    content: "•";
    color: #f4b51c;
    margin: 0 12px;
}

/* Mobile adjustments */
@media (max-width: 700px) {
    .product-showcase-window {
        box-shadow:
            0 24px 70px rgba(78, 24, 5, 0.18),
            0 0 0 6px rgba(255, 240, 205, 0.35),
            inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;
    }

    .pinned-products-heading h2::after {
        width: 120px;
        margin-top: 10px;
    }

    .product-count {
        padding: 6px 12px;
    }
}/* ================= FIX PRODUCT SLIDES AFTER SWEET STYLING ================= */

.product-slides-area {
    flex: 1 !important;
    width: 100% !important;
    position: relative !important;
    overflow: hidden !important;
    z-index: 10 !important;
}

.product-slide {
    position: absolute !important;
    inset: 0 !important;

    width: 100% !important;
    height: 100% !important;

    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;

    z-index: 1 !important;
}

.product-slide.active {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    z-index: 5 !important;
}

.product-showcase-left,
.product-showcase-right {
    position: relative !important;
    z-index: 20 !important;
}
/* ================= GALLERY SECTION ================= */

.gallery-section {
    width: 100%;
    position: relative;
    padding: 110px 6% 130px;

    background:
        radial-gradient(circle at 18% 18%, rgba(244, 181, 28, 0.20), transparent 30%),
        radial-gradient(circle at 85% 80%, rgba(183, 25, 22, 0.35), transparent 34%),
        linear-gradient(
            135deg,
            #2a0504 0%,
            #4a0907 38%,
            #6b120d 68%,
            #2b0504 100%
        );

    overflow: hidden;
    z-index: 4;
}

/* soft background grid */
.gallery-section::before {
    content: "";
    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(rgba(170, 120, 40, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(170, 120, 40, 0.045) 1px, transparent 1px);

    background-size: 100px 100px;
    pointer-events: none;
    z-index: 0;
}

/* decorative glow */
.gallery-section::after {
    content: "";
    position: absolute;
    width: 460px;
    height: 460px;
    right: -150px;
    top: -150px;

    background: radial-gradient(circle, rgba(244, 181, 28, 0.18), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

/* ================= GALLERY HEADING ================= */

.gallery-heading {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 62px;
    position: relative;
    z-index: 2;
}

.gallery-label {
    display: inline-block;

    color: #b71916;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;

    margin-bottom: 12px;
}

.gallery-heading h2 {
    color: #3c0805;

    font-family: "Cormorant Garamond", serif;
    font-size: clamp(46px, 5vw, 76px);
    line-height: 0.95;
    font-weight: 700;

    margin-bottom: 12px;
}

.gallery-heading .heading-line {
    width: 300px;
    height: 3px;
    margin: 12px auto 0;

    background: linear-gradient(90deg, transparent, #f4b51c, #b71916, #f4b51c, transparent);
    border-radius: 50px;
}

.gallery-heading span {
    display: block;

    color: #71503c;
    font-size: 17px;
    line-height: 1.6;

    margin-top: 18px;
}

/* ================= GALLERY GRID ================= */

.gallery-container {
    max-width: 1320px;
    margin: 0 auto;

    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 270px;
    gap: 22px;
}

.gallery-card {
    position: relative;
    overflow: hidden;

    border-radius: 30px;

    background: #fff1d6;
    border: 1px solid rgba(216, 166, 55, 0.24);

    box-shadow:
        0 22px 60px rgba(78, 24, 5, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.85);

    cursor: pointer;
    transform: translateZ(0);
}

.gallery-card-big {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-card-wide {
    grid-column: span 2;
}

.gallery-card img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    display: block;

    transition:
        transform 0.8s ease,
        filter 0.8s ease;
}

.gallery-card:hover img {
    transform: scale(1.1);
    filter: saturate(1.08) contrast(1.04);
}

/* Use this class on people/founder images if faces crop */
.gallery-person-img {
    object-position: center top !important;
}

/* ================= GALLERY OVERLAY ================= */

.gallery-overlay {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;

    padding: 18px 20px;

    border-radius: 22px;

    background: rgba(60, 8, 5, 0.74);
    border: 1px solid rgba(244, 181, 28, 0.24);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    transform: translateY(18px);
    opacity: 0;

    transition: 0.42s ease;
    z-index: 3;
}

.gallery-card:hover .gallery-overlay {
    transform: translateY(0);
    opacity: 1;
}

.gallery-overlay h3 {
    color: #fff8ea;

    font-family: "Cormorant Garamond", serif;
    font-size: 30px;
    line-height: 1;

    margin-bottom: 6px;
}

.gallery-overlay p {
    color: #f6dfb5;

    font-size: 14px;
    line-height: 1.5;
}

/* small shine effect */
.gallery-card::before {
    content: "";
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            120deg,
            transparent 0%,
            rgba(255, 255, 255, 0.18) 45%,
            transparent 70%
        );

    transform: translateX(-120%);
    transition: 0.7s ease;

    z-index: 2;
    pointer-events: none;
}

.gallery-card:hover::before {
    transform: translateX(120%);
}

/* ================= GALLERY RESPONSIVE ================= */

@media (max-width: 1050px) {
    .gallery-container {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 260px;
    }

    .gallery-card-big {
        grid-column: span 2;
        grid-row: span 1;
    }

    .gallery-card-wide {
        grid-column: span 2;
    }
}

@media (max-width: 650px) {
    .gallery-section {
        padding: 80px 5% 95px;
    }

    .gallery-heading {
        margin-bottom: 42px;
    }

    .gallery-label {
        font-size: 12px;
        letter-spacing: 3px;
    }

    .gallery-heading h2 {
        font-size: 40px;
    }

    .gallery-heading .heading-line {
        width: 220px;
    }

    .gallery-heading span {
        font-size: 15px;
    }

    .gallery-container {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
        gap: 18px;
    }

    .gallery-card-big,
    .gallery-card-wide {
        grid-column: span 1;
        grid-row: span 1;
    }

    .gallery-overlay {
        opacity: 1;
        transform: translateY(0);
        left: 14px;
        right: 14px;
        bottom: 14px;
        padding: 15px 16px;
    }

    .gallery-overlay h3 {
        font-size: 26px;
    }

    .gallery-overlay p {
        font-size: 13px;
    }
}
/* ================= GALLERY ROYAL DARK COLOR FIX ================= */

.gallery-label {
    color: #f4b51c !important;
}

.gallery-heading h2 {
    color: #fff8ea !important;
    text-shadow: 0 14px 35px rgba(0, 0, 0, 0.35);
}

.gallery-heading span {
    color: #f2dcc0 !important;
}

.gallery-heading .heading-line {
    background: linear-gradient(
        90deg,
        transparent,
        #f4b51c,
        #fff0b8,
        #b71916,
        transparent
    ) !important;
}

.gallery-section::before {
    background-image:
        linear-gradient(rgba(255, 220, 150, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 220, 150, 0.045) 1px, transparent 1px) !important;
}

.gallery-section::after {
    background: radial-gradient(circle, rgba(244, 181, 28, 0.24), transparent 70%) !important;
}
/* Tall vertical gallery rectangle */
.gallery-card-tall {
    grid-row: span 2;
}
/* ================= DMB RANDOM COLLAGE INTRO LOADER ================= */

/* ================= ROYAL PATTERN INTRO LOADER ================= */

/* ================= PREMIUM LIQUID SWEET INTRO ================= */

/* ================= REALISTIC RABDI FLOW INTRO LOADER ================= */

/* ================= DMB RABDI POUR INTRO LOADER ================= */

/* ================= DMB PREMIUM STARTING INTRO ANIMATION ================= */

/* ================= DMB PREMIUM INTRO LOADER ================= */

/* ================= DMB PREMIUM INTRO LOADER WITHOUT RABDI ================= */

/* ================= SCROLL CONTROLLED ROYAL CURTAIN INTRO - SAFE VERSION ================= */

.dmb-scroll-curtain-intro {
    position: relative;
    width: 100%;
    height: 100vh;
    z-index: 999990;
    overflow: hidden;
    background: #180303;
}

.dmb-scroll-curtain-stage {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        radial-gradient(circle at 20% 20%, rgba(244, 181, 28, 0.16), transparent 28%),
        radial-gradient(circle at 80% 75%, rgba(244, 181, 28, 0.12), transparent 30%),
        radial-gradient(circle at 50% 50%, rgba(120, 10, 7, 0.52), rgba(16, 0, 0, 0.98) 68%),
        linear-gradient(135deg, #170101 0%, #510705 45%, #7a120b 68%, #1b0101 100%);
}

/* Royal border */
.dmb-scroll-curtain-stage::before {
    content: "";
    position: absolute;
    inset: 28px;

    border: 1px solid rgba(244, 181, 28, 0.42);
    border-radius: 30px;

    pointer-events: none;
    z-index: 1000008;
}

.dmb-scroll-curtain-stage::after {
    content: "";
    position: absolute;
    inset: 42px;

    border: 1px solid rgba(255, 240, 190, 0.14);
    border-radius: 24px;

    pointer-events: none;
    z-index: 1000008;
}

.dmb-scroll-curtain-bg-glow {
    position: absolute;
    width: 780px;
    height: 780px;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%) scale(0.8);
    border-radius: 50%;

    background: radial-gradient(circle, rgba(244, 181, 28, 0.28), transparent 68%);
    filter: blur(26px);

    opacity: 0.9;
    z-index: 1000000;
    pointer-events: none;
}

/* ================= CURTAIN PANELS ================= */

.dmb-scroll-curtain-panel {
    position: absolute;
    top: 0;

    width: 51%;
    height: 100%;

    z-index: 1000004;

    background:
        linear-gradient(
            90deg,
            #190101 0%,
            #4a0504 14%,
            #8e120e 34%,
            #b51d16 50%,
            #650807 72%,
            #210101 100%
        );

    box-shadow:
        inset 0 0 95px rgba(0, 0, 0, 0.74),
        inset 0 0 34px rgba(244, 181, 28, 0.08);

    overflow: hidden;
    will-change: transform;
}

.dmb-scroll-curtain-left {
    left: 0;
}

.dmb-scroll-curtain-right {
    right: 0;

    background:
        linear-gradient(
            270deg,
            #190101 0%,
            #4a0504 14%,
            #8e120e 34%,
            #b51d16 50%,
            #650807 72%,
            #210101 100%
        );
}

/* Curtain folds */
.dmb-scroll-curtain-fold {
    position: absolute;
    top: 0;

    width: 24%;
    height: 100%;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.36),
            rgba(255, 220, 140, 0.08),
            rgba(0, 0, 0, 0.28)
        );

    opacity: 0.95;
}

.dmb-fold-1 {
    left: 8%;
}

.dmb-fold-2 {
    left: 38%;
}

.dmb-fold-3 {
    right: 8%;
}

/* Curtain golden edge */
.dmb-scroll-curtain-gold-edge {
    position: absolute;
    top: 0;

    width: 8px;
    height: 100%;

    background:
        linear-gradient(
            180deg,
            #fff4c4,
            #f4b51c,
            #9e5a08,
            #f4b51c,
            #fff4c4
        );

    box-shadow:
        0 0 30px rgba(244, 181, 28, 0.68);
}

.dmb-scroll-curtain-left .dmb-scroll-curtain-gold-edge {
    right: 0;
}

.dmb-scroll-curtain-right .dmb-scroll-curtain-gold-edge {
    left: 0;
}

/* Center line */
.dmb-scroll-curtain-center-line {
    position: absolute;

    left: 50%;
    top: 0;

    width: 5px;
    height: 100%;

    transform: translateX(-50%);

    background:
        linear-gradient(
            180deg,
            transparent,
            #fff4c4,
            #f4b51c,
            #fff4c4,
            transparent
        );

    box-shadow:
        0 0 34px rgba(244, 181, 28, 0.8);

    z-index: 1000005;
    opacity: 1;
    pointer-events: none;
}

/* ================= REVEALED CONTENT ================= */

.dmb-scroll-curtain-content {
    position: relative;

    z-index: 1000002;

    width: min(900px, 90vw);

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;

    opacity: 0;
    transform: scale(0.82);

    pointer-events: none;
    will-change: transform, opacity;
}

.dmb-scroll-curtain-small-text {
    color: #f4b51c;

    font-size: 16px;
    font-weight: 800;

    letter-spacing: 7px;
    text-transform: uppercase;

    margin-bottom: 14px;

    opacity: 0;
    transform: translateY(24px);
}

.dmb-scroll-curtain-main-text {
    color: #fff8ea;

    font-family: "Cormorant Garamond", serif;
    font-size: clamp(42px, 6vw, 92px);
    font-weight: 800;
    line-height: 0.95;

    margin: 0 0 24px;

    opacity: 0;
    transform: translateY(34px);

    text-shadow:
        0 24px 58px rgba(0, 0, 0, 0.72),
        0 0 34px rgba(244, 181, 28, 0.28);
}

.dmb-scroll-curtain-logo {
    width: 310px;
    max-width: 70vw;

    object-fit: contain;

    opacity: 0;
    transform: translateY(45px) scale(0.74);

    filter:
        drop-shadow(0 30px 48px rgba(0, 0, 0, 0.78))
        drop-shadow(0 0 42px rgba(244, 181, 28, 0.42));
}

.dmb-scroll-curtain-sub-text {
    color: #f7ddb2;

    font-size: 15px;
    font-weight: 700;

    letter-spacing: 4px;
    text-transform: uppercase;

    margin-top: 18px;

    opacity: 0;
    transform: translateY(24px);
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {
    .dmb-scroll-curtain-stage::before {
        inset: 16px;
        border-radius: 22px;
    }

    .dmb-scroll-curtain-stage::after {
        inset: 26px;
        border-radius: 18px;
    }

    .dmb-scroll-curtain-small-text {
        font-size: 12px;
        letter-spacing: 4px;
    }

    .dmb-scroll-curtain-main-text {
        font-size: 42px;
    }

    .dmb-scroll-curtain-logo {
        width: 230px;
    }

    .dmb-scroll-curtain-sub-text {
        font-size: 11px;
        letter-spacing: 2.5px;
    }
}
/* ================= FILL VERTICAL GIF INSIDE SAME GALLERY BOX ================= */

.gallery-lassi-gif {
    overflow: hidden !important;
    background: #000 !important;
}

.gallery-lassi-gif img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center top !important;
    padding: 0 !important;
    margin: 0 !important;
    display: block !important;
}
/* ================= CONTACT SECTION ================= */


/* =====================================================
   FINAL SAFE NAVBAR + CONTACT + INTRO STACKING FIX
   Paste at the VERY BOTTOM of style.css
   Opacity is still controlled by JavaScript animation.
===================================================== */

/* Navbar is moved to body by script.js, so this z-index will truly stay above all sections */
body > nav,
nav {
    position: fixed !important;
    top: 24px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;

    width: calc(100% - 120px) !important;
    max-width: 1700px !important;

    height: 78px !important;
    min-height: 78px !important;
    padding: 0 28px !important;

    z-index: 2147483647 !important;
    isolation: isolate;

    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
}

nav * {
    position: relative;
    z-index: 2;
}

/* Moving logo stays below navbar but above sections */
.moving-logo {
    z-index: 2147483646 !important;
    pointer-events: none !important;
}

/* No normal section should cover navbar */
.intro-page,
.hero,
.about-section,
.pinned-products-section,
.gallery-section,
.contact-section {
    position: relative;
    z-index: 1 !important;
}

/* Product fixed window remains under navbar */
.product-showcase-window,
.product-showcase-window.product-window-fixed,
.product-showcase-window.product-window-ended {
    z-index: 50 !important;
}

/* Curtain intro stays full-screen during its own pin, but navbar/moving-logo still wins after JS allows it */
.dmb-scroll-curtain-intro,
.dmb-scroll-curtain-stage {
    z-index: 999990;
}

/* Contact section visibility and layering fix */
.contact-section {
    position: relative;
    z-index: 1 !important;
    overflow: hidden;
}

.contact-bg-glow {
    z-index: 0 !important;
}

.contact-heading,
.contact-container,
.contact-info-card,
.contact-map-card {
    position: relative;
    z-index: 2 !important;
}

.contact-heading,
.contact-heading *,
.contact-container,
.contact-info-card,
.contact-map-card,
.contact-detail,
.contact-buttons,
.contact-btn {
    visibility: visible;
}

.contact-map-card iframe {
    position: relative;
    z-index: 2;
    display: block;
}

/* Make gallery image/card animation feel quicker */
.gallery-card {
    will-change: transform, opacity;
}

@media (max-width: 768px) {
    body > nav,
    nav {
        top: 14px !important;
        width: calc(100% - 28px) !important;
        height: 68px !important;
        min-height: 68px !important;
        padding: 0 16px !important;
        border-radius: 16px !important;
    }

    .logo-img-box {
        width: 48px !important;
        height: 48px !important;
        min-width: 48px !important;
        max-width: 48px !important;
        max-height: 48px !important;
    }

    .logo-img-box img {
        max-width: 48px !important;
        max-height: 48px !important;
    }
}
/* ================= PREMIUM CONTACT SECTION ================= */

/* ================= CLEAN WHITE CONTACT SECTION ================= */

/* ================= ROYAL CLEAN CONTACT SECTION ================= */

.contact-section {
    position: relative;
    padding: 95px 7% 110px;
    overflow: hidden;
    z-index: 1;

    background:
        radial-gradient(circle at 18% 18%, rgba(244, 181, 28, 0.18), transparent 30%),
        radial-gradient(circle at 85% 82%, rgba(244, 181, 28, 0.12), transparent 34%),
        linear-gradient(
            135deg,
            #180202 0%,
            #3b0504 38%,
            #720f0b 68%,
            #180202 100%
        );
}

/* Soft royal pattern */
.contact-section::before {
    content: "";
    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(rgba(255, 218, 130, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 218, 130, 0.045) 1px, transparent 1px);

    background-size: 95px 95px;
    pointer-events: none;
    z-index: 0;

    mask-image: linear-gradient(to bottom, transparent, black 16%, black 84%, transparent);
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 16%, black 84%, transparent);
}

/* Golden glow */
.contact-section::after {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    left: 50%;
    top: 52%;
    transform: translate(-50%, -50%);

    background: radial-gradient(circle, rgba(244, 181, 28, 0.18), transparent 68%);
    border-radius: 50%;
    filter: blur(28px);
    pointer-events: none;
    z-index: 0;
}

/* Heading */
.contact-heading {
    text-align: center;
    margin-bottom: 44px;
    position: relative;
    z-index: 2;
}

.contact-heading h2 {
    color: #fff8ea;

    font-family: "Cormorant Garamond", serif;
    font-size: clamp(42px, 4vw, 62px);
    font-weight: 700;
    line-height: 1;
    font-style: italic;

    text-shadow: 0 18px 45px rgba(0, 0, 0, 0.45);
}

.contact-heading-line {
    width: 250px;
    height: 2px;
    margin: 14px auto 0;

    background: linear-gradient(
        90deg,
        transparent,
        #f4b51c,
        #fff2bd,
        #f4b51c,
        transparent
    );

    border-radius: 999px;
}

/* Main container */
.contact-clean-container {
    max-width: 980px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

/* Address */
.contact-address-box {
    margin-bottom: 36px;
}

.contact-address-box h3 {
    color: #f4b51c;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.contact-address-box p {
    color: #f7ddb2;
    font-size: 20px;
    line-height: 1.55;
    margin-bottom: 6px;
}

.contact-phone {
    color: #fff3cd !important;
    font-weight: 600;
}

/* Map */
.contact-map-clean {
    width: 100%;
    max-width: 520px;
    height: 250px;
    margin: 0 auto 58px;

    border-radius: 16px;
    overflow: hidden;

    border: 1px solid rgba(244, 181, 28, 0.35);

    box-shadow:
        0 22px 55px rgba(0, 0, 0, 0.35),
        0 0 0 8px rgba(255, 235, 180, 0.08);
}

.contact-map-clean iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* Colorful action buttons */
.contact-social-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    flex-wrap: wrap;
}

.contact-social-btn {
    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;

    color: #ffffff;
    font-size: 27px;
    text-decoration: none;

    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.28);
    transition: 0.3s ease;
}

.contact-social-btn:hover {
    transform: translateY(-7px) scale(1.05);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.34);
}

/* Button colors */
.call-social {
    background: linear-gradient(135deg, #3158b8, #4d79dd);
}

.whatsapp-social {
    background: linear-gradient(135deg, #10b94f, #087c34);
}

.map-social {
    background: linear-gradient(135deg, #ff7a1a, #e82929);
}

.instagram-social {
    background: linear-gradient(135deg, #fd5d5d, #c13584, #833ab4);
}

/* Responsive */
@media (max-width: 650px) {
    .contact-section {
        padding: 75px 5% 85px;
    }

    .contact-heading {
        margin-bottom: 38px;
    }

    .contact-heading h2 {
        font-size: 38px;
    }

    .contact-heading-line {
        width: 200px;
    }

    .contact-address-box h3 {
        font-size: 20px;
    }

    .contact-address-box p {
        font-size: 17px;
    }

    .contact-map-clean {
        height: 230px;
        margin-bottom: 42px;
    }

    .contact-social-buttons {
        gap: 16px;
    }

    .contact-social-btn {
        width: 52px;
        height: 52px;
        font-size: 24px;
        border-radius: 12px;
    }
}
/* ================= GSAP FLOATING CONTACT WORDS ================= */
/* ================= PLAYFUL CONTACT FLOATING WORDS ================= */

.contact-floating-words {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 3;
}
.contact-floating-words span {
    pointer-events: auto;
    cursor: pointer;
}

/* Keep contact content above words */
.contact-heading,
.contact-clean-container {
    position: relative;
    z-index: 5;
}

.contact-floating-words span {
    position: absolute;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    padding: 8px 17px;

    color: #fff7d8;
    font-family: "Chewy", "Cormorant Garamond", cursive;
    font-size: clamp(18px, 2vw, 30px);
    font-weight: 400;
    letter-spacing: 1px;

    background: rgba(255, 244, 210, 0.13);
    border: 1px solid rgba(244, 181, 28, 0.38);
    border-radius: 999px;

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    box-shadow:
        0 12px 28px rgba(0, 0, 0, 0.22),
        0 0 24px rgba(244, 181, 28, 0.18);

    opacity: 0;
    will-change: transform, opacity;
}

/* 
   Positioned only in empty spaces:
   left side, right side, lower corners.
   Not over map, address, heading or buttons.
*/

.contact-floating-words span:nth-child(1) {
    left: 5%;
    top: 30%;
}

.contact-floating-words span:nth-child(2) {
    right: 6%;
    top: 30%;
}

.contact-floating-words span:nth-child(3) {
    left: 7%;
    top: 52%;
}

.contact-floating-words span:nth-child(4) {
    right: 7%;
    top: 52%;
}

.contact-floating-words span:nth-child(5) {
    left: 14%;
    bottom: 12%;
}

.contact-floating-words span:nth-child(6) {
    right: 14%;
    bottom: 12%;
}

.contact-floating-words span:nth-child(7) {
    left: 50%;
    bottom: 7%;
    transform: translateX(-50%);
}

/* On smaller screens hide extra words so they don't cover content */
@media (max-width: 950px) {
    .contact-floating-words span:nth-child(5),
    .contact-floating-words span:nth-child(6),
    .contact-floating-words span:nth-child(7) {
        display: none;
    }
}

@media (max-width: 650px) {
    .contact-floating-words span {
        display: none;
    }
}
/* ================= DEVELOPER CREDIT BADGE ================= */

/* ================= DEVELOPER CREDIT BADGE - CONTACT ONLY ================= */

.developer-credit {
    position: absolute;
    right: 28px;
    bottom: 28px;

    width: 230px;
    padding: 14px 16px;

    z-index: 8;

    border-radius: 18px;

    background:
        linear-gradient(145deg, rgba(70, 5, 5, 0.88), rgba(20, 1, 1, 0.92));

    border: 1px solid rgba(244, 181, 28, 0.35);

    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.38),
        inset 0 1px 0 rgba(255, 255, 255, 0.10);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    text-align: left;
}

.developer-credit p {
    color: #f4b51c;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.developer-credit h4 {
    color: #fff8ea;
    font-family: "Cormorant Garamond", serif;
    font-size: 22px;
    line-height: 1;
    margin-bottom: 9px;
}

.developer-links {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.developer-links a {
    color: #f7ddb2;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.developer-links a:hover {
    color: #f4b51c;
    transform: translateX(3px);
}

/* Mobile adjustment */
@media (max-width: 650px) {
    .developer-credit {
        position: relative;
        right: auto;
        bottom: auto;

        width: 100%;
        max-width: 260px;

        margin: 38px auto 0;
        padding: 13px 14px;

        border-radius: 15px;
        text-align: center;
    }

    .developer-credit h4 {
        font-size: 19px;
    }

    .developer-links a {
        font-size: 11px;
    }
}

/* =====================================================
   FINAL RESPONSIVE SAFETY PATCH — DMB WEBSITE
   Added only at the bottom. No existing section logic changed.
===================================================== */

/* ---------- Large tablets / small laptops ---------- */
@media (max-width: 1200px) {
    nav {
        width: calc(100% - 60px) !important;
        padding: 0 22px !important;
    }

    .nav-links {
        gap: 24px;
    }

    .nav-links a {
        font-size: 15px;
    }

    .hero-content {
        width: 58%;
        padding-left: 6%;
    }

    .hero-content h1 {
        font-size: clamp(48px, 5.6vw, 68px);
    }

    .sweet-image {
        right: 3%;
        width: 38%;
    }

    .about-container {
        gap: 42px;
    }

    .product-showcase-window {
        width: 90vw;
    }

    .gallery-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ---------- Tablets ---------- */
@media (max-width: 950px) {
    body {
        overflow-x: hidden;
    }

    nav {
        top: 14px !important;
        width: calc(100% - 32px) !important;
        height: 68px !important;
        min-height: 68px !important;
        padding: 0 16px !important;
        border-radius: 16px !important;
    }

    .logo-area {
        max-width: 220px;
    }

    .logo-img-box {
        width: 48px !important;
        height: 48px !important;
        min-width: 48px !important;
        max-width: 48px !important;
        max-height: 48px !important;
    }

    .logo-img-box img {
        max-width: 48px !important;
        max-height: 48px !important;
    }

    .logo-text h3 {
        font-size: 15px;
    }

    .logo-text p {
        font-size: 8px;
        letter-spacing: 1px;
    }

    .nav-links {
        gap: 15px;
    }

    .nav-links a {
        font-size: 13px;
    }

    .moving-logo {
        width: 280px;
        max-width: 70vw;
    }

    .intro-logo,
    .dmb-scroll-curtain-logo {
        width: 250px;
        max-width: 70vw;
    }

    .dmb-scroll-curtain-main-text {
        font-size: clamp(38px, 8vw, 62px);
    }

    .dmb-scroll-curtain-small-text,
    .dmb-scroll-curtain-sub-text {
        letter-spacing: 4px;
    }

    .hero {
        min-height: auto;
        padding-bottom: 70px;
    }

    .hero-content {
        width: 100%;
        min-height: auto;
        padding: 135px 6% 35px;
        text-align: left;
    }

    .hero-content::before,
    .hero-content::after {
        display: none;
    }

    .hero-content h1 {
        font-size: clamp(42px, 8vw, 58px);
        line-height: 1;
    }

    .hero-para {
        font-size: 16px;
        max-width: 100%;
    }

    .features {
        flex-wrap: wrap;
        gap: 16px;
    }

    .feature {
        width: calc(50% - 8px);
        border-right: none;
        padding-right: 0;
    }

    .sweet-image {
        position: relative;
        right: auto;
        bottom: auto;
        width: 88%;
        height: 420px;
        margin: 20px auto 0;
        z-index: 4;
    }

    .sweet-tag {
        font-size: 22px;
        padding: 11px 22px;
    }

    .kaju-parallax-section {
        height: 36vh;
        min-height: 280px;
        background-attachment: scroll;
    }

    .about-section {
        padding: 80px 5% 90px;
    }

    .about-heading h2 {
        font-size: 42px;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .about-image-card {
        height: 420px;
    }

    .about-text-side h3 {
        font-size: clamp(38px, 7vw, 52px);
    }

    .about-para {
        font-size: 17px;
    }

    .pinned-products-section {
        padding: 0 4%;
        min-height: 520vh;
    }

    .product-showcase-window {
        width: 92vw;
        height: 720px;
        top: calc(50vh - 360px);
        border-radius: 28px;
    }

    .product-slide {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 18px 28px 32px;
        text-align: center;
    }

    .showcase-title {
        font-size: clamp(36px, 7vw, 52px);
    }

    .showcase-desc {
        margin: 0 auto;
        font-size: 16px;
        line-height: 1.6;
    }

    .showcase-line {
        margin-left: auto;
        margin-right: auto;
    }

    .product-showcase-right {
        height: 280px;
    }

    .gallery-section {
        padding: 85px 5% 100px;
    }

    .gallery-container {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 250px;
    }

    .gallery-card-big,
    .gallery-card-wide {
        grid-column: span 2;
    }

    .gallery-card-tall {
        grid-row: span 1;
    }

    .contact-wrapper,
    .contact-container {
        grid-template-columns: 1fr;
    }

    .contact-section {
        padding: 85px 5% 95px;
    }

    .contact-floating-words span {
        display: none !important;
    }

    .developer-credit {
        position: relative !important;
        right: auto !important;
        bottom: auto !important;
        width: 100%;
        max-width: 280px;
        margin: 36px auto 0;
        text-align: center;
    }
}

/* ---------- Mobile phones ---------- */
@media (max-width: 650px) {
    html,
    body {
        width: 100%;
        overflow-x: hidden;
    }

    nav {
        width: calc(100% - 24px) !important;
        top: 12px !important;
        height: 62px !important;
        min-height: 62px !important;
        padding: 0 12px !important;
    }

    .logo-area {
        max-width: 170px;
        gap: 8px;
    }

    .logo-img-box {
        width: 44px !important;
        height: 44px !important;
        min-width: 44px !important;
        max-width: 44px !important;
        max-height: 44px !important;
    }

    .logo-img-box img {
        max-width: 44px !important;
        max-height: 44px !important;
    }

    .logo-text h3 {
        font-size: 13px;
    }

    .logo-text p {
        display: none;
    }

    /* Hide nav links on mobile to prevent crowding. */
    .nav-links {
        display: none !important;
    }

    .moving-logo {
        width: 210px !important;
        max-width: 64vw;
    }

    .intro-page,
    .dmb-scroll-curtain-stage {
        height: 100svh;
    }

    .intro-line {
        width: 135px;
        margin-top: 20px;
        margin-bottom: 14px;
    }

    .intro-since {
        font-size: 20px;
        letter-spacing: 4px;
    }

    .intro-subtitle {
        font-size: 12px;
        letter-spacing: 1.5px;
        padding: 0 20px;
    }

    .dmb-scroll-curtain-stage::before {
        inset: 14px;
        border-radius: 20px;
    }

    .dmb-scroll-curtain-stage::after {
        inset: 24px;
        border-radius: 16px;
    }

    .dmb-scroll-curtain-main-text {
        font-size: 38px;
        padding: 0 12px;
    }

    .dmb-scroll-curtain-logo {
        width: 205px;
    }

    .hero-content {
        padding: 120px 5% 30px;
    }

    .small-heading {
        font-size: 11px;
        letter-spacing: 2px;
        margin-bottom: 12px;
    }

    .small-heading::before {
        width: 28px;
        margin-right: 8px;
    }

    .hero-content h1 {
        font-size: clamp(36px, 11vw, 46px);
        line-height: 1.02;
        margin-bottom: 16px;
    }

    .hero-para {
        font-size: 15px;
        line-height: 1.65;
    }

    .explore-btn {
        padding: 13px 26px;
        font-size: 14px;
    }

    .features {
        flex-direction: column;
        gap: 14px;
    }

    .feature {
        width: 100%;
        padding: 14px 16px;
        border: 1px solid rgba(255,255,255,0.14);
        border-radius: 16px;
        background: rgba(255,255,255,0.04);
    }

    .feature p {
        max-width: 100%;
    }

    .sweet-image {
        width: 92%;
        height: 330px;
        margin-top: 18px;
    }

    .sweet-image img {
        border-radius: 24px;
    }

    .sweet-tag {
        font-size: 18px;
        bottom: 16px;
        padding: 9px 18px;
        border-radius: 14px;
    }

    .kaju-parallax-section {
        height: 28vh;
        min-height: 220px;
    }

    .about-section {
        padding: 70px 5% 80px;
    }

    .about-heading {
        margin-bottom: 32px;
    }

    .about-heading h2 {
        font-size: 36px;
    }

    .heading-line {
        width: 210px;
    }

    .about-image-card {
        height: 310px;
        border-radius: 16px;
    }

    .about-label {
        font-size: 11px;
        letter-spacing: 2px;
    }

    .about-text-side h3 {
        font-size: 36px;
        line-height: 1.05;
    }

    .about-para {
        font-size: 15px;
        line-height: 1.7;
    }

    .about-highlights {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .pinned-products-section {
        padding: 0 3%;
        min-height: 500vh;
    }

    .product-showcase-window {
        width: 94vw;
        height: 660px;
        top: calc(50vh - 330px);
        border-radius: 24px;
    }

    .product-showcase-window::before {
        inset: 12px;
        border-radius: 18px;
    }

    .pinned-products-heading {
        padding: 24px 18px 10px;
    }

    .pinned-products-heading p {
        font-size: 10px;
        letter-spacing: 2px;
    }

    .pinned-products-heading h2 {
        font-size: 30px;
    }

    .pinned-products-heading span {
        font-size: 12px;
    }

    .product-slide {
        padding: 12px 18px 24px;
        gap: 14px;
    }

    .showcase-title {
        font-size: 34px;
    }

    .showcase-desc {
        font-size: 14px;
        line-height: 1.55;
    }

    .showcase-line {
        width: 120px;
        margin-top: 16px;
    }

    .product-showcase-right {
        height: 225px;
        border-radius: 20px;
    }

    .product-showcase-right img {
        padding: 12px;
    }

    .gallery-section {
        padding: 70px 5% 80px;
    }

    .gallery-heading {
        margin-bottom: 34px;
    }

    .gallery-label {
        font-size: 11px;
        letter-spacing: 2px;
    }

    .gallery-heading h2 {
        font-size: 36px;
    }

    .gallery-heading .heading-line {
        width: 200px;
    }

    .gallery-heading span {
        font-size: 14px;
    }

    .gallery-container {
        grid-template-columns: 1fr;
        grid-auto-rows: 245px;
        gap: 16px;
    }

    .gallery-card,
    .gallery-card-big,
    .gallery-card-wide,
    .gallery-card-tall {
        grid-column: span 1;
        grid-row: span 1;
        border-radius: 22px;
    }

    .gallery-overlay {
        opacity: 1;
        transform: translateY(0);
        left: 12px;
        right: 12px;
        bottom: 12px;
        padding: 14px 15px;
        border-radius: 18px;
    }

    .gallery-overlay h3 {
        font-size: 24px;
    }

    .gallery-overlay p {
        font-size: 12px;
    }

    .contact-section {
        padding: 70px 5% 82px;
    }

    .contact-heading {
        margin-bottom: 34px;
    }

    .contact-heading h2 {
        font-size: 34px;
    }

    .contact-heading-line {
        width: 190px;
    }

    .contact-address-box h3 {
        font-size: 19px;
    }

    .contact-address-box p {
        font-size: 16px;
    }

    .contact-map-clean,
    .contact-map-card,
    .contact-map-box {
        width: 100%;
        min-height: 0;
        height: 230px;
        margin-bottom: 34px;
        border-radius: 16px;
    }

    .contact-map-clean iframe,
    .contact-map-card iframe,
    .contact-map-box iframe {
        min-height: 230px;
        height: 230px;
        border-radius: 16px;
    }

    .contact-social-buttons,
    .contact-buttons,
    .contact-actions {
        display: flex;
        justify-content: center;
        gap: 14px;
        flex-wrap: wrap;
    }

    .contact-social-btn {
        width: 50px;
        height: 50px;
        font-size: 23px;
        border-radius: 12px;
    }

    .contact-btn,
    .contact-action-btn {
        width: 100%;
    }

    .developer-credit {
        max-width: 260px;
        padding: 12px 13px;
        border-radius: 14px;
    }

    .developer-credit h4 {
        font-size: 18px;
    }
}

/* ---------- Very small phones ---------- */
@media (max-width: 420px) {
    .hero-content h1 {
        font-size: 34px;
    }

    .sweet-image {
        height: 285px;
    }

    .product-showcase-window {
        height: 620px;
        top: calc(50vh - 310px);
    }

    .pinned-products-heading h2 {
        font-size: 27px;
    }

    .showcase-title {
        font-size: 30px;
    }

    .showcase-desc {
        font-size: 13px;
    }

    .product-showcase-right {
        height: 200px;
    }

    .gallery-container {
        grid-auto-rows: 220px;
    }

    .contact-social-buttons {
        gap: 10px;
    }

    .contact-social-btn {
        width: 46px;
        height: 46px;
        font-size: 21px;
    }
}
/* ================= MOBILE FIX FOR HERO-ABOUT IMAGE SECTION ================= */

@media (max-width: 768px) {
    .kaju-parallax-section {
        height: 260px !important;
        min-height: 260px !important;
        background-attachment: scroll !important;
        background-size: cover !important;
        background-position: center center !important;
        margin: 0 !important;
        padding: 0 !important;
        overflow: hidden !important;
    }

    .kaju-parallax-overlay {
        background: rgba(24, 3, 3, 0.18) !important;
    }
}
/* =====================================================
   FINAL COMPLETE RESPONSIVE PATCH — DMB WEBSITE
   Paste this at the VERY BOTTOM of style.css
   Do not delete your old CSS.
===================================================== */

/* Global mobile safety */
html,
body {
    max-width: 100%;
    overflow-x: hidden !important;
}

/* Make images never overflow */
img,
iframe {
    max-width: 100%;
}

/* =====================================================
   LARGE TABLETS / SMALL LAPTOPS
===================================================== */

@media (max-width: 1200px) {
    nav {
        width: calc(100% - 60px) !important;
        padding: 0 22px !important;
    }

    .nav-links {
        gap: 24px !important;
    }

    .nav-links a {
        font-size: 15px !important;
    }

    .hero-content {
        width: 58% !important;
        padding-left: 6% !important;
    }

    .hero-content h1 {
        font-size: clamp(48px, 5.4vw, 68px) !important;
    }

    .sweet-image {
        right: 3% !important;
        width: 39% !important;
    }

    .about-container {
        gap: 42px !important;
    }

    .about-image-card {
        height: 460px !important;
    }

    .product-showcase-window {
        width: 90vw !important;
    }

    .gallery-container {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

/* =====================================================
   TABLET RESPONSIVE
===================================================== */

@media (max-width: 950px) {
    body {
        overflow-x: hidden !important;
    }

    /* Navbar */
    body > nav,
    nav {
        top: 14px !important;
        width: calc(100% - 32px) !important;
        height: 68px !important;
        min-height: 68px !important;
        padding: 0 16px !important;
        border-radius: 16px !important;
        z-index: 2147483647 !important;
    }

    .logo-area {
        max-width: 220px !important;
        gap: 8px !important;
    }

    .logo-img-box {
        width: 48px !important;
        height: 48px !important;
        min-width: 48px !important;
        max-width: 48px !important;
        max-height: 48px !important;
    }

    .logo-img-box img {
        max-width: 48px !important;
        max-height: 48px !important;
    }

    .logo-text h3 {
        font-size: 15px !important;
        line-height: 1 !important;
    }

    .logo-text p {
        font-size: 8px !important;
        letter-spacing: 1px !important;
    }

    .nav-links {
        gap: 15px !important;
    }

    .nav-links a {
        font-size: 13px !important;
    }

    /* Intro / curtain */
    .moving-logo {
        width: 280px !important;
        max-width: 70vw !important;
    }

    .intro-logo,
    .dmb-scroll-curtain-logo {
        width: 250px !important;
        max-width: 70vw !important;
    }

    .dmb-scroll-curtain-main-text {
        font-size: clamp(38px, 8vw, 62px) !important;
        padding: 0 18px !important;
    }

    .dmb-scroll-curtain-small-text,
    .dmb-scroll-curtain-sub-text {
        letter-spacing: 4px !important;
    }

    /* Hero */
    .hero {
        min-height: auto !important;
        height: auto !important;
        padding-bottom: 70px !important;
        overflow: hidden !important;
    }

    .hero-content {
        width: 100% !important;
        min-height: auto !important;
        padding: 135px 6% 35px !important;
        text-align: left !important;
    }

    .hero-content::before,
    .hero-content::after {
        display: none !important;
    }

    .small-heading {
        font-size: 13px !important;
        letter-spacing: 2.5px !important;
        line-height: 1.5 !important;
    }

    .small-heading::before {
        width: 36px !important;
        margin-right: 10px !important;
    }

    .hero-content h1 {
        font-size: clamp(42px, 8vw, 58px) !important;
        line-height: 1 !important;
        max-width: 760px !important;
    }

    .hero-para {
        font-size: 16px !important;
        max-width: 620px !important;
    }

    .features {
        flex-wrap: wrap !important;
        gap: 18px !important;
    }

    .feature {
        width: calc(50% - 10px) !important;
        border-right: none !important;
        padding-right: 0 !important;
    }

    .sweet-image {
        position: relative !important;
        right: auto !important;
        bottom: auto !important;
        width: 88% !important;
        height: 420px !important;
        margin: 20px auto 0 !important;
        z-index: 4 !important;
    }

    .sweet-image img {
        object-fit: cover !important;
        object-position: center !important;
    }

    .sweet-tag {
        font-size: 24px !important;
        padding: 10px 22px !important;
    }

    /* Hero-about image/parallax section */
    .kaju-parallax-section {
        height: 340px !important;
        min-height: 340px !important;
        background-attachment: scroll !important;
        overflow: hidden !important;
    }

    .kaju-parallax-bg {
        inset: -22% 0 !important;
        background-size: cover !important;
        background-position: center center !important;
    }

    /* About */
    .about-section {
        padding: 85px 6% 95px !important;
    }

    .about-heading h2 {
        font-size: 42px !important;
    }

    .about-container {
        grid-template-columns: 1fr !important;
        gap: 38px !important;
    }

    .about-image-card {
        height: 390px !important;
    }

    .about-text-side {
        max-width: 100% !important;
    }

    .about-text-side h3 {
        font-size: clamp(38px, 7vw, 52px) !important;
    }

    .about-para {
        font-size: 17px !important;
    }

    .about-highlights {
        grid-template-columns: 1fr 1fr !important;
    }

    /* Products */
    .pinned-products-section {
        min-height: 540vh !important;
        padding: 0 5% !important;
    }

    .product-showcase-window {
        width: 92vw !important;
        height: 700px !important;
        top: calc(50vh - 350px) !important;
        border-radius: 30px !important;
    }

    .pinned-products-heading {
        padding: 26px 22px 12px !important;
    }

    .pinned-products-heading p {
        font-size: 12px !important;
        letter-spacing: 3px !important;
    }

    .pinned-products-heading h2 {
        font-size: 40px !important;
    }

    .pinned-products-heading span {
        font-size: 15px !important;
    }

    .product-slide {
        grid-template-columns: 1fr !important;
        padding: 18px 28px 32px !important;
        text-align: center !important;
        gap: 20px !important;
    }

    .showcase-title {
        font-size: 42px !important;
    }

    .showcase-desc {
        margin: 0 auto !important;
        font-size: 16px !important;
        line-height: 1.6 !important;
    }

    .showcase-line {
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .product-showcase-right {
        height: 285px !important;
    }

    /* Gallery */
    .gallery-section {
        padding: 90px 5% 105px !important;
    }

    .gallery-container {
        grid-template-columns: repeat(2, 1fr) !important;
        grid-auto-rows: 260px !important;
        gap: 18px !important;
    }

    .gallery-card-big {
        grid-column: span 2 !important;
        grid-row: span 1 !important;
    }

    .gallery-card-wide {
        grid-column: span 2 !important;
    }

    .gallery-card-tall {
        grid-row: span 1 !important;
    }

    .gallery-heading h2 {
        font-size: 48px !important;
    }

    .gallery-heading span {
        font-size: 15px !important;
    }

    /* Contact */
    .contact-section {
        padding: 85px 5% 95px !important;
        min-height: auto !important;
    }

    .contact-heading h2 {
        font-size: 44px !important;
    }

    .contact-clean-container {
        max-width: 100% !important;
    }

    .contact-address-box h3 {
        font-size: 22px !important;
    }

    .contact-address-box p {
        font-size: 17px !important;
    }

    .contact-map-clean {
        max-width: 560px !important;
        height: 260px !important;
        margin-bottom: 44px !important;
    }

    .contact-social-buttons {
        gap: 16px !important;
    }

    .contact-floating-words span:nth-child(5),
    .contact-floating-words span:nth-child(6),
    .contact-floating-words span:nth-child(7) {
        display: none !important;
    }

    /* Developer credit */
    .developer-credit {
        position: relative !important;
        right: auto !important;
        bottom: auto !important;
        width: 100% !important;
        max-width: 390px !important;
        margin: 42px auto 0 !important;
        text-align: center !important;
    }
}

/* =====================================================
   MOBILE RESPONSIVE
===================================================== */

@media (max-width: 768px) {
    /* Navbar */
    body > nav,
    nav {
        top: 12px !important;
        width: calc(100% - 24px) !important;
        height: 64px !important;
        min-height: 64px !important;
        padding: 0 14px !important;
        border-radius: 15px !important;
    }

    .logo-area {
        max-width: 210px !important;
    }

    .logo-img-box {
        width: 46px !important;
        height: 46px !important;
        min-width: 46px !important;
        max-width: 46px !important;
        max-height: 46px !important;
    }

    .logo-img-box img {
        max-width: 46px !important;
        max-height: 46px !important;
    }

    .logo-text h3 {
        font-size: 14px !important;
    }

    .logo-text p {
        font-size: 7px !important;
        letter-spacing: 0.8px !important;
    }

    /* Hide links on mobile to avoid breaking layout.
       Later you can add hamburger menu. */
    .nav-links {
        display: none !important;
    }

    /* Moving logo */
    .moving-logo {
        width: 230px !important;
        max-width: 68vw !important;
    }

    /* Curtain */
    .dmb-scroll-curtain-stage::before {
        inset: 16px !important;
        border-radius: 22px !important;
    }

    .dmb-scroll-curtain-stage::after {
        inset: 26px !important;
        border-radius: 18px !important;
    }

    .dmb-scroll-curtain-small-text {
        font-size: 12px !important;
        letter-spacing: 4px !important;
    }

    .dmb-scroll-curtain-main-text {
        font-size: 42px !important;
        line-height: 1 !important;
    }

    .dmb-scroll-curtain-logo {
        width: 220px !important;
    }

    .dmb-scroll-curtain-sub-text {
        font-size: 11px !important;
        letter-spacing: 2.5px !important;
    }

    /* Intro */
    .intro-line {
        width: 140px !important;
    }

    .intro-since {
        font-size: 19px !important;
        letter-spacing: 4px !important;
    }

    .intro-subtitle {
        font-size: 13px !important;
        letter-spacing: 1.4px !important;
        padding: 0 18px !important;
    }

    /* Hero */
    .hero-content {
        padding: 120px 6% 30px !important;
    }

    .hero-content h1 {
        font-size: clamp(38px, 11vw, 50px) !important;
        line-height: 1.02 !important;
    }

    .hero-para {
        font-size: 15px !important;
        line-height: 1.65 !important;
    }

    .explore-btn {
        padding: 13px 26px !important;
        font-size: 14px !important;
    }

    .features {
        flex-direction: column !important;
        gap: 14px !important;
    }

    .feature {
        width: 100% !important;
        padding: 16px 18px !important;
        border-right: none !important;
        border: 1px solid rgba(255,255,255,0.12) !important;
        border-radius: 16px !important;
        background: rgba(255,255,255,0.05) !important;
    }

    .feature p {
        max-width: 100% !important;
    }

    .sweet-image {
        width: 92% !important;
        height: 350px !important;
        margin-top: 18px !important;
    }

    .sweet-tag {
        font-size: 20px !important;
        bottom: 16px !important;
    }

    /* Kaju image section */
    .kaju-parallax-section {
        height: 280px !important;
        min-height: 280px !important;
        background-attachment: scroll !important;
    }

    .kaju-parallax-bg {
        inset: -26% 0 !important;
    }

    /* About */
    .about-section {
        padding: 70px 5% 80px !important;
    }

    .about-heading {
        margin-bottom: 35px !important;
    }

    .about-heading h2 {
        font-size: 38px !important;
    }

    .heading-line,
    .gallery-heading .heading-line {
        width: 210px !important;
    }

    .about-image-card {
        height: 320px !important;
        border-radius: 16px !important;
    }

    .about-text-side h3 {
        font-size: 38px !important;
    }

    .about-para {
        font-size: 16px !important;
        line-height: 1.65 !important;
    }

    .about-highlights {
        grid-template-columns: 1fr !important;
    }

    /* Products */
    .pinned-products-section {
        min-height: 500vh !important;
        padding: 0 4% !important;
    }

    .product-showcase-window {
        width: 92vw !important;
        height: 660px !important;
        top: calc(50vh - 330px) !important;
        border-radius: 26px !important;
    }

    .product-showcase-window::before {
        inset: 12px !important;
        border-radius: 20px !important;
    }

    .pinned-products-heading {
        padding: 22px 18px 8px !important;
    }

    .pinned-products-heading p {
        font-size: 11px !important;
        letter-spacing: 2px !important;
    }

    .pinned-products-heading h2 {
        font-size: 32px !important;
    }

    .pinned-products-heading h2::after {
        width: 110px !important;
        margin-top: 9px !important;
    }

    .pinned-products-heading span {
        font-size: 13px !important;
    }

    .product-slide {
        padding: 14px 18px 24px !important;
        gap: 16px !important;
    }

    .showcase-title {
        font-size: 36px !important;
        margin-bottom: 12px !important;
    }

    .showcase-desc {
        font-size: 14px !important;
        line-height: 1.55 !important;
    }

    .showcase-line {
        width: 130px !important;
        margin-top: 18px !important;
    }

    .product-showcase-right {
        height: 230px !important;
        border-radius: 20px !important;
    }

    .product-showcase-right img {
        padding: 12px !important;
    }

    /* Gallery */
    .gallery-section {
        padding: 75px 5% 85px !important;
    }

    .gallery-heading {
        margin-bottom: 38px !important;
    }

    .gallery-label {
        font-size: 12px !important;
        letter-spacing: 3px !important;
    }

    .gallery-heading h2 {
        font-size: 40px !important;
    }

    .gallery-heading span {
        font-size: 14px !important;
    }

    .gallery-container {
        grid-template-columns: 1fr !important;
        grid-auto-rows: 245px !important;
        gap: 18px !important;
    }

    .gallery-card-big,
    .gallery-card-wide,
    .gallery-card-tall {
        grid-column: span 1 !important;
        grid-row: span 1 !important;
    }

    .gallery-overlay {
        opacity: 1 !important;
        transform: translateY(0) !important;
        left: 14px !important;
        right: 14px !important;
        bottom: 14px !important;
        padding: 14px 15px !important;
    }

    .gallery-overlay h3 {
        font-size: 25px !important;
    }

    .gallery-overlay p {
        font-size: 13px !important;
    }

    /* Contact */
    .contact-section {
        padding: 75px 5% 85px !important;
    }

    .contact-heading {
        margin-bottom: 36px !important;
    }

    .contact-heading h2 {
        font-size: 38px !important;
        line-height: 1.05 !important;
    }

    .contact-heading-line {
        width: 190px !important;
    }

    .contact-address-box {
        margin-bottom: 28px !important;
    }

    .contact-address-box h3 {
        font-size: 20px !important;
    }

    .contact-address-box p {
        font-size: 16px !important;
        line-height: 1.55 !important;
    }

    .contact-map-clean {
        width: 100% !important;
        max-width: 100% !important;
        height: 230px !important;
        margin-bottom: 36px !important;
        border-radius: 14px !important;
    }

    .contact-social-buttons {
        gap: 13px !important;
    }

    .contact-social-btn {
        width: 50px !important;
        height: 50px !important;
        font-size: 22px !important;
        border-radius: 12px !important;
    }

    .contact-floating-words span {
        display: none !important;
    }

    /* Developer credit inside contact only */
    .developer-credit {
        position: relative !important;
        right: auto !important;
        bottom: auto !important;
        width: 100% !important;
        max-width: 360px !important;
        margin: 38px auto 0 !important;
        padding: 13px 14px !important;
        border-radius: 15px !important;
        text-align: center !important;
    }

    .developer-credit h4 {
        font-size: 20px !important;
    }

    .developer-links a {
        font-size: 12px !important;
    }
}

/* =====================================================
   SMALL PHONES
===================================================== */

@media (max-width: 480px) {
    body > nav,
    nav {
        width: calc(100% - 18px) !important;
        height: 60px !important;
        min-height: 60px !important;
        top: 9px !important;
        padding: 0 11px !important;
    }

    .logo-img-box {
        width: 42px !important;
        height: 42px !important;
        min-width: 42px !important;
        max-width: 42px !important;
        max-height: 42px !important;
    }

    .logo-img-box img {
        max-width: 42px !important;
        max-height: 42px !important;
    }

    .logo-text h3 {
        font-size: 13px !important;
    }

    .logo-text p {
        display: none !important;
    }

    .hero-content {
        padding-top: 105px !important;
    }

    .small-heading {
        font-size: 11px !important;
        letter-spacing: 2px !important;
    }

    .hero-content h1 {
        font-size: 36px !important;
    }

    .hero-para {
        font-size: 14px !important;
    }

    .sweet-image {
        height: 300px !important;
    }

    .sweet-tag {
        font-size: 18px !important;
        padding: 9px 18px !important;
    }

    .kaju-parallax-section {
        height: 240px !important;
        min-height: 240px !important;
    }

    .about-heading h2,
    .gallery-heading h2,
    .contact-heading h2 {
        font-size: 34px !important;
    }

    .about-image-card {
        height: 280px !important;
    }

    .about-text-side h3 {
        font-size: 34px !important;
    }

    .product-showcase-window {
        height: 610px !important;
        top: calc(50vh - 305px) !important;
    }

    .pinned-products-heading h2 {
        font-size: 28px !important;
    }

    .showcase-title {
        font-size: 30px !important;
    }

    .showcase-desc {
        font-size: 13px !important;
    }

    .product-showcase-right {
        height: 190px !important;
    }

    .gallery-container {
        grid-auto-rows: 220px !important;
    }

    .contact-social-buttons {
        gap: 10px !important;
    }

    .contact-social-btn {
        width: 46px !important;
        height: 46px !important;
        font-size: 20px !important;
    }

    .developer-credit {
        max-width: 320px !important;
    }
}

/* =====================================================
   VERY SMALL PHONES
===================================================== */

@media (max-width: 380px) {
    .hero-content h1 {
        font-size: 32px !important;
    }

    .sweet-image {
        height: 270px !important;
    }

    .product-showcase-window {
        height: 590px !important;
        top: calc(50vh - 295px) !important;
    }

    .pinned-products-heading h2 {
        font-size: 25px !important;
    }

    .showcase-title {
        font-size: 28px !important;
    }

    .contact-map-clean {
        height: 210px !important;
    }
}
/* ================= MOBILE PERFORMANCE PATCH ================= */

@media (max-width: 768px) {
    * {
        -webkit-tap-highlight-color: transparent;
    }

    .gallery-card:hover img,
    .gallery-card:hover video,
    .about-image-card:hover img,
    .explore-btn:hover,
    .contact-social-btn:hover,
    .developer-links a:hover {
        transform: none !important;
        filter: none !important;
    }

    .gallery-card::before {
        display: none !important;
    }

    .gallery-card img,
    .gallery-card video,
    .about-image-card img,
    .product-showcase-right img,
    .sweet-image img {
        transition: none !important;
        filter: none !important;
    }

    .contact-floating-words {
        display: none !important;
    }

    .contact-social-btn {
        animation: none !important;
    }

    .sweet-image {
        animation: none !important;
    }

    .moving-logo {
        filter: drop-shadow(0 12px 22px rgba(0,0,0,0.55)) !important;
    }

    nav,
    .contact-main-card,
    .contact-map-clean,
    .developer-credit,
    .product-showcase-window,
    .gallery-card,
    .about-image-card {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }
}
.gallery-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
.gallery-section {
    content-visibility: auto;
    contain-intrinsic-size: 900px;
}

.gallery-card {
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.gallery-card img,
.gallery-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    backface-visibility: hidden;
    transform: translateZ(0);
}

/* Reduce expensive hover effect on mobile */
@media (max-width: 768px) {
    .gallery-card:hover img,
    .gallery-card:hover video {
        transform: none !important;
        filter: none !important;
    }

    .gallery-card::before {
        display: none !important;
    }
}

/* =====================================================
   FINAL PATCH — ONLY THREE REQUESTED FIXES
   1) Intro floating words/images visible + safe area
   2) Contact section restore
   3) No navbar logic touched
   Paste kept at bottom so old duplicate CSS cannot hide things.
===================================================== */

/* ---------- INTRO FLOATING WORDS + SWEET IMAGES RESTORE ---------- */
.intro-page {
    position: relative !important;
    overflow: hidden !important;
}

.intro-floating-items {
    position: absolute !important;
    inset: 0 !important;
    z-index: 6 !important;
    pointer-events: none !important;
    overflow: hidden !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.intro-float-item,
.intro-float-word,
.intro-float-sweet {
    opacity: 1 !important;
    visibility: visible !important;
    will-change: transform, opacity !important;
}

.intro-float-word {
    position: absolute !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    padding: 8px 18px !important;

    color: #fff6d8 !important;
    font-family: "Chewy", "Cormorant Garamond", serif !important;
    font-size: clamp(18px, 2vw, 34px) !important;
    font-weight: 400 !important;
    letter-spacing: 1px !important;

    background: rgba(255, 244, 210, 0.13) !important;
    border: 1px solid rgba(244, 181, 28, 0.38) !important;
    border-radius: 999px !important;

    box-shadow:
        0 12px 28px rgba(0, 0, 0, 0.24),
        0 0 24px rgba(244, 181, 28, 0.18) !important;
}

.intro-float-sweet {
    position: absolute !important;
    width: 105px !important;
    height: 105px !important;
    object-fit: contain !important;
    filter:
        drop-shadow(0 18px 28px rgba(0, 0, 0, 0.48))
        drop-shadow(0 0 18px rgba(244, 181, 28, 0.20)) !important;
}

/* Main intro content should stay above the floating background items */
.intro-content {
    position: relative !important;
    z-index: 20 !important;
}

.intro-line,
.intro-since,
.intro-subtitle {
    position: relative !important;
    z-index: 23 !important;
}

/* Keep floaters around empty areas, not on logo/text center */
.intro-float-word:nth-child(1) { left: 6% !important; top: 17% !important; }
.intro-float-word:nth-child(2) { right: 7% !important; top: 17% !important; left: auto !important; }
.intro-float-word:nth-child(3) { left: 7% !important; top: 45% !important; }
.intro-float-word:nth-child(4) { right: 8% !important; top: 45% !important; left: auto !important; }
.intro-float-word:nth-child(5) { left: 15% !important; bottom: 18% !important; top: auto !important; }
.intro-float-word:nth-child(6) { right: 16% !important; bottom: 18% !important; left: auto !important; top: auto !important; }
.intro-float-word:nth-child(7) { left: 42% !important; top: 13% !important; }
.intro-float-word:nth-child(8) { left: 34% !important; bottom: 9% !important; top: auto !important; }
.intro-float-word:nth-child(9) { right: 34% !important; bottom: 9% !important; left: auto !important; top: auto !important; }
.intro-float-word:nth-child(10) { left: 50% !important; bottom: 5% !important; top: auto !important; transform: translateX(-50%); }

.intro-sweet-1 { left: 17% !important; top: 30% !important; }
.intro-sweet-2 { right: 17% !important; top: 30% !important; left: auto !important; }
.intro-sweet-3 { left: 20% !important; bottom: 28% !important; top: auto !important; }
.intro-sweet-4 { right: 22% !important; bottom: 28% !important; left: auto !important; top: auto !important; }
.intro-sweet-5 { left: 7% !important; bottom: 8% !important; top: auto !important; }
.intro-sweet-6 { right: 7% !important; bottom: 8% !important; left: auto !important; top: auto !important; }

/* ---------- CONTACT SECTION RESTORE ---------- */
.contact-section {
    position: relative;
    padding: 95px 7% 110px;
    overflow: hidden;
    z-index: 1;

    background:
        radial-gradient(circle at 18% 18%, rgba(244, 181, 28, 0.18), transparent 30%),
        radial-gradient(circle at 85% 82%, rgba(244, 181, 28, 0.12), transparent 34%),
        linear-gradient(
            135deg,
            #180202 0%,
            #3b0504 38%,
            #720f0b 68%,
            #180202 100%
        );
}

/* Soft royal pattern */
.contact-section::before {
    content: "";
    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(rgba(255, 218, 130, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 218, 130, 0.045) 1px, transparent 1px);

    background-size: 95px 95px;
    pointer-events: none;
    z-index: 0;

    mask-image: linear-gradient(to bottom, transparent, black 16%, black 84%, transparent);
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 16%, black 84%, transparent);
}

/* Golden glow */
.contact-section::after {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    left: 50%;
    top: 52%;
    transform: translate(-50%, -50%);

    background: radial-gradient(circle, rgba(244, 181, 28, 0.18), transparent 68%);
    border-radius: 50%;
    filter: blur(28px);
    pointer-events: none;
    z-index: 0;
}

/* Heading */
.contact-heading {
    text-align: center;
    margin-bottom: 44px;
    position: relative;
    z-index: 2;
}

.contact-heading h2 {
    color: #fff8ea;

    font-family: "Cormorant Garamond", serif;
    font-size: clamp(42px, 4vw, 62px);
    font-weight: 700;
    line-height: 1;
    font-style: italic;

    text-shadow: 0 18px 45px rgba(0, 0, 0, 0.45);
}

.contact-heading-line {
    width: 250px;
    height: 2px;
    margin: 14px auto 0;

    background: linear-gradient(
        90deg,
        transparent,
        #f4b51c,
        #fff2bd,
        #f4b51c,
        transparent
    );

    border-radius: 999px;
}

/* Main container */
.contact-clean-container {
    max-width: 980px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

/* Address */
.contact-address-box {
    margin-bottom: 36px;
}

.contact-address-box h3 {
    color: #f4b51c;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.contact-address-box p {
    color: #f7ddb2;
    font-size: 20px;
    line-height: 1.55;
    margin-bottom: 6px;
}

.contact-phone {
    color: #fff3cd !important;
    font-weight: 600;
}

/* Map */
.contact-map-clean {
    width: 100%;
    max-width: 520px;
    height: 250px;
    margin: 0 auto 58px;

    border-radius: 16px;
    overflow: hidden;

    border: 1px solid rgba(244, 181, 28, 0.35);

    box-shadow:
        0 22px 55px rgba(0, 0, 0, 0.35),
        0 0 0 8px rgba(255, 235, 180, 0.08);
}

.contact-map-clean iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* Colorful action buttons */
.contact-social-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    flex-wrap: wrap;
}

.contact-social-btn {
    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;

    color: #ffffff;
    font-size: 27px;
    text-decoration: none;

    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.28);
    transition: 0.3s ease;
}

.contact-social-btn:hover {
    transform: translateY(-7px) scale(1.05);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.34);
}

/* Button colors */
.call-social {
    background: linear-gradient(135deg, #3158b8, #4d79dd);
}

.whatsapp-social {
    background: linear-gradient(135deg, #10b94f, #087c34);
}

.map-social {
    background: linear-gradient(135deg, #ff7a1a, #e82929);
}

.instagram-social {
    background: linear-gradient(135deg, #fd5d5d, #c13584, #833ab4);
}

/* Responsive */
@media (max-width: 650px) {
    .contact-section {
        padding: 75px 5% 85px;
    }

    .contact-heading {
        margin-bottom: 38px;
    }

    .contact-heading h2 {
        font-size: 38px;
    }

    .contact-heading-line {
        width: 200px;
    }

    .contact-address-box h3 {
        font-size: 20px;
    }

    .contact-address-box p {
        font-size: 17px;
    }

    .contact-map-clean {
        height: 230px;
        margin-bottom: 42px;
    }

    .contact-social-buttons {
        gap: 16px;
    }

    .contact-social-btn {
        width: 52px;
        height: 52px;
        font-size: 24px;
        border-radius: 12px;
    }
}

/* =====================================================
   FINAL CONTACT ONLY ENHANCEMENT PATCH
   Developer badge + floating words + improved contact font
   Does not touch navbar or other section logic.
===================================================== */

.contact-section {
    position: relative !important;
    overflow: hidden !important;
}

/* Make contact typography cleaner and more premium */
.contact-heading h2 {
    font-family: "Cormorant Garamond", serif !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px !important;
    text-shadow: 0 18px 45px rgba(0, 0, 0, 0.45) !important;
}

.contact-address-box h3 {
    font-family: "Poppins", sans-serif !important;
    font-weight: 800 !important;
    letter-spacing: 0.2px !important;
}

.contact-address-box p,
.contact-phone {
    font-family: "Poppins", sans-serif !important;
    font-weight: 500 !important;
}

/* Keep real contact content above floating words */
.contact-heading,
.contact-clean-container,
.developer-credit {
    position: relative !important;
    z-index: 6 !important;
}

/* Floating playful contact words */
.contact-floating-words {
    position: absolute !important;
    inset: 0 !important;
    overflow: hidden !important;
    pointer-events: none !important;
    z-index: 2 !important;
    display: block !important;
}

.contact-floating-words span {
    position: absolute !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;

    padding: 8px 17px !important;
    border-radius: 999px !important;

    color: #fff7d8 !important;
    font-family: "Chewy", "Cormorant Garamond", cursive !important;
    font-size: clamp(18px, 1.85vw, 30px) !important;
    font-weight: 400 !important;
    letter-spacing: 1px !important;

    background: rgba(255, 244, 210, 0.12) !important;
    border: 1px solid rgba(244, 181, 28, 0.34) !important;
    box-shadow:
        0 12px 28px rgba(0, 0, 0, 0.22),
        0 0 24px rgba(244, 181, 28, 0.16) !important;

    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;

    opacity: 0;
    visibility: hidden;
    pointer-events: auto !important;
    cursor: pointer !important;
    will-change: transform, opacity;
}

/* Put words only in empty areas so they don't cover map/address/buttons */
.contact-floating-words span:nth-child(1) { left: 6% !important; top: 26% !important; }
.contact-floating-words span:nth-child(2) { right: 6% !important; top: 26% !important; }
.contact-floating-words span:nth-child(3) { left: 7% !important; top: 50% !important; }
.contact-floating-words span:nth-child(4) { right: 7% !important; top: 50% !important; }
.contact-floating-words span:nth-child(5) { left: 13% !important; bottom: 11% !important; }
.contact-floating-words span:nth-child(6) { right: 13% !important; bottom: 11% !important; }
.contact-floating-words span:nth-child(7) { left: 50% !important; bottom: 5% !important; transform: translateX(-50%); }

/* Developer badge: only inside contact section bottom-right */
.developer-credit {
    position: absolute !important;
    right: 28px !important;
    bottom: 28px !important;

    width: 250px !important;
    padding: 14px 16px !important;
    margin: 0 !important;

    border-radius: 18px !important;
    text-align: left !important;

    background: linear-gradient(145deg, rgba(70, 5, 5, 0.88), rgba(20, 1, 1, 0.94)) !important;
    border: 1px solid rgba(244, 181, 28, 0.35) !important;

    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.38),
        inset 0 1px 0 rgba(255, 255, 255, 0.10) !important;

    backdrop-filter: blur(14px) !important;
    -webkit-backdrop-filter: blur(14px) !important;
}

.developer-credit p {
    color: #f4b51c !important;
    font-size: 11px !important;
    font-weight: 800 !important;
    letter-spacing: 1.5px !important;
    text-transform: uppercase !important;
    margin-bottom: 4px !important;
}

.developer-credit h4 {
    color: #fff8ea !important;
    font-family: "Cormorant Garamond", serif !important;
    font-size: 23px !important;
    line-height: 1 !important;
    margin-bottom: 9px !important;
}

.developer-links {
    display: flex !important;
    flex-direction: column !important;
    gap: 5px !important;
}

.developer-links a {
    color: #f7ddb2 !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    transition: 0.3s ease !important;
}

.developer-links a:hover {
    color: #f4b51c !important;
    transform: translateX(3px) !important;
}

/* Tablet/mobile safety */
@media (max-width: 950px) {
    .contact-floating-words span:nth-child(5),
    .contact-floating-words span:nth-child(6),
    .contact-floating-words span:nth-child(7) {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .contact-floating-words {
        display: none !important;
    }

    .developer-credit {
        position: relative !important;
        right: auto !important;
        bottom: auto !important;
        width: 100% !important;
        max-width: 360px !important;
        margin: 40px auto 0 !important;
        text-align: center !important;
        padding: 13px 14px !important;
        border-radius: 15px !important;
    }

    .developer-credit h4 {
        font-size: 20px !important;
    }

    .developer-links a {
        font-size: 12px !important;
    }
}



/* =====================================================
   FINAL SAFE FLOATING LAYER FIX
   Keeps naughty words/images visible, separated, and behind real boxes
   Paste-safe: only affects intro/contact floating items.
===================================================== */

.intro-page,
.contact-section {
    position: relative !important;
    overflow: hidden !important;
}

/* Intro floating layer stays behind logo/text */
.intro-floating-items {
    position: absolute !important;
    inset: 0 !important;
    z-index: 5 !important;
    pointer-events: none !important;
    overflow: hidden !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Contact floating layer stays behind contact content */
.contact-floating-words {
    position: absolute !important;
    inset: 0 !important;
    z-index: 2 !important;
    pointer-events: none !important;
    overflow: hidden !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Floating items remain visible, but JS controls placement */
.intro-float-word,
.intro-float-sweet,
.contact-floating-words span {
    position: absolute !important;
    pointer-events: auto !important;
    will-change: transform, left, top !important;
    opacity: 1;
    visibility: visible;
}

/* Main intro content always above floating items */
.intro-content,
.intro-logo,
.intro-line,
.intro-since,
.intro-subtitle {
    position: relative !important;
    z-index: 20 !important;
}

/* Main contact content always above floating words */
.contact-heading,
.contact-clean-container,
.contact-container,
.contact-address-box,
.contact-map-clean,
.contact-social-buttons,
.contact-info-card,
.contact-map-card,
.developer-credit {
    position: relative !important;
    z-index: 10 !important;
}

/* JS now places the items safely; these keep a nice look only */
.intro-float-word,
.contact-floating-words span {
    cursor: pointer;
    user-select: none;
}

.intro-float-sweet {
    cursor: pointer;
    user-select: none;
}

/* On mobile, keep contact words hidden for performance and no overlap */
@media (max-width: 768px) {
    .contact-floating-words {
        display: none !important;
    }
}

/* =====================================================
   FIX: Developer badge bottom-right in Contact section
===================================================== */

.contact-section {
    position: relative !important;
    overflow: hidden !important;
}

.developer-credit {
    position: absolute !important;
    right: 32px !important;
    bottom: 28px !important;

    width: 250px !important;
    margin: 0 !important;
    z-index: 20 !important;

    text-align: left !important;
}

@media (max-width: 768px) {
    .developer-credit {
        position: relative !important;
        right: auto !important;
        bottom: auto !important;

        width: 100% !important;
        max-width: 320px !important;
        margin: 38px auto 0 !important;

        text-align: center !important;
    }
}

/* =====================================================
   PAGESPEED FINAL PATCH — premium feel + mobile performance
   Fixes: mobile LCP, forced paint cost, touch target spacing, font render.
===================================================== */

/* Font fallback is kept stable while Google fonts load async from index.html */
body {
/* Better named/tappable social buttons */
.contact-social-btn {
    min-width: 58px !important;
    min-height: 58px !important;
    line-height: 1 !important;
    touch-action: manipulation;
}
.contact-social-btn span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1em;
    height: 1em;
}

/* Desktop keeps royal richness, but uses less expensive blur */
.product-showcase-window {
    contain: layout paint style;
}
.product-slide {
    contain: layout paint;
}
.product-showcase-right img,
.sweet-image img,
.gallery-card img {
    content-visibility: auto;
}

/* Mobile: avoid loading the heavy intro GIF as first-screen background.
   The royal effect stays through gradients, logo, and floating labels. */
@media (max-width: 768px) {
    .intro-bg {
        background-image:
            radial-gradient(circle at 50% 44%, rgba(116, 13, 8, 0.52), rgba(24, 3, 3, 0.96) 67%),
            url("images/chena_toast.webp") !important;
        background-size: cover !important;
        background-position: center !important;
        transform: scale(1.02) !important;
        filter: none !important;
    }

    /* keep premium movement lighter on phones */
    .intro-sweet-3,
    .intro-sweet-4,
    .intro-sweet-5,
    .intro-sweet-6,
    .intro-float-word:nth-child(n+7) {
        display: none !important;
    }

    .intro-float-word {
        padding: 7px 13px !important;
        font-size: 16px !important;
        box-shadow: 0 8px 18px rgba(0,0,0,0.22) !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }

    .intro-float-sweet {
        width: 76px !important;
        height: 76px !important;
        filter: drop-shadow(0 10px 16px rgba(0,0,0,0.38)) !important;
    }

    .moving-logo {
        will-change: transform, opacity !important;
    }

    .product-showcase-window {
        contain: layout paint style !important;
        box-shadow:
            0 20px 54px rgba(78,24,5,0.16),
            0 0 0 5px rgba(255,240,205,0.30),
            inset 0 1px 0 rgba(255,255,255,0.9) !important;
    }

    .product-showcase-right::before,
    .contact-section::after,
    .gallery-section::after,
    .about-section::after,
    .sweet-image::before {
        filter: none !important;
    }

    .contact-social-buttons {
        gap: 16px !important;
    }

    .contact-social-btn {
        min-width: 52px !important;
        min-height: 52px !important;
    }

    .developer-credit {
        min-height: 86px;
    }
}

/* Respect reduced-motion users without making the normal site boring */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
    }
}


/* =====================================================
   FINAL STABLE FIX — logo transition + product pin
   Keep this at the VERY BOTTOM of style.css.
===================================================== */

/* Moving logo must never stay stuck over later sections. JS controls visibility. */
.moving-logo {
    position: fixed !important;
    z-index: 2147483646 !important;
    pointer-events: none !important;
    object-fit: contain !important;
    transform: translate(-50%, -50%) !important;
    will-change: left, top, width, opacity !important;
}

body > nav,
nav {
    position: fixed !important;
    z-index: 2147483647 !important;
}

/* Product showcase restored to fixed-center behavior. */
.pinned-products-section {
    position: relative !important;
    min-height: 540vh !important;
    overflow: visible !important;
    z-index: 5 !important;
}

.product-showcase-window {
    position: absolute !important;
    top: calc(50vh - 325px) !important;
    left: 50% !important;
    right: auto !important;
    bottom: auto !important;
    transform: translateX(-50%) !important;
    z-index: 50 !important;
    opacity: 1;
    visibility: visible;
}

.product-showcase-window.product-window-fixed {
    position: fixed !important;
    top: 50% !important;
    left: 50% !important;
    right: auto !important;
    bottom: auto !important;
    transform: translate(-50%, -50%) !important;
}

.product-showcase-window.product-window-ended {
    position: absolute !important;
    top: auto !important;
    bottom: 90px !important;
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
}

.product-slides-area {
    position: relative !important;
    overflow: hidden !important;
}

.product-slide {
    position: absolute !important;
    inset: 0 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    z-index: 1 !important;
}

.product-slide.active {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    z-index: 8 !important;
}

/* Desktop: developer badge right-bottom only. */
@media (min-width: 769px) {
    .developer-credit {
        position: absolute !important;
        right: 32px !important;
        bottom: 28px !important;
        width: 250px !important;
        margin: 0 !important;
        z-index: 20 !important;
        text-align: left !important;
    }
}

/* Mobile performance and product sizing. */
@media (max-width: 768px) {
    .pinned-products-section {
        min-height: 500vh !important;
    }

    .product-showcase-window {
        width: 92vw !important;
        height: min(660px, calc(100svh - 92px)) !important;
        top: calc(50svh - min(330px, calc((100svh - 92px) / 2))) !important;
    }

    .product-showcase-window.product-window-fixed {
        top: 50% !important;
        transform: translate(-50%, -50%) !important;
    }

    .product-showcase-window.product-window-ended {
        bottom: 80px !important;
    }

    .moving-logo {
        max-width: 68vw !important;
    }

    .developer-credit {
        position: relative !important;
        right: auto !important;
        bottom: auto !important;
        width: 100% !important;
        max-width: 320px !important;
        margin: 38px auto 0 !important;
        text-align: center !important;
    }
}
