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

:root {
    --cream: #fdf5ef;
    --pink-lt: #f0c8e0;
    --pink-md: #e89ccc;
    --pink-dk: #d4538e;
    --rose: #c0306a;
    --lav: #ddb8e8;
    --lav-lt: #f2e4f8;
    --text: #3a1a2e;
    --muted: #7a4a65;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Comfortaa', sans-serif;
    background: var(--cream);
    color: var(--text);
    overflow-x: hidden;
}

/* ── CHECKER BG ── */
.checker-bg {
    background-color: var(--pink-lt);
    background-image:
        repeating-conic-gradient(var(--lav-lt) 0% 25%, var(--pink-lt) 0% 50%);
    background-size: 60px 60px;
    background-attachment: local;
}

/* ── WAVY DIVIDER ── */
.wavy {
    display: block;
    width: 100%;
    line-height: 0;
}

/* ── HERO ── */
#hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 6rem 2rem 4rem;
    overflow: hidden;
}

.bubble {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.7), rgba(224, 150, 200, 0.25));
    border: 1.5px solid rgba(255, 255, 255, 0.55);
    pointer-events: none;
    animation: floatBubble linear infinite;
}

@keyframes floatBubble {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0.8;
    }

    50% {
        transform: translateY(-28px) scale(1.04);
        opacity: 1;
    }

    100% {
        transform: translateY(0) scale(1);
        opacity: 0.8;
    }
}

.sparkle {
    position: absolute;
    pointer-events: none;
    animation: twinkle 2.5s ease-in-out infinite;
}

@keyframes twinkle {

    0%,
    100% {
        opacity: 0.2;
        transform: scale(0.8) rotate(0deg);
    }

    50% {
        opacity: 1;
        transform: scale(1.2) rotate(20deg);
    }
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 10vw, 6.5rem);
    font-weight: 700;
    color: var(--rose);
    line-height: 1;
    letter-spacing: -1px;
    text-shadow: 3px 3px 0 rgba(192, 48, 106, 0.12);
    animation: popIn 0.8s cubic-bezier(.34, 1.56, .64, 1) both;
}

.logo em {
    font-style: italic;
    color: var(--pink-dk);
}

@keyframes popIn {
    0% {
        opacity: 0;
        transform: scale(0.7) translateY(20px);
    }

    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.tagline {
    margin-top: 1rem;
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: var(--muted);
    font-weight: 400;
    letter-spacing: 0.05em;
    animation: popIn 0.8s 0.2s cubic-bezier(.34, 1.56, .64, 1) both;
}

.hero-cta-group {
    margin-top: 2.5rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    animation: popIn 0.8s 0.4s cubic-bezier(.34, 1.56, .64, 1) both;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5em;
    padding: 0.8em 2em;
    border-radius: 50px;
    font-family: 'Comfortaa', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.18s, box-shadow 0.18s;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(192, 48, 106, 0.22);
}

.btn-primary {
    background: var(--rose);
    color: #fff;
    border: none;
}

.btn-outline {
    background: transparent;
    color: var(--rose);
    border: 2px solid var(--rose);
}

.scroll-hint {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: var(--muted);
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    opacity: 0.7;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(6px);
    }
}

.scroll-hint svg {
    width: 20px;
    height: 20px;
}

/* ── NAV ── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2.5rem;
    background: rgba(253, 245, 239, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(212, 83, 142, 0.12);
}

.nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--rose);
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 600;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--rose);
}

.nav-social {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-left: 1rem;
}

.nav-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1.5px solid rgba(192, 48, 106, 0.25);
    color: var(--muted);
    transition: background 0.18s, color 0.18s, border-color 0.18s;
    text-decoration: none;
}

.nav-social a:hover {
    background: var(--rose);
    color: #fff;
    border-color: var(--rose);
}

.nav-social svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ── SECTION SHELL ── */
section {
    padding: 5rem 2rem;
}

.section-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--rose);
    font-weight: 600;
    margin-bottom: 0.6rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--text);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-sub {
    font-size: 1rem;
    color: var(--muted);
    max-width: 540px;
    line-height: 1.8;
}

/* ── ABOUT ── */
#about {
    background: #fff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.about-blob {
    width: 320px;
    height: 320px;
    background: var(--lav-lt);
    border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    animation: blobMorph 6s ease-in-out infinite;
}

@keyframes blobMorph {

    0%,
    100% {
        border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
    }

    50% {
        border-radius: 40% 60% 30% 70% / 60% 40% 60% 40%;
    }
}

.about-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: var(--rose);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.6em 1.2em;
    border-radius: 50px;
    box-shadow: 0 4px 16px rgba(192, 48, 106, 0.3);
}

/* ── PRODUCTS ── */
#products {
    background: var(--lav-lt);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.product-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    border: 1.5px solid rgba(212, 83, 142, 0.12);
    transition: transform 0.22s, box-shadow 0.22s;
    cursor: default;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(192, 48, 106, 0.15);
}

.card-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4.5rem;
    background: var(--pink-lt);
}

.card-img.lav-bg {
    background: var(--lav-lt);
}

.card-img.rose-bg {
    background: #fce8f0;
}

.card-img.mint-bg {
    background: #e8f8ef;
}

.card-body {
    padding: 1.2rem 1.4rem 1.6rem;
}

.card-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.35rem;
}

.card-desc {
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.6;
}

.card-tag {
    display: inline-block;
    margin-top: 0.8rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--rose);
    background: #fce8f0;
    padding: 0.3em 0.9em;
    border-radius: 50px;
}

/* ── CATALOG ── */
#catalog {
    background: var(--cream);
}

