:root {
    --bg: #f6f1e7;
    --ink: #2e2a25;
    --ink-soft: #5b554d;
    --accent: #7a6a53;
    --accent-soft: #cbc0b0;
    --sage: #78876a;
    --lavender: #6f5d88;
    --cream: #fffaf2;
    --line: #d9cfbf;
    --shadow: 0 18px 45px rgba(50, 38, 24, 0.13);
    --radius-xl: 28px;
    --radius-lg: 18px;
    --radius-md: 12px;
    --max: 1160px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Nunito Sans", "Segoe UI", sans-serif;
    color: var(--ink);
    background:
        radial-gradient(1300px 720px at -5% -15%, rgba(232, 216, 193, 0.45) 0%, transparent 54%),
        radial-gradient(980px 620px at 105% -8%, rgba(199, 208, 186, 0.38) 0%, transparent 58%),
        var(--bg);
    line-height: 1.6;
    overflow-x: hidden;
}

body.info-popup-open {
    overflow: hidden;
}

.info-popup {
    position: fixed;
    inset: 0;
    z-index: 140;
    overflow-y: auto;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 16px;
}

.info-popup-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(26, 18, 11, 0.62);
    backdrop-filter: blur(3px);
}

.info-popup-dialog {
    position: relative;
    z-index: 1;
    width: min(680px, 100%);
    margin: auto;
    border-radius: 18px;
    border: 1px solid rgba(217, 207, 191, 0.95);
    background: linear-gradient(170deg, #fffef9, #f7efe2);
    box-shadow: 0 24px 60px rgba(32, 22, 14, 0.32);
    padding: 28px 24px 22px;
    color: var(--ink);
}

.info-popup-dialog h3 {
    margin: 0 0 10px;
    font-size: clamp(1.6rem, 2.6vw, 2.2rem);
}

.info-popup-dialog p {
    margin: 0;
    color: var(--ink-soft);
    line-height: 1.7;
    font-size: 1.03rem;
}

.info-popup-image {
    display: block;
    width: min(420px, 100%);
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid rgba(217, 207, 191, 0.92);
    margin: 0 auto 14px;
}

.info-popup-actions {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.info-popup-link {
    min-height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(111, 93, 136, 0.38);
    background: rgba(111, 93, 136, 0.1);
    color: var(--ink);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    padding: 0 20px;
    text-decoration: none;
}

.info-popup-link:hover {
    background: rgba(111, 93, 136, 0.18);
}

.info-popup-button {
    min-height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(122, 106, 83, 0.42);
    background: rgba(122, 106, 83, 0.12);
    color: var(--ink);
    font: inherit;
    font-weight: 800;
    padding: 0 20px;
    cursor: pointer;
}

.info-popup-button:hover {
    background: rgba(122, 106, 83, 0.2);
}

.info-popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    border: 1px solid rgba(160, 145, 121, 0.55);
    background: rgba(255, 255, 255, 0.85);
    color: var(--ink-soft);
    font-size: 1.3rem;
    line-height: 1;
    cursor: pointer;
}

.info-popup-close:hover {
    color: var(--ink);
    background: rgba(255, 255, 255, 0.96);
}

.cookie-banner {
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: 14px;
    z-index: 120;
    border: 1px solid rgba(170, 154, 125, 0.75);
    border-radius: 14px;
    background: rgba(255, 250, 242, 0.98);
    box-shadow: 0 18px 38px rgba(48, 37, 24, 0.2);
    padding: 12px 14px;
}

.cookie-banner-inner {
    max-width: 980px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.cookie-banner-text {
    margin: 0;
    color: var(--ink-soft);
    font-size: 0.9rem;
}

.cookie-banner-text a {
    color: #4f6a45;
    font-weight: 700;
    text-decoration: underline;
}

.cookie-banner-btn {
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--cream);
    color: var(--ink);
    font-weight: 700;
    padding: 8px 14px;
    cursor: pointer;
}

.cookie-banner-btn:hover {
    background: rgba(127, 143, 114, 0.14);
}

@media (max-width: 760px) {
    .cookie-banner {
        left: 10px;
        right: 10px;
        bottom: 10px;
    }
}

.notfound-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.notfound-page main {
    flex: 1 0 auto;
}

.lieferinfos-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.lieferinfos-page main {
    flex: 1 0 auto;
}

h1,
h2,
h3 {
    font-family: "Cormorant Garamond", "Times New Roman", serif;
    line-height: 1.1;
    letter-spacing: -0.01em;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(var(--max), 92%);
    margin: 0 auto;
}

.noise {
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: 0.2;
    background-image: repeating-linear-gradient(
        90deg,
        rgba(80, 65, 47, 0.03),
        rgba(80, 65, 47, 0.03) 1px,
        transparent 1px,
        transparent 4px
    );
    z-index: -1;
}

.leaf-glow {
    position: fixed;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    filter: blur(50px);
    opacity: 0.3;
    z-index: -2;
    animation: drift 14s ease-in-out infinite alternate;
}

.leaf-glow.leaf-a {
    background: rgba(166, 188, 146, 0.82);
    top: -95px;
    right: -60px;
}

.leaf-glow.leaf-b {
    background: rgba(161, 144, 186, 0.78);
    bottom: -130px;
    left: -110px;
    animation-delay: 2s;
}

@keyframes drift {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(34px, -26px) scale(1.06);
    }
}

header {
    position: sticky;
    top: 0;
    z-index: 30;
    backdrop-filter: blur(10px);
    background: rgba(246, 241, 231, 0.84);
    border-bottom: 1px solid rgba(217, 207, 191, 0.8);
    transition: background 0.25s ease, box-shadow 0.25s ease;
}

.topbar {
    min-height: 112px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    gap: clamp(14px, 2.4vw, 40px);
    padding: 16px 0;
    transition: min-height 0.28s ease, padding 0.28s ease;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    justify-self: center;
    transition: transform 0.28s ease;
}

.brand-logo {
    width: 64px;
    height: 64px;
    object-fit: contain;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    transition: width 0.28s ease, height 0.28s ease;
}

.brand-fallback {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: radial-gradient(circle at 30% 30%, #ffffff, #ece3d6 68%);
    color: var(--lavender);
    display: none;
    align-items: center;
    justify-content: center;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.55rem;
    font-weight: 700;
    transition: width 0.28s ease, height 0.28s ease, font-size 0.28s ease;
}

.brand-text {
    display: grid;
    line-height: 1;
}

.brand-text strong {
    letter-spacing: 0.03em;
    font-size: 1.08rem;
    text-transform: uppercase;
    color: var(--ink-soft);
    transition: font-size 0.28s ease;
}

.brand-text span {
    font-family: "Caveat", cursive;
    font-size: 2.3rem;
    color: var(--ink);
    margin-top: -2px;
    transition: font-size 0.28s ease;
}

.topbar-links {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
    max-height: 56px;
    overflow-x: visible;
    overflow-y: hidden;
    transform-origin: top center;
    transition: opacity 0.24s ease, transform 0.24s ease, visibility 0.24s ease, max-height 0.24s ease;
}

.nav-side-left {
    justify-content: flex-end;
    padding-right: clamp(10px, 2.8vw, 56px);
}

.nav-side-right {
    justify-content: flex-start;
    padding-left: clamp(10px, 2.8vw, 56px);
}

.topbar-links a,
nav a {
    padding: 9px 12px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--ink-soft);
    white-space: nowrap;
    transition: 0.2s ease;
}

