@font-face {
    font-family: "Ephesis";
    src: url("../fonts/ephesis-regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

:root {
    --bg: #f7f4ee;
    --paper: #ffffff;
    --paper-soft: #fbfaf7;
    --cream: #f1eee6;
    --cream-2: #ebe6dc;
    --sand: #d8cdb9;
    --text: #20242a;
    --muted: #697171;
    --teal: #7a3f5c;
    --teal-2: #9e5c6e;
    --teal-soft: #f5edf2;
    --gold: #c9a66b;
    --rose: #c99b90;
    --line: #ddd2c2;
    --shadow: 0 18px 50px rgba(32, 36, 42, 0.08);
    --shadow-hover: 0 24px 70px rgba(32, 36, 42, 0.13);
    --radius: 18px;
    --radius-sm: 12px;
    --max: 1380px;

    --paper-base: #f5efe4;
    --paper-tint: rgba(255, 252, 247, 0.72);
    --rule-line: rgba(122, 63, 92, 0.18);
    --margin-line: rgba(201, 166, 107, 0.55);
    --wedding-text: rgba(122, 63, 92, 0.12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Segoe UI", Arial, sans-serif;
    color: var(--text);
    line-height: 1.55;
    overflow-x: hidden;
    background-color: var(--paper-base);
    background-image:
        linear-gradient(var(--paper-tint), var(--paper-tint)),
        linear-gradient(90deg,
            transparent 0,
            transparent 78px,
            var(--margin-line) 78px,
            var(--margin-line) 81px,
            transparent 81px),
        repeating-linear-gradient(to bottom,
            transparent 0,
            transparent 35px,
            var(--rule-line) 35px,
            var(--rule-line) 37px);
    background-attachment: fixed;
    background-position: top left;
}

body::before {
    content:
        "Liebe · Hochzeit · Braut · Bräutigam · Trauung · Ringe · Floristik · Dekoration · Feier · Musik · Catering · Gäste · Torte · Romantik\A"
        "Brautstrauß · Einladung · Ja-Wort · Hochzeitslocation · Make-up · Fotos · Erinnerungen · Gäste · Torte · Romantik · Familie · Glück\A"
        "Brautkleid · Anzug · Trauringe · Hochzeitsplanung · Blumenschmuck · Hochzeitstanz · Zeremonie · Glück · Familie · Liebe\A"
        "Trauung · Styling · Hochzeitstorte · Hochzeitsauto · Fotograf · Videograf · Menü · Tischdeko · Ehe · Herzensmoment · Feier\A"
        "Liebe · Hochzeit · Braut · Bräutigam · Trauung · Ringe · Floristik · Dekoration · Feier · Musik · Catering · Gäste · Torte\A"
        "Brautstrauß · Einladung · Ja-Wort · Hochzeitslocation · Make-up · Fotos · Erinnerungen · Gäste · Torte · Romantik · Familie\A"
        "Brautkleid · Anzug · Trauringe · Hochzeitsplanung · Blumenschmuck · Hochzeitstanz · Zeremonie · Glück · Familie · Liebe\A"
        "Trauung · Styling · Hochzeitstorte · Hochzeitsauto · Fotograf · Videograf · Menü · Tischdeko · Ehe · Herzensmoment · Feier\A"
        "Liebe · Hochzeit · Braut · Bräutigam · Trauung · Ringe · Floristik · Dekoration · Feier · Musik · Catering · Gäste · Torte\A"
        "Brautstrauß · Einladung · Ja-Wort · Hochzeitslocation · Make-up · Fotos · Erinnerungen · Gäste · Torte · Romantik · Familie\A"
        "Brautkleid · Anzug · Trauringe · Hochzeitsplanung · Blumenschmuck · Hochzeitstanz · Zeremonie · Glück · Familie · Liebe\A"
        "Trauung · Styling · Hochzeitstorte · Hochzeitsauto · Fotograf · Videograf · Menü · Tischdeko · Ehe · Herzensmoment · Feier\A"
        "Liebe · Hochzeit · Braut · Bräutigam · Trauung · Ringe · Floristik · Dekoration · Feier · Musik · Catering · Gäste · Torte\A"
        "Brautstrauß · Einladung · Ja-Wort · Hochzeitslocation · Make-up · Fotos · Erinnerungen · Gäste · Torte · Romantik · Familie\A"
        "Brautkleid · Anzug · Trauringe · Hochzeitsplanung · Blumenschmuck · Hochzeitstanz · Zeremonie · Glück · Familie · Liebe\A"
        "Trauung · Styling · Hochzeitstorte · Hochzeitsauto · Fotograf · Videograf · Menü · Tischdeko · Ehe · Herzensmoment · Feier";
    position: fixed;
    top: -100px;
    left: -160px;
    right: -160px;
    bottom: -100px;
    z-index: 0;
    pointer-events: none;
    white-space: pre;
    font-family: "Ephesis", cursive;
    font-size: clamp(2.2rem, 3.3vw, 3.6rem);
    line-height: 1.55;
    color: var(--wedding-text);
    transform: rotate(-3deg);
    transform-origin: center;
}

h1,
h2,
h3,
.dropdown-title,
.logo {
    font-family: "Ephesis", cursive;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font-family: "Segoe UI", Arial, sans-serif;
}

button {
    cursor: pointer;
}

.site-header,
main,
.site-footer {
    position: relative;
    z-index: 1;
}

.container {
    width: min(var(--max), calc(100% - 40px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(253, 249, 243, 0.96);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(201, 166, 107, 0.28);
}

.nav {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    position: relative;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 22px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-svg {
    flex: 0 0 auto;
    display: block;
}

.logo-text-wrap {
    display: flex;
    flex-direction: column;
    gap: 1px;
    line-height: 1;
}

.logo-name {
    font-family: "Ephesis", cursive;
    font-size: clamp(1.7rem, 2.6vw, 2.4rem);
    color: var(--teal);
    line-height: 1;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.logo-location {
    font-family: "Segoe UI", Arial, sans-serif;
    font-size: clamp(0.58rem, 0.8vw, 0.70rem);
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    line-height: 1;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 22px;
}

.desktop-nav a {
    color: #263035;
    font-weight: 650;
    font-size: 0.96rem;
    padding: 25px 0 20px;
    border-bottom: 3px solid transparent;
    transition: 0.2s ease;
}

.desktop-nav a:hover {
    color: var(--teal);
    border-bottom-color: var(--teal);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}

.icon-btn {
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    color: #263035;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 1.35rem;
    transition: 0.2s ease;
}

.icon-btn:hover {
    background: var(--teal-soft);
    color: var(--teal);
}

.favorite-icon-btn {
    position: relative;
}

.favorite-count {
    position: absolute;
    right: 1px;
    top: 0;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 999px;
    background: var(--teal);
    color: white;
    display: grid;
    place-items: center;
    font-size: 0.68rem;
    font-weight: 800;
}

.burger-btn {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    border-radius: 50%;
    padding: 0;
    transition: 0.2s ease;
}

.burger-btn:hover {
    background: var(--teal-soft);
}

.burger-lines {
    width: 22px;
    display: grid;
    gap: 5px;
    margin: 0 auto;
}

.burger-lines span {
    display: block;
    height: 2px;
    background: #263035;
    border-radius: 999px;
    transition: 0.2s ease;
}

.burger-btn.active .burger-lines span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.burger-btn.active .burger-lines span:nth-child(2) {
    opacity: 0;
}

.burger-btn.active .burger-lines span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.burger-menu,
.favorites-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: min(420px, calc(100vw - 36px));
    padding: 16px;
    border-radius: var(--radius);
    background: linear-gradient(160deg,
            rgba(253, 249, 243, 0.99) 0%,
            rgba(250, 245, 235, 0.98) 100%);
    border: 1px solid rgba(215, 200, 178, 0.75);
    box-shadow: 0 16px 48px rgba(100, 70, 40, 0.12), 0 2px 8px rgba(100, 70, 40, 0.06);
    display: none;
    z-index: 1100;
}

.burger-menu.open,
.favorites-dropdown.open {
    display: block;
    animation: menuDrop 0.22s ease both;
}

.dropdown-title {
    font-family: "Ephesis", cursive;
    color: var(--teal);
    font-size: 2.8rem;
    font-weight: 400;
    margin: 4px 6px 14px;
    letter-spacing: 0;
    line-height: 1;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(201, 166, 107, 0.3);
}

.burger-menu a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 13px 14px;
    border-radius: var(--radius-sm);
    color: var(--text);
    font-weight: 700;
    font-size: 0.98rem;
    transition: 0.18s ease;
}

.burger-menu a:hover {
    background: rgba(201, 166, 107, 0.1);
    color: var(--teal);
}

.favorites-dropdown-list {
    display: grid;
    gap: 10px;
    max-height: 420px;
    overflow: auto;
    padding-right: 4px;
}

.favorites-dropdown-actions {
    display: flex;
    align-items: center;
    gap: 6px;
}

.small-open,
.small-remove {
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 50%;
    display: grid;
    place-items: center;
    cursor: pointer;
    font-weight: 900;
}

.small-open {
    background: var(--teal);
    color: #fff;
}

.small-remove {
    background: #f3e8e5;
    color: #a04743;
}

.favorite-empty {
    padding: 16px;
    border-radius: var(--radius);
    background: var(--paper-soft);
    color: var(--muted);
    font-weight: 650;
}

/* ── HERO BANNER ── */
.hero-banner {
    position: relative;
    overflow: hidden;
    height: 100svh;
    border-bottom: 1px solid rgba(201, 166, 107, 0.22);
    display: flex;
    align-items: stretch;
    isolation: isolate;
    background: linear-gradient(180deg, #fdf8f2 0%, #f7efe3 55%, #ede0ca 100%);
}

/* Blurred wedding-flower photo — creates a watercolour-painting backdrop */
.hero-bg {
    position: absolute;
    inset: -40px;
    z-index: 0;
    background:
        url('../img/hero-bg.webp') center / cover no-repeat;
    filter: blur(30px) saturate(1.25) brightness(1.1);
    opacity: 0.30;
    transform: scale(1.1);
    will-change: transform;
}

/* Frosted-glass cream overlay on top of the photo */
.hero-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(180deg,
            rgba(253, 248, 242, 0.86) 0%,
            rgba(247, 239, 228, 0.78) 50%,
            rgba(237, 225, 205, 0.88) 100%),
        radial-gradient(ellipse 65% 55% at 18% 28%, rgba(255, 255, 255, 0.52), transparent 58%),
        radial-gradient(ellipse 55% 65% at 82% 72%, rgba(255, 255, 255, 0.38), transparent 58%);
}

/* Bottom vignette */
.hero-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 6;
    pointer-events: none;
    background: linear-gradient(180deg, transparent 62%, rgba(237, 224, 204, 0.88) 100%);
}

/* Drifting colour orbs — warmth / atmosphere */
.hero-orbs {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.hero-orbs span {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.42;
    will-change: transform;
}

.hero-orbs span:nth-child(1) {
    width: 580px;
    height: 580px;
    left: -160px;
    top: -200px;
    background: radial-gradient(circle, rgba(229, 180, 180, 0.85), transparent 70%);
    animation: orbDrift 24s ease-in-out infinite alternate;
}

.hero-orbs span:nth-child(2) {
    width: 680px;
    height: 680px;
    right: -200px;
    top: 15%;
    background: radial-gradient(circle, rgba(122, 63, 92, 0.22), transparent 70%);
    animation: orbDrift 30s ease-in-out infinite alternate-reverse;
}

.hero-orbs span:nth-child(3) {
    width: 500px;
    height: 500px;
    left: 28%;
    bottom: -230px;
    background: radial-gradient(circle, rgba(201, 166, 107, 0.55), transparent 70%);
    animation: orbDrift 26s ease-in-out infinite alternate;
}

@keyframes orbDrift {
    0% {
        transform: translate3d(0, 0, 0) scale(1);
    }

    50% {
        transform: translate3d(70px, 50px, 0) scale(1.10);
    }

    100% {
        transform: translate3d(-50px, 80px, 0) scale(0.93);
    }
}

/* ── PETAL LAYERS ── */
.hero-petals,
.hero-sparkles {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    overflow: hidden;
}

/* Blütenblatt — border-radius direkt am Element, kein ::before */
.petal {
    position: absolute;
    top: -60px;
    opacity: 0;
    will-change: transform, opacity;
    animation: petalFall linear infinite;
    /* Kirschblüten-Form: asymmetrisch organisch */
    border-radius: 74% 26% 74% 26% / 30% 70% 30% 70%;
    background: radial-gradient(circle at 38% 30%, #fff5f5 0%, #f8cece 45%, #e9a8a4 100%);
    box-shadow: inset -1px -2px 5px rgba(180, 100, 95, 0.18);
}

/* Form: oval / Kirschblüte */
.petal.shape-oval {
    border-radius: 55% 45% 55% 45% / 65% 35% 65% 35%;
}

/* Form: Rosenblatt — breit oben, spitz unten */
.petal.shape-rose {
    border-radius: 50% 50% 28% 28% / 80% 80% 20% 20%;
}

/* Form: Tropfen */
.petal.shape-drop {
    border-radius: 50% 50% 50% 50% / 78% 78% 22% 22%;
}

/* Farb-Varianten */
.petal.col-blush {
    background: radial-gradient(circle at 38% 30%, #ffffff 0%, #fce8e8 42%, #f2c4c0 100%);
}

.petal.col-rose {
    background: radial-gradient(circle at 38% 30%, #ffe8ec 0%, #f4b8b6 48%, #d98886 100%);
}

.petal.col-gold {
    background: radial-gradient(circle at 38% 30%, #fffbee 0%, #f5e2aa 48%, #c8a462 100%);
    box-shadow: inset -1px -2px 5px rgba(160, 120, 50, 0.15);
}

.petal.col-cream {
    background: radial-gradient(circle at 38% 30%, #ffffff 0%, #f9f0e8 50%, #e8d5c8 100%);
}

/* Große, weiche Hintergrund-Blüten */
.petal.size-bg {
    filter: blur(2.5px);
}

/* ── NATURAL SWAYING FALL ANIMATION ── */
@keyframes petalFall {
    0% {
        transform: translate3d(0, -8vh, 0) rotate(var(--r0, 10deg));
        opacity: 0;
    }

    5% {
        opacity: var(--op, 0.88);
    }

    28% {
        transform: translate3d(var(--d1, 38px), 26vh, 0) rotate(var(--r1, 195deg));
    }

    55% {
        transform: translate3d(var(--d2, -28px), 54vh, 0) rotate(var(--r2, 405deg));
        opacity: var(--op, 0.88);
    }

    88% {
        opacity: calc(var(--op, 0.88) * 0.35);
    }

    100% {
        transform: translate3d(var(--d3, 42px), 116vh, 0) rotate(var(--r3, 670deg));
        opacity: 0;
    }
}

/* ── SPARKLES ── */
.sparkle {
    position: absolute;
    opacity: 0;
    animation: twinkle ease-in-out infinite;
}

/* Round glow dot */
.sparkle.type-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(255, 248, 220, 0.95);
    box-shadow:
        0 0 6px 2px rgba(255, 245, 200, 0.9),
        0 0 18px 6px rgba(201, 166, 107, 0.55),
        0 0 32px 12px rgba(201, 166, 107, 0.20);
}

/* Four-pointed star sparkle */
.sparkle.type-star {
    width: 16px;
    height: 16px;
    background: none;
}

.sparkle.type-star::before,
.sparkle.type-star::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    background: rgba(201, 166, 107, 0.75);
}

.sparkle.type-star::before {
    width: 100%;
    height: 2px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    box-shadow: 0 0 8px 3px rgba(201, 166, 107, 0.5);
}

.sparkle.type-star::after {
    width: 2px;
    height: 100%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 8px 3px rgba(201, 166, 107, 0.5);
}

@keyframes twinkle {

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

    50% {
        opacity: 1;
        transform: scale(1.25) rotate(45deg);
    }
}

/* ── HERO CONTENT ── */
.hero-content {
    position: relative;
    z-index: 4;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding-top: 72px;
    padding-bottom: 60px;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    font-family: "Ephesis", cursive;
    font-size: clamp(1.7rem, 2.6vw, 2.4rem);
    color: var(--teal);
    margin: 0 0 4px;
    line-height: 1;
    opacity: 0;
    animation: heroFadeUp 1.1s 0.1s ease-out forwards;
}

.hero-kicker::before,
.hero-kicker::after {
    content: "";
    width: 70px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.hero-content h1 {
    margin: 0 0 28px;
    font-size: clamp(3.6rem, 7.4vw, 7rem);
    line-height: 1.12;
    font-weight: 500;
    letter-spacing: -0.035em;
    color: var(--text);
    opacity: 0;
    animation: heroFadeUp 1.1s 0.25s ease-out forwards;
}

.hero-content h1 .script {
    display: block;
    font-family: "Ephesis", cursive;
    font-weight: 400;
    font-size: 1.15em;
    letter-spacing: 0.01em;
    line-height: 1.35;
    padding-bottom: 0.12em;
    background: linear-gradient(180deg, var(--teal-2) 0%, var(--teal) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content>p {
    margin: 0 auto;
    max-width: 700px;
    color: #2f3942;
    font-size: clamp(1.05rem, 1.4vw, 1.2rem);
    font-weight: 500;
    line-height: 1.65;
    opacity: 0;
    animation: heroFadeUp 1.1s 0.4s ease-out forwards;
}

.hero-cta {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    opacity: 0;
    animation: heroFadeUp 1.1s 0.55s ease-out forwards;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 54px;
    padding: 0 30px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.01em;
    text-decoration: none;
    border: 1px solid transparent;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
    cursor: pointer;
}

.hero-btn-primary {
    background: linear-gradient(135deg, var(--teal) 0%, var(--teal-2) 100%);
    color: #fff;
    box-shadow: 0 14px 32px rgba(122, 63, 92, 0.28);
}

.hero-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 42px rgba(122, 63, 92, 0.38);
}

.hero-btn-ghost {
    background: rgba(255, 255, 255, 0.72);
    color: var(--teal);
    border-color: rgba(122, 63, 92, 0.24);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.hero-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-2px);
    border-color: var(--teal);
}

.hero-meta {
    margin: 36px auto 0;
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 14px 22px;
    font-size: 0.92rem;
    color: var(--muted);
    opacity: 0;
    animation: heroFadeUp 1.1s 0.7s ease-out forwards;
}

.hero-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hero-meta-item strong {
    color: var(--teal);
    font-weight: 800;
    font-size: 1rem;
}

.hero-meta-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gold);
}

@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {

    .hero-orbs span,
    .petal,
    .sparkle,
    .hero-kicker,
    .hero-content h1,
    .hero-content>p,
    .hero-cta,
    .hero-meta {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }

    .hero-petals,
    .hero-sparkles {
        display: none;
    }
}

.notebook-area {
    position: relative;
    z-index: 1;
    padding-top: 0;
    background: transparent;
    overflow: visible;
}

.style-section,
.controls-section,
.favorites-section,
.contact-section {
    position: relative;
    z-index: 1;
    background: transparent;
}

.style-section {
    padding: 40px 0 38px;
}

.style-section .romantic-header h2 {
    margin: 0;
    font-size: clamp(2.8rem, 4.5vw, 4.6rem);
    font-weight: 500;
    letter-spacing: -0.025em;
    line-height: 0.95;
}

.category-tiles {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 20px;
    align-items: start;
}

.category-tile {
    border: 0;
    background: transparent;
    display: grid;
    justify-items: center;
    gap: 14px;
    color: var(--text);
}

.circle-img {
    width: min(170px, 12vw);
    height: min(170px, 12vw);
    min-width: 120px;
    min-height: 120px;
    border-radius: 50%;
    background: var(--cream);
    position: relative;
    display: grid;
    place-items: center;
    transition: 0.25s ease;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(32, 36, 42, 0.08);
}

.circle-img::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(122, 63, 92, 0.00), rgba(122, 63, 92, 0.18)),
        radial-gradient(circle at center, rgba(255, 255, 255, 0.08), transparent 62%);
}

.circle-img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.35s ease;
}

.circle-icon {
    position: relative;
    z-index: 2;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.88);
    color: var(--teal);
    display: grid;
    place-items: center;
    font-size: 1.45rem;
    font-weight: 900;
    box-shadow: 0 10px 22px rgba(32, 36, 42, 0.16);
    backdrop-filter: blur(8px);
}

.category-tile:hover .circle-img,
.category-tile.active .circle-img {
    transform: translateY(-7px);
    box-shadow: var(--shadow-hover);
}

.category-tile:hover .circle-img img {
    transform: scale(1.08);
}

.category-tile.active .circle-img {
    outline: 3px solid var(--teal);
    outline-offset: 4px;
}

.category-tile b {
    font-size: 1rem;
    font-weight: 800;
    text-align: center;
}

.filter-button-row {
    display: flex;
    justify-content: center;
    padding-top: 34px;
}

.filter-main-btn {
    border: 0;
    background: linear-gradient(135deg, #7a3f5c 0%, #9e5c6e 100%);
    color: white;
    min-height: 50px;
    border-radius: var(--radius-sm);
    padding: 0 30px;
    font-weight: 800;
    box-shadow: 0 12px 24px rgba(122, 63, 92, 0.22);
    transition: 0.2s ease;
    display: inline-flex;
    align-items: center;
}

.filter-main-btn:hover {
    background: var(--teal-2);
    transform: translateY(-2px);
}

.controls-section {
    padding: 24px 0 50px;
}

.search-card,
.category-card,
.favorites-box,
.contact-box {
    background: linear-gradient(160deg,
            rgba(253, 249, 243, 0.97) 0%,
            rgba(250, 245, 235, 0.94) 100%);
    border: 1px solid rgba(215, 200, 178, 0.75);
    color: var(--text);
    box-shadow: var(--shadow);
    border-radius: var(--radius);
    backdrop-filter: blur(2px);
}

.search-card {
    padding: 26px;
    margin-bottom: 18px;
}

.category-card {
    padding: 24px;
}

.favorites-box,
.contact-box {
    padding: 30px;
}

.control-heading {
    display: block;
    margin-bottom: 16px;
}

.control-heading h2,
.favorites-box h2,
.contact-box h2 {
    margin: 0;
    color: var(--text);
    font-size: clamp(3rem, 4.8vw, 4.6rem);
    line-height: 0.9;
    letter-spacing: -0.03em;
    font-weight: 500;
}

.favorites-box h2,
.contact-box h2 {
    font-size: clamp(3.6rem, 5.5vw, 5.4rem);
    margin-bottom: 8px;
}

.control-heading p,
.favorites-box p,
.contact-box p {
    margin: 7px 0 0;
    color: var(--muted);
    font-weight: 600;
    font-size: 1rem;
}

.favorites-box p,
.contact-box p {
    margin: 0 0 20px;
}

.search-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 14px;
    align-items: center;
}

.search-box {
    position: relative;
}

.search-box input {
    width: 100%;
    min-height: 58px;
    padding: 0 20px 0 52px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--line);
    background: rgba(253, 249, 243, 0.96);
    color: var(--text);
    font-size: 0.98rem;
    font-weight: 600;
    outline: none;
    transition: 0.2s ease;
}

.search-box input::placeholder {
    color: #909694;
}

.search-box input:focus {
    border-color: #7a3f5c;
    box-shadow: 0 0 0 4px rgba(122, 63, 92, 0.12);
}

.search-icon {
    position: absolute;
    left: 19px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--teal);
    font-size: 1.05rem;
}

.result-count {
    min-height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 22px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, #7a3f5c 0%, #9e5c6e 100%);
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 850;
    white-space: nowrap;
    box-shadow: 0 10px 20px rgba(122, 63, 92, 0.22);
}

.chips {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 10px;
    margin-top: 0;
}

.chip {
    width: 100%;
    min-height: 46px;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--chip-border, var(--line));
    background: var(--chip-bg, rgba(253, 249, 243, 0.97));
    color: var(--chip-color, #263035);
    font-size: 0.91rem;
    font-weight: 750;
    text-align: left;
    transition: 0.2s ease;
    box-shadow: 0 3px 10px rgba(32, 36, 42, 0.03);
}

.chip:hover {
    background: var(--chip-hover-bg, rgba(122, 63, 92, 0.08));
    border-color: var(--chip-hover-border, rgba(122, 63, 92, 0.28));
    transform: translateY(-1px);
}

.chip.active {
    background: var(--chip-active-bg, linear-gradient(135deg, #7a3f5c 0%, #9e5c6e 100%));
    color: var(--chip-active-color, #ffffff);
    border-color: var(--chip-active-border, #7a3f5c);
    box-shadow: 0 10px 20px rgba(122, 63, 92, 0.22);
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 20px;
    margin: 42px 0 20px;
}

.section-head h2 {
    margin: 0;
    color: var(--text);
    font-size: clamp(3.6rem, 5.8vw, 5.8rem);
    letter-spacing: -0.04em;
    line-height: 0.85;
    font-weight: 500;
}

.section-head p {
    margin: 8px 0 0;
    color: var(--muted);
    max-width: 650px;
    font-size: 1rem;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding-bottom: 24px;
}

.vendor-card {
    --card-accent: #7a3f5c;
    --card-accent-soft: rgba(122, 63, 92, 0.10);
    --card-accent-border: rgba(122, 63, 92, 0.22);

    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 390px;
    padding: 22px;
    border-radius: var(--radius);
    background: linear-gradient(160deg,
            rgba(253, 249, 243, 0.97) 0%,
            rgba(250, 245, 235, 0.95) 100%);
    border: 1px solid rgba(215, 200, 178, 0.75);
    box-shadow: 0 8px 28px rgba(100, 70, 40, 0.07), 0 1px 4px rgba(100, 70, 40, 0.04);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
    animation: fadeUp 0.45s ease both;
    overflow: hidden;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}

.vendor-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--card-accent);
    border-radius: 999px;
    pointer-events: none;
    transition:
        width 0.45s ease,
        height 0.45s ease,
        border-radius 0.45s ease,
        transform 0.45s ease;
}

.vendor-card.line-to-right::before {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    transform: translateY(-1px);
}

.vendor-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: var(--card-accent-border);
}

.card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
}

.badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 999px;
    background: #f2eee5;
    color: #82663f;
    font-weight: 850;
    font-size: 0.76rem;
    line-height: 1.1;
}

