/**
 * Cooka Global Stylesheet - Design Tokens & Base
 *
 * @package Cooka
 * @version v2.2.51w-ALCOHOL-STRIPE-PREFLIGHT-BASE
 */

/* ==========================================================================
   Design Tokens
   ========================================================================== */

:root {
    --cooka-surface: #f8f7f4;
    --cooka-surface-2: #ffffff;
    --cooka-text: #1c1917;
    --cooka-muted: #78716c;
    --cooka-border: #e7e5e0;
    --cooka-accent: #2e7d52;
    --cooka-accent-hover: #256844;
    --cooka-radius-md: 12px;
    --cooka-radius-lg: 16px;
    --cooka-shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04), 0 1px 3px rgba(0, 0, 0, 0.06);
    --cooka-shadow-md: 0 4px 6px rgba(0, 0, 0, 0.04), 0 10px 20px rgba(0, 0, 0, 0.06);
    --cooka-focus: 0 0 0 3px rgba(46, 125, 82, 0.3);
}

/* ==========================================================================
   Base
   ========================================================================== */

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

html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--cooka-text);
    background: var(--cooka-surface);
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.3;
    font-weight: 600;
    letter-spacing: -0.01em;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: var(--cooka-accent);
    transition: color 0.15s ease;
}

a:hover {
    color: var(--cooka-accent-hover);
}

/* ==========================================================================
   Focus
   ========================================================================== */

:focus-visible {
    outline: none;
    box-shadow: var(--cooka-focus);
    border-radius: 4px;
}

/* ==========================================================================
   Utilities
   ========================================================================== */

.cooka-container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 20px;
}

.site-header .cooka-container {
    max-width: 1480px;
}

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    width: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    word-wrap: normal !important;
}

/* ==========================================================================
   Impressum
   ========================================================================== */

.cooka-impressum-main {
    padding: 4rem 1.25rem;
}

.cooka-impressum-wrap {
    width: min(100%, 900px);
    margin: 0 auto;
    padding: 2.5rem;
    background: var(--cooka-surface-2);
    border: 1px solid var(--cooka-border);
    border-radius: var(--cooka-radius-lg);
    box-shadow: var(--cooka-shadow-sm);
}

.cooka-impressum-header {
    margin-bottom: 1.75rem;
}

.cooka-impressum-content > *:first-child {
    margin-top: 0;
}

.cooka-impressum-content > *:last-child {
    margin-bottom: 0;
}

@media (max-width: 640px) {
    .cooka-impressum-main {
        padding: 2.5rem 1rem;
    }

    .cooka-impressum-wrap {
        padding: 1.5rem;
        border-radius: var(--cooka-radius-md);
    }
}

/* ==========================================================================
   Skip Link
   ========================================================================== */

.skip-link:focus {
    clip: auto !important;
    clip-path: none;
    display: block;
    height: auto;
    width: auto;
    margin: 0;
    padding: 0.75rem 1.25rem;
    position: fixed;
    top: 6px;
    left: 6px;
    z-index: 10000;
    background: var(--cooka-accent);
    color: #fff;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--cooka-radius-md);
    box-shadow: var(--cooka-shadow-md);
    text-decoration: none;
}

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
    background: var(--cooka-surface-2);
    border-bottom: 1px solid var(--cooka-border);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    position: sticky;
    top: 0;
    z-index: 100;
}

.admin-bar .site-header {
    top: 32px;
}

@media (max-width: 782px) {
    /* Hotfix v2.2.16a: Prevent mobile logo drift.
       WP admin bar shifts out of view on scroll, so keeping top:46px causes a gap.
       We reset to 0 (or safe-area) so the sticky header stays at the true top edge. */
    .site-header {
        position: -webkit-sticky; /* robust iOS support */
        position: sticky;
        top: env(safe-area-inset-top, 0px);
    }
    .admin-bar .site-header {
        top: env(safe-area-inset-top, 0px);
    }
}

.site-header-inner {
    display: flex;
    align-items: center;
    min-height: 72px;
    gap: 1rem;
    flex-wrap: nowrap;
}

.site-branding {
    flex: 0 0 auto;
}

.site-branding .custom-logo-link img {
    height: 36px;
    width: auto;
}

.site-branding .site-logo img {
    height: 40px;
    width: auto;
}

.cooka-header-branding .site-logo {
    display: inline-flex;
    align-items: center;
}

.site-branding .site-title {
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--cooka-text);
    letter-spacing: -0.025em;
}

.cooka-mobile-toggle {
    margin-left: auto;
    display: none;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid #d9d5cd;
    border-radius: 999px;
    background: #fff;
    color: #3f3a33;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    padding: 0.48rem 0.72rem;
}

.cooka-mobile-toggle-icon {
    width: 1.1rem;
    height: 0.75rem;
    position: relative;
    display: inline-block;
}

.cooka-mobile-toggle-icon::before,
.cooka-mobile-toggle-icon::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
}

.cooka-mobile-toggle-icon::before {
    top: 0;
}

.cooka-mobile-toggle-icon::after {
    bottom: 0;
}

.cooka-header-nav {
    margin-left: 0.5rem;
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
}

.cooka-nav-list,
.main-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 1.15rem;
    flex-wrap: nowrap;
}

.cooka-nav-list a,
.main-navigation a {
    text-decoration: none;
    color: #4f4a43;
    font-size: 0.88rem;
    font-weight: 600;
    padding: 0.3rem 0;
    white-space: nowrap;
    transition: color 0.15s ease, opacity 0.15s ease;
}

.cooka-nav-list a:hover,
.main-navigation a:hover,
.main-navigation .current-menu-item > a {
    color: var(--cooka-text);
}

.cooka-header-tools {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 0 0 auto;
}

.cooka-header-search {
    display: none;
}

.cooka-header-search input {
    width: 150px;
    border: 1px solid #ded9d1;
    border-radius: 999px;
    background: #fff;
    color: #3e3a35;
    font-size: 0.84rem;
    line-height: 1.2;
    padding: 0.5rem 0.8rem;
}

.cooka-header-search input::placeholder {
    color: #8e877d;
}