.topbar-links a:hover,
.topbar-links a.active,
nav a:hover,
nav a.active {
    color: var(--ink);
    background: rgba(111, 93, 136, 0.14);
}

#mainNav {
    display: none;
}

header.compact {
    background: rgba(246, 241, 231, 0.92);
    box-shadow: 0 8px 22px rgba(66, 53, 39, 0.12);
}

header.compact .topbar {
    min-height: 70px;
    padding: 4px 0;
}

header.compact .topbar-links {
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    transform: translateY(-14px) scaleY(0.72);
    pointer-events: none;
}

header.compact .nav-side-right {
    opacity: 1;
    visibility: visible;
    max-height: 56px;
    transform: none;
    pointer-events: auto;
}

header.compact .nav-side-right > a {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-14px) scaleY(0.72);
    pointer-events: none;
}

header.compact .nav-side-right .boutique-cart-toggle-header {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

header.compact .brand {
    transform: translateY(-3px);
}

header.compact .brand-logo,
header.compact .brand-fallback {
    width: 44px;
    height: 44px;
}

header.compact .brand-text strong {
    font-size: 0.86rem;
}

header.compact .brand-text span {
    font-size: 1.6rem;
}

header.compact:hover .topbar {
    min-height: 112px;
    padding: 16px 0;
}

header.compact:hover .topbar-links {
    opacity: 1;
    visibility: visible;
    max-height: 56px;
    transform: none;
    pointer-events: auto;
}

header.compact:hover .nav-side-right > a {
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
}

header.compact:hover .brand {
    transform: none;
}

header.compact:hover .brand-logo,
header.compact:hover .brand-fallback {
    width: 64px;
    height: 64px;
}

header.compact:hover .brand-text strong {
    font-size: 1.08rem;
}

header.compact:hover .brand-text span {
    font-size: 2.3rem;
}

.menu-btn {
    display: none;
    justify-self: end;
    border: 1px solid var(--line);
    background: var(--cream);
    border-radius: 10px;
    width: 42px;
    height: 42px;
    font-size: 1.1rem;
    cursor: pointer;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: none;
    appearance: none;
    border-radius: 999px;
    padding: 11px 20px;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:focus-visible {
    outline: 2px solid rgba(111, 93, 136, 0.42);
    outline-offset: 2px;
}

.btn-primary {
    background: linear-gradient(130deg, #6f5d88 0%, #78876a 100%);
    color: #fffdfa;
    box-shadow: 0 12px 26px rgba(66, 53, 86, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(66, 53, 86, 0.34);
}

.btn-outline {
    background: var(--cream);
    border: 1px solid var(--line);
    color: var(--ink);
}

.announcement-ticker {
    margin-top: 0;
    width: 100%;
    border: 1px solid rgba(111, 93, 136, 0.22);
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(111, 93, 136, 0.16), rgba(120, 135, 106, 0.2));
    padding: 8px 14px;
    overflow: hidden;
    white-space: nowrap;
}

header .announcement-ticker {
    width: 100%;
    border-left: 0;
    border-right: 0;
    border-top: 0;
    border-bottom-color: rgba(217, 207, 191, 0.9);
    border-radius: 0;
    padding: 8px 0;
}

header .announcement-track {
    padding: 0 18px;
}

.announcement-track {
    display: flex;
    align-items: center;
    gap: 28px;
    width: 100%;
    will-change: transform;
}

.announcement-track.is-scrolling {
    width: max-content;
    animation: ticker-scroll var(--ticker-duration, 26s) linear infinite;
}

.announcement-track:not(.is-scrolling) {
    justify-content: center;
}

.announcement-item {
    color: #3e4e35;
    font-weight: 800;
    font-size: 0.92rem;
    flex: 0 0 auto;
}

.announcement-item::before {
    content: "•";
    margin-right: 10px;
    color: #6f5d88;
}

@keyframes ticker-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.hero {
    padding: 0 0 66px;
}

.hero-home {
    display: grid;
    gap: 0;
}

.hero-banner {
    position: relative;
    min-height: clamp(320px, 48vw, 540px);
    background:
        linear-gradient(180deg, rgba(40, 32, 22, 0.08) 0%, rgba(40, 32, 22, 0.18) 100%),
        var(--hero-banner-image, linear-gradient(135deg, #efe5d7 0%, #f9f4ea 100%));
    background-size: cover;
    background-position: center;
    border-bottom: 1px solid rgba(217, 207, 191, 0.8);
    overflow: hidden;
}

.hero-banner-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(255, 250, 242, 0) 0%, rgba(255, 250, 242, 0.14) 100%),
        radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.06) 100%);
}

.hero-content-wrap {
    padding-top: 28px;
}

.hero-copy {
    background: rgba(255, 250, 242, 0.9);
    border: 1px solid rgba(217, 207, 191, 0.85);
    border-radius: var(--radius-xl);
    padding: clamp(24px, 3.5vw, 48px);
    box-shadow: var(--shadow);
    max-width: 780px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.home-page .hero-copy {
    max-width: 1160px;
    border-radius: 18px;
    border: 1px solid rgba(217, 207, 191, 0.65);
    background: #f4f3f1;
    box-shadow: none;
    padding: clamp(28px, 4.2vw, 72px);
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    column-gap: clamp(26px, 4.8vw, 96px);
    row-gap: 16px;
    align-items: start;
}

.home-page #heroEyebrow {
    grid-column: 1;
    margin-bottom: 0;
    color: #7a7067;
    letter-spacing: 0.05em;
    font-size: clamp(0.86rem, 1.15vw, 1.03rem);
}

.home-page #heroEyebrow::before {
    display: none;
}

.home-page #heroTitle {
    grid-column: 1;
    margin-bottom: 0;
    text-transform: uppercase;
    color: #6f655d;
    font-family: "Nunito Sans", "Segoe UI", sans-serif;
    letter-spacing: 0.01em;
    line-height: 0.98;
    font-size: clamp(2.25rem, 4.6vw, 4.1rem);
}

.home-page #heroLead {
    grid-column: 1;
    margin-top: 12px;
    max-width: 38ch;
    color: #635b54;
    font-size: clamp(1.08rem, 1.45vw, 1.55rem);
    line-height: 1.3;
}

