:root {
    /* ─── NEW DESIGN TOKENS ─── */
    --blush-white:   #FCE1E8;
    --petal-soft:    #FFE0E9;
    --rose-mist:     #F4B8CB;
    --romantic-pink: #E0527A;
    --deep-rose:     #B8294E;
    --bloom-magenta: #C4185C;
    --gold-whisper:  #D4A96A;
    --petal-text:    #3D1A26;
    --muted-bloom:   #9C5A6D;

    /* ─── BACKWARD-COMPAT ALIASES ─── */
    --bg-color:         var(--blush-white);
    --text-color:       var(--petal-text);
    --accent-color:     var(--romantic-pink);
    --accent-strong:    var(--deep-rose);
    --accent-light:     var(--petal-soft);
    --secondary-color:  var(--blush-white);
    --gold:             var(--gold-whisper);
    --gold-light:       rgba(212,169,106,0.25);

    /* ─── SURFACES ─── */
    --navbar-bg:     rgba(255,245,247,0.85);
    --glass-bg:      rgba(255,255,255,0.55);
    --glass-border:  rgba(212,169,106,0.3);
    --shadow-color:  rgba(184,41,78,0.15);

    /* ─── TYPOGRAPHY ─── */
    --font-heading: 'Playfair Display', serif;
    --font-body:    'Plus Jakarta Sans', sans-serif;
    --font-accent:  'Cormorant Garamond', serif;

    /* ─── RADII ─── */
    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 24px;
    --radius-xl: 32px;

    /* ─── EASINGS ─── */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: auto;
}

body {
    background: var(--blush-white);
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 8c-3 0-6 4-6 8s3 8 6 8 6-4 6-8-3-8-6-8z' fill='%23F4B8CB' fill-opacity='0.03'/%3E%3Cpath d='M30 36c-3 0-6 4-6 8s3 8 6 8 6-4 6-8-3-8-6-8z' fill='%23F4B8CB' fill-opacity='0.03'/%3E%3C/svg%3E");
    color: var(--petal-text);
    font-family: var(--font-body);
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    touch-action: manipulation;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    box-shadow: inset 0 0 150px rgba(180,40,78,0.06);
}

/* ================== CONTAINER + TRUST STRIP ================== */
.container {
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

.trust-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
    padding: 30px 40px;
    background: linear-gradient(135deg, #f19db9, #eee3e6);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    width: 100%;
    box-sizing: border-box;
}

.trust-card {
    text-align: center;
    padding: 10px;
    position: relative;
    border: 1px solid rgba(241, 157, 185, 0.3);
}

.trust-card:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: #f3c6cf;
}

.icon-circle {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #ffd6e0, #ffc2d1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
    font-size: 24px;
    box-shadow: 0 4px 12px rgba(231, 84, 128, 0.3);
}

.trust-card h3 {
    color: #e75480;
    font-size: 20px;
    margin: 4px 0;
    font-weight: 600;
}

.trust-card p {
    font-size: 13px;
    color: #6b6b6b;
    line-height: 1.3;
}

/* Tablet: 2×2 */
@media (max-width: 600px) {
    .container {
        padding: 0 16px;
        margin: 28px auto;
    }

    .trust-strip {
        grid-template-columns: repeat(2, 1fr);
        padding: 24px 20px;
        gap: 4px;
        border-radius: 14px;
    }

    .trust-card:not(:last-child)::after {
        display: none;
    }

    .trust-card {
        border: none;
        border-bottom: 1px solid rgba(241, 157, 185, 0.25);
        padding: 14px 8px;
    }

    .trust-card:nth-child(3),
    .trust-card:nth-child(4) {
        border-bottom: none;
    }

    .icon-circle {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }

    .trust-card h3 {
        font-size: 18px;
    }

    .trust-card p {
        font-size: 12px;
    }
}

/* Small phones */
@media (max-width: 400px) {
    .container {
        padding: 0 12px;
        margin: 20px auto;
    }

    .trust-strip {
        padding: 18px 12px;
        gap: 2px;
        border-radius: 12px;
    }

    .icon-circle {
        width: 42px;
        height: 42px;
        font-size: 18px;
    }

    .trust-card h3 {
        font-size: 16px;
    }

    .trust-card p {
        font-size: 11px;
    }
}

/* ================== PAGE LOADER ================== */
.page-loader {
    position: fixed;
    inset: 0;
    background: linear-gradient(135deg, #fef6f8, #fdf2f5, #fce1e8);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.loader-flower {
    position: relative;
    width: 60px;
    height: 60px;
    animation: loaderSpin 2.5s ease-in-out infinite;
}

.loader-petal {
    position: absolute;
    width: 18px;
    height: 28px;
    background: var(--accent-color);
    border-radius: 50% 50% 50% 0;
    top: 50%;
    left: 50%;
    transform-origin: 0 0;
    opacity: 0.8;
}

.lp-1 { transform: rotate(0deg) translate(-9px, -28px); }
.lp-2 { transform: rotate(72deg) translate(-9px, -28px); }
.lp-3 { transform: rotate(144deg) translate(-9px, -28px); }
.lp-4 { transform: rotate(216deg) translate(-9px, -28px); }
.lp-5 { transform: rotate(288deg) translate(-9px, -28px); }

.loader-center {
    position: absolute;
    width: 14px;
    height: 14px;
    background: var(--gold);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.loader-text {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--accent-strong);
    letter-spacing: 3px;
    text-transform: uppercase;
    animation: loaderPulse 1.5s ease-in-out infinite;
}

@keyframes loaderSpin {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.1); }
    100% { transform: rotate(360deg) scale(1); }
}