.cooka-header-link,
.cooka-language-button {
    border: 1px solid #ded9d1;
    border-radius: 999px;
    background: #fff;
    color: #3f3a33;
    font-size: 0.8rem;
    font-weight: 700;
    text-decoration: none;
    line-height: 1;
    white-space: nowrap;
    padding: 0.52rem 0.78rem;
}

.cooka-header-link:hover,
.cooka-language-button:hover {
    color: #2a2926;
    border-color: #cac5bc;
}

.cooka-header-link--quiet {
    opacity: 0.85;
}

.cooka-language-button {
    cursor: default;
}

.cooka-mobile-panel {
    border-top: 1px solid var(--cooka-border);
    padding-top: 0.85rem;
    padding-bottom: 0.95rem;
}

.cooka-mobile-nav {
    display: grid;
    gap: 0.3rem;
}

.cooka-mobile-nav a {
    color: #4a453f;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 10px;
    padding: 0.52rem 0.6rem;
}

.cooka-mobile-nav a:hover {
    background: #f2f0ea;
}

.cooka-mobile-tools {
    margin-top: 0.8rem;
}

.cooka-mobile-actions {
    margin-top: 0.55rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

/* ==========================================================================
   Content
   ========================================================================== */

.site-content {
    min-height: 60vh;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
    background: #231f1a;
    border-top: 1px solid #3b342d;
    margin-top: 4rem;
    color: #efe8dd;
}

.site-footer-inner {
    padding-top: 2.75rem;
    padding-bottom: 1.5rem;
}

.cooka-footer-inner {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.4rem;
    align-items: start;
}

.cooka-footer-col h4 {
    margin: 0 0 0.6rem;
    color: #f7f2e9;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.cooka-footer-col p {
    margin: 0.65rem 0 0;
    max-width: 32ch;
    color: #c9c0b4;
    font-size: 0.9rem;
}

.cooka-footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.45rem;
}

.cooka-footer-col a {
    color: #e4dacd;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.15s ease, opacity 0.15s ease;
}

.cooka-footer-col a:hover {
    color: #ffffff;
}

.cooka-footer-brand {
    display: inline-flex;
    align-items: center;
}

.cooka-footer-brand img {
    width: auto;
    height: 34px;
}

.cooka-footer-legal {
    border-top: 1px solid #3b342d;
    padding-top: 1rem;
    padding-bottom: 1.4rem;
    text-align: center;
}

.cooka-footer-legal p {
    margin: 0;
    color: #b8aea2;
    font-size: 0.8125rem;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1040px) {
    .site-header-inner {
        min-height: 64px;
        gap: 0.7rem;
    }

    .cooka-mobile-toggle {
        display: inline-flex;
    }

    .cooka-header-nav,
    .cooka-header-tools {
        display: none;
    }
}

@media (max-width: 1260px) {
    .cooka-nav-list,
    .main-navigation ul {
        gap: 0.48rem;
    }

    .cooka-header-link,
    .cooka-language-button {
        font-size: 0.72rem;
        padding: 0.46rem 0.56rem;
    }
}

@media (max-width: 1499px) and (min-width: 1041px) {
    .site-header-inner {
        gap: 0.5rem;
    }

    .cooka-nav-list,
    .main-navigation ul {
        gap: 0.55rem;
    }

    .cooka-nav-list a,
    .main-navigation a {
        font-size: 0.8rem;
    }

    .cooka-header-link,
    .cooka-language-button {
        font-size: 0.72rem;
        padding: 0.46rem 0.56rem;
    }
}

@media (min-width: 1041px) {
    .cooka-mobile-panel {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .site-header-inner {
        min-height: 58px;
    }

    .site-branding .custom-logo-link img,
    .site-branding .site-logo img {
        height: 32px;
    }

    .cooka-mobile-panel {
        padding-top: 0.7rem;
        padding-bottom: 0.8rem;
    }

    .site-footer-inner {
        padding-top: 2rem;
        padding-bottom: 1.2rem;
    }

    .cooka-footer-inner {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .cooka-footer-col p {
        max-width: none;
    }

    .cooka-footer-legal {
        padding-top: 0.9rem;
        padding-bottom: 1.1rem;
    }
}

/* ========================================================================== 
   Front Page (v2.2.51a) - Landingpage Conversion Refresh Hotfix
   ========================================================================== */

.cooka-landing {
    background:
        radial-gradient(circle at 12% 8%, rgba(207, 221, 195, 0.55), transparent 28rem),
        linear-gradient(180deg, #f8f5ef 0%, #fffdf8 38%, #f4efe6 100%);
    color: #211d18;
}

.cooka-hero {
    padding: clamp(2.5rem, 6vw, 5.8rem) 0 clamp(2.4rem, 5vw, 4.5rem);
}

.cooka-hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
    align-items: center;
    min-width: 0;
}

.cooka-hero-copy {
    max-width: 720px;
    min-width: 0;
    position: relative;
    z-index: 1;
}

.cooka-section-eyebrow {
    margin: 0 0 0.75rem;
    color: var(--cooka-accent);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.cooka-hero-kicker {
    display: inline-flex;
    margin: 0 0 0.85rem;
    border: 1px solid #ded6c8;
    border-radius: 999px;
    background: rgba(255, 250, 242, 0.86);
    color: #776b5d;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1.2;
    padding: 0.45rem 0.7rem;
    text-transform: uppercase;
}

.cooka-hero h1 {
    max-width: 12ch;
    margin: 0 0 1rem;
    font-size: clamp(2.35rem, 5.8vw, 4.65rem);
    line-height: 1;
    letter-spacing: -0.05em;
    overflow-wrap: normal;
}

.cooka-hero-lead {
    max-width: 58ch;
    margin: 0 0 1.45rem;
    color: #554d43;
    font-size: clamp(1.05rem, 2.1vw, 1.28rem);
    line-height: 1.65;
}

.cooka-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-bottom: 1rem;
}

.cooka-button,
.cooka-hero-search button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 999px;
    background: var(--cooka-accent);
    color: #fff;
    font-size: 0.98rem;
    font-weight: 800;
    text-decoration: none;
    line-height: 1;
    padding: 0.95rem 1.35rem;
    cursor: pointer;
    transition: background-color 0.16s ease, transform 0.16s ease, box-shadow 0.16s ease;
}

.cooka-button:hover,
.cooka-hero-search button:hover {
    background: var(--cooka-accent-hover);
    color: #fff;
    transform: translateY(-1px);
}

.cooka-button:focus-visible,
.cooka-hero-search button:focus-visible {
    box-shadow: var(--cooka-focus);
}

.cooka-button--secondary {
    border: 1px solid #d8d0c3;
    background: #fffaf2;
    color: #2e4736;
}

.cooka-button--secondary:hover {
    background: #f1eadf;
    color: #1f3328;
}

.cooka-hero-search {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    max-width: 620px;
    padding: 0.62rem;
    border: 1px solid #ddd5c7;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 18px 45px rgba(42, 34, 23, 0.1);
}

.cooka-hero-search input {
    flex: 1;
    min-width: 0;
    border: 0;
    background: transparent;
    color: var(--cooka-text);
    font-size: 1rem;
    line-height: 1.2;
    padding: 0.78rem 1rem;
}

.cooka-hero-search input::placeholder {
    color: #8c8274;
}

.cooka-hero-search input:focus-visible {
    box-shadow: none;
}

.cooka-hero-media,
.cooka-split-media,
.cooka-provider-media {
    overflow: hidden;
    min-width: 0;
    border: 1px solid rgba(74, 58, 37, 0.12);
    border-radius: 28px;
    background: #efe8dc;
    box-shadow: 0 28px 70px rgba(36, 28, 18, 0.16);
}

.cooka-hero-media img,
.cooka-split-media img,
.cooka-provider-media img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
}

