/* GARDEN DREAMS — fleuriste romantique pink/sage with cherry blossoms */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --gd-blush: #f5d6c7;
    --gd-blush-soft: #fae6dc;
    --gd-cream: #fbf6ee;
    --gd-cream-deep: #f3ebdd;
    --gd-sage: #a8c4a2;
    --gd-sage-deep: #8aa985;
    --gd-burgundy: #5c2024;
    --gd-burgundy-soft: #7a2f33;
    --gd-gold: #bea177;
    --gd-gold-deep: #9c8359;
    --gd-text: #2c1f15;
    --gd-text-mute: #6b5a4a;
    --gd-line: rgba(190, 161, 119, .35);
    --gd-serif: 'Cormorant Garamond', 'Times New Roman', serif;
    --gd-sans: 'Inter', system-ui, sans-serif;
}

[x-cloak] { display: none !important; }

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    background: var(--gd-cream);
    color: var(--gd-text);
    font-family: var(--gd-sans);
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .25s, opacity .25s; }
button { background: 0; border: 0; cursor: pointer; font: inherit; color: inherit; }
ul { list-style: none; }

/* PREVIEW BANNER */
.preview-banner {
    background: var(--gd-blush);
    color: var(--gd-burgundy);
    text-align: center;
    padding: .75rem 1rem;
    font-size: .85rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
}

/* SHARED */
.gd-eyebrow {
    display: inline-block;
    color: var(--gd-burgundy);
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .25em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}
.gd-section-head { text-align: center; max-width: 640px; margin: 0 auto 3.5rem; }
.gd-section-title {
    font-family: var(--gd-serif);
    font-style: italic;
    font-weight: 500;
    font-size: clamp(2.25rem, 4.5vw, 3.5rem);
    line-height: 1.05;
    color: var(--gd-burgundy);
    letter-spacing: -.01em;
    margin-bottom: .75rem;
}
.gd-laurel {
    display: block;
    width: 180px;
    height: 22px;
    margin: 0 auto 1.25rem;
}
.gd-section-lead {
    color: var(--gd-text-mute);
    font-size: 1rem;
    line-height: 1.7;
}

.gd-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .95rem 2.1rem;
    border-radius: 999px;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .15em;
    text-transform: uppercase;
    transition: all .3s ease;
    cursor: pointer;
}
.gd-btn--dark { background: var(--gd-burgundy); color: var(--gd-cream); }
.gd-btn--dark:hover { background: var(--gd-burgundy-soft); transform: translateY(-2px); box-shadow: 0 14px 30px -14px rgba(92, 32, 36, .55); }
.gd-btn--sage { background: var(--gd-sage); color: var(--gd-cream); padding: .7rem 1.6rem; font-size: .72rem; }
.gd-btn--sage:hover { background: var(--gd-sage-deep); transform: translateY(-2px); }

