/* ================= GLOBAL ================= */
html {
    scroll-behavior: smooth;
}
.comic-font {
    font-family: "Comic Sans MS", "Comic Sans", cursive;
}

.nav-link {
    color: #4A2C2A;
    font-weight: 500;
    transition: 0.3s;
}

.nav-link:hover {
    color: #B85C7A;
}

@font-face {
    font-family: 'NexaScriptBold';
    src: url('fonts/Fontfabric - Nexa Script Bold.otf') format('opentype');
}

@font-face {
    font-family: 'NexaScriptHeavy';
    src: url('fonts/Fontfabric - Nexa Script Heavy.otf') format('opentype');
}


@font-face {
    font-family: 'NexaScriptSemiBold';
    src: url('fonts/Fontfabric - Nexa Script Semi Bold.otf') format('opentype');
}

@font-face {
    font-family: 'NexaScriptThin';
    src: url('fonts/Fontfabric - Nexa Script Thin.otf') format('opentype');
}

@font-face {
    font-family: 'NexaScript';
    src: url('fonts/Fontfabric - Nexa Script.otf') format('opentype');
}

body {
    background-color: #F7EDEF;
    font-family: 'Segoe UI', sans-serif;
    color: #4A2C2A;
    background-image: url("Pics/wall.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* ================= NAVBAR ================= */
.navbar {
    background-color: #FFFFFF;
}

.navbar-brand {
    font-weight: bold;
    color: #B85C7A !important;
}

/* ================= HERO ================= */
.hero {
    position: relative;
    background: linear-gradient(135deg, #F7EDEF, #E8C7CF);
    padding: 120px 20px;
    text-align: center;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-logo {
    width: 220px;
    border-radius: 50%;
    margin-bottom: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    animation: glow 3s ease-in-out infinite alternate;
}

.hero h1 {
    font-size: 2.8rem;
    font-weight: bold;
    font-family: 'NexaScriptHeavy', cursive;
}

.hero p {
    font-size: 1.2rem;
    font-family: 'NexaScript', cursive;
}


/* ================= FLOATING IMAGES ================= */
.floating-images img {
    position: absolute;
    width: 170px;
    opacity: 0.95;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid white;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.donut {
    top: 40px;
    left: 10%;
    animation: float 2s ease-in-out infinite;
}

.cookies {
    top: 80px;
    right: 8%;
    animation: float 6s ease-in-out infinite;
}

.gummy {
    bottom: 40px;
    left: 17%;
    animation: float 5s ease-in-out infinite;
}

.ginger {
    bottom: 40px;
    right: 15%;
    animation: float 3s ease-in-out infinite;
}

.waffle {
    top: 100px;
    left: 29%;
    animation: float 3s ease-in-out infinite;
}

.biscof {
    top: 170px;
    right: 25%;
    animation: float 2s ease-in-out infinite;
}

/* ================= ANIMATIONS ================= */
@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0);
    }
}

@keyframes glow {
    from {
        box-shadow: 0 0 10px rgba(184, 92, 122, 0.3);
    }
    to {
        box-shadow: 0 0 30px rgba(184, 92, 122, 0.7);
    }
}

/* ================= PREMIUM TITLE (GLASS BADGE STYLE) ================= */
.section-title {
    font-family: 'NexaScriptHeavy', cursive;
    font-size: 2.2rem;
	transition: all 0.3s ease;
    color: #4A2C2A;
    display: inline-block;
    padding: 12px 30px;

    /* GLASS EFFECT */
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(10px);
    border-radius: 50px;

    /* DEPTH */
    box-shadow: 
        0 8px 25px rgba(0,0,0,0.15),
        inset 0 1px 5px rgba(255,255,255,0.6);

    /* CENTER */
    margin-bottom: 40px;
}

/* GLOW BORDER ACCENT */
.section-title::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50px;
    background: linear-gradient(135deg, #B85C7A, #E8C7CF);
    z-index: -1;
    filter: blur(12px);
    opacity: 0.6;
}
.section-title:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 
        0 12px 35px rgba(184,92,122,0.35),
        inset 0 1px 5px rgba(255,255,255,0.7);
}

/* ================= PRODUCT CARDS ================= */
#products .card {
    border-radius: 25px;
    background: linear-gradient(135deg, #F7EDEF, #E8C7CF);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    padding: 20px;
}

#products h2 {
    font-family: 'NexaScriptHeavy', cursive;
    font-weight: 900;
}

.nexa-heavy {
    font-family: 'NexaScriptHeavy', cursive;
    font-weight: 900;
}

.nexa-bold {
    font-family: 'NexaScriptBold', cursive;
    font-weight: 700;
}