.category-badge {
    background: var(--card-accent-soft);
    color: var(--card-accent);
}

.favorite-btn {
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid var(--card-accent-border);
    background: rgba(252, 247, 239, 0.9);
    color: var(--card-accent);
    font-size: 1.25rem;
    display: grid;
    place-items: center;
    transition: 0.2s ease;
}

.favorite-btn:hover {
    transform: scale(1.06);
    background: var(--card-accent-soft);
}

.favorite-btn.active {
    color: #fff;
    background: var(--card-accent);
    border-color: var(--card-accent);
}

.card-header-band {
    margin: 0 -22px 16px;
    padding: 20px 22px 18px;
    background:
        linear-gradient(180deg, var(--card-accent-soft) 0%, rgba(252, 247, 239, 0.92) 100%);
    border-top: 2px solid var(--card-accent);
    border-bottom: 1px solid var(--card-accent-border);
}

.vendor-card h3 {
    margin: 0;
    font-size: clamp(3.5rem, 4.7vw, 4.9rem);
    line-height: 0.84;
    letter-spacing: -0.02em;
    color: var(--text);
    font-weight: 500;
    word-break: break-word;
}

.type-line {
    color: var(--card-accent);
    font-weight: 850;
    font-size: 0.98rem;
    margin-bottom: 14px;
}

