:root {
    --rose-950: #54263b;
    --rose-800: #84405f;
    --rose-650: #b64f78;
    --rose-500: #d36c95;
    --rose-350: #eaa0bc;
    --rose-200: #f7c9d9;
    --rose-100: #fce5ed;
    --cream: #fff9fb;
    --shadow: 0 28px 90px rgba(132, 64, 95, .19);
}

* { box-sizing: border-box; }
html { min-height: 100%; background: #fce9ef; }
body {
    margin: 0;
    min-height: 100svh;
    color: var(--rose-950);
    font-family: "Segoe UI", Tahoma, Arial, sans-serif;
    overflow-x: hidden;
    background:
        radial-gradient(circle at 12% 6%, rgba(255,255,255,.95), transparent 31%),
        radial-gradient(circle at 92% 16%, rgba(238,155,188,.36), transparent 34%),
        radial-gradient(circle at 50% 102%, rgba(190,87,129,.22), transparent 40%),
        linear-gradient(155deg, #fff8fb 0%, #fce8ef 48%, #f8d7e4 100%);
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: .36;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.055'/%3E%3C/svg%3E");
    mix-blend-mode: multiply;
}

a { color: inherit; }

.preloader {
    position: fixed;
    z-index: 9999;
    inset: 0;
    display: grid;
    place-content: center;
    gap: 18px;
    background:
        radial-gradient(circle at center, rgba(255,255,255,.94), rgba(252,231,239,.96) 46%, #f8d8e5 100%);
    transition: opacity .55s ease, visibility .55s ease;
}
.preloader.is-hidden { opacity: 0; visibility: hidden; }
.moon-loader {
    position: relative;
    width: 118px;
    height: 118px;
    margin: auto;
    display: grid;
    place-items: center;
}
.moon-loader img {
    width: 88px;
    height: 88px;
    object-fit: contain;
    filter: drop-shadow(0 12px 20px rgba(143,60,93,.25));
    animation: moonFloat 1.8s ease-in-out infinite;
}
.moon-orbit {
    position: absolute;
    inset: 2px;
    border: 1px solid rgba(190,79,121,.25);
    border-top-color: rgba(168,65,105,.82);
    border-radius: 50%;
    animation: orbit 1.5s linear infinite;
}
.moon-orbit::after {
    content: "✦";
    position: absolute;
    top: 4px;
    left: 17px;
    color: var(--rose-650);
    font-size: 13px;
}
.loading-text {
    direction: ltr;
    text-align: center;
    font: 600 11px/1 Georgia, serif;
    letter-spacing: .34em;
    color: rgba(132,64,95,.78);
    animation: letterPulse 1.8s ease-in-out infinite;
}
.loader-stars i {
    position: absolute;
    display: block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: white;
    box-shadow: 0 0 12px rgba(190,79,121,.75);
    animation: twinkle 1.6s ease-in-out infinite;
}
.loader-stars i:nth-child(1){transform:translate(-72px,-38px);animation-delay:.1s}
.loader-stars i:nth-child(2){transform:translate(70px,-56px);animation-delay:.4s}
.loader-stars i:nth-child(3){transform:translate(-54px,64px);animation-delay:.7s}
.loader-stars i:nth-child(4){transform:translate(82px,52px);animation-delay:1s}
.loader-stars i:nth-child(5){transform:translate(0,-90px);animation-delay:1.3s}

.ambient { position: fixed; inset: 0; pointer-events: none; overflow: hidden; }
.blob { position: absolute; border-radius: 50%; filter: blur(6px); opacity: .6; animation: drift 11s ease-in-out infinite alternate; }
.blob-one { width: 270px; height: 270px; top: -80px; right: -95px; background: rgba(231,139,174,.35); }
.blob-two { width: 240px; height: 240px; bottom: -90px; left: -95px; background: rgba(174,76,116,.17); animation-delay: -4s; }
.blob-three { width: 105px; height: 105px; top: 43%; left: -45px; background: rgba(255,255,255,.7); animation-delay: -7s; }
.spark { position: absolute; color: rgba(176,71,112,.42); animation: sparkle 3.6s ease-in-out infinite; }
.s1 { top: 12%; left: 10%; font-size: 19px; }
.s2 { top: 32%; right: 8%; font-size: 13px; animation-delay: 1.2s; }
.s3 { bottom: 16%; left: 13%; font-size: 15px; animation-delay: 2.1s; }

.page-shell {
    position: relative;
    z-index: 1;
    min-height: 100svh;
    width: min(100%, 620px);
    margin: 0 auto;
    padding: max(22px, env(safe-area-inset-top)) 18px max(28px, env(safe-area-inset-bottom));
    display: flex;
    align-items: center;
}

.profile-card {
    width: 100%;
    position: relative;
    padding: 28px 18px 20px;
    border: 1px solid rgba(255,255,255,.72);
    border-radius: 38px;
    background: linear-gradient(160deg, rgba(255,255,255,.68), rgba(255,247,250,.43));
    box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,.85);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    overflow: hidden;
}
.profile-card::before {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    top: -160px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(225,111,153,.2);
    filter: blur(20px);
}

.logo-wrap {
    position: relative;
    width: min(58vw, 235px);
    aspect-ratio: 1;
    margin: 0 auto 20px;
}
.logo-halo {
    position: absolute;
    inset: -12px;
    border-radius: 39px;
    border: 1px solid rgba(200,93,137,.23);
    background: radial-gradient(circle, rgba(255,255,255,.54), transparent 68%);
    animation: halo 3s ease-in-out infinite;
}
.brand-logo {
    position: relative;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 31px;
    box-shadow: 0 22px 55px rgba(132,64,95,.2), 0 5px 16px rgba(132,64,95,.12);
    border: 1px solid rgba(255,255,255,.75);
}
.logo-star { position: absolute; color: white; text-shadow: 0 0 13px var(--rose-500); animation: sparkle 2.8s ease-in-out infinite; }
.star-a { top: 8%; right: -5px; font-size: 18px; }
.star-b { left: -1px; bottom: 16%; font-size: 13px; animation-delay: 1.15s; }

.brand-copy { text-align: center; margin-bottom: 22px; }
.eyebrow {
    margin: 0 0 6px;
    direction: ltr;
    font: 600 11px/1.2 Georgia, serif;
    letter-spacing: .36em;
    color: var(--rose-650);
}
.brand-copy h1 {
    margin: 0;
    font-size: clamp(20px, 5vw, 25px);
    font-weight: 650;
    letter-spacing: .01em;
}
.ornament { display: flex; align-items: center; justify-content: center; gap: 9px; margin-top: 12px; color: var(--rose-500); }
.ornament span { width: 45px; height: 1px; background: linear-gradient(90deg, transparent, currentColor); }
.ornament span:last-child { transform: scaleX(-1); }
.ornament b { font-size: 19px; font-weight: 400; }

.links { display: grid; gap: 13px; }
.link-button {
    --accent: #C85D89;
    --button-text: #fff;
    position: relative;
    min-height: 66px;
    padding: 11px 16px;
    border-radius: 22px;
    display: grid;
    grid-template-columns: 42px 1fr 42px;
    align-items: center;
    gap: 9px;
    color: var(--button-text);
    text-decoration: none;
    isolation: isolate;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(255,255,255,.26), transparent 44%),
        var(--accent);
    border: 1px solid rgba(255,255,255,.49);
    box-shadow: 0 13px 28px rgba(105,39,65,.15), inset 0 1px 0 rgba(255,255,255,.3);
    transition: transform .28s cubic-bezier(.2,.8,.2,1), box-shadow .28s ease, filter .28s ease;
    -webkit-tap-highlight-color: transparent;
}
.link-button::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(105deg, transparent 15%, rgba(255,255,255,.34) 43%, transparent 68%);
    transform: translateX(-120%);
    transition: transform .72s ease;
}
.link-button::after {
    content: "";
    position: absolute;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    left: -55px;
    top: -63px;
    background: rgba(255,255,255,.13);
}
.link-button:hover, .link-button:focus-visible {
    transform: translateY(-4px) scale(1.012);
    box-shadow: 0 19px 38px rgba(105,39,65,.22), inset 0 1px 0 rgba(255,255,255,.4);
    filter: saturate(1.08);
    outline: none;
}
.link-button:hover::before, .link-button:focus-visible::before { transform: translateX(120%); }
.link-button:active { transform: translateY(-1px) scale(.992); }
.button-icon, .button-arrow {
    width: 38px;
    height: 38px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: rgba(255,255,255,.18);
    border: 1px solid rgba(255,255,255,.22);
    font-size: 19px;
    line-height: 1;
    backdrop-filter: blur(5px);
}
.button-arrow { grid-column: 3; font-size: 17px; transition: transform .25s ease; }
.link-button:hover .button-arrow { transform: translate(-2px, -2px); }
.button-label {
    grid-column: 2;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: .01em;
    text-shadow: 0 1px 1px rgba(69,23,40,.1);
}
.link-button.no-icon .button-label { grid-column: 1 / 3; padding-right: 42px; }
.button-glow {
    position: absolute;
    right: 12%;
    top: -28px;
    width: 110px;
    height: 60px;
    background: rgba(255,255,255,.22);
    filter: blur(25px);
    border-radius: 50%;
    pointer-events: none;
}
.ripple {
    position: absolute;
    border-radius: 50%;
    transform: scale(0);
    background: rgba(255,255,255,.42);
    animation: ripple .62s linear;
    pointer-events: none;
}