.nexa-semibold {
    font-family: 'NexaScriptSemiBold', cursive;
    font-weight: 500;
}

.nexa-regular {
    font-family: 'NexaScript', cursive;
    font-weight: 400;
}

.nexa-regular-thin {
    font-family: 'NexaScriptThin', cursive;
    font-weight: 100;
}

.product-card {
    border: none;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: 0.3s ease;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-5px);
}

/* ================= CAROUSEL ================= */
.carousel-inner {
    height: 220px;
}

.product-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 50%;
    padding: 15px;
}

.carousel-indicators button {
    background-color: #B85C7A;
}

.carousel-indicators .active {
    background-color: #4A2C2A;
}

/* ================= BUTTON ================= */
.btn-brand {
    background-color: #B85C7A;
    color: white;
    border-radius: 25px;
    padding: 8px 20px;
}

.btn-brand:hover {
    background-color: #4A2C2A;
    color: white;
}

/* ================= SCENTS ================= */
.scent-grid {
    max-width: 1100px;
    margin: auto;
}

.scent-item {
    background: rgba(255, 255, 255, 0.8);
    padding: 12px 15px;
    margin: 10px 0;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    transition: 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.scent-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(184, 92, 122, 0.3);
}

/* ================= BEST SELLER ================= */
.best-seller {
    background: linear-gradient(135deg, #B85C7A, #E8C7CF);
    color: #FEFD99;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(184, 92, 122, 0.4);
    font-family: "Comic Sans MS", "Comic Sans", cursive;
}

.best-seller:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 12px 30px rgba(184, 92, 122, 0.6);
}

/* ============= NOT BEST SELLER ================= */
.scent-item:not(.best-seller) {
    font-family: "Comic Sans MS", "Comic Sans", cursive;
	font-weight: 600;
}

/* ================= ORDER ================= */
.order-section {
    background-color: #E8C7CF;
    padding: 60px 20px;
    border-radius: 30px 30px 0 0;
}

/* ================= FOOTER ================= */
footer {
    background-color: #B85C7A;
    color: white;
    padding: 30px;
    text-align: center;
    font-size: 14px;
}

/* ================= INSTRUCTIONS ================= */
.instruction-card {
    background: linear-gradient(135deg, #B85C7A, #E8C7CF);
    padding: 25px;
    border-radius: 20px;
    color: white;

    font-family: "Comic Sans MS", "Comic Sans", cursive; /* 👈 added */
    font-weight: 600;

    box-shadow: 0 8px 20px rgba(184, 92, 122, 0.4);
    transition: 0.3s;
}

.instruction-card:hover {
    transform: translateY(-6px);
}

/* ================= FEATURES ================= */
.feature-box {
    background: white;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

.feature-box:hover {
    transform: translateY(-6px);
}

/* ================= HOW TO USE ================= */
.how-to-use .row {
    display: flex;
    align-items: stretch;
}

.how-to-use .col-lg-6:first-child {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.video-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.how-video {
    width: 100%;
    max-height: 470px;
    object-fit: contain;
    border-radius: 15px;
}

/* ================= VIDEO CAROUSEL ================= */
.video-container .carousel-item,
.video-frame .carousel-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.video-frame {
    width: 100%;
    max-width: 520px;
    margin: auto;
    background: white;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.video-frame .carousel-inner {
    height: 320px;
}

.gallery-cluster {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    grid-column: span 2;
    grid-row: span 4;
}

/* OVERLAY */

.cluster-overlay {
    position: absolute;
    width: 42%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 8px;
    border-radius: 16px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.25);
    z-index: 30;
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
        pointer-events: auto;

        isolation: isolate;
}

.overlay-horizontal-parent {
    position: relative;
    overflow: visible !important;
}

/* FLOATING OVERLAY CARD */
.overlay-horizontal-card {
    position: absolute;
    width: 42%;
    left: 50%;
    top: 100%;
    transform: translate(-50%, -50%);
    z-index: 60;
    background: white;
    padding: 8px;
    border-radius: 16px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.25);
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

/* OVERLAY IMAGE */
.overlay-horizontal-card img {
    width: 100%;
    display: block;
    border-radius: 14px;
    object-fit: cover;
}

/* IMAGE */
.cluster-overlay img {
    width: 100%;
    display: block;
    border-radius: 12px;
    object-fit: cover;
}

.gallery-section {
    position: relative;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-auto-rows: 90px;
    gap: 12px;
    width: 100%;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background: rgba(255,255,255,0.08);
    box-shadow: 0 10px 25px rgba(0,0,0,0.16);
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
    cursor: pointer;
}

.gallery-item > img {
    border-radius: inherit;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition:
        transform 0.45s ease,
        filter 0.45s ease;
}

.gallery-item.square {
    grid-row: span 2;
}

.gallery-item.vertical {
    grid-row: span 4;
}

.gallery-item.horizontal {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 4;
}

.overlay-card {
    position: absolute;
    z-index: 20;
    background: white;
    padding: 7px;
    border-radius: 14px;
    box-shadow: 0 14px 35px rgba(0,0,0,0.22);
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.overlay-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 10px;
}

@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 80px;
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: 95px;
        gap: 10px;
        grid-auto-flow: dense;
        overflow: visible;
    }
    .gallery-cluster,
    .overlay-horizontal-parent {
        overflow: visible !important;
    }
    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }
    .gallery-item.square {
        grid-row: span 2;
    }
    .gallery-item.vertical {
        grid-row: span 4;
    }
    .gallery-item.horizontal {
        grid-column: span 2;
        grid-row: span 2;
    }
    .gallery-item.large {
        grid-column: span 2;
        grid-row: span 4;
    }
    .gallery-cluster {
        grid-column: span 2;
        grid-row: span 4;
        gap: 10px;
    }
    .cluster-overlay {
        width: 38%;
        padding: 5px;
        z-index: 40;
    }
    .overlay-horizontal-card {
        position: absolute;
        width: 40%;
        left: 50%;
        top: 50%;
        transform: translate(-50%, 50%);
        padding: 5px;
        z-index: 50;
        will-change: transform;
    }
    .overlay-horizontal-card:hover {
        transform: translate(-50%, 50%) scale(1.02);
        z-index: 80;
    }
    
    .cluster-overlay:hover {
        transform:
            translate(-50%, -50%)
            scale(1.02);
        z-index: 80;
    }
}