.detail {
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: 9px;
    color: var(--muted);
    margin: 8px 0;
    font-size: 0.95rem;
}

.detail strong {
    color: var(--text);
}

.card-actions {
    margin-top: auto;
    padding-top: 18px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.visit-btn {
    flex: 1;
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    background: var(--card-accent);
    color: #fff;
    font-weight: 850;
    font-size: 0.95rem;
    transition: 0.2s ease;
    text-align: center;
}

.visit-btn:hover {
    filter: brightness(0.96);
}

.visit-btn.disabled {
    background: #ece8df;
    color: #807a70;
    pointer-events: none;
}

.load-more-wrap {
    display: flex;
    justify-content: center;
    padding: 8px 0 38px;
}

.load-more-btn,
.contact-link {
    border: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 50px;
    padding: 0 26px;
    border-radius: var(--radius-sm);
    color: #fff;
    background: linear-gradient(135deg, #7a3f5c 0%, #9e5c6e 100%);
    font-weight: 850;
    box-shadow: 0 12px 24px rgba(122, 63, 92, 0.22);
    transition: 0.2s ease;
}

.load-more-btn:hover,
.contact-link:hover {
    background: linear-gradient(135deg, #6b3348 0%, #8b4a5e 100%);
    transform: translateY(-2px);
}

.load-more-btn .arrow {
    font-size: 1.2rem;
    line-height: 1;
}

.load-more-btn.hidden {
    display: none;
}

.empty-state {
    display: none;
    padding: 36px;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.88);
    border: 1px dashed var(--line);
    text-align: center;
    color: var(--muted);
    margin-bottom: 36px;
    backdrop-filter: blur(2px);
}

.empty-state.visible {
    display: block;
}

.favorites-section,
.contact-section {
    padding: 36px 0 52px;
}

.favorite-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.favorite-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 15px;
    border-radius: var(--radius);
    background:
        linear-gradient(90deg, var(--fav-soft, rgba(122, 63, 92, 0.08)) 0%, rgba(253, 249, 243, 0.97) 42%);
    border: 1px solid var(--fav-border, var(--line));
    border-left: 5px solid var(--fav-accent, var(--teal));
    box-shadow: 0 6px 16px rgba(32, 36, 42, 0.04);
}

.favorite-item-main {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.favorite-category-badge {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 5px 10px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 850;
    line-height: 1;
    background: var(--fav-soft, rgba(122, 63, 92, 0.12));
    color: var(--fav-accent, var(--teal));
    border: 1px solid var(--fav-border, rgba(122, 63, 92, 0.22));
    margin-bottom: 2px;
}

.favorite-item b {
    display: block;
    color: var(--text);
    line-height: 1.25;
    font-size: 0.98rem;
}

.favorite-item span {
    color: var(--muted);
    font-size: 0.86rem;
}

.favorite-item .favorite-category-badge {
    color: var(--fav-accent, var(--teal));
    font-size: 0.72rem;
}

.favorites-dropdown-item {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    padding: 13px;
    border-radius: var(--radius);
    background:
        linear-gradient(90deg, var(--fav-soft, rgba(122, 63, 92, 0.08)) 0%, rgba(253, 249, 243, 0.97) 52%);
    border: 1px solid var(--fav-border, var(--line));
    border-left: 5px solid var(--fav-accent, var(--teal));
}

.favorites-dropdown-item-main {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.favorites-dropdown-item b {
    display: block;
    color: var(--text);
    line-height: 1.25;
    font-size: 0.94rem;
}

.favorites-dropdown-item span {
    display: block;
    color: var(--muted);
    font-weight: 600;
    font-size: 0.82rem;
    margin-top: 0;
}

.favorites-dropdown-item .favorite-category-badge {
    color: var(--fav-accent, var(--teal));
    font-size: 0.72rem;
    font-weight: 850;
}

.favorite-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 0 0 auto;
}

.favorite-open {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--fav-accent, var(--teal));
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 900;
    text-decoration: none;
    transition: 0.2s ease;
}

.favorite-open:hover {
    filter: brightness(0.94);
    transform: translateY(-2px);
}

.favorite-open.disabled {
    background: #ece8df;
    color: #807a70;
    pointer-events: none;
}

.remove-fav {
    border: 0;
    border-radius: 50%;
    background: #f3e8e5;
    color: #a04743;
    width: 34px;
    height: 34px;
    flex: 0 0 auto;
    transition: 0.2s ease;
}

.remove-fav:hover {
    background: #ead8d3;
    transform: translateY(-2px);
}

.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.site-footer {
    padding: 28px 0;
    border-top: 1px solid rgba(221, 210, 194, 0.9);
    background: transparent;
    backdrop-filter: none;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    color: var(--muted);
    font-weight: 650;
}

.footer-links {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--teal);
    text-decoration: none;
}