@keyframes loaderPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* ================== BACKGROUND ================== */
.bg-ornaments {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
    background:
        radial-gradient(circle at 0% 0%, rgba(229, 138, 168, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(212, 175, 185, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(252, 225, 232, 0.08) 0%, transparent 60%);
}

.bg-ornaments::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50 10c-5 0-10 5-10 10s5 10 10 10 10-5 10-10-5-10-10-10zm0 60c-5 0-10 5-10 10s5 10 10 10 10-5 10-10-5-10-10-10zm-40-30c-5 0-10 5-10 10s5 10 10 10 10-5 10-10-5-10-10-10zm80 0c-5 0-10 5-10 10s5 10 10 10 10-5 10-10-5-10-10-10z' fill='%23e58aa8' fill-rule='evenodd'/%3E%3C/svg%3E");
    background-size: 150px 150px;
}

.bg-noise {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.02;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.35;
    animation: blobFloat 20s infinite alternate cubic-bezier(0.45, 0, 0.55, 1);
}

.blob-1 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #fce1e8, #f5b3c8);
    top: -10%;
    right: -5%;
    animation-delay: 0s;
}

.blob-2 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, #fef5f7, #fce1e8);
    bottom: -10%;
    left: -10%;
    animation-delay: -5s;
    animation-duration: 25s;
}

.blob-3 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #fdf2f5, #fce1e8);
    top: 40%;
    left: 20%;
    opacity: 0.35;
    animation-delay: -10s;
}

@keyframes blobFloat {
    0% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -50px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
    100% { transform: translate(0, 0) scale(1); }
}

.petal-container {
    position: absolute;
    width: 100%;
    height: 100%;
}

.petal {
    position: absolute;
    width: 16px;
    height: 24px;
    background: linear-gradient(135deg, #fce1e8, #f5b3c8);
    border-radius: 150% 0 150% 0;
    opacity: 0.35;
    animation: petalFalling 15s linear infinite;
    box-shadow: 0 4px 8px rgba(229, 138, 168, 0.2);
}

.petal-1 { top: -10%; left: 8%; animation-duration: 14s; }
.petal-2 { top: -10%; left: 22%; animation-duration: 20s; animation-delay: -3s; }
.petal-3 { top: -10%; left: 45%; animation-duration: 17s; animation-delay: -6s; }
.petal-4 { top: -10%; left: 65%; animation-duration: 22s; animation-delay: -9s; }
.petal-5 { top: -10%; left: 80%; animation-duration: 16s; animation-delay: -4s; }
.petal-6 { top: -10%; left: 92%; animation-duration: 19s; animation-delay: -11s; }

@keyframes petalFalling {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(0.8);
        opacity: 0;
    }
    10% { opacity: 0.2; }
    90% { opacity: 0.15; }
    100% {
        transform: translate(80px, 110vh) rotate(720deg) scale(1);
        opacity: 0;
    }
}

img {
    filter: none;
    -webkit-filter: none;
    max-width: 100%;
    height: auto;
}

/* ================== NAVBAR ================== */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    background: rgba(252, 225, 232, 0.85);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    position: fixed;
    height: 80px;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(212,169,106,0.3);
    transition: all 0.5s var(--ease-out-expo);
}

@media (min-width: 1025px) {
    .navbar {
        height: 140px;
        padding: 0 3% 0 1%;
    }
}

.navbar.scrolled {
    background: rgba(252, 225, 232, 0.92);
    backdrop-filter: blur(22px) saturate(180%);
    -webkit-backdrop-filter: blur(22px) saturate(180%);
    border-bottom: 1px solid rgba(212,169,106,0.3);
    box-shadow: 0 4px 30px rgba(180,40,78,0.1);
}

.logo .brand-logo {
    height: 52px;
    width: auto;
    flex-shrink: 0;
    object-fit: contain;
}

.logo {
    display: flex;
    align-items: center;
    height: 100%;
    overflow: visible;
    flex-shrink: 0;
    max-width: 55%;
    gap: 4px;
}

.logo img:nth-child(2) {
    height: 68px;
    width: auto;
    max-width: 240px;
    object-fit: contain;
    transition: transform 0.4s var(--ease-out-back);
    flex-shrink: 1;
}

.logo img:nth-child(2):hover {
    transform: scale(1.05);
}

@media (min-width: 1025px) {
    .logo {
        max-width: 52%;
        gap: 12px;
        overflow: visible;
        align-items: center;
    }
    .logo .brand-logo {
        height: 130px;
    }
    .logo img:nth-child(2) {
        height: 200px;
        max-width: 440px;
    }
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
    z-index: 1100;
    -webkit-tap-highlight-color: transparent;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-color);
    border-radius: 2px;
    transition: all 0.3s var(--ease-out-expo);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.nav-links {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.nav-links a {
    color: var(--petal-text);
    text-decoration: none;
    margin-left: 2.5rem;
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.4s var(--ease-out-expo);
    position: relative;
    left: 10px;
    opacity: 0.8;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--romantic-pink), var(--gold-whisper));
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease-out-expo);
}

.nav-links a:hover {
    color: var(--romantic-pink);
    opacity: 1;
}

.nav-links a:hover::after {
    transform: scaleX(1);
}

.cart-icon {
    position: relative;
    margin-left: 2.5rem;
    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.4s var(--ease-out-back);
    color: var(--text-color);
    background: none;
    border: none;
    padding: 0;
    outline: none;
}

.cart-icon:hover {
    transform: scale(1.15) rotate(-5deg);
    color: var(--accent-color);
}

#cart-count {
    position: absolute;
    top: -10px;
    right: -12px;
    background: #db7691;
    color: white;
    font-size: 0.8rem;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    box-shadow: 0 4px 12px var(--shadow-color);
    transition: transform 0.3s var(--ease-out-back);
}

#cart-count.bump {
    animation: cartBump 0.4s var(--ease-out-back);
}

@keyframes cartBump {
    0% { transform: scale(1); }
    50% { transform: scale(1.4); }
    100% { transform: scale(1); }
}

/* ================== HERO ================== */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    padding-top: 80px;
    overflow: hidden;
    position: relative;
}