.gallery-grid > * {
    min-width: 0;
    min-height: 0;
}

.cluster-overlay,
.overlay-horizontal-card,
.overlay-card {
    pointer-events: auto;
    z-index: 40;
}

.gallery-item img,
.cluster-overlay img,
.overlay-horizontal-card img {
    width: 100%;
    height: 100%;
    min-height: 100px;
    object-fit: cover;
    display: block;
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        grid-auto-flow: dense;
    }
    .cluster-overlay {
        width: 36%;
    }

    .overlay-horizontal-card {
        width: 32%;
        bottom: -36px;
    }
}

.luxury-section {
    padding-top: 20px;
}

.lux-card {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(14px);
    border-radius: 25px;
    padding: 40px 25px;
    height: 100%;
    border: 1px solid rgba(255,255,255,0.4);
    font-family: "Comic Sans MS", "Comic Sans", cursive;
    font-weight: bold;
    box-shadow: 
        0 15px 40px rgba(0,0,0,0.12),
        inset 0 1px 8px rgba(255,255,255,0.5);
    transition: 0.35s ease;
}

.lux-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 25px 60px rgba(184,92,122,0.25),
        inset 0 1px 10px rgba(255,255,255,0.6);
}

.lux-icon {
    width: 75px;
    height: 75px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: linear-gradient(145deg, #ffffff, #f3e6ea);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 8px 20px rgba(0,0,0,0.12),
        inset 0 2px 6px rgba(255,255,255,0.8);
}

.lux-icon img {
    width: 38px;
}

.lux-icon.large {
    width: 95px;
    height: 95px;
}

.lux-icon.large img {
    width: 45px;
}

.lux-card h5,
.lux-feature h5 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #3a2a2a;
}

.lux-card p,
.lux-feature p {
    font-size: 0.95rem;
    color: #6b5c5c;
}

.lux-btn {
    position: relative;
    overflow: hidden;
    display: inline-block;
    margin-top: 20px;
    padding: 12px 28px;
    border-radius: 40px;
    background: linear-gradient(135deg, #B85C7A, #8E3E5A);
    color: white;
    font-weight: 600;
    letter-spacing: 0.6px;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(184,92,122,0.35);
}

.lux-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 215, 0, 0.6),
        transparent
    );
    transform: skewX(-25deg);
}

.lux-btn:hover::after {
    animation: shimmer 1s forwards;
}

@keyframes shimmer {
    100% {
        left: 125%;
    }
}

.lux-btn:hover {
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 15px 40px rgba(184,92,122,0.5);
}

.lux-btn.full {
    width: 100%;
}