.home-page .cta-row {
    grid-column: 1;
    margin-top: 8px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.83rem;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    font-weight: 800;
    color: var(--sage);
    margin-bottom: 16px;
}

.eyebrow::before {
    content: "";
    width: 26px;
    height: 2px;
    border-radius: 999px;
    background: var(--sage);
}

h1 {
    font-size: clamp(2rem, 4.1vw, 4rem);
    margin-bottom: 16px;
}

h2 {
    font-size: clamp(1.65rem, 2.8vw, 2.8rem);
    margin-bottom: 10px;
}

.lead {
    font-size: clamp(1.01rem, 1.6vw, 1.2rem);
    color: var(--ink-soft);
    max-width: 58ch;
}

.section-copy {
    color: var(--ink-soft);
    max-width: 72ch;
}

.cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.hero-stats {
    margin-top: 32px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.home-page .hero-stats {
    grid-column: 2;
    grid-row: 1 / span 4;
    margin-top: 0;
    align-self: center;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 36px;
}

.stat {
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 14px;
}

.stat-link {
    text-decoration: none;
    color: inherit;
}

.stat-link:hover {
    transform: translateY(-2px);
}

.stat .value {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(1.3rem, 2.1vw, 1.8rem);
    font-weight: 800;
    color: #55473c;
}

.stat .label {
    color: var(--ink-soft);
    font-size: 0.88rem;
}

.home-page .stat {
    background: transparent;
    border: 0;
    border-radius: 0;
    border-top: 1px solid rgba(99, 90, 82, 0.5);
    padding: 20px 10px 8px;
    text-align: center;
}

.home-page .stat-link:hover {
    border-top-color: rgba(99, 90, 82, 0.85);
}

.home-page .stat .value {
    font-family: "Nunito Sans", "Segoe UI", sans-serif;
    font-size: clamp(2.05rem, 2.4vw, 2.85rem);
    font-weight: 500;
    color: #6b6057;
}

.home-page .stat .label {
    margin-top: 4px;
    font-size: clamp(1rem, 1.05vw, 1.36rem);
    color: #655d56;
}

section {
    padding: 74px 0;
}

.section-head {
    margin-bottom: 26px;
}

.offer-grid,
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.insight-card {
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    background: #fffdf8;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(50, 38, 24, 0.1);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.insight-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.insight-card img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    display: block;
}

.insight-caption {
    padding: 10px 12px 12px;
    color: var(--ink-soft);
    font-size: 0.92rem;
}

.offer-card {
    padding: 22px;
    border-radius: var(--radius-lg);
    background: #fffdf8;
    border: 1px solid var(--line);
    transform-style: preserve-3d;
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.offer-card:hover {
    box-shadow: var(--shadow);
}

.offer-index {
    width: 30px;
    aspect-ratio: 1;
    border-radius: 8px;
    background: rgba(127, 143, 114, 0.17);
    color: #58684f;
    display: grid;
    place-items: center;
    font-weight: 800;
    margin-bottom: 14px;
}

.offer-card h3 {
    margin-bottom: 8px;
    font-size: 1.2rem;
}

/* ── News cards ─────────────────────────────────── */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 280px));
    justify-content: center;
    gap: 24px;
    margin-top: 22px;
}

.news-card {
    display: flex;
    flex-direction: column;
    border-radius: var(--radius-lg);
    background: #fffdf8;
    border: 1px solid var(--line);
    overflow: hidden;
    transition: box-shadow 0.24s ease, transform 0.24s ease;
}

.news-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

.news-card.is-zoomable {
    cursor: zoom-in;
}

.news-card.is-zoomable:focus-visible {
    outline: 3px solid rgba(111, 93, 136, 0.38);
    outline-offset: 4px;
}

.news-card-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: var(--mist);
}

.news-card-current {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
    padding: 5px 10px;
    border-radius: 999px;
    border: 1px solid rgba(214, 183, 126, 0.68);
    background: linear-gradient(180deg, rgba(244, 228, 191, 0.96), rgba(224, 196, 140, 0.94));
    color: #4f3510;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    box-shadow: 0 6px 14px rgba(20, 12, 6, 0.26);
}

.news-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.36s ease;
}

.news-card:hover .news-card-img-wrap img {
    transform: scale(1.04);
}

.news-card-body {
    padding: 18px 20px 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.news-card-date {
    font-size: 0.82rem;
    color: var(--ink-soft);
    margin-bottom: 6px;
    letter-spacing: 0.02em;
}

.news-card h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
    line-height: 1.3;
}

.news-card p {
    font-size: 0.95rem;
    color: var(--ink-soft);
    flex: 1;
}

.news-empty {
    text-align: center;
    color: var(--ink-soft);
    padding: 48px 0;
    font-size: 1rem;
}

.newsletter-signup {
    margin-top: 38px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: linear-gradient(145deg, rgba(255, 252, 246, 0.96), rgba(242, 235, 224, 0.92));
    padding: clamp(20px, 3vw, 34px);
    box-shadow: 0 16px 38px rgba(58, 42, 25, 0.09);
    display: grid;
    gap: 16px;
}

.newsletter-signup-head h2 {
    font-size: clamp(1.6rem, 2.6vw, 2.2rem);
    margin-bottom: 6px;
}

.newsletter-signup-head p {
    color: var(--ink-soft);
    max-width: 640px;
}

.newsletter-signup-form {
    display: grid;
    gap: 10px;
}

.newsletter-signup-verify {
    display: grid;
    gap: 10px;
}

.newsletter-signup-form label {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--ink-soft);
}

.newsletter-signup-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
}

.newsletter-signup-row input {
    min-height: 46px;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: #fffdf8;
    color: var(--ink);
    padding: 10px 12px;
    font: inherit;
}

#newsletterCode {
    letter-spacing: 0.16em;
    font-weight: 700;
}

.newsletter-signup-row input:focus {
    outline: 2px solid rgba(111, 93, 136, 0.36);
    outline-offset: 1px;
}

.newsletter-signup-row button {
    min-height: 46px;
    border-radius: 12px;
    border: 1px solid rgba(127, 143, 114, 0.55);
    background: rgba(127, 143, 114, 0.2);
    color: var(--ink);
    font: inherit;
    font-weight: 800;
    padding: 0 18px;
    cursor: pointer;
    transition: 0.2s ease;
}

.newsletter-signup-row button:hover {
    background: rgba(127, 143, 114, 0.3);
    border-color: rgba(127, 143, 114, 0.75);
}

.newsletter-signup-row button:disabled {
    opacity: 0.6;
    cursor: wait;
}

.newsletter-signup-status {
    min-height: 1.5em;
    color: var(--ink-soft);
    font-size: 0.92rem;
}

.newsletter-signup-status.error {
    color: #a43737;
}

.newsletter-signup-status.success {
    color: #2d6f2d;
}

.newsletter-consent {
    margin: 4px 0 2px;
}