/* HEADER */
.gd-header {
    background: var(--gd-cream);
    border-bottom: 1px solid var(--gd-line);
    position: sticky;
    top: 0;
    z-index: 40;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* TOPBAR */
.gd-topbar { background: var(--gd-burgundy); color: rgba(255,255,255,.85); font-size: .72rem; letter-spacing: .04em; }
.gd-topbar__inner { max-width: 1280px; margin: 0 auto; padding: .55rem 2.5rem; display: flex; align-items: center; justify-content: center; gap: .9rem; flex-wrap: wrap; }
.gd-topbar__item { display: inline-flex; align-items: center; gap: .4rem; line-height: 1; }
.gd-topbar__ico { width: 12px; height: 12px; opacity: .8; flex-shrink: 0; }
.gd-topbar__sep { opacity: .5; }
.gd-topbar__phone { color: var(--gd-gold); font-weight: 600; transition: color .2s; }
.gd-topbar__phone:hover { color: #fff; }

/* MAIN HEADER */
.gd-header__main { padding: 1.2rem 2.5rem; }
.gd-header__inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 2rem;
    max-width: 1280px;
    margin: 0 auto;
}
.gd-logo {
    display: inline-flex;
    align-items: center;
    gap: .85rem;
    color: var(--gd-burgundy);
    transition: transform .25s ease;
    justify-self: center;
}
.gd-logo:hover { transform: scale(1.02); }
.gd-logo__flower {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px; height: 50px;
    border: 1px solid var(--gd-gold);
    border-radius: 50%;
    font-size: 1.4rem;
    color: var(--gd-burgundy);
    background: rgba(190, 161, 119, .07);
    flex-shrink: 0;
    transition: transform .35s ease, background .3s;
}
.gd-logo:hover .gd-logo__flower { transform: rotate(45deg); background: var(--gd-blush-soft); }
.gd-logo__wrap { display: flex; flex-direction: column; gap: .15rem; }
.gd-logo__name { font-family: var(--gd-font-display); font-style: italic; font-weight: 600; font-size: 1.45rem; line-height: 1; color: var(--gd-burgundy); letter-spacing: .01em; }
.gd-logo__tag { font-size: .62rem; font-weight: 500; color: var(--gd-text-mute); letter-spacing: .15em; text-transform: uppercase; line-height: 1; }

.gd-nav ul { display: flex; align-items: center; gap: 1.85rem; }
.gd-nav--left ul { justify-content: flex-end; }
.gd-nav--right ul { justify-content: flex-start; }
.gd-nav a {
    font-size: .78rem;
    font-weight: 500;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--gd-text);
    position: relative;
    padding: .35rem 0;
}
.gd-nav a:hover { color: var(--gd-burgundy); }
.gd-nav a.is-active { color: var(--gd-burgundy); }
.gd-nav a.is-active::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -4px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--gd-burgundy);
    transform: translateX(-50%);
}
.gd-nav__cta {
    display: inline-flex; align-items: center; gap: .35rem;
    padding: .65rem 1.25rem !important;
    background: var(--gd-burgundy);
    color: #fff !important;
    border-radius: 999px;
    text-transform: none !important;
    letter-spacing: .03em !important;
    font-size: .78rem !important;
    transition: background .25s, transform .25s;
}
.gd-nav__cta:hover { background: var(--gd-text); transform: translateY(-1px); color: #fff !important; }

/* HERO */
.gd-hero {
    position: relative;
    background: linear-gradient(135deg, var(--gd-blush-soft) 0%, var(--gd-cream) 60%, var(--gd-blush-soft) 100%);
    padding: 5rem 2.5rem 7rem;
    overflow: hidden;
}
.gd-hero__inner {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 3rem;
}
.gd-hero__text { max-width: 640px; margin: 0 auto; text-align: center; width: 100%; }
.gd-hero__title {
    font-family: var(--gd-serif);
    font-style: italic;
    font-weight: 500;
    font-size: clamp(3rem, 6.2vw, 5.4rem);
    line-height: 1;
    color: var(--gd-burgundy);
    letter-spacing: -.015em;
    margin-bottom: 1.6rem;
    text-align: center;
}
.gd-hero__lead {
    color: var(--gd-text-mute);
    font-size: 1.05rem;
    line-height: 1.75;
    margin: 0 auto 2.2rem;
    max-width: 440px;
    text-align: center;
}
.gd-hero__text > * { margin-left: auto; margin-right: auto; }
.gd-hero__media {
    position: relative;
    aspect-ratio: 1/1;
    width: 100%;
    max-width: 540px;
    margin: 0 auto;
}
.gd-hero__photo {
    position: absolute;
    background-size: cover;
    background-position: center;
    border-radius: 50% 50% 50% 50% / 50% 50% 50% 50%;
    box-shadow: 0 25px 50px -25px rgba(92, 32, 36, .35);
}
.gd-hero__photo--main {
    width: 70%;
    height: 80%;
    top: 10%;
    left: 5%;
    border-radius: 50% 50% 48% 52% / 55% 50% 50% 45%;
    z-index: 2;
}
.gd-hero__photo--a {
    width: 38%;
    height: 38%;
    top: -2%;
    right: 0;
    border-radius: 50%;
    z-index: 3;
}
.gd-hero__photo--b {
    width: 32%;
    height: 32%;
    bottom: 4%;
    right: 6%;
    border-radius: 50%;
    z-index: 3;
}
.gd-hero__photo--c {
    width: 26%;
    height: 26%;
    top: 36%;
    right: -4%;
    border-radius: 50%;
    z-index: 4;
    border: 4px solid var(--gd-cream);
}
.gd-hero__petal {
    position: absolute;
    color: var(--gd-blush);
    font-size: 2rem;
    opacity: .85;
    z-index: 5;
}
.gd-hero__petal--1 { top: 8%; left: -2%; transform: rotate(-25deg); color: var(--gd-burgundy); opacity: .35; }
.gd-hero__petal--2 { bottom: 12%; left: 18%; font-size: 1.6rem; color: var(--gd-gold); opacity: .55; }
.gd-hero__leaf {
    position: absolute;
    font-size: 4rem;
    color: var(--gd-sage);
    opacity: .25;
    pointer-events: none;
}
.gd-hero__leaf--tl { top: 6%; left: 4%; transform: rotate(-20deg); }
.gd-hero__leaf--br { bottom: 12%; right: 4%; transform: rotate(35deg); font-size: 5rem; color: var(--gd-gold); opacity: .2; }
.gd-hero__curve {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    width: 100%;
    height: 70px;
    display: block;
}

/* CATEGORIES */
.gd-categories {
    background: var(--gd-cream);
    padding: 6rem 2.5rem;
    position: relative;
}
.gd-categories__inner { max-width: 1280px; margin: 0 auto; }
.gd-categories__list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    margin-top: 1rem;
}
.gd-cat { text-align: center; }
.gd-cat__link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.1rem;
    transition: transform .35s ease;
}
.gd-cat__link:hover { transform: translateY(-6px); }
.gd-cat__thumb {
    display: block;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    box-shadow: 0 18px 40px -20px rgba(92, 32, 36, .35);
    position: relative;
    border: 3px solid var(--gd-cream);
    outline: 1px solid var(--gd-line);
    outline-offset: 6px;
    transition: outline-color .3s;
}
.gd-cat__link:hover .gd-cat__thumb { outline-color: var(--gd-burgundy); }
.gd-cat__name {
    font-family: var(--gd-serif);
    font-style: italic;
    font-weight: 500;
    font-size: 1.35rem;
    color: var(--gd-burgundy);
    letter-spacing: .01em;
}