.lux-feature {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(18px);
    border-radius: 30px;
    padding: 50px 30px;
    height: 100%;
    text-align: center;
    position: relative;
    border: 1px solid rgba(255,255,255,0.5);
    box-shadow: 
        0 20px 50px rgba(0,0,0,0.15),
        inset 0 2px 10px rgba(255,255,255,0.6);
}

.lux-feature::before {
    content: "";
    position: absolute;
    left: -20px;
    top: 12%;
    bottom: 12%;
    width: 2px;
    background: linear-gradient(to bottom, #D4AF37, #F7E7CE, #D4AF37);
    border-radius: 10px;
    opacity: 0.7;
}

.lux-group {
    background: rgba(255,255,255,0.5);
    backdrop-filter: blur(12px);
    padding: 30px;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.lux-subtitle {
    font-family: 'NexaScriptHeavy', cursive;
    font-size: 1.4rem;

    color: #4A2C2A;
    margin-bottom: 20px;
}


.lux-contact {
    background: linear-gradient(135deg, #F7EDEF, #E8C7CF);
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 15px 40px rgba(184,92,122,0.15);
}

/* CONTACT TEXT */
.lux-contact p {
    color: #4A2C2A;
    font-size: 0.95rem;
}

.lux-card h6 {
    margin-top: 10px;
    font-size: 1rem;
}

.lux-btn {
    font-size: 0.9rem;
}

.lux-video {
    position: relative;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    padding: 8px;
    border-radius: 25px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #E8C7CF, #F7EDEF);
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}

.lux-video video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.lux-badges span {
    display: inline-block;
    margin: 10px;
    padding: 10px 20px;
    border-radius: 30px;
    background: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    color: #4A2C2A;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    font-family: "Comic Sans MS", "Comic Sans", cursive;
    font-weight: bold;
}

/* ================= FORM ================= */
.lux-form {
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(15px);
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

/* INPUTS */
.lux-form input,
.lux-form textarea {
    width: 100%;
    padding: 12px 15px;
    border-radius: 15px;
    border: none;
    background: rgba(255,255,255,0.9);
    box-shadow: inset 0 2px 6px rgba(0,0,0,0.08);
    outline: none;
}

/* ================= FLOAT BUTTON ================= */
.floating-msg-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #B85C7A, #8E3E5A);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(184,92,122,0.4);
    animation: floatY 3s ease-in-out infinite;
}

/* FLOAT EFFECT */
@keyframes floatY {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.floating-msg-btn:hover {
    transform: scale(1.1);
}

/* UNMUTE BUTTON */
.video-unmute {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    border-radius: 50%;
    padding: 10px;
    cursor: pointer;
}

.lux-counter h3 {
    font-size: 2rem;
    color: #4A2C2A;
    font-weight: 700;
}

.lux-counter span {
    color: #B85C7A;
    font-size: 2.5rem;
}

.lux-counter p {
    color: #6b5c5c;
    font-size: 0.95rem;
}

.lux-group {
    height: auto;
}

.lux-group .lux-card {
    padding: 25px 15px;
}

@media (max-width: 992px) {
    .lux-video {
        max-width: 100%;
        margin: auto;
    }
}

#contact {
    font-family: "Comic Sans MS", "Comic Sans", cursive;
    font-weight: bold;
}

#contact p,
#contact strong {
    font-family: "Comic Sans MS", "Comic Sans", cursive;
    font-weight: bold;
}

.reveal {
    opacity: 1;
    transform: none;
    transition: all 0.9s ease;
}

.reveal.animate-ready {
    opacity: 0;
    transform: translateY(60px);
}

.reveal.active {
    opacity: 1;
    transform: translate(0,0) scale(1);
}

/* LEFT */
.fade-left.animate-ready {
    transform: translateX(80px);
}

/* RIGHT */
.fade-right.animate-ready {
    transform: translateX(-80px);
}

/* UP */
.fade-up.animate-ready {
    transform: translateY(80px);
}

/* DOWN */
.fade-down.animate-ready {
    transform: translateY(-80px);
}

/* INWARD */
.inward-left.animate-ready {
    transform: translateX(-120px) scale(0.95);
}

.inward-right.animate-ready {
    transform: translateX(120px) scale(0.95);
}

/* ACTIVE STATES */
.reveal.active.fade-left,
.reveal.active.fade-right,
.reveal.active.fade-up,
.reveal.active.fade-down,
.reveal.active.inward-left,
.reveal.active.inward-right {
    transform: translate(0,0) scale(1);
    opacity: 1;
}

/* STAGGER EFFECT (SMOOTH ENTRY) */
.reveal:nth-child(1) { transition-delay: 0.1s; }
.reveal:nth-child(2) { transition-delay: 0.2s; }
.reveal:nth-child(3) { transition-delay: 0.3s; }
.reveal:nth-child(4) { transition-delay: 0.4s; }

#sendBtn {
    position: relative;
}

#btnLoader::after {
    content: "";
    width: 16px;
    height: 16px;
    margin-left: 10px;
    border: 2px solid white;
    border-top: 2px solid transparent;
    border-radius: 50%;
    display: inline-block;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ================= TOAST MESSAGE ================= */
#toastMsg {
    position: fixed;
    bottom: 90px;
    right: 25px;
    background: #4CAF50;
    color: white;
    padding: 15px 20px;
    border-radius: 12px;
    display: none;
    z-index: 9999;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    font-weight: 500;
}