.cooka-usps,
.cooka-pricing-value,
.cooka-story-section,
.cooka-provider-cta,
.cooka-discovery {
    padding: clamp(2.4rem, 5vw, 4.5rem) 0;
}

.cooka-section-head {
    max-width: 760px;
    margin: 0 auto 1.75rem;
    text-align: center;
}

.cooka-section-head h2,
.cooka-split-copy h2,
.cooka-provider-copy h2,
.cooka-discovery-card h2 {
    margin: 0 0 0.75rem;
    font-size: clamp(1.8rem, 4vw, 3.1rem);
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.cooka-section-head p,
.cooka-split-copy p,
.cooka-provider-copy p,
.cooka-discovery-card p {
    color: #5b5247;
    font-size: 1.02rem;
    line-height: 1.7;
}

.cooka-usp-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.cooka-usp-card,
.cooka-discovery-card {
    border: 1px solid #e2dbcf;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 18px 48px rgba(35, 27, 16, 0.08);
    padding: clamp(1.25rem, 3vw, 1.8rem);
}

.cooka-usp-card h3 {
    margin: 0 0 0.65rem;
    color: #1f2b22;
    font-size: 1.24rem;
}

.cooka-usp-card p {
    margin: 0;
    color: #5d554b;
    line-height: 1.62;
}

.cooka-story-section {
    background: linear-gradient(180deg, rgba(249, 246, 239, 0.2) 0%, #f0eadf 100%);
}

.cooka-pricing-value {
    padding-top: 0;
}

.cooka-pricing-value-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    border: 1px solid #dcd2c2;
    border-radius: 30px;
    background:
        radial-gradient(circle at 88% 10%, rgba(192, 214, 179, 0.34), transparent 17rem),
        linear-gradient(135deg, #fffaf2 0%, #f3eadc 100%);
    box-shadow: 0 24px 64px rgba(38, 30, 19, 0.12);
    padding: clamp(1.25rem, 4vw, 2.4rem);
}

.cooka-pricing-value-copy p {
    margin: 0 0 0.7rem;
    color: #51483d;
    font-size: 1.03rem;
    line-height: 1.68;
}

.cooka-pricing-value-copy p:last-child {
    margin-bottom: 0;
}

.cooka-pricing-value-panel {
    display: grid;
    align-content: center;
    gap: 0.95rem;
    border: 1px solid rgba(46, 125, 82, 0.22);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.78);
    padding: clamp(1.1rem, 3vw, 1.55rem);
}

.cooka-pricing-value-panel strong {
    color: #17452e;
    font-size: clamp(2.1rem, 6vw, 4rem);
    line-height: 0.95;
    letter-spacing: -0.06em;
}

.cooka-pricing-value-panel p {
    margin: 0;
    color: #5b5247;
    line-height: 1.55;
}

.cooka-pricing-value-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.cooka-split,
.cooka-provider-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: center;
}

.cooka-split-copy,
.cooka-provider-copy {
    max-width: 620px;
}