.footer-cookie-btn {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    font: inherit;
    font-size: inherit;
    color: var(--teal);
    cursor: pointer;
    text-decoration: none;
}

.footer-cookie-btn:hover {
    opacity: 0.75;
}

.footer-cookie-btn:focus-visible {
    outline: 2px solid var(--teal);
    outline-offset: 3px;
    border-radius: 2px;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(14px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes menuDrop {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1320px) {
    .category-tiles {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1180px) {
    .desktop-nav {
        gap: 16px;
    }

    .cards-grid,
    .favorite-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 760px) {
    body {
        background-image:
            linear-gradient(var(--paper-tint), var(--paper-tint)),
            linear-gradient(90deg,
                transparent 0,
                transparent 34px,
                var(--margin-line) 34px,
                var(--margin-line) 36px,
                transparent 36px),
            repeating-linear-gradient(to bottom,
                transparent 0,
                transparent 32px,
                var(--rule-line) 32px,
                var(--rule-line) 34px);
    }

    body::before {
        top: -70px;
        left: -80px;
        right: -80px;
        bottom: -70px;
        font-size: 2.25rem;
        line-height: 1.48;
        color: rgba(122, 63, 92, 0.10);
        transform: rotate(-4deg);
    }

    .container {
        width: min(100% - 28px, var(--max));
    }

    .nav {
        min-height: 68px;
    }

    .desktop-nav {
        display: none;
    }

    .logo-name {
        font-size: 1.55rem;
    }

    .logo-svg {
        width: 40px;
        height: 29px;
    }

    .hero-banner {
        min-height: 560px;
    }

    .hero-content {
        padding: 80px 0 90px;
    }

    .hero-content h1 {
        font-size: clamp(3.4rem, 13vw, 5.4rem);
    }

    .hero-content>p {
        font-size: 1rem;
    }

    .hero-kicker {
        font-size: 1.6rem;
    }

    .hero-kicker::before,
    .hero-kicker::after {
        width: 40px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
        padding: 0 24px;
    }

    .hero-btn {
        justify-content: center;
    }

    .hero-meta {
        gap: 10px 16px;
        font-size: 0.85rem;
    }

    .style-section {
        padding-top: 26px;
    }

    .style-section h2 {
        font-size: clamp(3rem, 14vw, 4.4rem);
    }

    .category-tiles {
        display: flex;
        overflow-x: auto;
        gap: 18px;
        padding: 6px 0 16px;
        scroll-snap-type: x mandatory;
    }

    .category-tile {
        min-width: 150px;
        scroll-snap-align: start;
    }

    .circle-img {
        width: 135px;
        height: 135px;
        min-width: 135px;
        min-height: 135px;
    }

    .search-row,
    .cards-grid,
    .favorite-list {
        grid-template-columns: 1fr;
    }

    .result-count {
        width: 100%;
    }

    .chips {
        grid-template-columns: 1fr;
    }

    .section-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .search-card,
    .category-card,
    .favorites-box,
    .contact-box {
        padding: 18px;
    }

    .vendor-card {
        min-height: auto;
        padding: 18px;
    }

    .card-header-band {
        margin: 0 -18px 16px;
        padding: 18px 18px 16px;
    }

    .vendor-card h3 {
        font-size: clamp(2.9rem, 12vw, 4rem);
    }
}

/* ===== ROMANTISCHES DESIGN-SYSTEM ===== */

:root {
    --champagne: #f8f0e0;
    --blush: #f7eae8;
}

body {
    --rule-line: rgba(122, 63, 92, 0.12);
    --margin-line: rgba(201, 166, 107, 0.35);
}

.ornament-divider {
    position: relative;
    text-align: center;
    margin: 40px 0 44px;
}

.ornament-divider::before,
.ornament-divider::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 1px;
    width: calc(50% - 68px);
}

.ornament-divider::before {
    left: 0;
    background: linear-gradient(90deg, transparent, var(--gold) 90%);
}

.ornament-divider::after {
    right: 0;
    background: linear-gradient(270deg, transparent, var(--gold) 90%);
}

.ornament-divider-inner {
    display: inline-block;
    font-family: "Ephesis", cursive;
    font-size: 2.4rem;
    color: var(--gold);
    line-height: 1;
    padding: 0 18px;
    position: relative;
}

.romantic-header {
    text-align: center;
    margin: 0 0 36px;
}

.romantic-header .kicker {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    font-family: "Ephesis", cursive;
    font-size: clamp(1.6rem, 2.2vw, 2.1rem);
    color: var(--gold);
    line-height: 1;
    margin-bottom: 4px;
}

.romantic-header .kicker::before {
    content: "";
    display: inline-block;
    width: 48px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold));
}