.empty-state {
    min-height: 142px;
    border-radius: 24px;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 6px;
    text-align: center;
    background: rgba(255,255,255,.47);
    border: 1px dashed rgba(183,76,117,.32);
    color: var(--rose-800);
}
.empty-moon { font-size: 28px; animation: moonFloat 2.5s ease-in-out infinite; }
.empty-state strong { font-size: 18px; }
.empty-state small { opacity: .72; }

.footer-note {
    direction: ltr;
    margin-top: 21px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    color: rgba(84,38,59,.52);
    font-size: 11px;
    letter-spacing: .06em;
}
.footer-note b { color: var(--rose-500); animation: sparkle 2.6s ease-in-out infinite; }

.reveal { opacity: 0; transform: translateY(18px) scale(.985); }
body.is-ready .reveal { animation: reveal .7s cubic-bezier(.2,.8,.2,1) forwards; animation-delay: var(--delay, 0s); }

@keyframes reveal { to { opacity: 1; transform: none; } }
@keyframes orbit { to { transform: rotate(360deg); } }
@keyframes moonFloat { 0%,100% { transform: translateY(0) rotate(-2deg); } 50% { transform: translateY(-6px) rotate(2deg); } }
@keyframes letterPulse { 0%,100% { opacity: .54; } 50% { opacity: 1; } }
@keyframes twinkle { 0%,100% { opacity: .25; transform: scale(.7); } 50% { opacity: 1; transform: scale(1.3); } }
@keyframes drift { to { transform: translate3d(25px,-18px,0) scale(1.08); } }
@keyframes sparkle { 0%,100% { opacity: .35; transform: scale(.8) rotate(0); } 50% { opacity: 1; transform: scale(1.15) rotate(16deg); } }
@keyframes halo { 0%,100% { transform: scale(.98); opacity: .58; } 50% { transform: scale(1.025); opacity: .95; } }
@keyframes ripple { to { transform: scale(4.2); opacity: 0; } }