/* ================= VIDEO FIX ================= */
video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    object-fit: cover;
}

/* TABLET VIEW */
@media (max-width: 992px) {

    .floating-images img {
        width: 95px;
        opacity: 0.9;
    }

    .donut {
        top: 20px;
        left: 5%;
    }

    .cookies {
        top: 40px;
        right: 5%;
    }

    .waffle {
        top: 180px;
        left: 12%;
    }

    .biscof {
        top: 200px;
        right: 12%;
    }

    .gummy {
        bottom: 30px;
        left: 8%;
    }

    .ginger {
        bottom: 30px;
        right: 8%;
    }
}

/* MOBILE / ANDROID VIEW */
@media (max-width: 576px) {

    .hero {
        padding-top: 140px;
        padding-bottom: 140px;
    }

    .floating-images img {
        width: 65px;
        border-width: 2px;
    }

    .donut {
        top: 15px;
        left: 4%;
    }

    .cookies {
        top: 15px;
        right: 4%;
    }

    .waffle {
        top: 110px;
        left: 10%;
    }

    .biscof {
        top: 110px;
        right: 10%;
    }

    .gummy {
        bottom: 15px;
        left: 6%;
    }

    .ginger {
        bottom: 15px;
        right: 6%;
    }
}

/* PLACEHOLDER */
.product-placeholder {
    color: white;
    font-family: "Comic Sans MS", cursive;
    padding: 60px 20px;
}

.product-placeholder h3 {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.product-placeholder p {
    font-size: 0.95rem;
}

/* PREVIEW */
.product-preview {
    width: 100%;
    color: white;
}

.product-preview h3 {
    margin-bottom: 15px;
    font-family: 'NexaScriptHeavy', cursive;
}

/* CENTER CAROUSEL */
#previewCarousel {
    border-radius: 20px;
    overflow: hidden;
}

#previewCarousel .carousel-inner {
    border-radius: 20px;
}

#previewCarousel img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 20px;
}
/* ================= FLOATING PRODUCT SHOWCASE ================= */