/* BESTSELLERS */
.gd-bestsellers {
    background: linear-gradient(180deg, var(--gd-blush-soft) 0%, var(--gd-blush) 100%);
    padding: 6rem 2.5rem 7rem;
    position: relative;
    overflow: hidden;
}
.gd-bestsellers__leaf {
    position: absolute;
    font-size: 6rem;
    color: var(--gd-burgundy);
    opacity: .12;
    pointer-events: none;
}
.gd-bestsellers__leaf--tl { top: 4%; left: 3%; transform: rotate(-15deg); }
.gd-bestsellers__leaf--br { bottom: 5%; right: 3%; transform: rotate(25deg); color: var(--gd-sage-deep); opacity: .25; }
.gd-bestsellers__inner {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
}
.gd-bestsellers__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}
.gd-product {
    background: var(--gd-cream);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 18px 45px -25px rgba(92, 32, 36, .35);
    transition: transform .35s ease, box-shadow .35s ease;
    display: flex;
    flex-direction: column;
}
.gd-product:hover { transform: translateY(-6px); box-shadow: 0 28px 55px -25px rgba(92, 32, 36, .45); }
.gd-product__photo {
    aspect-ratio: 4/5;
    background-size: cover;
    background-position: center;
}
.gd-product__body {
    padding: 1.6rem 1.6rem 1.85rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .55rem;
}
.gd-product__name {
    font-family: var(--gd-serif);
    font-style: italic;
    font-weight: 500;
    font-size: 1.55rem;
    color: var(--gd-burgundy);
    line-height: 1.1;
}
.gd-product__price {
    font-family: var(--gd-sans);
    font-size: .9rem;
    font-weight: 600;
    color: var(--gd-gold-deep);
    letter-spacing: .1em;
    margin-bottom: .65rem;
}