@media (min-width: 1025px) {
    .hero {
        padding-top: 140px;
    }
}

.hero-content {
    flex: 1;
    z-index: 2;
    animation: fadeIn 1s ease-out;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.4rem;
    border-radius: 999px;
    background: var(--glass-bg);
    border: 1px solid var(--gold-whisper);
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--muted-bloom);
    box-shadow: 0 8px 24px var(--shadow-color);
    margin-bottom: 1.5rem;
    backdrop-filter: blur(12px);
    font-weight: 600;
}

.hero-badge i {
    font-size: 0.7rem;
    color: var(--gold-whisper);
}

.text-gradient {
    background: linear-gradient(135deg, var(--romantic-pink), var(--gold-whisper), var(--deep-rose));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    filter: drop-shadow(0 0 40px rgba(196,24,92,0.2));
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 5vw, 5.5rem);
    line-height: 1.15;
    margin-bottom: 1.2rem;
    color: var(--bloom-magenta);
    letter-spacing: -0.5px;
    text-shadow: 0 4px 12px rgba(196, 24, 92, 0.1);
}

.hero p {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--muted-bloom);
    margin-bottom: 2.5rem;
    max-width: 540px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1.1rem 2.4rem;
    background: linear-gradient(135deg, #E0527A, #B8294E);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 400;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(184,41,78,0.35);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
}

.cta-button::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.3), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(184,41,78,0.45);
}

.cta-button:hover::before {
    opacity: 1;
}

.ghost-button {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1.1rem 2.4rem;
    border-radius: 50px;
    border: 2px solid var(--romantic-pink);
    color: var(--romantic-pink);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    background: transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: none;
}

.ghost-button:hover {
    color: white;
    background: var(--romantic-pink);
    transform: translateY(-2px);
    border-color: var(--romantic-pink);
    box-shadow: 0 8px 30px rgba(184,41,78,0.35);
}

.hero-image-container {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    position: relative;
}

.hero-image-glow {
    position: absolute;
    width: 90%;
    height: 90%;
    top: 5%;
    left: 5%;
    background: radial-gradient(circle, rgba(196,24,92,0.25) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(70px);
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 0.9; transform: scale(1.05); }
}

.hero-image {
    max-width: 580px;
    height: auto;
    border-radius: 24px;
    mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
    opacity: 0;
    animation: slideIn 1s var(--ease-out-expo) forwards 0.1s;
    transform: translateX(50px);
    box-shadow: 0 30px 70px rgba(184,41,78,0.2);
    position: relative;
    z-index: 1;
    margin-top: 50px;
    transition: transform 0.5s var(--ease-out-back);
}

.hero-image:hover {
    transform: scale(1.02) translateX(0);
}

/* ================== HERO FLOATING PETALS ================== */
.hero-petal {
    position: absolute;
    width: 8px;
    height: 12px;
    background: var(--rose-mist);
    border-radius: 150% 0 150% 0;
    opacity: 0.35;
    z-index: 0;
    pointer-events: none;
    animation: heroPetalFloat 4s ease-in-out infinite alternate;
}

.hero-petal-1 { top: 15%; left: 5%;  animation-delay: 0s;   opacity: 0.3; }
.hero-petal-2 { top: 35%; left: 12%; animation-delay: 0.5s; opacity: 0.25; }
.hero-petal-3 { top: 55%; left: 8%;  animation-delay: 1s;   opacity: 0.35; }
.hero-petal-4 { top: 25%; left: 22%; animation-delay: 1.5s; opacity: 0.2; }
.hero-petal-5 { top: 65%; left: 18%; animation-delay: 2s;   opacity: 0.3; }
.hero-petal-6 { top: 45%; left: 3%;  animation-delay: 2.5s; opacity: 0.25; }

@keyframes heroPetalFloat {
    0%   { transform: translateY(0)    rotate(0deg);   }
    100% { transform: translateY(-20px) rotate(15deg); }
}

/* ================== SECTION DIVIDER ================== */
.section-divider {
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.section-divider svg {
    display: block;
    width: 100%;
    height: 80px;
}

.section-divider.flip {
    transform: scaleY(-1);
}

/* ================== SHOP SECTION ================== */
.shop-section {
    padding: 80px 5%;
    background-color: var(--blush-white);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-accent);
    font-size: 1rem;
    font-style: italic;
    color: var(--gold);
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    position: relative;
}

.section-tag::before,
.section-tag::after {
    content: '—';
    margin: 0 0.8rem;
    opacity: 0.4;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 0.8rem;
    color: var(--petal-text);
    letter-spacing: 1px;
}

.section-subtitle {
    text-align: center;
    margin: 0 auto 2.5rem;
    color: var(--muted-bloom);
    max-width: 580px;
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 300;
}

.shop-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.search-bar {
    flex: 1;
    min-width: 240px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255, 255, 255, 0.75);
    border: 1.5px solid rgba(229, 138, 168, 0.12);
    padding: 0.75rem 1.4rem;
    border-radius: 999px;
    box-shadow: 0 4px 16px rgba(229, 138, 168, 0.08);
    cursor: text;
    transition: all 0.4s var(--ease-out-expo);
    backdrop-filter: blur(10px);
}

.search-bar:focus-within {
    border-color: var(--accent-color);
    box-shadow: 0 8px 24px rgba(229, 138, 168, 0.15);
    background: #fff;
    transform: translateY(-1px);
}

.search-bar i {
    color: var(--accent-color);
    font-size: 0.85rem;
    opacity: 0.6;
}

.search-bar input {
    border: none;
    background: transparent;
    width: 100%;
    height: 100%;
    outline: none;
    font-size: 0.92rem;
    color: var(--text-color);
    font-family: inherit;
}

.search-bar input::placeholder {
    color: #b8a5ad;
}

.category-scroll-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 3rem;
    position: relative;
}

.category-scroll-btn {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-strong));
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(224, 82, 122, 0.25);
    font-size: 0.9rem;
}