.cooka-provider-card {
    overflow: hidden;
    border: 1px solid #d8d0c4;
    border-radius: 30px;
    background: linear-gradient(135deg, #26382e 0%, #1d2b24 100%);
    box-shadow: 0 28px 76px rgba(26, 20, 12, 0.18);
    padding: clamp(1rem, 3vw, 1.35rem);
}

.cooka-provider-copy {
    padding: clamp(1rem, 4vw, 2.2rem);
}

.cooka-provider-copy h2,
.cooka-provider-copy p {
    color: #fffaf2;
}

.cooka-provider-copy .cooka-section-eyebrow {
    color: #bad7c2;
}

.cooka-provider-copy p {
    color: #dce9df;
    margin-bottom: 1.25rem;
}

.cooka-provider-media {
    box-shadow: none;
    border-color: rgba(255, 255, 255, 0.14);
}

.cooka-discovery {
    padding-bottom: clamp(3rem, 6vw, 5rem);
}

.cooka-discovery-card {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
}

.cooka-discovery-card p {
    max-width: 62ch;
    margin: 0 auto 1.25rem;
}

@media (min-width: 760px) {
    .cooka-usp-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (min-width: 920px) {
    .cooka-pricing-value-card {
        grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
        align-items: center;
    }
}

@media (min-width: 1080px) {
    .cooka-hero-inner {
        grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1fr);
        gap: clamp(2.5rem, 5vw, 5rem);
    }

    .cooka-hero-media img {
        min-height: 520px;
    }

    .cooka-split,
    .cooka-provider-card {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: clamp(2rem, 5vw, 4rem);
    }

    .cooka-provider-card {
        grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    }

    .cooka-split-media img,
    .cooka-provider-media img {
        min-height: 430px;
    }
}

@media (max-width: 640px) {
    .cooka-hero-actions,
    .cooka-hero-search {
        flex-direction: column;
        align-items: stretch;
    }

    .cooka-button,
    .cooka-hero-search button {
        width: 100%;
    }

    .cooka-hero-search {
        border-radius: 20px;
    }

    .cooka-hero-media,
    .cooka-split-media,
    .cooka-provider-media,
    .cooka-provider-card,
    .cooka-usp-card,
    .cooka-discovery-card {
        border-radius: 20px;
    }
}

/* Category safety page */
.cooka-categories-page {
    background:
        radial-gradient(circle at 16% 8%, rgba(207, 221, 195, 0.42), transparent 24rem),
        linear-gradient(180deg, #faf7f0 0%, #fffdf8 45%, #f2ecdf 100%);
}

.cooka-categories-hero {
    padding: clamp(2.8rem, 6vw, 5rem) 0 clamp(1.2rem, 3vw, 2rem);
    text-align: center;
}

.cooka-categories-hero h1 {
    max-width: 760px;
    margin: 0 auto 0.9rem;
    font-size: clamp(2rem, 5vw, 4rem);
    line-height: 1.05;
    letter-spacing: -0.045em;
}

.cooka-categories-hero p {
    max-width: 760px;
    margin: 0 auto;
    color: #5b5247;
    font-size: 1.06rem;
    line-height: 1.7;
}

.cooka-categories-grid-section {
    padding: 1.2rem 0 clamp(3rem, 6vw, 5rem);
}

.cooka-category-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.cooka-category-card {
    border: 1px solid #e2dbcf;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 18px 48px rgba(35, 27, 16, 0.08);
    padding: 1.25rem;
}

.cooka-category-card h2 {
    margin: 0 0 0.8rem;
    color: #211d18;
    font-size: 1.25rem;
}

.cooka-category-card h2 a {
    color: inherit;
    text-decoration: none;
}

.cooka-category-card h2 a:hover,
.cooka-category-card h2 a:focus {
    color: #2d7f50;
    text-decoration: none;
}

.cooka-category-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.cooka-category-chips a,
.cooka-chip {
    display: inline-flex;
    align-items: center;
    border: 1px solid #dfd4c4;
    border-radius: 999px;
    background: #fff9f0;
    color: #5a4e40;
    font-size: 0.9rem;
    font-weight: 700;
    padding: 0.4rem 0.65rem;
    text-decoration: none;
    transition: border-color 0.16s ease, background-color 0.16s ease, color 0.16s ease;
}

.cooka-category-chips a:hover,
.cooka-category-chips a:focus,
.cooka-chip:hover,
.cooka-chip:focus {
    border-color: #bdd3bd;
    background: #f0f8ef;
    color: #23563d;
    text-decoration: none;
}

.cooka-categories-cta {
    margin-top: 1.5rem;
    text-align: center;
}

@media (min-width: 760px) {
    .cooka-category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1080px) {
    .cooka-category-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}
/* ==========================================================================
   v2.2.33 - Cookie Consent + WhatsApp Floating
   ========================================================================== */

.cooka-consent-reopen {
    margin-top: 0.7rem;
    border: 1px solid #5a5147;
    border-radius: 999px;
    background: transparent;
    color: #e4dacd;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.45rem 0.75rem;
    cursor: pointer;
}

.cooka-consent-reopen:hover {
    color: #ffffff;
    border-color: #7d7164;
}

.cooka-consent {
    position: fixed;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 80;
    padding: 0 0 1rem;
    pointer-events: none;
}

.cooka-consent-inner {
    pointer-events: none;
}

.cooka-consent-banner,
.cooka-consent-settings {
    margin: 0 auto;
    max-width: 920px;
    border: 1px solid #d9d2c7;
    border-radius: 16px;
    background: #fffdfa;
    box-shadow: 0 18px 38px rgba(15, 12, 8, 0.16);
    padding: 1rem;
    pointer-events: auto;
}

.cooka-consent-banner h3,
.cooka-consent-settings h3 {
    margin: 0 0 0.45rem;
    color: #25201b;
    font-size: 1.03rem;
}

.cooka-consent-banner p,
.cooka-consent-settings p {
    margin: 0;
    color: #5e554b;
    font-size: 0.92rem;
}

.cooka-consent-actions {
    margin-top: 0.8rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.cooka-consent-btn {
    border-radius: 10px;
    font-size: 0.86rem;
    padding: 0.72rem 0.95rem;
}

.cooka-consent-btn:not(.cooka-consent-btn--primary) {
    background: #eae5dd;
    color: #2f2923;
}

.cooka-consent-btn:not(.cooka-consent-btn--primary):hover {
    background: #ddd5ca;
    color: #201b17;
}

.cooka-consent-link {
    border: 0;
    background: transparent;
    color: #3d6550;
    font-size: 0.86rem;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 2px;
    cursor: pointer;
    padding: 0.2rem 0.1rem;
}

.cooka-consent-link:hover {
    color: #2c4d3d;
}

.cooka-consent-settings-intro {
    margin-bottom: 0.85rem !important;
}

.cooka-consent-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    border: 1px solid #e2dbcf;
    border-radius: 12px;
    background: #fff;
    padding: 0.75rem;
}

.cooka-consent-option + .cooka-consent-option {
    margin-top: 0.55rem;
}

.cooka-consent-option h4 {
    margin: 0 0 0.2rem;
    color: #2f2923;
    font-size: 0.9rem;
}

.cooka-consent-option p {
    color: #665e54;
    font-size: 0.84rem;
}

.cooka-consent-lock {
    border-radius: 999px;
    background: #efe9df;
    color: #4c4339;
    font-size: 0.73rem;
    font-weight: 700;
    white-space: nowrap;
    padding: 0.28rem 0.55rem;
}

.cooka-consent-switch {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.cooka-consent-switch input {
    position: absolute;
    opacity: 0;
    width: 1px;
    height: 1px;
}

.cooka-consent-switch span {
    width: 44px;
    height: 26px;
    border-radius: 999px;
    background: #d1c9bc;
    position: relative;
    transition: background 0.18s ease;
}

.cooka-consent-switch span::before {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
    transition: transform 0.18s ease;
}

.cooka-consent-switch input:checked + span {
    background: #2f7a53;
}

.cooka-consent-switch input:checked + span::before {
    transform: translateX(18px);
}

.cooka-whatsapp-float {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 70;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 999px;
    background: #1f6f46;
    color: #ffffff;
    text-decoration: none;
    box-shadow: 0 10px 22px rgba(13, 55, 34, 0.32);
    padding: 0.55rem 0.8rem;
    transition: transform 0.15s ease, background-color 0.15s ease;
}

.cooka-whatsapp-float:hover {
    background: #175a39;
    color: #fff;
    transform: translateY(-1px);
}

.cooka-whatsapp-icon {
    width: 1.65rem;
    height: 1.65rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.67rem;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.cooka-whatsapp-label {
    font-size: 0.82rem;
    font-weight: 700;
    white-space: nowrap;
}

body.cooka-consent-visible .cooka-whatsapp-float {
    bottom: calc(var(--cooka-consent-height, 0px) + 1rem);
}

body.cooka-consent-visible {
    padding-bottom: calc(var(--cooka-consent-height, 0px) + 0.5rem);
}

@media (max-width: 640px) {
    .cooka-consent {
        padding: 0 0 0.65rem;
    }

    .cooka-consent-banner,
    .cooka-consent-settings {
        border-radius: 14px;
        padding: 0.9rem;
    }

    .cooka-consent-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .cooka-consent-btn {
        width: 100%;
        justify-content: center;
    }

    .cooka-consent-link {
        justify-self: start;
    }

    .cooka-consent-option {
        align-items: flex-start;
        flex-direction: column;
    }

    .cooka-whatsapp-float {
        right: 0.7rem;
        bottom: 0.7rem;
        padding: 0.5rem 0.68rem;
    }

    .cooka-whatsapp-label {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .cooka-whatsapp-label {
        display: none;
    }
}

/* v2.2.35e - Public listing render (single + archive) */
.cooka-listing-shell {
    padding: 2rem 0 3rem;
}

.cooka-listing-card,
.cooka-listing-teaser,
.cooka-listing-archive-head {
    background: #ffffff;
    border: 1px solid #e9e3db;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(25, 19, 12, 0.08);
}

.cooka-listing-card {
    max-width: 880px;
    margin: 0 auto;
    padding: 1.25rem;
}

.cooka-listing-head {
    margin-bottom: 1rem;
}

.cooka-listing-title {
    margin: 0 0 0.4rem;
}

.cooka-listing-vendor,
.cooka-listing-location,
.cooka-listing-offer,
.cooka-listing-menu-meta {
    margin: 0.2rem 0;
    color: #5f5a52;
}

.cooka-listing-image-wrap {
    margin: 0.8rem 0 1rem;
}

.cooka-listing-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
}

.cooka-listing-section h2 {
    margin: 0 0 0.8rem;
}

.cooka-listing-menu-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.7rem;
}

.cooka-listing-menu-item {
    border: 1px solid #ece8e0;
    border-radius: 12px;
    padding: 0.75rem 0.85rem;
    background: #fbfaf8;
}

.cooka-listing-menu-item h3 {
    margin: 0;
    font-size: 1.05rem;
}

.cooka-listing-menu-item p {
    margin: 0.35rem 0 0;
}

.cooka-listing-menu-meta {
    display: flex;
    gap: 0.8rem;
    font-weight: 600;
}

.cooka-listing-archive-head {
    margin-bottom: 1rem;
    padding: 1rem 1.1rem;
}

.cooka-listing-archive-head h1,
.cooka-listing-archive-head p {
    margin: 0;
}

.cooka-listing-archive-head p {
    margin-top: 0.35rem;
    color: #5f5a52;
}

.cooka-listing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 0.9rem;
}

.cooka-listing-teaser {
    padding: 1rem;
}

.cooka-listing-teaser h2 {
    margin: 0 0 0.45rem;
    font-size: 1.2rem;
}

.cooka-listing-teaser h2 a {
    color: #1d1a16;
    text-decoration: none;
}

.cooka-listing-teaser h2 a:hover,
.cooka-listing-link:hover {
    text-decoration: underline;
}

.cooka-listing-link {
    display: inline-block;
    margin-top: 0.7rem;
    font-weight: 700;
    color: #145b38;
    text-decoration: none;
}

@media (max-width: 720px) {
    .cooka-listing-shell {
        padding-top: 1.25rem;
    }

    .cooka-listing-card,
    .cooka-listing-teaser,
    .cooka-listing-archive-head {
        border-radius: 12px;
    }
}

/* v2.2.35f - Public listing visual finish */
.cooka-listing-shell {
    padding: 2.25rem 0 3.5rem;
}

.cooka-listing-shell .cooka-container {
    max-width: 1040px;
}

.cooka-listing-card,
.cooka-listing-teaser,
.cooka-listing-archive-head {
    background: #ffffff;
    border: 1px solid #e8e3da;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(28, 22, 14, 0.08);
}

.cooka-listing-single {
    max-width: 920px;
    margin: 0 auto;
    padding: 1.35rem;
}

.cooka-listing-hero {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.15rem 0.1rem 1rem;
    border-bottom: 1px solid #efeae2;
    margin-bottom: 1rem;
}

.cooka-listing-kicker {
    margin: 0 0 0.35rem;
    color: #2f7a53;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.cooka-listing-title {
    margin: 0;
    font-size: clamp(1.6rem, 2vw, 2.1rem);
    line-height: 1.2;
    color: #1d1a16;
}

.cooka-listing-vendor {
    margin: 0.45rem 0 0;
    color: #2d2a24;
    font-weight: 600;
    font-size: 1.06rem;
}

.cooka-listing-location {
    margin: 0.2rem 0 0;
    color: #6a655d;
    font-size: 0.98rem;
}

.cooka-listing-hero-meta {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.cooka-listing-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.34rem 0.65rem;
    border-radius: 999px;
    border: 1px solid #d8ece0;
    background: #f1faf4;
    color: #1f5f3c;
    font-size: 0.78rem;
    font-weight: 700;
    white-space: nowrap;
}

.cooka-listing-image-panel {
    background: #f7f4ef;
    border: 1px solid #eee8df;
    border-radius: 14px;
    padding: 0.55rem;
    margin-bottom: 1.2rem;
}

.cooka-listing-image {
    width: 100%;
    max-height: 560px;
    object-fit: cover;
    border-radius: 11px;
    display: block;
}

.cooka-listing-dishes {
    background: #fcfbf9;
    border: 1px solid #efe9df;
    border-radius: 14px;
    padding: 1rem;
}

.cooka-listing-section-head {
    margin-bottom: 0.8rem;
}

.cooka-listing-section-head h2 {
    margin: 0;
    font-size: 1.36rem;
}

.cooka-listing-section-head p {
    margin: 0.35rem 0 0;
    color: #6b665f;
    font-size: 0.95rem;
}

.cooka-listing-menu-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.72rem;
}

.cooka-listing-menu-item {
    border: 1px solid #e9e4db;
    border-radius: 12px;
    padding: 0.88rem;
    background: #ffffff;
}

.cooka-listing-menu-item h3 {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.3;
    color: #1f1c18;
}

.cooka-listing-menu-item p {
    margin: 0.45rem 0 0;
    color: #57524a;
}

.cooka-listing-menu-declaration {
    font-size: 0.94rem;
    line-height: 1.45;
}

.cooka-listing-menu-meta {
    margin-top: 0.65rem;
    display: inline-flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.cooka-listing-menu-meta span {
    display: inline-flex;
    align-items: center;
    padding: 0.32rem 0.6rem;
    border-radius: 999px;
    background: #f5f8f2;
    border: 1px solid #dbe8d9;
    color: #234d36;
    font-weight: 700;
    font-size: 0.9rem;
}

.cooka-listing-archive-head {
    padding: 1.15rem 1.25rem;
    margin-bottom: 1rem;
}

.cooka-listing-archive-head h1 {
    margin: 0;
    font-size: clamp(1.65rem, 2.4vw, 2.25rem);
    line-height: 1.2;
    color: #1f1c18;
}

.cooka-listing-archive-subline {
    margin: 0.45rem 0 0;
    color: #5f5a52;
    font-size: 1rem;
}

.cooka-listing-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.95rem;
}

.cooka-listing-search-card {
    overflow: hidden;
    padding: 0;
    border-color: #e4dccf;
    background: linear-gradient(180deg, #ffffff 0%, #fffbf5 100%);
    transition: transform 0.16s ease, box-shadow 0.16s ease;
}

.cooka-listing-search-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 42px rgba(28, 22, 14, 0.11);
}

.cooka-listing-search-media {
    display: block;
    background: #f5f1ea;
    border-bottom: 1px solid #ede7de;
}

.cooka-listing-search-image {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

.cooka-listing-search-body {
    display: grid;
    gap: 0.38rem;
    padding: 1.05rem 1.05rem 1.1rem;
}

.cooka-listing-search-body h2 {
    margin: 0;
    font-size: clamp(1.22rem, 2vw, 1.42rem);
    line-height: 1.22;
    letter-spacing: -0.025em;
}

.cooka-listing-search-body h2 a {
    color: #1c1915;
    text-decoration: none;
}

.cooka-listing-search-body .cooka-listing-vendor,
.cooka-listing-search-body .cooka-listing-location {
    margin: 0;
    color: #645a4e;
    line-height: 1.42;
}

.cooka-listing-search-body .cooka-listing-vendor {
    color: #2d6f4a;
    font-weight: 800;
}

.cooka-listing-search-body .cooka-listing-location {
    font-size: 0.94rem;
}

.cooka-listing-search-body h2 a:hover,
.cooka-listing-link:hover {
    text-decoration: underline;
}

.cooka-listing-offer {
    margin-top: 0.25rem;
    color: #4f4a44;
}

.cooka-listing-link {
    display: inline-flex;
    justify-self: flex-start;
    margin-top: 0.78rem;
    padding: 0.68rem 1rem;
    border-radius: 999px;
    border: 1px solid var(--cooka-accent);
    background: var(--cooka-accent);
    color: #ffffff;
    font-weight: 800;
    text-decoration: none;
}

.cooka-listing-link:hover,
.cooka-listing-link:focus {
    background: var(--cooka-accent-hover);
    color: #ffffff;
    text-decoration: none;
}

@media (max-width: 900px) {
    .cooka-listing-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 740px) {
    .cooka-listing-shell {
        padding-top: 1.25rem;
    }

    .cooka-listing-card,
    .cooka-listing-teaser,
    .cooka-listing-archive-head,
    .cooka-listing-dishes {
        border-radius: 13px;
    }

    .cooka-listing-single {
        padding: 1rem;
    }

    .cooka-listing-hero {
        flex-direction: column;
        gap: 0.75rem;
    }

    .cooka-listing-hero-meta {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .cooka-listing-search-image {
        height: 210px;
    }
}

/* v2.2.41 - Minimal contact preference UI */
.cooka-contact-pref-form {
    display: grid;
    gap: 0.55rem;
    margin-top: 0.75rem;
}

.cooka-contact-pref-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.cooka-contact-preview {
    margin-top: 0.9rem;
}

.cooka-contact-links,
.cooka-listing-contact-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-top: 0.75rem;
}

.cooka-contact-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    border: 1px solid #d8e6dc;
    border-radius: 999px;
    background: #fbfdf9;
    color: #23563d;
    font-size: 0.92rem;
    font-weight: 800;
    line-height: 1;
    padding: 0.62rem 0.82rem;
    text-decoration: none;
    transition: background-color 0.16s ease, border-color 0.16s ease, transform 0.16s ease;
}

.cooka-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.35rem;
    height: 1.35rem;
    border-radius: 999px;
    background: rgba(46, 125, 82, 0.12);
    color: currentColor;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: -0.02em;
}