.newsletter-consent label {
    white-space: normal;
    line-height: 1.45;
    font-weight: 600;
}

.category-filters {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

.category-filter-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.boutique-advanced-filters {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255, 253, 248, 0.65);
}

.boutique-advanced-filters label {
    display: grid;
    gap: 6px;
    font-size: 0.84rem;
    font-weight: 700;
    color: var(--ink-soft);
}

.boutique-advanced-filters input,
.boutique-advanced-filters select {
    min-height: 40px;
    border-radius: 10px;
    border: 1px solid var(--line);
    background: #fffdf8;
    color: var(--ink);
    padding: 8px 10px;
    font: inherit;
}

.filter-btn {
    border: 1px solid var(--line);
    background: #fffdf8;
    color: var(--ink-soft);
    border-radius: 999px;
    padding: 8px 14px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.2s ease;
}

.filter-btn.active,
.filter-btn:hover {
    background: rgba(127, 143, 114, 0.2);
    color: var(--ink);
    border-color: rgba(127, 143, 114, 0.45);
}

.filter-btn.is-special {
    border-color: rgba(203, 145, 47, 0.55);
    background: linear-gradient(180deg, rgba(255, 244, 214, 0.95), rgba(255, 234, 188, 0.9));
    color: #6a4a12;
}

.filter-btn.is-special.active,
.filter-btn.is-special:hover {
    border-color: rgba(185, 124, 26, 0.7);
    background: linear-gradient(180deg, rgba(255, 236, 190, 0.98), rgba(255, 223, 154, 0.96));
    color: #55390d;
}

.filter-btn.is-saison {
    border-color: rgba(80, 160, 70, 0.5);
    background: linear-gradient(180deg, rgba(210, 242, 205, 0.95), rgba(180, 228, 170, 0.9));
    color: #1a421a;
}

.filter-btn.is-saison.active,
.filter-btn.is-saison:hover {
    border-color: rgba(60, 140, 50, 0.7);
    background: linear-gradient(180deg, rgba(185, 232, 178, 0.98), rgba(150, 215, 140, 0.96));
    color: #123012;
}

.product-grid-empty {
    grid-column: 1 / -1;
    text-align: center;
    color: var(--ink-soft);
    padding: 18px;
}

.product-card {
    display: flex;
    flex-direction: column;
    border-radius: var(--radius-lg);
    background: var(--cream);
    border: 1px solid var(--line);
    overflow: hidden;
    transition: 0.25s ease;
}

.product-card-link {
    display: block;
}

.shop-page:not(.product-page) .product-grid {
    grid-template-columns: repeat(auto-fill, 210px);
    justify-content: start;
    gap: 14px;
}

.shop-page:not(.product-page) .product-image {
    aspect-ratio: 4 / 4.6;
    font-size: 0.95rem;
}

.shop-page:not(.product-page) .product-body {
    padding: 12px;
}

.shop-page:not(.product-page) .product-body h3 {
    font-size: 1.2rem;
}

.shop-page:not(.product-page) .product-badge-handcrafted,
.shop-page:not(.product-page) .product-badge-saison {
    padding: 3px 8px;
    font-size: 0.64rem;
}

.product-title-link {
    color: inherit;
    text-decoration: none;
}

.product-title-link:hover {
    text-decoration: underline;
}

.product-card.hidden {
    display: none;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.product-card.is-zoomable {
    cursor: zoom-in;
}

.product-card.is-zoomable:focus-visible {
    outline: 3px solid rgba(111, 93, 136, 0.38);
    outline-offset: 4px;
}

.product-image {
    aspect-ratio: 4 / 5;
    background:
        linear-gradient(130deg, rgba(127, 143, 114, 0.42), rgba(122, 109, 146, 0.24)),
        repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.12) 6px, transparent 6px, transparent 13px);
    position: relative;
    display: grid;
    place-items: center;
    font-family: "Cormorant Garamond", serif;
    letter-spacing: 0.06em;
    color: #fffdfa;
    font-size: 1.35rem;
}

.product-badge-handcrafted {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid rgba(214, 183, 126, 0.68);
    background: linear-gradient(180deg, rgba(244, 228, 191, 0.96), rgba(224, 196, 140, 0.94));
    color: #4f3510;
    font-size: 0.73rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: 0 6px 14px rgba(20, 12, 6, 0.26);
    text-shadow: none;
}

.product-badge-saison {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid rgba(80, 160, 70, 0.55);
    background: linear-gradient(180deg, rgba(200, 242, 192, 0.96), rgba(160, 220, 148, 0.94));
    color: #133813;
    font-size: 0.73rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: 0 6px 14px rgba(10, 30, 10, 0.22);
    text-shadow: none;
}

.product-image.has-photo {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

body.lightbox-open {
    overflow: hidden;
}

.image-lightbox {
    position: fixed;
    inset: 0;
    z-index: 90;
    display: none;
}

.image-lightbox.open {
    display: grid;
    place-items: center;
}

.image-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(28, 20, 13, 0.84);
    backdrop-filter: blur(8px);
}

.image-lightbox-dialog {
    position: relative;
    z-index: 1;
    width: min(92vw, 1080px);
    max-height: min(92vh, 960px);
    overflow-y: auto;
    margin: 0;
    padding: 18px 18px 18px;
    border-radius: 22px;
    background: rgba(255, 250, 242, 0.97);
    border: 1px solid rgba(217, 207, 191, 0.78);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

.image-lightbox-image {
    display: block;
    width: 100%;
    max-height: min(62vh, 700px);
    object-fit: contain;
    border-radius: 16px;
    background: #120f0b;
}

.image-lightbox-caption {
    min-height: 1.4em;
    margin-top: 10px;
    padding: 0 4px;
    color: var(--ink-soft);
    font-size: 0.95rem;
}

.image-lightbox-ingredients {
    margin-top: 10px;
    padding: 10px 14px;
    border-radius: 10px;
    background: rgba(84, 70, 50, 0.07);
    border: 1px solid var(--line);
    font-size: 0.88rem;
    color: var(--ink-soft);
    line-height: 1.6;
}

.image-lightbox-ingredients strong {
    color: var(--ink);
    font-weight: 700;
}

.image-lightbox-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 999px;
    background: rgba(46, 42, 37, 0.74);
    color: #fffdfa;
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
}

.image-lightbox-close:hover {
    background: rgba(46, 42, 37, 0.88);
}

.product-body {
    padding: 14px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-actions {
    margin-top: auto;
    padding-top: 10px;
    display: grid;
    gap: 8px;
}

.product-detail-btn {
    width: 100%;
    min-height: 40px;
    border-radius: 10px;
    border: 1px solid rgba(122, 106, 83, 0.4);
    background: rgba(122, 106, 83, 0.12);
    color: var(--ink);
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s ease;
}

.product-detail-btn:hover {
    background: rgba(122, 106, 83, 0.2);
    border-color: rgba(122, 106, 83, 0.56);
}

.product-detail {
    display: grid;
}

.product-detail-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 20px;
    padding: 20px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    background: #fffdf8;
    box-shadow: 0 10px 26px rgba(50, 38, 24, 0.1);
}