.category-scroll-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 16px rgba(224, 82, 122, 0.35);
}

.category-scroll-btn:active {
    transform: scale(0.95);
}

.category-scroll-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    box-shadow: 0 2px 8px rgba(224, 82, 122, 0.1);
}

.category-scroll-btn:disabled:hover {
    transform: none;
}

.category-filter {
    display: flex;
    justify-content: flex-start;
    gap: 1rem;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0.5rem 5% 1.5rem 0.5rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    flex: 1;
    scroll-behavior: smooth;
}

.category-filter::-webkit-scrollbar {
    display: none;
}

.category-btn {
    background: rgba(255, 255, 255, 0.7);
    border: 1.5px solid rgba(229, 138, 168, 0.12);
    color: #6a5a62;
    padding: 0.55rem 1.2rem;
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.35s var(--ease-out-expo);
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    backdrop-filter: blur(5px);
    white-space: nowrap;
    flex-shrink: 0;
}

.category-btn i {
    font-size: 0.75rem;
    opacity: 0.7;
}

.category-btn:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
    background: rgba(245, 208, 220, 0.15);
    transform: translateY(-1px);
}

.category-btn.active {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-strong));
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 16px rgba(229, 138, 168, 0.3);
}

.category-btn.active i {
    opacity: 1;
}

.product-grid {
    opacity: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    padding: 0;
}

@media (min-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(4, 1fr);
        max-width: 1200px;
        margin: 0 auto;
    }
}

@media (max-width: 450px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ================== PRODUCT CARDS ================== */
.product-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(252, 225, 232, 0.4) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(212,169,106,0.2);
    border-radius: 20px;
    padding: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(228,130,160,0.1);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--romantic-pink), var(--gold-whisper), var(--romantic-pink));
    opacity: 0;
    transition: opacity 0.3s;
}

.product-card:hover {
    transform: translateY(-6px);
    border-color: rgba(212,169,106,0.5);
    box-shadow: 0 16px 40px rgba(184,41,78,0.15);
}

.product-card:hover::before {
    opacity: 1;
}

.product-card:hover .product-image {
    transform: scale(1.08);
}

.product-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: var(--radius-md);
    margin-bottom: 1.2rem;
    transition: transform 0.7s var(--ease-out-expo);
}

.product-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-title {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
    line-height: 1.3;
    color: var(--petal-text);
    text-transform: uppercase;
    font-weight: 700;
}

.product-price {
    font-size: 1.05rem;
    color: #CAA67D;
    font-weight: 800;
    margin-bottom: 1rem;
    font-family: var(--font-body);
    letter-spacing: 0.5px;
}

.add-btn {
    margin-top: auto;
    width: 100%;
    padding: 0.75rem;
    background: #ffffff;
    border: 1px solid rgba(156, 90, 109, 0.3);
    color: var(--muted-bloom);
    border-radius: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
    letter-spacing: 0;
    text-transform: capitalize;
}

.add-btn:hover {
    background: #fdf5f7;
    color: var(--muted-bloom);
    border-color: var(--muted-bloom);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(156, 90, 109, 0.15);
}

.customize-wa-btn {
    background: linear-gradient(135deg, #25d366, #20b858) !important;
    color: #fff !important;
    border-color: transparent !important;
    font-family: 'Arial Black', Arial, sans-serif !important;
    font-weight: 900 !important;
}

.customize-wa-btn:hover {
    background: linear-gradient(135deg, #20b858, #1a9948) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.4) !important;
}

.customize-wa-modal-btn {
    background: linear-gradient(135deg, #25d366, #20b858) !important;
    color: #fff !important;
    border-color: transparent !important;
    font-family: 'Arial Black', Arial, sans-serif !important;
    font-weight: 900 !important;
}

.customize-wa-modal-btn:hover {
    background: linear-gradient(135deg, #20b858, #1a9948) !important;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4) !important;
}

/* ================== CART SIDEBAR ================== */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 36, 40, 0.3);
    backdrop-filter: blur(8px);
    z-index: 1001;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s var(--ease-out-expo);
}

.cart-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -500px;
    width: 400px;
    max-width: 92%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1002;
    transition: right 0.5s var(--ease-out-expo);
    display: flex;
    flex-direction: column;
    border-left: 1px solid rgba(229, 138, 168, 0.1);
    padding: 2rem;
    box-shadow: -8px 0 40px rgba(229, 138, 168, 0.15);
}

.cart-sidebar.active {
    right: 0;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(229, 138, 168, 0.1);
    padding-bottom: 1rem;
}

.cart-header h3 {
    font-family: var(--font-heading);
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
}

.cart-header h3 i {
    color: var(--accent-color);
}

.close-cart {
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    transition: all 0.3s;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.close-cart:hover {
    background: rgba(229, 138, 168, 0.1);
    color: var(--accent-color);
}

.cart-items {
    flex-grow: 1;
    overflow-y: auto;
    margin-bottom: 2rem;
}

.cart-item {
    display: flex;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.8);
    padding: 1rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(229, 138, 168, 0.08);
    box-shadow: 0 4px 12px rgba(229, 138, 168, 0.06);
    transition: all 0.3s;
}

.cart-item:hover {
    box-shadow: 0 6px 20px rgba(229, 138, 168, 0.12);
}

.cart-item img {
    width: 65px;
    height: 65px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    margin-right: 1rem;
}

.item-details {
    flex-grow: 1;
}

.item-title {
    font-weight: 600;
    display: block;
    margin-bottom: 0.3rem;
    font-size: 0.9rem;
    color: #3a3236;
}

.item-price {
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 600;
}

.item-remove {
    background: none;
    border: none;
    color: #b8a5ad;
    font-size: 0.78rem;
    cursor: pointer;
    margin-top: 0.4rem;
    transition: color 0.3s;
    display: block;
}

.item-remove:hover {
    color: #e74c3c;
}

.cart-footer {
    border-top: 1px solid rgba(229, 138, 168, 0.1);
    padding-top: 1.5rem;
}

.total-row {
    display: flex;
    justify-content: space-between;
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #3a3236;
}

.checkout-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #25d366, #20b858);
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-weight: 900;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.4s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
    font-family: 'Arial Black', Arial, sans-serif;
    letter-spacing: 0.5px;
}