.cooka-icon.phone::before {
    content: "T";
}

.cooka-icon.mail::before {
    content: "@";
}

.cooka-icon.whatsapp::before {
    content: "WA";
    font-size: 0.62rem;
}

.cooka-icon.contact::before {
    content: "";
    width: 0.42rem;
    height: 0.42rem;
    border-radius: 999px;
    background: currentColor;
}

.cooka-contact-pill:hover,
.cooka-contact-pill:focus {
    border-color: #b8d2c1;
    background: #eef8f1;
    color: #17452e;
    text-decoration: none;
    transform: translateY(-1px);
}

/* Password/login + dashboard micro UX */
.frontend-login-lostpassword {
    margin: 0.75rem 0 0;
    text-align: center;
}

.frontend-login-lostpassword a {
    font-weight: 700;
    color: var(--cooka-accent);
}

.cooka-dashboard-card--food-notice {
    width: 100%;
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
}

.food-notice-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.4rem;
    align-items: stretch;
    margin-top: 1rem;
}

.food-notice-column {
    min-width: 0;
    padding: 1rem;
    border: 1px solid var(--cooka-border);
    border-radius: var(--cooka-radius-md);
    background: #fbfaf7;
}

.food-notice-column h3 {
    margin: 0 0 0.55rem;
    font-size: 1rem;
    line-height: 1.25;
}