.product-detail-media .product-image {
    width: 100%;
    min-height: 420px;
}

.product-detail-thumbnails {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(74px, 1fr));
    gap: 10px;
    margin-top: 12px;
}

.product-detail-thumb {
    border: 1px solid rgba(122, 106, 83, 0.26);
    border-radius: 12px;
    padding: 0;
    overflow: hidden;
    background: #fffdf8;
    min-height: 74px;
}

.product-detail-thumb img {
    display: block;
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.product-detail-thumb.is-active {
    border-color: rgba(122, 106, 83, 0.62);
    box-shadow: 0 0 0 2px rgba(122, 106, 83, 0.18);
}

.product-detail-body {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.product-detail-back {
    color: var(--ink-soft);
    font-weight: 700;
    text-decoration: none;
}

.product-detail-back:hover {
    text-decoration: underline;
}

.product-detail-ingredients {
    margin-top: 4px;
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid var(--line);
    background: rgba(122, 106, 83, 0.08);
    color: var(--ink-soft);
    font-size: 0.92rem;
}

.product-detail-empty {
    text-align: center;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: #fffdf8;
}

.product-stripe-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 40px;
    border-radius: 10px;
    border: 1px solid rgba(182, 148, 84, 0.52);
    background: linear-gradient(180deg, rgba(255, 239, 206, 0.95), rgba(245, 214, 156, 0.92));
    color: #4f3510;
    font-weight: 800;
    text-decoration: none;
    transition: 0.2s ease;
}

.product-stripe-link:hover {
    border-color: rgba(162, 128, 64, 0.66);
    background: linear-gradient(180deg, rgba(255, 231, 177, 0.98), rgba(240, 201, 126, 0.96));
    color: #3f290c;
}

.product-header {
    min-height: 70px;
    display: flex;
    flex-direction: column;
}

.product-header h3 {
    margin: 0 0 4px 0;
    flex: 1;
}

.product-price-container {
    min-height: 60px;
    display: flex;
    align-items: flex-start;
}

.product-price {
    margin-top: 8px;
    margin-bottom: 6px;
    font-weight: 800;
    color: #42533a;
}

.product-price-discounted {
    display: grid;
    gap: 3px;
    align-items: start;
}

.product-price-main-row {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.product-price-sub-row {
    display: flex;
    align-items: baseline;
    gap: 4px;
    flex-wrap: wrap;
}

.product-price-old {
    color: #8d877f;
    text-decoration: line-through;
    font-weight: 600;
}

.product-price-old-label {
    color: #8d877f;
    font-size: 0.82rem;
    font-weight: 700;
}

.product-price-new {
    color: #3f5a2d;
    font-weight: 800;
    font-size: 1.15em;
}

.product-price-discount-badge {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 2px 8px;
    border-radius: 999px;
    background: rgba(185, 58, 43, 0.12);
    border: 1px solid rgba(185, 58, 43, 0.24);
    color: #b93a2b;
    font-size: 0.76rem;
    font-weight: 800;
    line-height: 1;
}

.product-quantity {
    margin-top: 6px;
    margin-bottom: 6px;
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

.product-stock {
    margin-top: 2px;
    margin-bottom: 8px;
    font-size: 0.88rem;
    color: #4e5d45;
    font-weight: 700;
}

.product-stock.out {
    color: #a43737;
}

.product-cart-btn {
    width: 100%;
    min-height: 42px;
    border-radius: 10px;
    border: 1px solid var(--line);
    background: rgba(127, 143, 114, 0.14);
    color: var(--ink);
    font-weight: 800;
    cursor: pointer;
    transition: 0.2s ease;
}

.product-cart-btn:hover {
    background: rgba(127, 143, 114, 0.24);
    border-color: rgba(127, 143, 114, 0.45);
}

.product-cart-btn:disabled {
    cursor: not-allowed;
    opacity: 0.6;
    background: rgba(176, 168, 156, 0.25);
    border-color: rgba(176, 168, 156, 0.62);
}

.boutique-cart {
    border: 1px solid var(--line);
    background: linear-gradient(180deg, #fffefb 0%, #faf4e9 100%);
    border-radius: var(--radius-lg);
    padding: 20px;
    display: grid;
    gap: 16px;
    box-shadow: 0 16px 38px rgba(58, 42, 25, 0.09);
}

.boutique-cart-toggle {
    position: relative;
    border: 1px solid rgba(165, 145, 112, 0.7);
    border-radius: 999px;
    background: linear-gradient(180deg, #fff7e7 0%, #f4e2c2 100%);
    color: #4b3b24;
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 18px rgba(41, 32, 20, 0.2);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.boutique-cart-toggle:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(41, 32, 20, 0.24);
}

.boutique-cart-icon {
    display: inline-flex;
    line-height: 0;
}

.boutique-cart-count {
    position: absolute;
    top: -7px;
    right: -7px;
    min-width: 1.5em;
    height: 1.5em;
    border-radius: 999px;
    background: rgba(75, 59, 36, 0.2);
    color: #3e3122;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 800;
    padding: 0 0.28em;
}

.boutique-cart-toggle.has-items .boutique-cart-count {
    background: #4f5f3f;
    color: #fffdf8;
}

.boutique-cart-toggle-floating {
    position: fixed;
    top: 92px;
    right: 16px;
    z-index: 65;
}

.boutique-cart-toggle-header {
    margin-left: auto;
    margin-right: -28px;
}

.nav-side-right {
    overflow: visible;
}

.boutique-cart-flyout {
    position: fixed;
    top: 146px;
    right: 16px;
    width: min(430px, calc(100vw - 24px));
    max-height: calc(100vh - 164px);
    overflow: auto;
    z-index: 64;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px) scale(0.98);
    transition: opacity 0.22s ease, transform 0.22s ease;
}

.boutique-cart-flyout.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.boutique-cart-close {
    position: sticky;
    top: 0;
    margin-left: auto;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    border: 1px solid rgba(170, 154, 125, 0.68);
    background: rgba(255, 252, 246, 0.95);
    color: #4d4438;
    font-size: 1.35rem;
    line-height: 1;
    cursor: pointer;
}

.boutique-cart-order-now {
    width: 100%;
    min-height: 42px;
    border-radius: 10px;
    border: 1px solid rgba(127, 143, 114, 0.52);
    background: linear-gradient(180deg, rgba(156, 175, 138, 0.24), rgba(127, 143, 114, 0.28));
    color: #2f3528;
    font-weight: 800;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.boutique-cart-order-now:hover {
    background: linear-gradient(180deg, rgba(156, 175, 138, 0.32), rgba(127, 143, 114, 0.36));
}

@media (max-width: 760px) {
    .boutique-cart-toggle-floating {
        top: auto;
        bottom: 12px;
        right: 12px;
    }

    .boutique-cart-flyout {
        top: 78px;
        bottom: auto;
        left: 12px;
        right: auto;
        width: calc(100vw - 24px);
        max-height: calc(100vh - 92px);
    }
}

.boutique-cart-empty {
    color: var(--ink-soft);
    font-weight: 700;
}

.boutique-cart-list {
    list-style: none;
    display: grid;
    gap: 10px;
}

.boutique-cart-item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    align-items: center;
    border: 1px solid rgba(204, 193, 174, 0.72);
    border-radius: 14px;
    padding: 12px 14px;
    background: rgba(255, 253, 248, 0.94);
}

.boutique-cart-item-preview {
    grid-template-columns: minmax(0, 1fr) auto;
}

.boutique-cart-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px dashed rgba(170, 152, 124, 0.5);
    margin-top: 2px;
    padding: 12px 4px 2px;
    font-size: 0.98rem;
    color: #4e453b;
}

.boutique-cart-total-row strong {
    font-size: 1.05rem;
    color: #2f2a25;
}

.boutique-cart-inline-link {
    color: #4f5f3f;
    font-weight: 700;
    text-decoration: none;
}

.boutique-cart-inline-link:hover {
    text-decoration: underline;
}

.boutique-cart-item-meta {
    color: var(--ink-soft);
    font-size: 0.9rem;
}

.boutique-cart-item-price {
    color: #42533a;
    font-size: 0.88rem;
    font-weight: 700;
}

.boutique-cart-controls {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.boutique-cart-control {
    width: 30px;
    height: 30px;
    border: 1px solid rgba(190, 177, 157, 0.9);
    border-radius: 8px;
    background: #ffffff;
    color: var(--ink);
    font-weight: 800;
    cursor: pointer;
}

.boutique-cart-control:hover {
    background: rgba(127, 143, 114, 0.12);
    border-color: rgba(127, 143, 114, 0.45);
}

.boutique-cart-control:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.boutique-cart-qty {
    min-width: 2ch;
    text-align: center;
    font-weight: 800;
}

.boutique-inquiry-form {
    display: grid;
    gap: 12px;
    padding: 14px;
    border: 1px solid rgba(206, 195, 176, 0.75);
    border-radius: 14px;
    background: rgba(255, 254, 251, 0.9);
}

.boutique-inquiry-form .split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.boutique-inquiry-form label {
    display: grid;
    gap: 6px;
    font-weight: 700;
    color: #51483f;
}

.boutique-inquiry-form input,
.boutique-inquiry-form select,
.boutique-inquiry-form textarea {
    width: 100%;
    min-height: 44px;
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid rgba(196, 183, 162, 0.82);
    background: #fffefc;
    color: var(--ink);
    font: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.boutique-inquiry-form input:focus,
.boutique-inquiry-form select:focus,
.boutique-inquiry-form textarea:focus {
    border-color: rgba(127, 143, 114, 0.62);
    box-shadow: 0 0 0 4px rgba(127, 143, 114, 0.16);
    outline: none;
}

.boutique-shipping-note {
    margin: 2px 0 0;
    font-size: 0.92rem;
    font-weight: 700;
    color: #5d544b;
}

.boutique-inquiry-form textarea {
    min-height: 110px;
    resize: vertical;
}

#boutiqueInquirySubmit {
    margin-top: 4px;
    min-height: 48px;
}

.boutique-inquiry-status {
    min-height: 1.4em;
    color: var(--ink-soft);
    font-weight: 700;
}

.boutique-inquiry-status.error {
    color: #9b2f2f;
}

.boutique-inquiry-status.success {
    color: #355f2d;
}

.checkout-success-card {
    display: grid;
    gap: 18px;
    padding: 24px;
    border: 1px solid rgba(206, 195, 176, 0.75);
    border-radius: 20px;
    background: rgba(255, 254, 251, 0.94);
    box-shadow: 0 20px 40px rgba(61, 48, 35, 0.08);
}

.checkout-success-state {
    margin: 0;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #7b6b58;
}

.checkout-success-state.success {
    color: #355f2d;
}

.checkout-success-copy {
    margin: 0;
    color: var(--ink-soft);
}

.checkout-success-meta {
    display: grid;
    gap: 12px;
}

.checkout-success-meta-item {
    display: grid;
    grid-template-columns: minmax(130px, 170px) minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    padding: 14px;
    border-radius: 14px;
    background: rgba(127, 143, 114, 0.08);
}

.checkout-success-meta-item span {
    display: block;
    font-size: 0.86rem;
    font-weight: 700;
    color: #7b6b58;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.checkout-success-meta-item strong {
    display: block;
    color: var(--ink);
    overflow-wrap: anywhere;
}

.checkout-success-list {
    margin: 0;
}

.checkout-success-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: start;
    margin-top: 6px;
    min-width: 0;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #766b5f;
    background: rgba(203, 192, 176, 0.22);
    padding: 3px 7px;
    border-radius: 999px;
}

.tag.is-special {
    color: #5a3b08;
    background: linear-gradient(180deg, rgba(255, 233, 180, 0.82), rgba(246, 206, 129, 0.78));
    border: 1px solid rgba(192, 137, 33, 0.32);
}

.tag.is-saison {
    color: #1e4a1e;
    background: linear-gradient(180deg, rgba(200, 235, 195, 0.85), rgba(160, 215, 152, 0.8));
    border: 1px solid rgba(80, 160, 70, 0.35);
}

.hours-layout {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 16px;
}

.hours-card,
.hours-note {
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    background: #fffdf8;
    box-shadow: var(--shadow);
}

.hours-card {
    padding: 24px;
}

.hours-status {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    margin-bottom: 18px;
    background: rgba(122, 106, 83, 0.12);
    color: #5b4f42;
}

.hours-status::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: currentColor;
}

.hours-status.open {
    background: rgba(120, 135, 106, 0.18);
    color: #58704b;
}

.hours-status.closed {
    background: rgba(111, 93, 136, 0.14);
    color: #6c5f7e;
}

.hours-grid {
    display: grid;
    gap: 10px;
}

.hours-special {
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid rgba(217, 207, 191, 0.72);
    display: grid;
    gap: 10px;
}

.hours-special h3 {
    font-size: 1.1rem;
}

.hours-special ul {
    list-style: none;
    display: grid;
    gap: 8px;
}

.hours-special li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    padding: 8px 10px;
    border-radius: 10px;
    background: rgba(244, 236, 223, 0.45);
}

.hours-special-tag {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 4px 8px;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.hours-special-tag.is-open {
    color: #46613b;
    background: rgba(120, 135, 106, 0.22);
}

.hours-special-tag.is-closed {
    color: #6c5f7e;
    background: rgba(111, 93, 136, 0.18);
}

.hours-row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(217, 207, 191, 0.72);
}

.hours-row:last-child {
    border-bottom: 0;
}

.hours-row.is-highlight strong,
.hours-row.is-highlight span {
    color: var(--ink);
    font-weight: 800;
}

.hours-note {
    padding: 24px;
    background: linear-gradient(155deg, #fffef9 0%, #f4ecdf 100%);
    display: grid;
    gap: 16px;
    align-content: start;
}

.hours-note ul {
    list-style: none;
    display: grid;
    gap: 10px;
    color: var(--ink-soft);
}

.hours-note li {
    padding-left: 18px;
    position: relative;
}

.hours-note li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--sage);
}