.checkout-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}

.empty-cart-msg {
    text-align: center;
    color: #b8a5ad;
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}

.empty-cart-msg i {
    font-size: 2.5rem;
    opacity: 0.3;
    color: var(--accent-color);
}

.empty-cart-msg p {
    font-size: 0.95rem;
}

.order-status {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.order-status.active {
    opacity: 1;
}

.spinner {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(229, 138, 168, 0.2);
    border-top-color: var(--accent-strong);
    border-radius: 50%;
    animation: spin 0.9s linear infinite;
    display: none;
}

.order-status.loading .spinner {
    display: inline-block;
}

.checkmark {
    display: none;
    color: #2c8c63;
    font-weight: 600;
    gap: 0.4rem;
    align-items: center;
}

.order-status.success .checkmark {
    display: inline-flex;
}

/* ================== CUSTOMIZER ================== */
.glass-card {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(229, 138, 168, 0.1);
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 32px rgba(229, 138, 168, 0.1);
    backdrop-filter: blur(10px);
}

.customizer-section {
    padding: 80px 5%;
    position: relative;
}

.customizer-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
}

.customizer-form {
    width: 100%;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
}

.form-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    opacity: 0.6;
    margin-bottom: 0.5rem;
}

.customizer-form label {
    font-weight: 600;
    color: #5a4750;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.customizer-form select,
.customizer-form textarea {
    padding: 0.9rem 1.2rem;
    border-radius: var(--radius-sm);
    border: 1.5px solid rgba(229, 138, 168, 0.15);
    background: rgba(255, 255, 255, 0.85);
    font-family: var(--font-body);
    outline: none;
    font-size: 0.95rem;
    transition: all 0.3s;
    resize: none;
}

.customizer-form textarea:focus {
    border-color: var(--accent-color);
    box-shadow: 0 4px 16px rgba(229, 138, 168, 0.12);
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25d366, #20b858) !important;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.25) !important;
    font-family: 'Arial Black', Arial, sans-serif !important;
    font-weight: 900 !important;
}

.whatsapp-btn:hover {
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.35) !important;
}

.wa-icon {
    font-size: 1.2rem;
}

/* ================== FOOTER ================== */
.site-footer {
    background: linear-gradient(180deg, #2c2428, #1a1517);
    color: rgba(255, 255, 255, 0.7);
    padding: 4rem 5% 0;
    margin-top: 2rem;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-color), var(--gold), var(--accent-color), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    height: 55px;
    width: auto;
    object-fit: contain;
    filter: brightness(1.2);
    align-self: flex-start;
}

.footer-tagline {
    font-family: var(--font-accent);
    font-style: italic;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.5;
}

.footer-links h4,
.footer-social h4 {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.2rem;
}

.footer-links a {
    display: block;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    margin-bottom: 0.7rem;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.footer-links a:hover {
    color: var(--accent-light);
    transform: translateX(4px);
}

.social-icons {
    display: flex;
    gap: 0.8rem;
}

.social-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.4s var(--ease-out-expo);
    font-size: 1rem;
}

.social-icon:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(229, 138, 168, 0.4);
}

.footer-bottom {
    text-align: center;
    padding: 1.5rem 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.3);
}

.footer-bottom i {
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    .footer-logo {
        align-self: center;
    }
    .social-icons {
        justify-content: center;
    }
}

/* ================== SCROLL TO TOP ================== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-strong));
    color: white;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s var(--ease-out-expo);
    box-shadow: 0 6px 20px rgba(229, 138, 168, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(229, 138, 168, 0.45);
}

/* ================== LIGHTBOX ================== */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.88);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1200;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: min(90vw, 900px);
    max-height: 80vh;
    border-radius: var(--radius-lg);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 2.5rem;
    color: white;
    cursor: pointer;
    transition: transform 0.3s;
}

.lightbox-close:hover {
    transform: rotate(90deg);
}

/* ================== MISC ================== */
.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.6rem;
}


.product-desc {
    font-size: 0.85rem;
    color: #8d7a82;
    margin-bottom: 1rem;
    line-height: 1.55;
    font-weight: 400;
}

.empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem 2rem;
    color: #b8a5ad;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(229, 138, 168, 0.1);
    border-radius: var(--radius-lg);
    font-size: 1rem;
}

/* ================== ANIMATIONS ================== */
.reveal {
    opacity: 0;
    transform: translateY(25px);
    transition: all 0.8s var(--ease-out-expo);
}

.reveal.in-view {
    opacity: 1;
    transform: translateY(0);
}

.slide-in {
    opacity: 0;
    transform: translateX(-25px);
    transition: all 0.8s var(--ease-out-expo);
}

.slide-in.in-view {
    opacity: 1;
    transform: translateX(0);
}

.product-card.reveal {
    transition-delay: 0s;
}

.ripple::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.3);
    opacity: 0;
    transition: opacity 0.4s;
}

.ripple:active::after {
    opacity: 1;
}