.romantic-header .kicker::after {
    content: "";
    display: inline-block;
    width: 48px;
    height: 1px;
    background: linear-gradient(270deg, transparent, var(--gold));
}

.romantic-header h2 {
    margin: 0;
}

.romantic-header .subtext {
    margin: 10px auto 0;
    max-width: 560px;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.65;
    font-weight: 500;
}

.search-intro {
    background: linear-gradient(135deg,
            rgba(201, 155, 144, 0.10) 0%,
            rgba(248, 240, 224, 0.70) 50%,
            rgba(201, 166, 107, 0.10) 100%);
    border: 1px solid rgba(201, 166, 107, 0.22);
    border-radius: var(--radius);
    padding: 28px 32px;
    text-align: center;
    margin-bottom: 22px;
}

.search-intro .script-title {
    font-family: "Ephesis", cursive;
    font-size: clamp(2.2rem, 3.5vw, 3.2rem);
    color: var(--teal);
    display: block;
    line-height: 1;
    margin-bottom: 8px;
}

.search-intro p {
    margin: 0;
    color: var(--muted);
    font-size: 0.98rem;
    line-height: 1.65;
}

.section-head-romantic {
    text-align: center;
    margin: 52px 0 28px;
}

.section-head-romantic .kicker {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-family: "Ephesis", cursive;
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 4px;
    line-height: 1;
}