.floating-product-layout {
    position: relative;
    width: 850px;
    height: 850px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* CENTER CARD */
.center-product-card {
    width: 430px;
    height: 430px;
    background: linear-gradient(135deg, #F7EDEF, #E8C7CF);
    border-radius: 50%;
    padding: 0;
    text-align: center;
    box-shadow:
        0 25px 60px rgba(0,0,0,0.2),
        inset 0 2px 12px rgba(255,255,255,0.5);
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

/* FLOATING PRODUCTS */
.floating-product {
    position: absolute;
    width: 170px;
    opacity: 0.95;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid white;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: 0.35s ease;
}

.floating-product:hover {
    box-shadow:
        0 0 0 6px rgba(255, 223, 89, 0.45),
        0 0 18px rgba(255, 223, 89, 0.8),
        0 0 35px rgba(255, 223, 89, 0.65),
        0 12px 30px rgba(0, 0, 0, 0.25);

    border-color: #FFE66D;
}


.floating-product {
    position: absolute;
    width: 170px;
    top: 50%;
    left: 50%;
    margin-left: -85px;
    margin-top: -85px;

    z-index: 20;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        filter 0.35s ease;
}
.fp1 {
    transform:
        rotate(0deg)
        translateY(-330px)
        rotate(0deg);
}

.fp2 {
    transform:
        rotate(45deg)
        translateY(-330px)
        rotate(-45deg);
}

.fp3 {
    transform:
        rotate(90deg)
        translateY(-330px)
        rotate(-90deg);
}

.fp4 {
    transform:
        rotate(135deg)
        translateY(-330px)
        rotate(-135deg);
}

.fp5 {
    transform:
        rotate(180deg)
        translateY(-330px)
        rotate(-180deg);
}

.fp6 {
    transform:
        rotate(225deg)
        translateY(-330px)
        rotate(-225deg);
}

.fp7 {
    transform:
        rotate(270deg)
        translateY(-330px)
        rotate(-270deg);
}

.fp8 {
    transform:
        rotate(315deg)
        translateY(-330px)
        rotate(-315deg);
}

.product-placeholder h3 {
    font-family: 'NexaScriptHeavy', cursive;
    margin-bottom: 15px;
}

.product-placeholder p {
    font-family: "Comic Sans MS", cursive;
}

#productPreview img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 20px;
}

/* MOBILE */
@media (max-width: 768px) {
    .floating-product-layout {
        width: 100%;
        height: 520px;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .center-product-card {
        width: 235px;
        height: 235px;
        padding: 18px;
        z-index: 5;
    }

    .product-placeholder h3,
    #previewTitle {
        font-size: 1rem;
    }

    .product-placeholder p,
    .preview-price {
        font-size: 0.78rem;
    }

    #previewCarousel img {
        height: 105px;
    }

    .floating-product {
        width: 74px;
        margin-left: -37px;
        margin-top: -37px;
        border-width: 2px;
        transition:
            transform 0.25s ease,
            box-shadow 0.25s ease,
            filter 0.25s ease;
    }

    .fp1 {
    transform:
        rotate(0deg)
        translateY(-160px)
        rotate(0deg);
}

.fp2 {
    transform:
        rotate(45deg)
        translateY(-160px)
        rotate(-45deg);
}

.fp3 {
    transform:
        rotate(90deg)
        translateY(-160px)
        rotate(-90deg);
}

.fp4 {
    transform:
        rotate(135deg)
        translateY(-160px)
        rotate(-135deg);
}

.fp5 {
    transform:
        rotate(180deg)
        translateY(-160px)
        rotate(-180deg);
}

.fp6 {
    transform:
        rotate(225deg)
        translateY(-160px)
        rotate(-225deg);
}

.fp7 {
    transform:
        rotate(270deg)
        translateY(-160px)
        rotate(-270deg);
}

.fp8 {
    transform:
        rotate(315deg)
        translateY(-160px)
        rotate(-315deg);
}

    .fp1:hover,
.fp1.active-product {
    transform:
        rotate(0deg)
        translateY(-160px)
        rotate(0deg)
        scale(1.08);
}

.fp2:hover,
.fp2.active-product {
    transform:
        rotate(45deg)
        translateY(-160px)
        rotate(-45deg)
        scale(1.08);
}

.fp3:hover,
.fp3.active-product {
    transform:
        rotate(90deg)
        translateY(-160px)
        rotate(-90deg)
        scale(1.08);
}

.fp4:hover,
.fp4.active-product {
    transform:
        rotate(135deg)
        translateY(-160px)
        rotate(-135deg)
        scale(1.08);
}

.fp5:hover,
.fp5.active-product {
    transform:
        rotate(180deg)
        translateY(-160px)
        rotate(-180deg)
        scale(1.08);
}

.fp6:hover,
.fp6.active-product {
    transform:
        rotate(225deg)
        translateY(-160px)
        rotate(-225deg)
        scale(1.08);
}

.fp7:hover,
.fp7.active-product {
    transform:
        rotate(270deg)
        translateY(-160px)
        rotate(-270deg)
        scale(1.08);
}

.fp8:hover,
.fp8.active-product {
    transform:
        rotate(315deg)
        translateY(-160px)
        rotate(-315deg)
        scale(1.08);
}
    .floating-product:hover,
    .floating-product.active-product {
        box-shadow:
            0 0 10px rgba(255, 221, 87, 0.85),
            0 0 20px rgba(255, 221, 87, 0.45);
        border-color: #FFE66D;
    }
}

#productPreview {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    overflow: hidden;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #4A2C2A;
}

/* TITLE ON TOP */
#previewTitle {
    position: absolute;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    width: 100%;
    text-align: center;
    font-family: 'NexaScriptHeavy', cursive;
    font-size: 2.2rem;
    color: #4A2C2A;
    text-shadow:
        0 2px 8px rgba(255,255,255,0.8);
}

/* FULL IMAGE AREA */
#previewCarousel {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 50%;
    z-index: 1;
}
#previewCarousel .carousel-inner,
#previewCarousel .carousel-item,
#previewCarousel .carousel-item.active {
    width: 100%;
    height: 100%;
}

#previewCarousel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
}

.carousel-control-prev,
.carousel-control-next {
    width: 52px;
    height: 52px;

    top: 50%;
    transform: translateY(-50%);

    opacity: 1 !important;
    z-index: 20;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 18px;
    height: 18px;
    background-size: 100% 100%;
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
    filter:
        brightness(0)
        invert(1);

    opacity: 1 !important;
}
.carousel-control-prev,
.carousel-control-next {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}
/* DARK CIRCLE BACKGROUND */
.carousel-control-prev::before,
.carousel-control-next::before {
    content: "";
    position: absolute;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(4px);
    z-index: -1;
}