.ripple-effect {
    position: absolute;
    border-radius: 50%;
    transform: scale(0);
    animation: ripple 0.6s linear;
    background: rgba(255, 255, 255, 0.5);
    pointer-events: none;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes slideIn {
    from { opacity: 0; transform: translateX(50px); }
    to   { opacity: 1; transform: translateX(0); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-10px); }
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes ripple {
    to { transform: scale(4); opacity: 0; }
}

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

/* ---- TABLET LANDSCAPE (1024px) ---- */
@media (max-width: 1024px) {
    .hero h1 { font-size: 3.2rem; }
    .hero p  { font-size: 1.05rem; max-width: 420px; }
    .hero-image { max-width: 420px; }
    .logo { max-width: 52%; }
    .logo img:nth-child(2) { max-height: 280px; max-width: 270px; margin-left: 8px; }
    .logo .brand-logo { height: 65px; }
    .nav-links a { margin-left: 1.8rem; font-size: 0.78rem; letter-spacing: 1.5px; }
    .cart-icon { margin-left: 1.8rem; }
    .footer-content { gap: 2rem; }
}

/* ---- TABLET PORTRAIT (768px) ---- */
@media (max-width: 768px) {
    .navbar { height: 65px; padding: 0 3%; }
    .section-title { font-size: 2rem; }
    .hamburger { display: none; }
    .nav-links { display: flex; margin-left: 0.5rem; flex-shrink: 0; }
    .nav-links a { margin-left: 0.6rem; font-size: 0.68rem; letter-spacing: 0.8px; left: 0; }
    .cart-icon { margin-left: 0.5rem; margin-right: 0; font-size: 1.1rem; flex-shrink: 0; }
    .logo { max-width: 44%; overflow: visible; }
    .logo .brand-logo { height: 42px; flex-shrink: 0; }
    .logo img:nth-child(2) { max-height: 190px; max-width: 180px; margin-left: 8px; }

    .hero {
        flex-direction: column-reverse;
        height: auto;
        padding: 90px 6% 2.5rem;
        text-align: center;
    }
    .hero-content { margin-top: 1.5rem; }
    .hero-badge { font-size: 0.68rem; padding: 0.35rem 1rem; margin-bottom: 1.2rem; }
    .hero h1 { font-size: 2.4rem; margin-bottom: 1rem; }
    .hero p  { font-size: 1rem; margin-bottom: 1.8rem; line-height: 1.6; max-width: 100%; }
    .hero-actions { justify-content: center; gap: 0.8rem; }
    .hero-actions .cta-button,
    .hero-actions .ghost-button { padding: 0.85rem 1.6rem; font-size: 0.78rem; }
    .hero-image { transform: translateX(0); margin-bottom: 0.5rem; margin-top: 0; max-height: 320px; max-width: 100%; width: auto; object-fit: contain; border-radius: var(--radius-lg); }
    .hero-image-container { justify-content: center; }

    .shop-section { padding: 3rem 4% 4rem; }
    .section-subtitle { font-size: 0.92rem; padding: 0 1rem; }
    .search-bar { min-width: 200px; padding: 0.7rem 1.2rem; }
    .category-scroll-container { gap: 0.5rem; margin-bottom: 2rem; }
    .category-scroll-btn { width: 36px; height: 36px; font-size: 0.8rem; }
    .category-filter { gap: 0.5rem;  padding: 0.5rem 4% 1rem;}
    .category-btn { padding: 0.5rem 1rem; font-size: 0.78rem; }
    .product-grid { gap: 0.9rem; }
    .product-card { padding: 0.8rem; }
    .product-image { height: 200px; margin-bottom: 0.8rem; }

    .customizer-section { padding: 3.5rem 5%; }
    .customizer-form { padding: 1.8rem 1.5rem; }
    .customizer-form label { font-size: 1rem; }
    .customizer-form textarea { font-size: 0.92rem; padding: 0.85rem 1rem; }
    .customizer-grid { width: 100%; }

    .site-footer { padding: 3rem 6% 0; }
    .cart-sidebar { width: 100%; max-width: 100%; }
    .scroll-top { bottom: 20px; right: 20px; width: 44px; height: 44px; }
    .section-divider svg { height: 50px; }
}

/* ---- LARGE PHONES (480px) ---- */
@media (max-width: 480px) {
    .navbar { 
        height: 58px;
        padding: 0 3%;
     }
    .logo { 
        max-width: 70%;
     }
    .logo .brand-logo {
         position: relative;
          left: -10px; 
          height: 54px;
           flex-shrink: 0; 
        }
    .logo img:nth-child(2) {
         position: relative; 
         left: -40px;
          height: 140px;
           width: 200px; 
           margin-left: 8px;
         }
    .nav-links {
         margin-left: 0.2rem;
         }
    .nav-links a { 
        margin-left: 0.35rem;
        font-size: 0.56rem;
        letter-spacing: 0;
        left: -40px;  
    }
    .cart-icon { 
        margin-left: 0.3rem; 
        margin-right: 0.8rem; 
        font-size: 1.4rem; 
        left: -40px;
     }

    .hero { padding: 80px 5% 2rem; }
    .hero h1 { font-size: 2.1rem; }
    .hero p  { font-size: 0.95rem; margin-bottom: 1.5rem; }
    .hero-image { max-height: 280px; }

    .section-title { font-size: 1.8rem; white-space: nowrap; }
    .section-subtitle { font-size: 0.88rem; }

    .shop-section { padding: 2.5rem 3% 3.5rem; }
    .category-scroll-container { gap: 0.3rem; margin-bottom: 1.5rem; }
    .category-scroll-btn { width: 32px; height: 32px; font-size: 0.75rem; }
    .category-filter { gap: 0.4rem; padding: 0.5rem 3% 1rem; }
    .category-btn { padding: 0.45rem 0.9rem; font-size: 0.75rem; }

    .product-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
    .product-card { padding: 0.7rem; }
    .product-image { height: 180px; margin-bottom: 0.65rem; }
    .product-title { font-size: 0.88rem; margin-bottom: 0.3rem; }
    .product-desc { font-size: 0.76rem; margin-bottom: 0.5rem; }
    .product-price { font-size: 0.9rem; margin-bottom: 0.5rem; }
    .add-btn { padding: 0.6rem; font-size: 0.8rem; }

    .customizer-section { padding: 2.5rem 4%; }
    .customizer-form { padding: 1.5rem 1.2rem; }
    .site-footer { padding: 2.5rem 5% 0; }
    .footer-content { gap: 1.5rem; }
    .footer-tagline { font-size: 0.95rem; }

    .product-modal { width: 95%; max-height: 90vh; }
    .modal-content { padding: 1rem; gap: 0.8rem; }
    .modal-image-container { height: 220px; }
    .modal-info h2 { font-size: 1.3rem; }
    .modal-info p  { font-size: 0.88rem; }
    .modal-price-action { flex-direction: column; gap: 0.8rem; }
    .modal-add-btn { width: 100%; }

    .cart-sidebar { padding: 1.5rem; }
    .cart-header h3 { font-size: 1rem; }
    .cart-item img { width: 55px; height: 55px; }
    .item-title { font-size: 0.82rem; }
    .total-row { font-size: 1.05rem; }

    .lightbox { padding: 1rem; }
    .lightbox-close { top: 15px; right: 20px; font-size: 2rem; }
}

/* ---- SMALL PHONES (390px) ---- */
@media (max-width: 390px) {
    .hero h1 {
         font-size: 1.8rem;
         }
    .hero-badge {
         font-size: 0.6rem;
          padding: 0.3rem 0.8rem;
         }
    .hero-actions {
         flex-direction: column;
          align-items: center;
         }
    .hero-actions .cta-button,
    .hero-actions .ghost-button {
         width: 100%;
        justify-content: center;
         padding: 0.75rem 1.4rem;
          font-size: 0.75rem;
         }

    .logo {
         max-width: 40%;
         }
    .logo img:nth-child(2) {
         position: relative;
         left: -20px; 
         max-height: 140px; 
         width: 110px;
          margin-left: 6px;
         }
    .logo .brand-logo {
         height: 40px;
         }
    .nav-links {
         margin-left: 0.2rem;
         }
    .nav-links a { 
        margin-left: 0.35rem;
        font-size: 0.56rem; 
        letter-spacing: 0;
        left: 5px;
     }
    .cart-icon { 
        margin-left: 0.3rem; 
        margin-right: 0.8rem; 
        font-size: 1.4rem; 
        left: 5px;
     }

    .category-btn { padding: 0.4rem 0.75rem; font-size: 0.7rem; }
    .product-grid { gap: 0.6rem; }
    .product-image { height: 150px; }
    .product-title { font-size: 0.82rem; }
    .product-desc { font-size: 0.72rem; display: -webkit-box; line-clamp: 2; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
    .section-title { font-size: 1.6rem; }
    .modal-image-container { height: 180px; }
    .modal-info h2 { font-size: 1.15rem; }
}

/* ================== MOBILE PERFORMANCE ================== */
@media (max-width: 768px) {
    .navbar,
    .navbar.scrolled,
    .hero-badge,
    .ghost-button,
    .search-bar,
    .category-btn,
    .product-card,
    .cart-overlay,
    .cart-sidebar,
    .glass-card,
    .lightbox,
    .product-modal-overlay,
    .cart-toast {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }
    .navbar.scrolled { background: rgba(255, 247, 249, 0.97); }
    .bg-ornaments .blob,
    .bg-ornaments .petal,
    .bg-ornaments .petal-container,
    .bg-ornaments .bg-noise,
    .bg-ornaments::before { display: none !important; }
    .hero-image-glow { animation: none !important; filter: none !important; display: none; }
    .product-card { box-shadow: 0 2px 8px rgba(229, 138, 168, 0.08); }
    .product-card:hover { transform: none; box-shadow: 0 2px 8px rgba(229, 138, 168, 0.08); }
    body { -webkit-overflow-scrolling: touch; }
    .cart-items { -webkit-overflow-scrolling: touch; }
    .navbar { will-change: background; transform: translateZ(0); }
    .hero-image { will-change: opacity; transform: translateZ(0); }
    .product-card { transition: none; }
    .product-card .product-image { transition: none; }
    .product-card:hover .product-image { transform: none; }
    .cart-overlay { background: rgba(44, 36, 40, 0.4); }
    .product-card::before { display: none; }
}

/* ---- LANDSCAPE PHONES ---- */
@media (max-height: 500px) and (orientation: landscape) {
    .hero { flex-direction: row; height: auto; min-height: 100vh; padding: 80px 5% 2rem; text-align: left; }
    .hero-content { margin-top: 0; }
    .hero-image { max-height: 250px; max-width: 40%; }
    .hero h1 { font-size: 1.8rem; }
    .hero p  { font-size: 0.85rem; }
    .hero-actions { justify-content: flex-start; }
    .product-grid { grid-template-columns: repeat(3, 1fr); }
    .product-image { height: 160px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ================== PRODUCT MODAL ================== */
.product-modal-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1000;
    backdrop-filter: blur(6px);
}

.product-modal-overlay.active { display: block; }

.product-modal {
    display: none;
    position: fixed;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: var(--radius-lg);
    z-index: 1001;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.2);
    animation: slideUp 0.4s var(--ease-out-expo);
}

.product-modal.active { display: block; }

@keyframes slideUp {
    from { transform: translate(-50%, -40%); opacity: 0; }
    to   { transform: translate(-50%, -50%); opacity: 1; }
}

.product-modal .modal-close {
    position: absolute;
    top: 15px; right: 15px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-color);
    width: 38px; height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    border-radius: 50%;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.product-modal .modal-close:hover {
    background: var(--accent-light);
    color: var(--accent-strong);
    transform: rotate(90deg);
}

.modal-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.5rem;
}

.modal-image-container {
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fdf6f2 0%, #fef6f8 100%);
}

.modal-product-image {
    width: 100%; height: 100%;
    object-fit: contain;
    transition: transform 0.5s var(--ease-out-expo);
}

.modal-product-image:hover { transform: scale(1.05); }

.modal-info {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    padding: 0 0.5rem;
}

.modal-info h2 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--text-color);
    margin: 0;
}