.section-head-romantic .kicker::before {
    content: "";
    display: inline-block;
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold));
}

.section-head-romantic .kicker::after {
    content: "";
    display: inline-block;
    width: 40px;
    height: 1px;
    background: linear-gradient(270deg, transparent, var(--gold));
}

.section-head-romantic h2 {
    margin: 0;
    color: var(--text);
    font-size: clamp(3.4rem, 5.5vw, 5.4rem);
    letter-spacing: -0.04em;
    line-height: 0.88;
    font-weight: 500;
}

.section-head-romantic p {
    margin: 10px auto 0;
    max-width: 580px;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.6;
}

.favorites-box {
    background:
        linear-gradient(135deg,
            rgba(201, 155, 144, 0.09) 0%,
            rgba(253, 249, 243, 0.97) 40%,
            rgba(201, 166, 107, 0.09) 100%) !important;
    border-color: rgba(201, 166, 107, 0.28) !important;
}

/* ── Contact box animations ── */
@keyframes contactHeartFloat {
    0% {
        transform: translateY(0) scale(1) rotate(var(--hr, 0deg));
        opacity: 0;
    }

    15% {
        opacity: var(--hop, 0.5);
    }

    85% {
        opacity: var(--hop, 0.5);
    }

    100% {
        transform: translateY(-120px) scale(0.65) rotate(calc(var(--hr, 0deg) + 22deg));
        opacity: 0;
    }
}