/* LIGHTER ARROWS */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter:
        brightness(0)
        invert(1);
}

/* BOTTOM INFO OVERLAY */
.preview-price,
#productPreview .btn-brand {
    position: relative;
    z-index: 10;
}

/* BOTTOM GLASS PANEL */
.preview-price {
    position: absolute;
    bottom: 72px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.45);
    color: white;
    padding: 8px 18px;
    border-radius: 20px;
    backdrop-filter: blur(6px);
    font-family: "Comic Sans MS", cursive;
    font-weight: bold;
    margin: 0;
}

/* ORDER BUTTON */
#productPreview .btn-brand {
    position: absolute;
    bottom: 22px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(184,92,122,0.92);
    backdrop-filter: blur(6px);
    border: none;
}

/* MOBILE */
@media (max-width: 768px) {
    #previewTitle {
        font-size: 1.15rem;
        top: 14px;
    }

    .preview-price {
        font-size: 0.72rem;
        bottom: 58px;
        padding: 6px 12px;
    }

    #productPreview .btn-brand {
        bottom: 16px;
        padding: 6px 14px;
        font-size: 0.75rem;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 38px;
    }

    .carousel-control-prev span,
    .carousel-control-next span {
        padding: 12px;
    }
}

.floating-product:hover,
.floating-product.active-product {
    filter: brightness(1.05);

    box-shadow:
        0 0 20px rgba(255, 221, 87, 0.95),
        0 0 45px rgba(255, 221, 87, 0.75);

}

.desktop-product-grid {
    display: none;
    grid-template-columns:
    repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    max-width: 1400px;
    margin: auto;
    padding: 30px 0;
    isolation: isolate;
}

.desktop-product-card {
    overflow: hidden;
    border-radius: 30px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
    box-shadow:
        0 15px 35px rgba(0,0,0,0.18);
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.desktop-product-card:hover {
    box-shadow:
        0 20px 45px rgba(0,0,0,0.22);
        z-index: 20;
}

.desktop-product-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    transition:
        transform 0.45s ease,
        filter 0.45s ease;
}

.desktop-product-card:hover img {
    transform: scale(1.06);
}

.desktop-badges {
    position: absolute;
    top: 18px;
    left: 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 5;
}

.desktop-badges span {
    padding: 6px 14px;
    border-radius: 999px;
    color: white;
    font-size: 0.75rem;
    font-weight: bold;
}

.badge-sale {
    background: #ff3b57;
}

.badge-best {
    background: #ff9f1c;
}

.badge-new {
    background: #2ecc71;
}

.desktop-product-info {
    padding: 18px 20px 20px;
    background:
        linear-gradient(
            to bottom,
            rgba(255,255,255,0.10),
            rgba(255,255,255,0.06)
        );
    backdrop-filter: blur(16px);
    border-top:
        1px solid rgba(255,255,255,0.18);
}

.desktop-top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-top: 0;
    margin-bottom: 10px;
}

.desktop-top-row h3 {
    margin: 0;
    line-height: 1;
    font-family: 'NexaScriptHeavy', cursive;
    color: white;
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: 0.3px;
    text-shadow:
        0 2px 10px rgba(0,0,0,0.35);
}

.desktop-rating {
    display: flex;
    align-items: center;
    line-height: 1;
    margin: 0;
    color: #ffb400;
    font-size: 0.92rem;
    font-weight: 700;
    white-space: nowrap;
}

.desktop-price {
    font-size: 1.2rem;
    font-weight: bold;
    color: #FFD86B;
    margin-bottom: 18px;
}

.desktop-price span {
    margin-left: 8px;
    color: rgba(255,255,255,0.7);
    text-decoration: line-through;
    font-size: 0.95rem;
}

.desktop-preview-btn {
    width: 100%;
    border: none;
    padding: 14px;
    border-radius: 18px;
    background:
        linear-gradient(
            135deg,
            #B85C7A,
            #D98CA3
        );
    color: white;
    font-weight: bold;
    transition: 0.3s ease;
}

.desktop-preview-btn:hover {
    transform: translateY(-2px);
    box-shadow:
        0 12px 30px rgba(184,92,122,0.35);
}

/* DESKTOP */
@media (min-width: 769px) {
    .desktop-product-grid {
        display: grid;
    }
    .mobile-orbit-layout {
        display: none;
    }
}