.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    justify-content: center;
    margin: 2.5rem 0 2rem;
}

.filter-btn {
    padding: 0.45em 1.3em;
    border-radius: 50px;
    border: 2px solid var(--rose);
    background: transparent;
    color: var(--rose);
    font-family: 'Comfortaa', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.18s, color 0.18s, transform 0.15s;
}

.filter-btn:hover {
    transform: translateY(-2px);
}

.filter-btn.active {
    background: var(--rose);
    color: #fff;
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.25rem;
}

.cat-item {
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    border: 1.5px solid rgba(212, 83, 142, 0.1);
    transition: transform 0.22s, box-shadow 0.22s;
    cursor: pointer;
    position: relative;
}

.cat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 36px rgba(192, 48, 106, 0.15);
}

.cat-item.hidden {
    display: none;
}

.cat-photo {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
}

.cat-placeholder {
    width: 100%;
    aspect-ratio: 1 / 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--lav-lt);
    border-bottom: 1.5px dashed rgba(212, 83, 142, 0.25);
    transition: background 0.2s;
    position: relative;
}

.cat-item:hover .cat-placeholder {
    background: #ecdff5;
}

.cat-placeholder-icon {
    font-size: 3rem;
}

.cat-placeholder-label {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    opacity: 0.6;
}

.cat-placeholder-hint {
    position: absolute;
    bottom: 0.6rem;
    font-size: 0.62rem;
    color: var(--rose);
    opacity: 0.5;
    letter-spacing: 0.05em;
}

.sold-ribbon {
    position: absolute;
    top: 12px;
    left: -6px;
    background: var(--rose);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.3em 0.9em 0.3em 0.75em;
    border-radius: 0 4px 4px 0;
    box-shadow: 2px 2px 6px rgba(192, 48, 106, 0.25);
}

.sold-ribbon::before {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    border: 3px solid transparent;
    border-top-color: #8b1540;
    border-right-color: #8b1540;
}

.cat-footer {
    padding: 0.7rem 1rem 0.9rem;
}

.cat-name {
    font-family: 'Playfair Display', serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.3;
    margin-bottom: 0.35rem;
}

.cat-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.4rem;
    flex-wrap: wrap;
}

.cat-price {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--rose);
}

.cat-price.tbd {
    font-size: 0.75rem;
    color: var(--muted);
    font-weight: 400;
    font-style: italic;
}

.cat-cat {
    flex-shrink: 0;
    font-size: 0.66rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--rose);
    background: #fce8f0;
    padding: 0.22em 0.7em;
    border-radius: 50px;
}

/* ── LIGHTBOX ── */
#lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(58, 26, 46, 0.88);
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

#lightbox.open {
    display: flex;
}

#lightbox img {
    max-width: min(90vw, 600px);
    max-height: 80vh;
    border-radius: 20px;
    object-fit: contain;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}

#lb-close {
    position: absolute;
    top: 1.2rem;
    right: 1.5rem;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
    line-height: 1;
    background: none;
    border: none;
    opacity: 0.8;
}

#lb-close:hover {
    opacity: 1;
}

#lb-meta {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    text-align: center;
    background: rgba(192, 48, 106, 0.75);
    padding: 0.5em 1.4em;
    border-radius: 50px;
    white-space: nowrap;
    display: flex;
    gap: 1em;
    align-items: center;
}

#lb-meta span {
    opacity: 0.75;
    font-size: 0.85rem;
    font-family: 'Comfortaa', sans-serif;
}

/* ── PROCESS ── */
#process {
    background: #fff;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    counter-reset: step;
}

.step {
    position: relative;
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--cream);
    border-radius: 20px;
    counter-increment: step;
}

.step::before {
    content: counter(step, decimal-leading-zero);
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--pink-lt);
    margin-bottom: 0.5rem;
}

.step-icon {
    font-size: 2rem;
    margin-bottom: 0.6rem;
}

.step h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    color: var(--text);
    margin-bottom: 0.4rem;
}

.step p {
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.6;
}

/* ── REVIEWS ── */
#reviews {
    background: var(--pink-lt);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.review-card {
    background: #fff;
    border-radius: 20px;
    padding: 1.8rem;
    border: 1.5px solid rgba(212, 83, 142, 0.1);
}

.stars {
    color: var(--rose);
    font-size: 1rem;
    margin-bottom: 0.8rem;
}

.review-text {
    font-size: 0.9rem;
    color: var(--text);
    line-height: 1.7;
    font-style: italic;
}

.reviewer {
    margin-top: 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--muted);
}

/* ── CTA ── */
#cta {
    text-align: center;
    background: var(--rose);
    color: #fff;
    padding: 6rem 2rem;
}

#cta .section-title {
    color: #fff;
}

#cta .section-sub {
    color: rgba(255, 255, 255, 0.82);
    margin: 0 auto 2rem;
}

.btn-white {
    background: #fff;
    color: var(--rose);
    border: none;
    font-size: 1.05rem;
}

.btn-white:hover {
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
}

.btn-cta-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.7);
}

.btn-cta-outline:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: #fff;
}

/* ── FOOTER ── */
footer {
    background: var(--text);
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    padding: 2.5rem 2rem;
    font-size: 0.85rem;
    line-height: 2;
}

footer a {
    color: var(--pink-lt);
    text-decoration: none;
}

footer a:hover {
    color: #fff;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #fff;
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
}

/* ── RESPONSIVE ── */
@media (max-width: 700px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: none;
    }

    .about-blob {
        width: 240px;
        height: 240px;
    }
}

/* ── FADE IN ON SCROLL ── */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: none;
}