.process {
    background: linear-gradient(170deg, rgba(127, 143, 114, 0.12), rgba(188, 172, 206, 0.12));
    border-top: 1px solid rgba(217, 207, 191, 0.85);
    border-bottom: 1px solid rgba(217, 207, 191, 0.85);
}

.timeline {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.step {
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 16px;
}

.step strong {
    color: #68795b;
    display: inline-block;
    margin-bottom: 8px;
}

/* ── Story narrative (Über uns) ─────────────────── */
.story-wrap {
    max-width: 70ch;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.story-wrap p {
    font-size: clamp(0.97rem, 1.45vw, 1.08rem);
    line-height: 1.9;
    color: #000;
}

.story-lead {
    font-size: clamp(0.97rem, 1.45vw, 1.08rem) !important;
    color: #000 !important;
}

.story-highlight {
    background: #ffffff;
    border: 1px solid var(--line);
    border-left: 4px solid var(--sage);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    padding: 22px 28px;
}

.story-year {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(1.9rem, 3vw, 2.8rem);
    font-weight: 700;
    color: var(--sage);
    display: block;
    line-height: 1;
    margin-bottom: 10px;
}

.faq-wrap {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

/* ── Founders section (Über uns) ────────────────── */
.founders-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    max-width: 760px;
    margin: 0 auto;
    align-items: stretch;
}

.founder-card {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    text-align: center;
    width: 100%;
    height: 100%;
}

.founder-img-wrap {
    width: 100%;
    aspect-ratio: 3 / 4;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--line);
    background: var(--cream);
}

.founder-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.founder-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.founder-name {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(1.1rem, 1.6vw, 1.3rem);
    font-weight: 700;
    color: var(--ink);
}

.founder-caption {
    font-size: 0.9rem;
    color: var(--ink-soft);
}

.faq-item {
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    overflow: hidden;
    background: #fffdf8;
}

.faq-btn {
    width: 100%;
    text-align: left;
    padding: 16px;
    border: 0;
    background: transparent;
    color: var(--ink);
    font: inherit;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-btn span:last-child {
    color: #68795b;
    font-size: 1.35rem;
    line-height: 1;
}

.faq-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.28s ease;
}

.faq-panel p {
    padding: 0 16px 16px;
    color: var(--ink-soft);
}

.cta {
    padding-bottom: 92px;
}

.cta-box {
    border-radius: var(--radius-xl);
    border: 1px solid var(--line);
    background: linear-gradient(120deg, #fffefb 0%, #f7f2e8 55%, #f3eadf 100%);
    padding: clamp(26px, 4vw, 48px);
    box-shadow: var(--shadow);
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 20px;
    align-items: center;
}

.contact-list {
    list-style: none;
    display: grid;
    gap: 8px;
    color: var(--ink-soft);
}

.legal-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.legal-card {
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    background: #fffdf8;
    box-shadow: var(--shadow);
    padding: 24px;
}

.legal-card h2 {
    margin-top: 32px;
    margin-bottom: 12px;
}

.legal-card h2:first-child {
    margin-top: 0;
}

.legal-card h3 {
    margin-top: 24px;
    margin-bottom: 10px;
}

.legal-card p,
.legal-card li {
    color: var(--ink-soft);
}

.legal-card ul {
    list-style: none;
    display: grid;
    gap: 10px;
}

.legal-card li strong {
    color: var(--ink);
}

footer {
    border-top: 1px solid var(--line);
    padding: 24px 0;
    color: var(--ink-soft);
    font-size: 0.92rem;
    background: rgba(255, 252, 246, 0.9);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.footer-copy {
    max-width: 52ch;
}

.footer-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-link,
.footer-button,
.footer-icon-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s ease;
}

.footer-link {
    font-weight: 700;
    color: var(--ink);
}

.footer-link:hover {
    color: var(--sage);
}

.footer-icon-link {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.7);
    color: var(--ink);
}

.footer-icon-link:hover {
    background: rgba(111, 93, 136, 0.12);
    color: var(--lavender);
    transform: translateY(-1px);
}

.footer-button {
    min-height: auto;
    padding: 0;
    border-radius: 0;
    border: 0;
    background: transparent;
    color: var(--ink-soft);
    font-size: 0.82rem;
    font-weight: 600;
}

.footer-button:hover,
.footer-button.active {
    background: transparent;
    color: var(--ink);
    text-decoration: underline;
}

.boutique-inquiry-agb {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: nowrap;
    margin: 24px 0;
    font-size: 13px;
}

.boutique-inquiry-agb input[type="checkbox"] {
    width: 16px;
    height: 16px;
    min-height: 16px;
    padding: 0;
    border-radius: 3px;
    border: 1px solid rgba(196, 183, 162, 0.82);
    background: #fffefc;
    box-shadow: none;
    flex: 0 0 auto;
    margin-top: 0;
    cursor: pointer;
}

.boutique-inquiry-agb label {
    display: inline;
    white-space: nowrap;
    cursor: pointer;
    margin: 0;
}

.boutique-inquiry-agb a {
    color: #a8b876;
    text-decoration: none;
}

.boutique-inquiry-agb a:hover {
    text-decoration: underline;
}

.reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.in-view {
    opacity: 1;
    transform: translateY(0);
}

.page-intro {
    padding: 44px 0 0;
}

.quick-links {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.quick-link {
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: #fffdf8;
    padding: 16px;
}

.quick-link p {
    color: var(--ink-soft);
}

/* Map section */
.map-section {
    padding: var(--section-pad) 0;
}

.map-layout {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr;
    gap: 28px;
    align-items: start;
}

.map-embed-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
}

.map-embed {
    display: block;
    width: 100%;
    height: 380px;
    border: none;
}

.map-osm-link {
    display: block;
    text-align: right;
    font-size: 0.78rem;
    color: var(--ink-soft);
    padding: 6px 12px;
    background: #f7f2e8;
    text-decoration: none;
    border-top: 1px solid var(--line);
}

.map-osm-link:hover {
    text-decoration: underline;
}

.map-info-card {
    background: linear-gradient(120deg, #fffefb 0%, #f7f2e8 55%, #f3eadf 100%);
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    padding: clamp(22px, 3vw, 36px);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.map-info-card h2 {
    font-size: clamp(1.15rem, 2vw, 1.3rem);
    margin: 0;
}

.map-contact-list {
    list-style: none;
    display: grid;
    gap: 16px;
}

.map-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--ink-soft);
    line-height: 1.55;
}

.map-icon {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--accent);
}