/* MOBILE */
@media (max-width: 768px) {
    .desktop-product-grid {
        display: none;
    }
    .mobile-orbit-layout {
        display: block;
    }
    .desktop-product-card {
        border-radius: 22px;
    }
}

.modern-scent-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 1100px;
    margin: auto;
}

.modern-scent-grid .scent-item {
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 14px;
    margin: 0;
    border-radius: 22px;
    line-height: 1.3;
    font-size: 0.95rem;
}

/* MOBILE */
@media (max-width: 768px) {
    .modern-scent-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
        padding: 0 8px;
    }
    .modern-scent-grid .scent-item {
        min-height: 72px;
        font-size: 0.88rem;
        padding: 12px;
    }
}

.overlay-top-left {
    top: 18px;
    left: 18px;
    right: auto;
    bottom: auto;
    width: 58%;
}

.gallery-item {
    transition:
        box-shadow 0.35s ease;

    cursor: pointer;
}

.gallery-item > img {
    transition:
        transform 0.45s ease,
        filter 0.45s ease;
}

.gallery-item > img {
    transition:
        transform 0.45s ease,
        filter 0.45s ease;
}

.gallery-item.horizontal > img:hover {
    transform: scale(1.02);
}

.gallery-item:not(.horizontal) > img:hover {
    transform: scale(1.04);
}

.overlay-horizontal-card {
    pointer-events: auto;
    isolation: isolate;
}

.gallery-item img {
    transition:
        transform 0.45s ease,
        filter 0.45s ease;
}

.overlay-card,
.cluster-overlay,
.overlay-horizontal-card {
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.overlay-card:hover {
    transform:
        translateY(-6px)
        scale(1.05);

    z-index: 50;
}

.cluster-overlay:hover {
    transform:
        translate(-50%, -50%)
        translateY(-6px)
        scale(1.05);
    z-index: 50;
}

.overlay-parent,
.overlay-horizontal-parent,
.gallery-cluster {
    position: relative;
    overflow: visible;
}

/* =========================================================
   DESKTOP PRODUCT MODAL
========================================================= */

.desktop-modal-content {

    background:
        linear-gradient(135deg, #F7EDEF, #E8C7CF);

    border-radius: 28px;

    border: none;

    padding: 14px 14px 18px;

    width: 100%;

    height: auto;

    min-height: unset;

    overflow-y: auto;
}

#desktopModalTitle {

    text-align: center;

    font-family: 'NexaScriptHeavy', cursive;

    margin-bottom: 8px;

    color: #4A2C2A;

    color: #4A2C2A;

    font-size: 2rem;
}

/* =========================================================
   DESKTOP MODAL IMAGE
========================================================= */

/* =========================================================
   DESKTOP MODAL IMAGE
========================================================= */

/* =========================================================
   DESKTOP MODAL IMAGE
========================================================= */

#desktopPreviewCarousel {
    width: 100%;
    height: 650px;
    background: #f8edf0;
    overflow: hidden;
    border-radius: 22px;
}

#desktopPreviewCarousel .carousel-inner,
#desktopPreviewCarousel .carousel-item,
#desktopPreviewCarousel .carousel-item.active {
    width: 100%;
    height: 100%;
}

#desktopPreviewCarousel img {
    width: 100%;
    height: 650px;
    object-fit: cover;
    object-position: center;
    border-radius: 22px;
}
#desktopModalPrice {

    text-align: center;

    margin-top: 18px;

    font-family: "Comic Sans MS", cursive;

    font-size: 1.1rem;

    font-weight: bold;

    color: #4A2C2A;
}

.modal-close-btn {

    position: absolute;

    right: 20px;

    top: 20px;

    z-index: 20;
}
/* =========================================================
   DESKTOP MODAL
========================================================= */

#desktopProductModal .modal-dialog {

    max-width: 1100px;

    width: 92%;

    margin: 1rem auto;
}

/* PRICE */

#desktopModalPrice {

    text-align: center;

    margin-top: 14px;

    margin-bottom: 8px;

    font-weight: bold;

    font-size: 1.1rem;

    color: #4A2C2A;
}

/* DESCRIPTION */

.desktop-modal-description {

    text-align: center;

    margin-top: 0;

    padding: 0 12px 6px;

    line-height: 1.55;

    font-size: 0.96rem;

    color: #5C4A4A;
}

.desktop-modal-description {

    margin-top: 14px;

    text-align: center;

    font-size: 1rem;

    line-height: 1.7;

    color: #5C4A4A;

    font-family: "Comic Sans MS", cursive;

    padding: 0 20px;
}