.modal-info p {
    color: #8d7a82;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    font-weight: 300;
}

.modal-price-action {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(229, 138, 168, 0.1);
}

.modal-product-price {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--gold);
    font-family: var(--font-heading);
}

.modal-add-btn {
    padding: 0.8rem 2rem;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-strong));
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s var(--ease-out-expo);
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    letter-spacing: 0.5px;
}

.modal-add-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(229, 138, 168, 0.35); }

@media (max-width: 768px) {
    .product-modal { width: 95%; max-height: 90vh; }
    .modal-content { padding: 1.2rem; gap: 1rem; }
    .modal-image-container { height: 250px; }
    .modal-info h2 { font-size: 1.4rem; }
    .modal-price-action { flex-direction: column; gap: 1rem; }
    .modal-add-btn { width: 100%; }
}

/* ================== TOAST ================== */
#toast-container {
    position: fixed;
    top: 90px; right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    pointer-events: none;
}

.cart-toast {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid rgba(229, 138, 168, 0.15);
    border-radius: var(--radius-md);
    padding: 0.85rem 1rem;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(229, 138, 168, 0.15);
    backdrop-filter: blur(12px);
    pointer-events: auto;
    transform: translateX(120%);
    opacity: 0;
    transition: all 0.45s var(--ease-out-expo);
    max-width: 380px;
    min-width: 280px;
}