.map-contact-list a {
    color: var(--ink);
    text-decoration: none;
    font-weight: 600;
}

.map-contact-list a:hover {
    color: var(--accent);
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .topbar {
        gap: 20px;
    }

    .nav-side-left {
        padding-right: 10px;
    }

    .nav-side-right {
        padding-left: 10px;
    }

    .topbar-links {
        gap: 6px;
    }

    .topbar-links a,
    nav a {
        padding: 8px 11px;
        font-size: 0.94rem;
    }

    .hero-wrap,
    .cta-box,
    .hours-layout {
        grid-template-columns: 1fr;
    }

    .offer-grid,
    .product-grid,
    .insights-grid,
    .quick-links,
    .timeline,
    .legal-grid {
        grid-template-columns: 1fr 1fr;
    }

    .boutique-advanced-filters {
        grid-template-columns: 1fr 1fr;
    }

    .product-detail-card {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 920px) {
    .topbar {
        min-height: 78px;
        gap: 12px;
        grid-template-columns: 1fr auto 1fr;
        padding: 10px 0;
        position: relative;
    }

    .brand {
        grid-column: 2;
    }

    .nav-side-left {
        display: none;
    }

    .nav-side-right {
        display: inline-flex;
        justify-content: flex-end;
        grid-column: 3;
        gap: 8px;
        padding-left: 0;
    }

    .nav-side-right > a {
        display: none;
    }

    .nav-side-right .boutique-cart-toggle-header {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        left: 12px;
        z-index: 65;
        margin-left: 0;
        margin-right: 0;
    }

    .boutique-cart-flyout {
        left: 12px;
        right: auto;
    }

    .menu-btn {
        display: grid;
        place-items: center;
        grid-column: 3;
        color: var(--ink);
        font-family: system-ui, -apple-system, sans-serif;
        font-weight: 600;
    }

    #mainNav {
        display: flex;
        position: fixed;
        top: 96px;
        left: 0;
        right: 0;
        background: rgba(255, 250, 242, 0.98);
        border: 1px solid var(--line);
        border-top: none;
        border-radius: 0 0 14px 14px;
        padding: 12px;
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
        box-shadow: var(--shadow);
        visibility: hidden;
        opacity: 0;
        transform: translateY(-8px);
        transition: 0.2s ease;
        z-index: 29;
    }

    #mainNav.open {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
    }

    #mainNav a {
        padding: 12px 14px;
        font-size: 0.95rem;
        border-radius: 8px;
    }

    header.compact .topbar {
        min-height: 64px;
        padding: 6px 0;
    }
}