@media (min-width: 700px) {
    .page-shell { padding-block: 38px; }
    .profile-card { padding: 34px 31px 25px; }
    .logo-wrap { width: 230px; }
}

@media (max-width: 390px) {
    .page-shell { padding-inline: 11px; }
    .profile-card { border-radius: 30px; padding-inline: 13px; }
    .logo-wrap { width: min(61vw, 214px); }
    .link-button { min-height: 62px; border-radius: 20px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
    .reveal { opacity: 1; transform: none; }
}

/* ===== Nour Orkeda catalog experience ===== */
.catalog-link {
    --button-text: #fff;
    background:
        radial-gradient(circle at 78% 15%, rgba(255,255,255,.48), transparent 27%),
        linear-gradient(125deg, #8d3d60 0%, #c75b87 45%, #e89ab9 100%);
    box-shadow:
        0 18px 38px rgba(116,45,75,.28),
        0 0 0 1px rgba(255,255,255,.32) inset,
        0 0 25px rgba(222,117,158,.28);
    animation: catalogPulse 2.7s ease-in-out infinite;
}
.catalog-link::before {
    background: linear-gradient(105deg, transparent 12%, rgba(255,255,255,.68) 43%, transparent 70%);
    transform: translateX(-135%);
    animation: catalogShine 2.25s cubic-bezier(.4,0,.2,1) infinite;
}
.catalog-link::after {
    width: 190px;
    height: 190px;
    top: -137px;
    left: -72px;
    background: rgba(255,255,255,.14);
}
.catalog-icon {
    font-family: Georgia, serif;
    font-size: 26px;
    transform: rotate(45deg);
    text-shadow: 0 0 11px rgba(255,255,255,.72);
}
.catalog-sparkles { position: absolute; inset: 0; pointer-events: none; }
.catalog-sparkles i {
    position: absolute;
    color: #fff;
    font-style: normal;
    text-shadow: 0 0 12px rgba(255,255,255,.9);
    animation: catalogTwinkle 1.8s ease-in-out infinite;
}
.catalog-sparkles i:nth-child(1) { top: 9px; right: 18%; font-size: 10px; }
.catalog-sparkles i:nth-child(2) { bottom: 8px; left: 19%; font-size: 8px; animation-delay: .58s; }
.catalog-sparkles i:nth-child(3) { top: 12px; left: 8%; font-size: 7px; animation-delay: 1.05s; }

body.catalog-open,
body.order-open { overflow: hidden; }

.catalog-view {
    position: fixed;
    z-index: 120;
    inset: 0;
    visibility: hidden;
    opacity: 0;
    transform: translateY(18px) scale(.99);
    pointer-events: none;
    background:
        radial-gradient(circle at 92% 3%, rgba(231,142,177,.45), transparent 28%),
        radial-gradient(circle at 5% 35%, rgba(255,255,255,.95), transparent 32%),
        linear-gradient(160deg, #fff9fb 0%, #fbe8ef 52%, #f5d1df 100%);
    transition: opacity .45s ease, transform .55s cubic-bezier(.2,.8,.2,1), visibility .45s;
}
.catalog-view::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: .32;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.78' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.055'/%3E%3C/svg%3E");
    mix-blend-mode: multiply;
}
.catalog-view.is-open {
    visibility: visible;
    opacity: 1;
    transform: none;
    pointer-events: auto;
}
.catalog-scroll {
    position: relative;
    height: 100%;
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-width: thin;
    scrollbar-color: rgba(183,78,119,.35) transparent;
    padding-bottom: max(34px, env(safe-area-inset-bottom));
}
.catalog-header {
    position: sticky;
    z-index: 15;
    top: 0;
    width: min(1180px, 100%);
    min-height: 76px;
    margin: 0 auto;
    padding: max(12px, env(safe-area-inset-top)) 20px 12px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 13px;
    background: linear-gradient(180deg, rgba(255,249,251,.92), rgba(255,249,251,.69), transparent);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}
.catalog-close,
.order-close {
    width: 43px;
    height: 43px;
    border: 1px solid rgba(166,73,110,.18);
    border-radius: 15px;
    display: grid;
    place-items: center;
    color: var(--rose-950);
    background: rgba(255,255,255,.72);
    box-shadow: 0 8px 25px rgba(91,33,57,.09);
    font: 300 28px/1 Arial, sans-serif;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: transform .22s ease, background .22s ease;
}
.catalog-close:hover,
.catalog-close:focus-visible,
.order-close:hover,
.order-close:focus-visible { transform: rotate(6deg) scale(1.04); background: #fff; outline: none; }
.catalog-brand { min-width: 0; display: flex; justify-content: center; align-items: center; gap: 8px; }
.catalog-brand img { width: 40px; height: 40px; object-fit: contain; filter: drop-shadow(0 8px 10px rgba(119,44,74,.18)); }
.catalog-brand div { display: grid; gap: 2px; text-align: right; }
.catalog-brand span { direction: ltr; font: 600 9px/1 Georgia, serif; letter-spacing: .22em; color: var(--rose-650); }
.catalog-brand strong { font-size: 16px; }
.catalog-count {
    min-width: 60px;
    text-align: center;
    padding: 8px 10px;
    border-radius: 999px;
    color: var(--rose-800);
    background: rgba(255,255,255,.68);
    border: 1px solid rgba(190,79,121,.14);
    font-size: 11px;
    white-space: nowrap;
}

.catalog-hero {
    position: relative;
    width: min(1080px, calc(100% - 32px));
    min-height: 320px;
    margin: 18px auto 35px;
    padding: clamp(32px, 6vw, 70px);
    border-radius: clamp(30px, 5vw, 52px);
    overflow: hidden;
    isolation: isolate;
    background:
        linear-gradient(115deg, rgba(88,35,57,.96), rgba(141,59,94,.92) 48%, rgba(214,107,149,.82)),
        #84405f;
    color: #fff;
    box-shadow: 0 35px 90px rgba(102,39,65,.23), inset 0 1px 0 rgba(255,255,255,.25);
}
.catalog-hero::before {
    content: "";
    position: absolute;
    z-index: -1;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    top: -285px;
    left: -170px;
    border: 1px solid rgba(255,255,255,.17);
    box-shadow: 0 0 0 55px rgba(255,255,255,.035), 0 0 0 115px rgba(255,255,255,.025);
}
.catalog-hero::after {
    content: "N";
    position: absolute;
    z-index: -1;
    left: 5%;
    bottom: -23%;
    color: rgba(255,255,255,.055);
    font: 700 340px/1 Georgia, serif;
}
.hero-kicker { direction: ltr; display: block; margin-bottom: 14px; font: 600 10px/1 Georgia, serif; letter-spacing: .32em; opacity: .72; }
.catalog-hero h2 { max-width: 660px; margin: 0; font-size: clamp(38px, 7vw, 74px); line-height: 1.07; font-weight: 760; letter-spacing: -.035em; }
.catalog-hero h2 em { color: #f8cadb; font-family: Georgia, "Times New Roman", serif; font-weight: 400; }
.catalog-hero p { max-width: 520px; margin: 22px 0 0; color: rgba(255,255,255,.77); line-height: 1.85; font-size: 14px; }
.hero-orbit {
    position: absolute;
    width: clamp(142px, 21vw, 230px);
    height: clamp(142px, 21vw, 230px);
    left: clamp(18px, 6vw, 70px);
    top: 50%;
    transform: translateY(-50%);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 50%;
    display: grid;
    place-items: center;
    animation: heroOrbitFloat 5s ease-in-out infinite;
}
.hero-orbit::before,
.hero-orbit::after { content: ""; position: absolute; border: 1px solid rgba(255,255,255,.1); border-radius: 50%; }
.hero-orbit::before { inset: 17px; }
.hero-orbit::after { inset: -17px; }
.hero-orbit img { width: 67%; height: 67%; object-fit: contain; filter: brightness(1.17) drop-shadow(0 20px 26px rgba(50,15,30,.3)); }
.hero-orbit i { position: absolute; right: 7%; top: 5%; font-style: normal; color: #fff; animation: catalogTwinkle 1.8s ease-in-out infinite; }

.product-grid {
    width: min(1080px, calc(100% - 32px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(19px, 3vw, 34px);
}
.product-card {
    position: relative;
    min-width: 0;
    border: 1px solid rgba(255,255,255,.88);
    border-radius: clamp(28px, 4vw, 40px);
    overflow: hidden;
    background: rgba(255,255,255,.72);
    box-shadow: 0 25px 70px rgba(104,43,67,.13), inset 0 1px 0 rgba(255,255,255,.95);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transition: transform .32s cubic-bezier(.2,.8,.2,1), box-shadow .32s ease;
}
.product-card:hover { transform: translateY(-6px); box-shadow: 0 34px 85px rgba(104,43,67,.19); }
.product-gallery { position: relative; overflow: hidden; background: #f5dce6; aspect-ratio: 4 / 5; }
.gallery-track {
    width: 100%;
    height: 100%;
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    direction: ltr;
    overscroll-behavior-x: contain;
}
.gallery-track::-webkit-scrollbar { display: none; }
.product-slide { min-width: 100%; height: 100%; scroll-snap-align: start; background: #f8e9ef; }
.product-slide img { width: 100%; height: 100%; display: block; object-fit: cover; user-select: none; -webkit-user-drag: none; }
.placeholder-slide img { object-fit: contain; padding: 16%; opacity: .8; }
.look-number {
    position: absolute;
    top: 17px;
    right: 17px;
    padding: 8px 11px;
    border-radius: 999px;
    direction: ltr;
    color: #fff;
    background: rgba(69,24,43,.42);
    border: 1px solid rgba(255,255,255,.38);
    backdrop-filter: blur(10px);
    font: 600 9px/1 Georgia, serif;
    letter-spacing: .16em;
}
.gallery-arrow {
    position: absolute;
    z-index: 2;
    top: 50%;
    width: 39px;
    height: 39px;
    border: 1px solid rgba(255,255,255,.48);
    border-radius: 50%;
    display: grid;
    place-items: center;
    transform: translateY(-50%);
    color: #fff;
    background: rgba(69,24,43,.35);
    backdrop-filter: blur(8px);
    font: 300 27px/1 Arial, sans-serif;
    cursor: pointer;
    opacity: .85;
    transition: opacity .2s ease, transform .2s ease;
}
.gallery-arrow:hover { opacity: 1; transform: translateY(-50%) scale(1.06); }
.gallery-arrow.prev { left: 13px; }
.gallery-arrow.next { right: 13px; }
.gallery-dots {
    position: absolute;
    z-index: 3;
    left: 50%;
    bottom: 14px;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    direction: ltr;
    padding: 6px 8px;
    border-radius: 999px;
    background: rgba(68,22,41,.25);
    backdrop-filter: blur(8px);
}
.gallery-dots button { width: 6px; height: 6px; padding: 0; border: 0; border-radius: 50%; background: rgba(255,255,255,.52); cursor: pointer; transition: width .22s ease, background .22s ease; }
.gallery-dots button.active { width: 19px; border-radius: 99px; background: #fff; }

.product-copy { padding: clamp(19px, 3vw, 28px); }
.product-heading { display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; }
.product-label { display: block; direction: ltr; margin-bottom: 7px; color: var(--rose-650); font: 600 8px/1 Georgia, serif; letter-spacing: .2em; }
.product-heading h3 { margin: 0; font-size: clamp(21px, 3vw, 29px); line-height: 1.25; }
.product-price { flex: 0 0 auto; padding: 9px 11px; border-radius: 13px; background: #f8e0e9; color: var(--rose-800); font-size: 14px; direction: ltr; white-space: nowrap; }
.product-description { margin: 15px 0 19px; color: #795666; font-size: 13px; line-height: 1.85; }
.order-button,
.confirm-whatsapp {
    width: 100%;
    min-height: 55px;
    padding: 10px 15px;
    border: 0;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: #fff;
    text-decoration: none;
    background:
        linear-gradient(135deg, rgba(255,255,255,.16), transparent 46%),
        linear-gradient(125deg, #7a3451, #bd527c 56%, #db7fa2);
    box-shadow: 0 15px 28px rgba(133,51,83,.23), inset 0 1px 0 rgba(255,255,255,.24);
    font: 750 14px/1.2 inherit;
    cursor: pointer;
    transition: transform .25s ease, box-shadow .25s ease;
}
.order-button:hover,
.order-button:focus-visible,
.confirm-whatsapp:hover,
.confirm-whatsapp:focus-visible { transform: translateY(-3px); box-shadow: 0 20px 35px rgba(133,51,83,.3); outline: none; }
.order-button i { width: 34px; height: 34px; border-radius: 12px; display: grid; place-items: center; background: rgba(255,255,255,.18); font-style: normal; }
.order-button.disabled { opacity: .55; cursor: not-allowed; box-shadow: none; }
.order-button.disabled:hover { transform: none; }

.catalog-empty {
    width: min(720px, calc(100% - 32px));
    margin: 35px auto 70px;
    padding: 55px 20px;
    border: 1px dashed rgba(184,78,120,.34);
    border-radius: 34px;
    display: grid;
    place-items: center;
    text-align: center;
    background: rgba(255,255,255,.58);
}
.catalog-empty img { width: 100px; height: 100px; object-fit: contain; margin-bottom: 13px; filter: drop-shadow(0 13px 20px rgba(128,52,82,.16)); }
.catalog-empty strong { font-size: 22px; }
.catalog-empty p { margin: 8px 0 0; color: var(--rose-800); opacity: .7; }
.catalog-footer { padding: 70px 20px 28px; display: grid; place-items: center; text-align: center; color: var(--rose-800); }
.catalog-footer img { width: 62px; height: 62px; object-fit: contain; opacity: .82; }
.catalog-footer span { direction: ltr; margin-top: 5px; font: 600 10px/1 Georgia, serif; letter-spacing: .32em; }
.catalog-footer small { margin-top: 8px; opacity: .58; font-family: Georgia, serif; letter-spacing: .05em; }

.order-modal {
    position: fixed;
    z-index: 250;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 18px;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease, visibility .3s;
}
.order-modal.is-open { visibility: visible; opacity: 1; pointer-events: auto; }
.order-backdrop { position: absolute; inset: 0; background: rgba(65,22,41,.52); backdrop-filter: blur(11px); -webkit-backdrop-filter: blur(11px); }
.order-dialog {
    position: relative;
    width: min(100%, 430px);
    padding: 31px 25px 24px;
    border: 1px solid rgba(255,255,255,.9);
    border-radius: 32px;
    text-align: center;
    background:
        radial-gradient(circle at 50% 0, rgba(236,151,183,.25), transparent 35%),
        rgba(255,249,251,.96);
    box-shadow: 0 35px 100px rgba(65,22,41,.28);
    transform: translateY(18px) scale(.96);
    transition: transform .38s cubic-bezier(.2,.8,.2,1);
}
.order-modal.is-open .order-dialog { transform: none; }
.order-close { position: absolute; top: 13px; left: 13px; width: 37px; height: 37px; border-radius: 13px; font-size: 24px; }
.order-moon { position: relative; width: 92px; height: 92px; margin: 0 auto 6px; display: grid; place-items: center; }
.order-moon::before { content: ""; position: absolute; inset: 3px; border: 1px solid rgba(191,80,122,.2); border-radius: 50%; animation: orbit 7s linear infinite; }
.order-moon img { width: 72px; height: 72px; object-fit: contain; filter: drop-shadow(0 12px 17px rgba(128,50,81,.2)); }
.order-moon span { position: absolute; top: 7px; right: 5px; color: var(--rose-500); animation: catalogTwinkle 1.5s ease-in-out infinite; }
.order-kicker { direction: ltr; margin: 0 0 7px; color: var(--rose-650); font: 600 9px/1 Georgia, serif; letter-spacing: .27em; }
.order-dialog h2 { margin: 0; font-size: 26px; }
.order-dialog > p:not(.order-kicker) { margin: 11px auto 15px; max-width: 310px; color: #80606e; font-size: 13px; line-height: 1.7; }
.order-product-summary { margin: 0 0 18px; padding: 14px; display: grid; gap: 6px; border: 1px solid #eed8e1; border-radius: 18px; background: #fff; }
.order-product-summary strong { font-size: 17px; }
.order-product-summary span { direction: ltr; color: var(--rose-650); font-weight: 800; font-size: 13px; }
.confirm-whatsapp { justify-content: center; gap: 10px; }
.cancel-order { margin-top: 8px; padding: 10px 14px; border: 0; color: #8a6072; background: transparent; font: 600 12px inherit; cursor: pointer; }

@keyframes catalogShine {
    0%, 24% { transform: translateX(-135%); }
    62%, 100% { transform: translateX(140%); }
}
@keyframes catalogPulse {
    0%, 100% { transform: translateY(0); box-shadow: 0 18px 38px rgba(116,45,75,.25), 0 0 0 1px rgba(255,255,255,.32) inset, 0 0 20px rgba(222,117,158,.22); }
    50% { transform: translateY(-2px); box-shadow: 0 22px 43px rgba(116,45,75,.31), 0 0 0 1px rgba(255,255,255,.42) inset, 0 0 34px rgba(222,117,158,.4); }
}
@keyframes catalogTwinkle { 0%,100% { opacity: .25; transform: scale(.7) rotate(0); } 50% { opacity: 1; transform: scale(1.25) rotate(22deg); } }
@keyframes heroOrbitFloat { 0%,100% { transform: translateY(-50%) rotate(-2deg); } 50% { transform: translateY(calc(-50% - 9px)) rotate(2deg); } }

@media (max-width: 780px) {
    .catalog-header { padding-inline: 13px; }
    .catalog-count { font-size: 10px; min-width: 55px; }
    .catalog-hero { min-height: 345px; padding: 37px 25px 155px; margin-top: 10px; }
    .catalog-hero h2 { font-size: clamp(36px, 11vw, 53px); }
    .catalog-hero p { font-size: 13px; }
    .hero-orbit { width: 150px; height: 150px; top: auto; bottom: -4px; left: 28px; transform: none; }
    .catalog-hero::after { font-size: 230px; bottom: -14%; }
    .product-grid { grid-template-columns: 1fr; width: min(610px, calc(100% - 20px)); gap: 22px; }
    .product-card:hover { transform: none; }
    .gallery-arrow { display: none; }
    .product-gallery { aspect-ratio: 4 / 5.15; }
    .product-copy { padding: 20px 18px 19px; }
    .product-heading { align-items: center; }
    .product-heading h3 { font-size: 23px; }
}

@media (max-width: 390px) {
    .catalog-brand img { width: 34px; height: 34px; }
    .catalog-brand strong { font-size: 14px; }
    .catalog-close { width: 39px; height: 39px; }
    .catalog-hero { width: calc(100% - 18px); border-radius: 29px; padding-inline: 20px; }
    .product-heading { display: grid; }
    .product-price { justify-self: start; }
    .order-dialog { padding-inline: 18px; border-radius: 27px; }
}

@media (prefers-reduced-motion: reduce) {
    .catalog-link,
    .catalog-link::before,
    .catalog-sparkles i,
    .hero-orbit,
    .order-moon::before { animation: none !important; }
}