.food-notice-column p {
    margin: 0;
    line-height: 1.55;
    overflow-wrap: anywhere;
}

.food-notice-column--responsibility {
    grid-column: 1;
}

.food-notice-column--authority {
    grid-column: 2;
    text-align: center;
}

.food-notice-column--cta {
    grid-column: 1 / -1;
    text-align: center;
    padding-top: 0.5rem;
}

.food-notice-column--hint {
    grid-column: 1 / -1;
    opacity: 0.85;
}

.authority-info-block {
    display: grid;
    gap: 0.55rem;
    justify-items: center;
}

.authority-info-block strong,
.authority-email-link {
    max-width: 100%;
    overflow-wrap: anywhere;
}

.authority-email-label {
    color: var(--cooka-muted);
    font-size: 0.88rem;
    font-weight: 700;
}

.authority-email-link {
    color: var(--cooka-accent);
    font-weight: 700;
}

.cooka-authority-mailto {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    min-width: 280px;
    min-height: 46px;
    margin-top: 0.75rem;
    padding: 0.85rem 1.4rem;
    font-size: 1rem;
    text-align: center;
    line-height: 1.25;
    border-color: var(--cooka-accent);
    background: var(--cooka-accent);
    color: #ffffff;
}

.cooka-authority-mailto:hover,
.cooka-authority-mailto:focus {
    border-color: var(--cooka-accent-hover);
    background: var(--cooka-accent-hover);
    color: #ffffff;
}