@keyframes contactRingPulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.16;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.09);
        opacity: 0.07;
    }
}

@keyframes contactShimmerSlide {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(200%);
    }
}

.contact-box {
    background: linear-gradient(135deg,
            #6b3a52 0%,
            #8b4a6a 30%,
            #9e5c6e 55%,
            #7a4a5e 80%,
            #5e3248 100%) !important;
    border: none !important;
    color: #fff !important;
    position: relative;
    overflow: hidden;
}

/* soft light-leak shimmer — GPU-friendly translateX */
.contact-box-shimmer {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.contact-box-shimmer::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(255, 240, 220, 0.08) 50%,
            transparent 100%);
    animation: contactShimmerSlide 5s ease-in-out infinite;
    will-change: transform;
}

.contact-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 60% at 10% 20%, rgba(255, 220, 200, 0.12), transparent),
        radial-gradient(ellipse 50% 70% at 90% 80%, rgba(201, 166, 107, 0.16), transparent);
    pointer-events: none;
    z-index: 0;
}

.contact-box::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 440px;
    height: 440px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: contactRingPulse 5s ease-in-out infinite;
    will-change: transform, opacity;
    pointer-events: none;
    z-index: 0;
}

.contact-box-hearts {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.contact-box-hearts span {
    position: absolute;
    bottom: -10px;
    font-size: var(--hs, 1rem);
    left: var(--hl, 20%);
    will-change: transform, opacity;
    animation: contactHeartFloat var(--hd, 6s) ease-in var(--hdelay, 0s) infinite;
    --hr: var(--hrot, -10deg);
    --hop: var(--hopacity, 0.45);
}

.contact-box h2,
.contact-box>p,
.contact-actions {
    position: relative;
    z-index: 1;
}

.contact-box h2 {
    color: #fff !important;
}

.contact-box>p {
    color: rgba(255, 240, 230, 0.88) !important;
}

.contact-link {
    background: rgba(255, 255, 255, 0.15) !important;
    border: 1px solid rgba(255, 255, 255, 0.32) !important;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.contact-link:hover {
    background: rgba(255, 255, 255, 0.28) !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
}

@media (prefers-reduced-motion: reduce) {
    .contact-box::after {
        animation: none;
    }

    .contact-box-shimmer::after {
        animation: none;
    }

    .contact-box-hearts span {
        animation: none;
        opacity: 0;
    }
}

.filter-main-btn {
    background: linear-gradient(135deg, #7a3f5c 0%, #9e5c6e 100%) !important;
    border-radius: 999px !important;
    min-height: 54px !important;
    padding: 0 36px !important;
    letter-spacing: 0.02em !important;
    box-shadow: 0 14px 32px rgba(122, 63, 92, 0.28) !important;
}

.filter-main-btn:hover {
    box-shadow: 0 18px 42px rgba(122, 63, 92, 0.38) !important;
}

.vendor-card:hover {
    background: linear-gradient(160deg,
            rgba(255, 252, 246, 0.99) 0%,
            rgba(252, 246, 236, 0.98) 100%) !important;
}

.site-footer {
    border-top: none !important;
    padding: 0 0 28px !important;
}

.footer-ornament {
    text-align: center;
    padding: 22px 0 20px;
    position: relative;
    margin-bottom: 10px;
}

.footer-ornament::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
            transparent 0%,
            var(--gold) 25%,
            var(--rose) 50%,
            var(--gold) 75%,
            transparent 100%);
}

.footer-ornament span {
    position: relative;
    display: inline-block;
    background: var(--paper-base);
    padding: 0 20px;
    font-family: "Ephesis", cursive;
    font-size: 1.9rem;
    color: var(--rose);
    line-height: 1;
}

.badge {
    background: rgba(201, 155, 144, 0.12) !important;
    color: #9a5555 !important;
}

.empty-state {
    background:
        linear-gradient(135deg,
            rgba(201, 155, 144, 0.06),
            rgba(255, 255, 255, 0.90),
            rgba(201, 166, 107, 0.06)) !important;
}

.controls-section {
    position: relative;
}

.controls-section>.container {
    position: relative;
    z-index: 1;
}

@media (max-width: 760px) {
    .search-intro {
        padding: 20px 18px;
    }

    .ornament-divider {
        margin: 28px 0 32px;
    }
}

/* ── SKIP-LINK ── */
.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    z-index: 9999;
    padding: 0.5rem 1rem;
    background: var(--teal);
    color: #fff;
    font-weight: 700;
    border-radius: 0 0 4px 4px;
    text-decoration: none;
}