@media (max-width: 760px) {
    :root {
        --radius-xl: 20px;
        --radius-lg: 14px;
    }

    .brand-logo {
        width: 50px;
        height: 50px;
    }

    .brand-text strong {
        font-size: 0.92rem;
    }

    .brand-text span {
        font-size: 1.75rem;
    }

    header.compact .brand-logo,
    header.compact .brand-fallback {
        width: 42px;
        height: 42px;
    }

    header.compact .brand-text strong {
        font-size: 0.78rem;
    }

    header.compact .brand-text span {
        font-size: 1.45rem;
    }

    h1 {
        font-size: clamp(1.5rem, 5vw, 3rem);
    }

    .footer-content,
    .footer-actions {
        align-items: flex-start;
    }

    .footer-actions {
        justify-content: flex-start;
        width: 100%;
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 12px 14px;
    }

    .footer-actions > .footer-link {
        grid-column: 1 / -1;
        font-size: 1.06rem;
        line-height: 1.3;
        word-break: break-word;
    }

    .footer-actions > .footer-icon-link {
        grid-column: 1;
    }

    .footer-actions > .footer-button:first-of-type {
        grid-column: 2;
        justify-self: start;
        align-self: center;
        font-size: 0.92rem;
    }

    .footer-actions > .footer-button:not(:first-of-type) {
        grid-column: 1 / -1;
        justify-self: start;
        font-size: 0.98rem;
    }

    .legal-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 0 0 45px;
    }

    .home-page .hero-copy {
        grid-template-columns: 1fr;
        row-gap: 14px;
    }

    .home-page .hero-stats {
        grid-column: 1;
        grid-row: auto;
        margin-top: 8px;
        gap: 10px 18px;
    }

    .home-page .stat .label {
        font-size: 0.95rem;
    }

    .hero-stats,
    .offer-grid,
    .product-grid,
    .insights-grid,
    .timeline,
    .quick-links {
        grid-template-columns: 1fr;
    }

    .boutique-inquiry-form .split {
        grid-template-columns: 1fr;
    }

    .boutique-cart {
        padding: 12px;
        gap: 12px;
    }

    .boutique-inquiry-form {
        padding: 12px;
        gap: 10px;
    }

    .boutique-advanced-filters {
        grid-template-columns: 1fr;
    }

    .category-filters {
        padding: 10px;
        border: 1px solid rgba(217, 207, 191, 0.72);
        border-radius: 14px;
        background: rgba(255, 252, 246, 0.95);
        backdrop-filter: blur(8px);
    }

    .filter-btn {
        min-height: 44px;
        padding: 10px 14px;
        font-size: 0.92rem;
    }

    .btn,
    .product-cart-btn,
    #mainNav a {
        min-height: 46px;
    }

    #mainNav a {
        padding: 12px 14px;
        font-size: 0.98rem;
    }

    .visual-main {
        min-height: 340px;
    }

    .map-layout {
        grid-template-columns: 1fr;
    }

    .map-embed {
        height: 300px;
    }

    .product-detail-card {
        padding: 14px;
    }

    .product-detail-media .product-image {
        min-height: 320px;
    }

    .shop-page:not(.product-page) .product-grid {
        grid-template-columns: 1fr;
    }

    .visual-caption {
        justify-content: center;
    }

    section {
        padding: 50px 0;
    }

    .cta {
        padding-bottom: 60px;
    }

    .cta-row {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .container {
        width: min(100%, 96%);
    }

    .hero-banner {
        min-height: 250px;
    }

    .hero-content-wrap {
        padding-top: 18px;
    }

    .news-grid {
        grid-template-columns: minmax(0, 1fr);
        justify-content: stretch;
    }

    .newsletter-signup-row {
        grid-template-columns: minmax(0, 1fr);
    }

    .newsletter-signup-row button {
        width: 100%;
    }
}

@media (max-width: 560px) {
    .category-filter-tags {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .filter-btn {
        width: 100%;
        justify-content: center;
    }
}