.cart-toast.show    { transform: translateX(0); opacity: 1; }
.cart-toast.hiding  { transform: translateX(120%); opacity: 0; }

.toast-icon { flex-shrink: 0; }
.toast-icon img { width: 48px; height: 48px; border-radius: var(--radius-sm); object-fit: cover; border: 1px solid rgba(229, 138, 168, 0.1); }

.toast-body { flex: 1; display: flex; align-items: center; gap: 0.5rem; min-width: 0; }
.toast-check { color: #2ecc71; font-size: 1rem; flex-shrink: 0; }
.toast-text { font-size: 0.82rem; color: var(--text-color); line-height: 1.4; overflow: hidden; text-overflow: ellipsis; }
.toast-text strong { color: #3a3236; }

.toast-view-cart {
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-strong));
    color: white;
    border: none;
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s var(--ease-out-expo);
    font-family: var(--font-body);
    letter-spacing: 0.3px;
    text-transform: uppercase;
    white-space: nowrap;
}

.toast-view-cart:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(229, 138, 168, 0.35); }

.toast-close {
    flex-shrink: 0;
    background: none;
    border: none;
    color: #b8a5ad;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0 0.2rem;
    line-height: 1;
    transition: color 0.2s;
}

.toast-close:hover { color: var(--accent-strong); }

/* ================== QUANTITY CONTROLS (MODAL) ================== */
.modal-qty-selector {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.8rem 0;
}

.modal-qty-label { font-size: 0.95rem; font-weight: 600; color: #5a4750; }

.modal-qty-controls,
.cart-qty-controls {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    contain: layout;
}

.qty-btn {
    width: 32px; height: 32px;
    border-radius: 50%;
    border: 1.5px solid rgba(229, 138, 168, 0.3);
    background: #fff;
    color: var(--accent-strong);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    user-select: none;
    -webkit-user-select: none;
    -webkit-tap-highlight-color: transparent;
    outline: none;
    touch-action: manipulation;
    flex-shrink: 0;
    -webkit-appearance: none;
    appearance: none;
    transition: none;
}

.qty-btn:hover,
.qty-btn:active,
.qty-btn:focus {
    background: #fff;
    color: var(--accent-strong);
    border-color: rgba(229, 138, 168, 0.3);
    transform: none;
    box-shadow: none;
    outline: none;
}

.qty-value {
    min-width: 32px;
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
    font-family: var(--font-body);
}

/* ================== QUANTITY CONTROLS (CART) ================== */
.cart-qty-controls { margin-top: 0.5rem; gap: 0.4rem; flex-wrap: wrap; }
.cart-qty-controls .qty-btn { width: 26px; height: 26px; font-size: 0.6rem; }
.cart-qty-controls .qty-value { min-width: 24px; font-size: 0.85rem; }

.cart-qty-controls .item-remove {
    margin-left: auto;
    background: none;
    border: none;
    color: #b8a5ad;
    font-size: 0.72rem;
    cursor: pointer;
    transition: color 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
}

.cart-qty-controls .item-remove:hover { color: #e74c3c; background: rgba(231, 76, 60, 0.06); }

/* ================== SELECTION & SCROLLBAR ================== */
::selection { background: var(--accent-light); color: var(--text-color); }

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #fdf6f2; }
::-webkit-scrollbar-thumb { background: linear-gradient(180deg, var(--accent-color), var(--accent-light)); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent-strong); }

/* ================== TOAST RESPONSIVE ================== */
@media (max-width: 768px) {
    #toast-container { top: 80px; right: 10px; left: 10px; }
    .cart-toast { max-width: 100%; min-width: 0; }
}
/* ================== PREBOOK BUTTON STYLES ================== */
.prebook-btn {
    background: linear-gradient(135deg, var(--gold-whisper), #b8860b) !important;
    color: white !important;
    box-shadow: 0 4px 15px rgba(184, 134, 11, 0.3) !important;
    border: none;
    font-weight: 600;
}

.prebook-btn:hover {
    box-shadow: 0 6px 20px rgba(184, 134, 11, 0.4) !important;
    transform: translateY(-2px);
    background: linear-gradient(135deg, #b8860b, var(--gold-whisper)) !important;
}

.prebook-modal-btn {
    background: linear-gradient(135deg, var(--gold-whisper), #b8860b) !important;
    color: white !important;
    width: 100%;
    margin-top: 1rem;
    padding: 1rem;
    border-radius: var(--radius-md);
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s var(--ease-out-expo);
}

.prebook-modal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(184, 134, 11, 0.4);
}