@media (max-width: 1180px) {
    .food-notice-grid {
        grid-template-columns: 1fr;
    }

    .food-notice-column--responsibility,
    .food-notice-column--authority,
    .food-notice-column--cta,
    .food-notice-column--hint {
        grid-column: 1;
    }
}

@media (max-width: 760px) {
    .food-notice-grid {
        grid-template-columns: 1fr;
        gap: 0.85rem;
    }

    .cooka-dashboard-card--food-notice .cooka-authority-mailto {
        width: 100%;
    }
}

.vendor-private-details-list {
    display: grid;
    gap: 0.65rem;
    margin: 1rem 0 0;
}

.vendor-private-details-list > div {
    display: grid;
    grid-template-columns: minmax(110px, 0.35fr) 1fr;
    gap: 0.75rem;
    padding: 0.72rem 0.85rem;
    border: 1px solid var(--cooka-border);
    border-radius: var(--cooka-radius-md);
    background: #fbfaf7;
}

.vendor-private-details-list dt {
    color: var(--cooka-muted);
    font-weight: 700;
}

.vendor-private-details-list dd {
    margin: 0;
    color: var(--cooka-text);
    overflow-wrap: anywhere;
}

@media (max-width: 640px) {
    .vendor-private-details-list > div {
        grid-template-columns: 1fr;
        gap: 0.2rem;
    }

    .cooka-authority-mailto {
        width: 100%;
    }
}

/* Legal MVP pages */
.cooka-legal-page {
    background: #faf8f3;
    padding: clamp(2rem, 5vw, 4rem) 1rem;
}

.cooka-legal-document {
    max-width: 920px;
    margin: 0 auto;
    padding: clamp(1.35rem, 4vw, 2.4rem);
    border: 1px solid #e2dbcf;
    border-radius: 24px;
    background: #fffdf8;
    box-shadow: 0 18px 48px rgba(35, 27, 16, 0.08);
}

.cooka-legal-header {
    margin-bottom: 1.6rem;
}

.cooka-legal-lead {
    max-width: 760px;
    font-size: clamp(1.05rem, 2vw, 1.18rem);
}

.cooka-legal-section {
    padding-top: 0.35rem;
}

.cooka-legal-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin: 1.2rem 0;
}

.cooka-legal-mini-card {
    padding: 1rem;
    border: 1px solid #eadfce;
    border-radius: 18px;
    background: #fffaf1;
}

.cooka-legal-mini-card h3 {
    margin: 0 0 0.45rem;
    color: #211d18;
    font-size: 1rem;
}

.cooka-legal-list {
    padding-left: 1.2rem;
}

.cooka-legal-header h1,
.cooka-legal-document h2 {
    color: #211d18;
}

.cooka-legal-document h2 {
    margin-top: 1.8rem;
}

.cooka-legal-document p,
.cooka-legal-document li,
.cooka-legal-document td {
    color: #4f463d;
    line-height: 1.72;
}

.cooka-legal-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
}

.cooka-legal-table tr {
    border-bottom: 1px solid #e6ded2;
}

.cooka-legal-table td {
    display: block;
    width: 100%;
    padding: 10px 0;
    vertical-align: top;
}

.cooka-legal-table td:first-child {
    color: #211d18;
    font-weight: 800;
}

@media (min-width: 768px) {
    .cooka-legal-table td {
        display: table-cell;
        width: auto;
        padding: 12px;
    }
}

@media (max-width: 860px) {
    .cooka-legal-card-grid {
        grid-template-columns: 1fr;
    }
}

.readiness-note {
    display: block;
    max-width: 100%;
    box-sizing: border-box;
    margin: 0.9rem 0 0;
    padding: 0.85rem 1rem;
    border-radius: 14px;
    background: #f6f1e8;
    color: #5d5248;
    line-height: 1.55;
    white-space: normal;
    overflow-wrap: anywhere;
}

.cooka-listing-empty-state {
    grid-column: 1 / -1;
    max-width: 680px;
    margin: 0 auto;
    padding: clamp(1.5rem, 4vw, 2.4rem);
    border: 1px solid #e4dacb;
    border-radius: 24px;
    background: #fffdf8;
    text-align: center;
    box-shadow: 0 14px 38px rgba(35, 27, 16, 0.08);
}