.skip-link:focus {
    top: 0;
}

/* ── FOCUS VISIBLE ── */
:focus-visible {
    outline: 2px solid var(--teal);
    outline-offset: 3px;
    border-radius: 2px;
}

button:focus-visible,
a:focus-visible {
    outline: 2px solid var(--teal);
    outline-offset: 3px;
}

/* ── TO TOP BUTTON ── */
.to-top {
    position: fixed;
    bottom: 32px;
    right: 28px;
    z-index: 900;
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: var(--teal);
    color: #fff;
    font-size: 1.3rem;
    display: grid;
    place-items: center;
    box-shadow: 0 6px 22px rgba(122, 63, 92, 0.32);
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.to-top.visible {
    opacity: 1;
    pointer-events: auto;
}

.to-top:hover {
    transform: translateY(-3px);
    background: var(--teal-2);
}

/* ── COOKIE BANNER ── */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9000;
    padding: 0 16px 16px;
    display: none;
}

.cookie-banner.is-visible {
    display: block;
}

.cookie-banner__inner {
    max-width: 760px;
    margin: 0 auto;
    background: linear-gradient(160deg, rgba(253, 249, 243, 0.99) 0%, rgba(250, 245, 235, 0.98) 100%);
    border: 1px solid rgba(215, 200, 178, 0.75);
    box-shadow: 0 -4px 32px rgba(100, 70, 40, 0.12);
    border-radius: var(--radius);
    padding: 20px 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
    align-items: center;
}

.cookie-banner__title {
    font-weight: 800;
    font-size: 1rem;
    color: var(--text);
    margin: 0;
    width: 100%;
}

.cookie-banner__text {
    margin: 0;
    font-size: 0.9rem;
    color: var(--muted);
    flex: 1 1 280px;
}

.cookie-banner__link {
    color: var(--teal);
    text-decoration: underline;
}

.cookie-banner__actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 10px 20px;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    border: 2px solid var(--teal);
    transition: 0.18s ease;
}

.cookie-btn--secondary {
    background: transparent;
    color: var(--teal);
}

.cookie-btn--secondary:hover {
    background: var(--teal-soft);
}

.cookie-btn--primary {
    background: var(--teal);
    color: #fff;
}

.cookie-btn--primary:hover {
    background: var(--teal-2);
    border-color: var(--teal-2);
}

@media (max-width: 560px) {
    .cookie-banner__actions {
        width: 100%;
    }

    .cookie-btn {
        flex: 1;
        text-align: center;
    }
}

/* ── PRINT STYLES ── */
@media print {
    .site-header,
    .cookie-banner,
    .to-top,
    .hero-orbs,
    .hero-petals,
    .hero-sparkles,
    .filter-bar,
    .controls-section {
        display: none !important;
    }

    body {
        font-size: 12pt;
        color: #000;
        background: #fff;
    }

    a[href]::after {
        content: " (" attr(href) ")";
        font-size: 10pt;
        color: #555;
    }

    h2, h3 {
        page-break-after: avoid;
    }

    img {
        max-width: 100%;
        page-break-inside: avoid;
    }
}

/* ── GLOBAL REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}