/* FOOTER */
.gd-footer {
    background: var(--gd-sage);
    color: var(--gd-cream);
    padding: 5rem 2.5rem 2rem;
    position: relative;
}
.gd-footer__inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 3rem;
}
.gd-footer__col h4.gd-footer__title {
    font-family: var(--gd-serif);
    font-style: italic;
    font-weight: 500;
    font-size: 1.4rem;
    color: var(--gd-cream);
    margin-bottom: 1.2rem;
}
.gd-footer__col--brand { display: flex; flex-direction: column; gap: .85rem; }
.gd-footer__flower {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border: 1px solid var(--gd-cream);
    border-radius: 50%;
    font-size: 1.5rem;
    color: var(--gd-cream);
    margin-bottom: .35rem;
}
.gd-footer__brand {
    font-family: var(--gd-serif);
    font-style: italic;
    font-weight: 500;
    font-size: 2rem;
    color: var(--gd-cream);
    line-height: 1;
}
.gd-footer__tagline {
    color: rgba(251, 246, 238, .85);
    font-size: .95rem;
    line-height: 1.65;
    max-width: 320px;
}
.gd-footer__links li,
.gd-footer__contact li {
    margin-bottom: .55rem;
    font-size: .92rem;
    color: rgba(251, 246, 238, .85);
}
.gd-footer__links a:hover,
.gd-footer__contact a:hover { color: var(--gd-cream); text-decoration: underline; }
.gd-footer__bottom {
    max-width: 1280px;
    margin: 3.5rem auto 0;
    padding-top: 1.5rem;
    text-align: center;
    position: relative;
}
.gd-footer__divider {
    display: block;
    width: 120px;
    height: 1px;
    background: var(--gd-gold);
    margin: 0 auto 1.25rem;
    position: relative;
}
.gd-footer__divider::before,
.gd-footer__divider::after {
    content: '';
    position: absolute;
    top: -2px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--gd-gold);
}
.gd-footer__divider::before { left: -10px; }
.gd-footer__divider::after { right: -10px; }
.gd-footer__copy {
    font-family: var(--gd-serif);
    font-style: italic;
    font-size: 1rem;
    color: rgba(251, 246, 238, .9);
}
.gd-footer__copy em { font-style: italic; }

/* RESPONSIVE */
@media (max-width: 1024px) {
    /* Header mobile : topbar cachée, layout flex propre logo gauche + burger droite */
    .gd-topbar { display: none !important; }
    .gd-header { padding: 0; backdrop-filter: blur(10px); }
    .gd-header__main { padding: .85rem 1.1rem; }
    .gd-header__inner {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: flex-start !important;
        grid-template-columns: none !important;
        gap: 0 !important;
        padding-right: 60px;
    }
    .gd-logo {
        display: inline-flex !important;
        flex-direction: row !important;
        align-items: center !important;
        gap: .7rem !important;
        justify-self: flex-start !important;
        transform: none !important;
    }
    .gd-logo__flower {
        width: 40px !important;
        height: 40px !important;
        font-size: 1rem !important;
        flex-shrink: 0;
    }
    .gd-logo__wrap { gap: 2px !important; }
    .gd-logo__name {
        font-size: 1.05rem !important;
        font-style: italic;
        white-space: nowrap !important;
        letter-spacing: .005em !important;
    }
    .gd-logo__tag {
        font-size: .55rem !important;
        letter-spacing: .14em !important;
        line-height: 1.2 !important;
    }

    .gd-hero { padding: 3rem 1.25rem 5rem; }
    .gd-hero__inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .gd-hero__text { max-width: 100%; text-align: center; margin: 0 auto; }
    .gd-hero__lead { margin-left: auto; margin-right: auto; }
    .gd-hero__media { margin: 0 auto; max-width: 360px; }
    .gd-hero__leaf--tl, .gd-hero__leaf--br { font-size: 3rem; }

    .gd-categories { padding: 4rem 1.25rem; }
    .gd-categories__list { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    .gd-cat__thumb { width: 130px; height: 130px; }

    .gd-bestsellers { padding: 4rem 1.25rem 5rem; }
    .gd-bestsellers__grid { grid-template-columns: 1fr; gap: 1.75rem; }

    .gd-footer { padding: 3.5rem 1.25rem 1.5rem; }
    .gd-footer__inner { grid-template-columns: 1fr; gap: 2rem; }
    .gd-footer__bottom { margin-top: 2rem; }

    .gd-section-title { font-size: clamp(2rem, 8vw, 2.5rem); }
}

@media (max-width: 1024px) and (min-width: 801px) {
    .gd-categories__list { grid-template-columns: repeat(3, 1fr); }
    .gd-bestsellers__grid { grid-template-columns: repeat(2, 1fr); }
}