.cooka-listing-empty-state h2 {
    margin: 0 0 0.55rem;
    color: #211d18;
}

.cooka-listing-empty-state p {
    margin: 0;
    color: #5d5248;
}

.cooka-allergen-fieldset {
    border: 0;
    padding: 0;
}

.cooka-allergen-fieldset legend {
    margin-bottom: 0.55rem;
    font-weight: 700;
}

.cooka-allergen-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0.55rem;
}

.cooka-allergen-option {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.55rem 0.65rem;
    border: 1px solid #e6dfd6;
    border-radius: 12px;
    background: #fbfaf7;
    font-weight: 600;
}

.menu-prep-warning {
    margin: 0.4rem 0 0;
    color: #9a5b00;
    font-weight: 700;
}

.menu-prep-complete {
    margin: 0.4rem 0 0;
    color: #2e7d52;
    font-weight: 700;
}

.cooka-empty-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 1.25rem;
}

/* COOKA v2.2.51p Pricing Page */
.cooka-pricing-page {
    padding: clamp(2rem, 5vw, 4.5rem) 1rem;
    background:
        radial-gradient(circle at top left, rgba(222, 238, 218, 0.65), transparent 32rem),
        linear-gradient(180deg, #fbfaf6 0%, #f4f0e8 100%);
}

.cooka-pricing-shell {
    width: min(100%, 1040px);
    margin: 0 auto;
}

.cooka-pricing-hero,
.cooka-pricing-final-cta {
    padding: clamp(1.6rem, 4vw, 3rem);
    border: 1px solid #e7ddd0;
    border-radius: 30px;
    background: rgba(255, 253, 248, 0.94);
    box-shadow: 0 22px 54px rgba(35, 27, 16, 0.08);
}

.cooka-pricing-hero {
    text-align: center;
}

.cooka-pricing-eyebrow {
    margin: 0 0 0.75rem;
    color: #2e7d52;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.cooka-pricing-title {
    max-width: 760px;
    margin: 0 auto;
    color: #14110d;
    font-size: clamp(2.15rem, 5vw, 4.25rem);
    line-height: 0.98;
    letter-spacing: -0.055em;
}

.cooka-pricing-lead {
    max-width: 720px;
    margin: 1rem auto 0;
    color: #5c5147;
    font-size: clamp(1.02rem, 2vw, 1.22rem);
    line-height: 1.65;
}

.cooka-pricing-pill-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.65rem;
    margin-top: 1.35rem;
}

.cooka-pricing-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.35rem;
    padding: 0.45rem 0.85rem;
    border: 1px solid #d9ead8;
    border-radius: 999px;
    background: #f2fbf1;
    color: #205f3d;
    font-weight: 800;
}

.cooka-pricing-section {
    margin-top: clamp(1.8rem, 5vw, 3.4rem);
}

.cooka-pricing-section-head {
    max-width: 760px;
    margin: 0 auto 1.25rem;
    text-align: center;
}

.cooka-pricing-section-head h2,
.cooka-pricing-final-cta h2 {
    margin: 0;
    color: #15120f;
    font-size: clamp(1.55rem, 3vw, 2.35rem);
    letter-spacing: -0.035em;
}

.cooka-pricing-section-head p,
.cooka-pricing-final-cta p {
    margin: 0.65rem 0 0;
    color: #62574c;
    line-height: 1.65;
}

.cooka-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    padding-top: 0.9rem;
}

.cooka-pricing-plan,
.cooka-pricing-card {
    border: 1px solid #e3d9cc;
    border-radius: 24px;
    background: #fffdf9;
    box-shadow: 0 14px 36px rgba(35, 27, 16, 0.07);
}

.cooka-pricing-plan {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 1.35rem;
}

.cooka-pricing-plan--featured {
    border-color: #8fc7a4;
    box-shadow: 0 20px 48px rgba(46, 125, 82, 0.16);
}

.cooka-pricing-badge {
    align-self: flex-start;
    margin: 0;
    padding: 0.32rem 0.7rem;
    border-radius: 999px;
    background: #ecf8ee;
    color: #1f6b43;
    font-size: 0.78rem;
    font-weight: 800;
}

.cooka-pricing-plan--featured .cooka-pricing-badge {
    position: absolute;
    top: -0.85rem;
    left: 1.25rem;
    z-index: 2;
}

.cooka-pricing-plan h3,
.cooka-pricing-card h3 {
    margin: 0;
    color: #15120f;
    font-size: 1.35rem;
}

.cooka-pricing-plan > p,
.cooka-pricing-card p {
    color: #5d5248;
    line-height: 1.58;
}

.cooka-pricing-price {
    margin: 0.7rem 0 0.4rem;
    color: #125f3a;
    font-size: clamp(1.65rem, 3vw, 2.25rem);
    font-weight: 900;
    letter-spacing: -0.04em;
}

.cooka-pricing-plan ul {
    margin: 1rem 0 0;
    padding-left: 1.1rem;
    color: #4e453c;
    line-height: 1.65;
}

.cooka-pricing-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: auto;
    padding-top: 1.1rem;
}

.cooka-pricing-page .cooka-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.9rem;
    padding: 0.78rem 1rem;
    text-align: center;
}

.cooka-pricing-card {
    padding: 1.1rem 1.15rem;
}

.cooka-pricing-card p:last-child {
    margin-bottom: 0;
}

.cooka-pricing-final-cta {
    text-align: center;
}

.cooka-pricing-final-cta .cooka-pricing-actions {
    justify-content: center;
    margin-top: 1.1rem;
}

@media (max-width: 900px) {
    .cooka-pricing-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .cooka-pricing-page {
        padding: 1.2rem 0.75rem 2.4rem;
    }

    .cooka-pricing-hero,
    .cooka-pricing-final-cta {
        padding: 1.35rem 1rem;
        border-radius: 22px;
    }

    .cooka-pricing-title {
        font-size: clamp(2rem, 11vw, 2.85rem);
    }

    .cooka-pricing-lead {
        font-size: 1rem;
    }

    .cooka-pricing-plan,
    .cooka-pricing-card {
        padding: 1rem;
        border-radius: 20px;
    }

    .cooka-pricing-actions {
        flex-direction: column;
    }

    .cooka-pricing-page .cooka-button {
        width: 100%;
    }
}
