/* ===== CSS VARIABLES (matching Glada Bonden design) ===== */
:root {
    --background: hsl(48, 30%, 96%);
    --foreground: hsl(220, 40%, 13%);
    --card: hsl(45, 40%, 97%);
    --card-foreground: hsl(220, 40%, 13%);
    --primary: hsl(216, 60%, 20%);
    --primary-foreground: hsl(45, 40%, 97%);
    --secondary: hsl(38, 80%, 55%);
    --secondary-foreground: hsl(220, 40%, 13%);
    --muted: hsl(40, 25%, 92%);
    --muted-foreground: hsl(220, 20%, 40%);
    --accent: hsl(38, 80%, 55%);
    --border: hsl(40, 30%, 85%);
    --ring: hsl(216, 60%, 25%);
    --cream: hsl(45, 40%, 97%);
    --forest: hsl(145, 30%, 35%);
    --warm-gray: hsl(30, 10%, 45%);
    --destructive: hsl(0, 84%, 60%);
    --radius: 0.75rem;
    --shadow-warm: 0 4px 20px rgba(139, 119, 80, 0.08);
    --shadow-elevated: 0 8px 40px rgba(139, 119, 80, 0.12);
    --font-display: 'Chango', cursive;
    --font-body: 'Source Sans 3', sans-serif;
    --site-header-height: 4.5rem;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-body);
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

button {
    cursor: pointer;
    font-family: inherit;
    border: none;
    background: none;
}

/* ===== UTILITIES ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.hidden { display: none !important; }

.text-secondary { color: var(--secondary); }

.section {
    padding: 6rem 0;
    overflow: hidden;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-label {
    display: inline-block;
    font-family: var(--font-body);
    color: var(--secondary);
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--foreground);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-desc {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    line-height: 1.7;
}

.products-fran-sverige-inline {
    display: inline-block;
    vertical-align: middle;
    margin-left: 0.5rem;
    opacity: 0.9;
    transition: opacity 0.2s;
}
.products-fran-sverige-inline:hover { opacity: 1; }
.products-fran-sverige-inline img {
    display: inline-block;
    height: 2.25rem;
    width: auto;
    vertical-align: middle;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
    white-space: nowrap;
    gap: 0.5rem;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.0625rem;
}

.btn-sm {
    padding: 0.4rem 1rem;
    font-size: 0.8125rem;
}

.btn-secondary {
    background: var(--secondary);
    color: var(--foreground);
}
.btn-secondary:hover {
    background: hsl(38, 80%, 48%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(201, 157, 56, 0.3);
}

.btn-outline-light {
    border: 2px solid rgba(255,255,255,0.4);
    color: var(--primary-foreground);
    background: transparent;
}
.btn-outline-light:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.6);
}

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

.btn-primary {
    background: var(--primary);
    color: var(--primary-foreground);
}
.btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.btn-text {
    color: var(--secondary);
    padding: 0;
    font-weight: 600;
}
.btn-text:hover {
    color: hsl(38, 80%, 45%);
}

/* ===== SITE HEADER STICKY (wrapper for announcement + header) ===== */
.site-header-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

/* ===== HEADER ===== */
.header {
    transition: all 0.3s ease;
    padding: 0.875rem 0;
}

.header.scrolled {
    background: var(--card);
    box-shadow: var(--shadow-warm);
    padding: 0.5rem 0;
}

.header.header-solid {
    background: var(--primary);
    padding: 0.5rem 0;
}

.header.header-solid.scrolled {
    background: var(--card);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.logo-link {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-img {
    height: 68px;
    width: auto;
    transition: height 0.3s ease, filter 0.3s ease;
}

.header.scrolled .logo-img {
    filter: brightness(0.3);
    height: 54px;
}

@media (min-width: 768px) {
    .header {
        padding: 1.125rem 0;
    }

    .header.scrolled {
        padding: 0.625rem 0;
    }

    .header.header-solid {
        padding: 1rem 0;
    }

    .logo-link {
        margin-right: 0.5rem;
    }

    .logo-img {
        height: 100px;
    }

    .header.scrolled .logo-img {
        height: 68px;
    }
}

.nav-desktop {
    display: none;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-weight: 600;
    font-size: 1.0625rem;
    color: var(--primary-foreground);
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--secondary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.nav-link:hover::after { transform: scaleX(1); }

.header.scrolled .nav-link,
.header.scrolled .nav-item .nav-link {
    color: var(--foreground);
}

.nav-toggle {
    display: flex;
    padding: 0.5rem;
    color: var(--primary-foreground);
    border-radius: var(--radius);
    transition: all 0.3s;
}

.header.scrolled .nav-toggle {
    color: var(--foreground);
}

.nav-toggle svg {
    width: 24px;
    height: 24px;
}

.nav-mobile {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--card);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-elevated);
    transition: all 0.3s ease;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
}

.nav-mobile.open {
    max-height: 400px;
    opacity: 1;
}

.nav-mobile-inner {
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
}

.nav-mobile-link {
    font-weight: 500;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border);
    color: var(--foreground);
    transition: color 0.3s;
}

.nav-mobile-link:hover {
    color: var(--secondary);
}

@media (min-width: 768px) {
    .nav-desktop { display: flex; }
    .nav-toggle { display: none; }
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
}
.hero-carousel {
    overflow: hidden;
}

.hero-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}
.hero-carousel .hero-bg-img.active {
    opacity: 1;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(to bottom, hsla(216, 60%, 20%, 0.55), hsla(216, 60%, 20%, 0.4), hsla(216, 60%, 20%, 0.65));
}

.hero-decor-1 {
    position: absolute;
    top: 5rem;
    left: 2.5rem;
    width: 8rem;
    height: 8rem;
    border-radius: 50%;
    background: hsla(38, 80%, 55%, 0.2);
    filter: blur(48px);
    animation: float 6s ease-in-out infinite;
}

.hero-decor-2 {
    position: absolute;
    bottom: 10rem;
    right: 5rem;
    width: 12rem;
    height: 12rem;
    border-radius: 50%;
    background: hsla(38, 80%, 55%, 0.15);
    filter: blur(48px);
    animation: float 6s ease-in-out infinite 2s;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
}

.hero-logo-link {
    display: none;
}

.hero-text {
    max-width: 56rem;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 2rem;
    padding: 0.5rem 1.5rem;
    color: var(--primary-foreground);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 2rem;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--primary-foreground);
    margin-bottom: 1.5rem;
    line-height: 1.15;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 1.25rem;
    color: rgba(255,255,255,0.7);
    font-weight: 300;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.hero-desc {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.85);
    max-width: 40rem;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.6);
}

.hero-scroll-text {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.scroll-indicator {
    width: 1.5rem;
    height: 2.5rem;
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 1rem;
    display: flex;
    justify-content: center;
}

.scroll-dot {
    width: 4px;
    height: 12px;
    background: rgba(255,255,255,0.6);
    border-radius: 2px;
    margin-top: 0.5rem;
    animation: bounce 2s infinite;
}

@media (min-width: 768px) {
    .hero-title { font-size: 4.5rem; }
}

@media (min-width: 1024px) {
    .hero-title { font-size: 5.5rem; }
}

/* ===== PRODUCTS ===== */
.products-section {
    background-color: hsl(216, 45%, 94%);
    position: relative;
    overflow: hidden;
}

.products-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        url('../images/samlade-etiketter-bg.png'),
        url('../images/samlade-etiketter-bg.png');
    background-size: 1200px auto;
    background-repeat: repeat;
    background-position: 0 0, 600px 500px;
    opacity: 0.04;
    pointer-events: none;
}

.products-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(30, 58, 95, 0.08) 0%, rgba(30, 58, 95, 0.22) 100%);
    pointer-events: none;
}

.products-section-solid::before,
.products-section-solid::after {
    display: none;
}

/* Preset: text och accent anpassas till bakgrunden */
.products-section-solid .section-label {
    color: var(--products-accent);
}
.products-section-solid .section-title {
    color: var(--products-text);
}
.products-section-solid .section-desc {
    color: var(--products-text);
    opacity: 0.9;
}
.products-section-solid .section-desc a {
    color: var(--products-accent);
    text-decoration: underline;
}
.products-section-solid .section-desc a:hover {
    opacity: 0.9;
}
.products-section-solid .products-benefits-title {
    color: var(--products-text);
}

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

.products-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
    align-items: stretch;
}

@media (min-width: 640px) {
    .products-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .products-grid { grid-template-columns: repeat(4, 1fr); }
}

.products-benefits {
    margin-bottom: 3rem;
}

.products-benefits-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--foreground);
    text-align: center;
    margin-bottom: 1.5rem;
}

.products-benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .products-benefits-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .products-benefits-grid { grid-template-columns: repeat(4, 1fr); }
}

.products-benefit-card {
    background: var(--card);
    border-radius: 1rem;
    padding: 1.25rem 1.5rem;
    box-shadow: var(--shadow-sm);
}

.products-benefit-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.products-benefit-desc {
    font-size: 0.9375rem;
    color: var(--muted-foreground);
    line-height: 1.6;
    margin: 0;
}

.product-card {
    background: var(--card);
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: var(--shadow-warm);
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.product-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0;
    background: hsl(38, 85%, 55%);
    transition: height 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
    z-index: 1;
    border-radius: 0 0 1.5rem 1.5rem;
}

.product-card:hover::after {
    height: 5px;
}

.product-card:hover {
    box-shadow: var(--shadow-elevated);
}

.product-card-image {
    position: relative;
    padding: 0 1.5rem;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: linear-gradient(135deg, hsl(40, 25%, 95%), hsl(45, 40%, 97%));
    perspective: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card-image-flip {
    position: absolute;
    inset: 0;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    transform-style: preserve-3d;
}

.product-card-has-flip.product-card-flipped .product-card-image-flip {
    transform: rotateY(180deg);
}

.product-card-image-front,
.product-card-image-back {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.product-card-image-front img,
.product-card-image-back img {
    max-height: 100%;
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: top center;
}

.product-card-image-back {
    transform: rotateY(180deg);
}

.product-card-image img {
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.product-card-image-single {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.product-card-image-single img {
    max-height: 100%;
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: top center;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.product-card:not(.product-card-has-flip):hover .product-card-image-single img {
    transform: scale(1.05);
}

.product-card-has-flip .product-card-image-front img,
.product-card-has-flip .product-card-image-back img {
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.product-card-has-flip:hover .product-card-image-front img,
.product-card-has-flip:hover .product-card-image-back img {
    transform: scale(1.03);
}

.product-badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: var(--primary);
    color: var(--primary-foreground);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.3rem 0.85rem;
    border-radius: 1rem;
    z-index: 2;
}

.product-card-body {
    padding: 0 1.5rem 0.6rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    position: relative;
    z-index: 2;
}

.product-card-body > *:first-child {
    margin-top: 0;
}

.product-card-title {
    font-family: var(--font-display);
    font-size: 1.125rem;
    margin: 0 0 0.25rem 0;
    padding: 0;
    color: var(--foreground);
}

.product-card-desc {
    font-size: 0.9rem;
    color: var(--muted-foreground);
    margin: 0 0 0.5rem 0;
    padding: 0;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-meta {
    display: flex;
    gap: 1.25rem;
    color: var(--muted-foreground);
    font-size: 0.8125rem;
    padding-top: 0.5rem;
    margin-top: auto;
    border-top: 1px solid var(--border);
    transition: border-color 0.3s;
}

.product-card:hover .product-meta {
    border-color: hsla(38, 80%, 55%, 0.25);
}

.product-card-cta {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: hsl(38, 85%, 45%);
    transition: color 0.25s;
}

.product-card:hover .product-card-cta {
    color: hsl(38, 90%, 42%);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.meta-item svg {
    opacity: 0.6;
    flex-shrink: 0;
}

.meta-item span {
    white-space: nowrap;
}

/* ===== PRODUCT MODAL ===== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    color: var(--foreground);
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: var(--card);
    color: var(--foreground);
    border-radius: 1.5rem;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: var(--shadow-elevated);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--muted-foreground);
    background: var(--muted);
    border-radius: 50%;
    z-index: 10;
    transition: all 0.3s;
}

.modal-close:hover {
    background: var(--border);
    color: var(--foreground);
}

.modal-body {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem;
}

@media (min-width: 640px) {
    .modal-body { grid-template-columns: 1fr 1fr; }
}

.modal-product-images {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.modal-product-image {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, hsl(40, 25%, 95%), hsl(45, 40%, 97%));
    border-radius: 1rem;
    padding: 2rem;
}

.modal-product-image img {
    max-height: 300px;
    object-fit: contain;
}

.modal-product-image-usage {
    padding: 1.25rem;
}

.modal-product-image-usage img {
    max-height: 200px;
}

.modal-product-info h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.modal-product-desc {
    color: var(--muted-foreground);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.modal-product-details {
    background: var(--muted);
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
}

.detail-row:last-child { border-bottom: none; }

.detail-label {
    font-weight: 500;
    color: var(--muted-foreground);
}

.detail-value {
    font-weight: 600;
    color: var(--foreground);
}

.modal-product-tips {
    background: var(--muted);
    border-radius: 1rem;
    padding: 1rem 1.5rem;
}

.modal-product-tips h4 {
    font-size: 0.875rem;
    color: var(--secondary);
    margin-bottom: 0.25rem;
}

.modal-product-tips p {
    color: var(--muted-foreground);
    margin: 0;
    line-height: 1.6;
}

.modal-pdf-link {
    width: 100%;
    justify-content: center;
    border-color: var(--secondary);
    color: var(--secondary);
    border-radius: 0.75rem;
    padding: 0.75rem 1.25rem;
    font-weight: 600;
}

.modal-pdf-link:hover {
    background: var(--secondary);
    color: var(--foreground);
}

/* Product ratings */
.product-card-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-height: 1.375rem;
    margin-bottom: 0.5rem;
}

.product-card-rating--empty {
    visibility: hidden;
}

.product-card-rating-text {
    font-size: 0.8125rem;
    color: var(--muted-foreground);
}

.product-stars {
    display: inline-flex;
    gap: 0.1rem;
    color: var(--border);
    line-height: 1;
}

.product-stars .star {
    font-size: 1rem;
}

.product-stars-sm .star {
    font-size: 0.875rem;
}

.product-stars .star-filled,
.product-stars .star-half {
    color: var(--secondary);
}

.modal-product-reviews {
    grid-column: 1 / -1;
    margin-top: 0;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.product-reviews {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.product-reviews-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.product-reviews-title {
    font-size: 1.125rem;
    margin: 0;
    color: var(--foreground);
}

.product-reviews-summary-text {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.product-reviews-loading {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.product-reviews-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
    max-height: 240px;
    overflow-y: auto;
}

.product-review-item {
    background: var(--muted);
    border-radius: 0.75rem;
    padding: 1rem;
}

.product-review-item-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.product-review-author {
    font-size: 0.9375rem;
    color: var(--foreground);
}

.product-review-comment {
    margin: 0 0 0.5rem;
    line-height: 1.6;
    font-size: 0.9375rem;
    color: var(--foreground);
}

.product-review-date {
    font-size: 0.75rem;
    color: var(--muted-foreground);
}

.product-review-form {
    background: var(--muted);
    border-radius: 1rem;
    padding: 1.25rem;
}

.product-review-form-title {
    font-size: 1rem;
    margin: 0 0 0.25rem;
    color: var(--foreground);
}

.product-review-form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 540px) {
    .product-review-form-grid {
        grid-template-columns: 1fr 1fr;
        align-items: end;
    }
}

.product-review-form-note {
    font-size: 0.8125rem;
    color: var(--muted-foreground);
    margin: 0 0 1rem;
}

.product-review-form .form-group {
    margin-bottom: 1rem;
}

.product-review-form label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.375rem;
    color: var(--foreground);
}

.product-review-form input[type="text"],
.product-review-form textarea {
    width: 100%;
    padding: 0.625rem 0.75rem;
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    font-family: inherit;
    font-size: 0.9375rem;
    background: var(--background);
}

.review-star-input {
    display: flex;
    gap: 0.25rem;
}

.review-star-btn {
    background: none;
    border: none;
    font-size: 1.75rem;
    color: var(--border);
    cursor: pointer;
    padding: 0;
    line-height: 1;
    transition: color 0.15s, transform 0.15s;
}

.review-star-btn.hover-active,
.review-star-btn.active {
    color: var(--secondary);
    transform: scale(1.05);
}

.review-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.product-review-message {
    margin-bottom: 0.75rem;
    padding: 0.625rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
}

.product-review-message--success {
    background: hsl(140 40% 92%);
    color: hsl(140 40% 25%);
}

.product-review-message--error {
    background: hsl(0 60% 95%);
    color: hsl(0 60% 35%);
}

.product-review-message--info {
    background: var(--muted);
    color: var(--muted-foreground);
}

.product-review-success {
    background: hsl(140 40% 94%);
    border: 1px solid hsl(140 35% 80%);
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
}

.product-review-success-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    margin-bottom: 0.75rem;
    border-radius: 50%;
    background: hsl(140 45% 40%);
    color: #fff;
    font-size: 1.25rem;
    font-weight: 700;
}

.product-review-success-title {
    margin: 0 0 0.5rem;
    font-size: 1.125rem;
    color: hsl(140 40% 22%);
}

.product-review-success-text {
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: hsl(140 30% 30%);
}

.modal-fran-sverige {
    display: inline-flex;
    margin-top: 1rem;
    opacity: 0.9;
    transition: opacity 0.2s;
}
.modal-fran-sverige:hover { opacity: 1; }
.modal-fran-sverige img {
    display: block;
    height: 48px;
    width: auto;
}

/* ===== HISTORY MODAL ===== */
.btn-history-modal {
    margin-top: 1rem;
}

.modal-content.modal-history {
    max-width: 900px;
}

.modal-content.modal-map {
    max-width: 900px;
    padding: 0;
    overflow: hidden;
}

.modal-map-body {
    position: relative;
    padding-top: 3rem;
}

.modal-map .modal-close {
    top: 0.75rem;
    right: 0.75rem;
}

.modal-map iframe {
    display: block;
    width: 100%;
    height: 70vh;
    min-height: 400px;
    border: none;
}

.modal-map-external {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: var(--card);
}

.modal-history-body {
    padding: 2rem 2rem 2.5rem;
}

.modal-history-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--foreground);
    text-align: center;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.modal-history-subtitle {
    font-size: 1.125rem;
    color: var(--secondary);
    text-align: center;
    font-weight: 600;
    margin-bottom: 2rem;
}

.modal-history-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .modal-history-images { grid-template-columns: repeat(3, 1fr); }
}

.modal-history-images img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 0.75rem;
}

.modal-history-text {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--foreground);
}

.modal-history-text p {
    margin-bottom: 1rem;
}

.modal-history-text h3 {
    font-size: 1.25rem;
    margin: 2rem 0 0.75rem;
    color: var(--foreground);
}

/* ===== QUIZ ===== */
.quiz-section {
    background: var(--muted);
}

.quiz-card {
    background: var(--card);
    border-radius: 2rem;
    box-shadow: var(--shadow-elevated);
    max-width: 640px;
    margin: 0 auto;
    overflow: hidden;
}

.quiz-header {
    text-align: center;
    padding: 2.5rem 2rem 1rem;
}

.quiz-emoji {
    font-size: 3rem;
    display: block;
    margin-bottom: 0.5rem;
}

.quiz-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.quiz-subtitle {
    color: var(--muted-foreground);
    font-size: 1rem;
}

.quiz-body {
    padding: 2rem;
}

.quiz-progress {
    margin-bottom: 2rem;
}

.quiz-progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.quiz-progress-label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.quiz-progress-pct {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--primary);
}

.quiz-progress-bar {
    height: 0.5rem;
    background: var(--muted);
    border-radius: 1rem;
    overflow: hidden;
}

.quiz-progress-fill {
    height: 100%;
    background: var(--secondary);
    border-radius: 1rem;
    transition: width 0.5s ease;
}

.quiz-question {
    font-family: var(--font-display);
    font-size: 1.375rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--foreground);
}

.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.quiz-option {
    width: 100%;
    background: var(--background);
    border: 2px solid var(--border);
    border-radius: 0.75rem;
    padding: 1.25rem;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.quiz-option:hover {
    background: var(--primary);
    color: var(--primary-foreground);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-warm);
}

.quiz-result {
    padding: 2.5rem 2rem;
    text-align: center;
}

.quiz-result-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--foreground);
}

.quiz-result-card {
    background: var(--background);
    border-radius: 1.5rem;
    padding: 2rem;
    margin-bottom: 1.5rem;
}

.quiz-result-card img {
    max-height: 180px;
    margin: 0 auto 1rem;
    object-fit: contain;
}

.quiz-result-card h4 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.quiz-result-card p {
    color: var(--muted-foreground);
}

.quiz-restart {
    margin-top: 1rem;
}

/* ===== ABOUT ===== */
.press-highlight-section {
    padding: 4rem 0;
    background: var(--muted);
}

.press-highlight-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 2.5rem 3rem;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 1.25rem;
    box-shadow: var(--shadow-warm);
}

.press-highlight-content {
    min-width: 0;
}

.press-highlight-label {
    margin-bottom: 0.75rem;
}

.press-highlight-date {
    display: block;
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 0.5rem;
}

.press-highlight-title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    line-height: 1.25;
    margin: 0 0 0.5rem;
    color: var(--foreground);
}

.press-highlight-source {
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary);
    margin: 0 0 1.5rem;
}

.press-highlight-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
}

.press-highlight-more {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--card);
}

.press-highlight-more:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--primary-foreground);
}

.press-highlight-expand {
    margin-top: 1.25rem;
    padding: 1.25rem 1.5rem;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 1rem;
}

.press-highlight-list {
    margin-top: 1rem;
}

.press-highlight-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 7rem;
    height: 7rem;
    border-radius: 50%;
    background: var(--primary);
    color: var(--secondary);
    opacity: 0.9;
}

@media (max-width: 768px) {
    .press-highlight-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem 1.5rem;
    }

    .press-highlight-icon {
        width: 5rem;
        height: 5rem;
    }

    .press-highlight-icon svg {
        width: 48px;
        height: 48px;
    }
}

.about-section {
    padding-bottom: 4rem;
}

.about-intro {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
    margin-bottom: 5rem;
}

@media (min-width: 1024px) {
    .about-intro {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.about-title {
    text-align: left;
    margin-bottom: 1.5rem;
}

.about-text {
    color: var(--muted-foreground);
    font-size: 1.0625rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.about-text-bold {
    font-weight: 700;
    color: var(--foreground);
}

.about-intro-image {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
}

.about-intro-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 1.5rem;
}

.about-stat-overlay {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    background: var(--card);
    border-radius: 1rem;
    padding: 1rem 1.5rem;
    box-shadow: var(--shadow-elevated);
    text-align: center;
}

.about-stat-overlay .stat-value {
    display: block;
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--foreground);
    line-height: 1.2;
}

.about-stat-overlay .stat-label {
    display: block;
    font-size: 0.8125rem;
    color: var(--muted-foreground);
    font-weight: 500;
}

/* Mission part */
.about-mission {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
}

@media (min-width: 1024px) {
    .about-mission {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.about-mission-image {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
}

.about-mission-image img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 1.5rem;
}

.about-stat-bottom {
    bottom: 1.5rem;
    right: 1.5rem;
}

.about-mission-text .section-label {
    display: block;
    margin-bottom: 0.5rem;
}

.about-mission-text .about-title {
    margin-bottom: 1.5rem;
}

.about-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.about-value-card {
    background: var(--card);
    border-radius: 1rem;
    padding: 1.5rem 1rem;
    text-align: center;
    box-shadow: var(--shadow-warm);
    transition: transform 0.3s ease;
}

.about-value-card:hover {
    transform: translateY(-4px);
}

.about-value-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    margin: 0 auto 0.75rem;
    color: var(--secondary);
}

.about-value-label {
    font-family: var(--font-display);
    font-size: 0.9375rem;
    color: var(--foreground);
}

/* ===== SHOP / BUTIKEN ===== */
.shop-section {
    background: var(--primary);
    color: var(--primary-foreground);
    position: relative;
    overflow: hidden;
}

.shop-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 80% 20%, rgba(218,165,32,0.06) 0%, transparent 50%),
                radial-gradient(ellipse at 20% 80%, rgba(255,255,255,0.03) 0%, transparent 50%);
    pointer-events: none;
}

.shop-section .section-header {
    margin-bottom: 3rem;
}

.shop-label {
    color: var(--secondary);
}

.shop-title {
    color: var(--primary-foreground);
    font-size: 2.75rem;
    line-height: 1.15;
}

.shop-title .text-secondary {
    color: var(--secondary);
}

.shop-desc {
    color: rgba(255,255,255,0.8);
}

.shop-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .shop-cards { grid-template-columns: repeat(3, 1fr); }
}

.shop-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 1.25rem;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.shop-card:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-4px);
}

.shop-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    background: var(--secondary);
    border-radius: 50%;
    margin: 0 auto 1.25rem;
    color: var(--foreground);
}

.shop-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--primary-foreground);
}

.shop-card-line {
    color: rgba(255,255,255,0.75);
    margin-bottom: 0.25rem;
    font-size: 0.9375rem;
}

.shop-map-btn {
    text-align: center;
    margin-top: 2rem;
}

.btn-map {
    border-radius: 2rem;
    padding: 0.75rem 1.75rem;
}

/* ===== RETAILERS ===== */
.retailers-section {
    padding: 4rem 0;
}

.retailers-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.store-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.5rem;
    margin-top: 2rem;
    align-items: center;
}

.store-logo {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--foreground);
    opacity: 0.45;
    transition: all 0.3s ease;
    white-space: nowrap;
    text-decoration: none;
    cursor: pointer;
}

a.store-logo:hover {
    opacity: 1;
    color: var(--secondary);
}

.modal-product-buy-tip {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border);
}

.modal-product-buy-tip p {
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.65;
    color: var(--muted-foreground);
}

.modal-product-buy-tip a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: underline;
}

.modal-product-buy-tip a:hover {
    color: var(--secondary);
}

/* ===== RETAILER CTA ===== */
.retailer-cta-section {
    padding-top: 0;
    padding-bottom: 6rem;
}

.retailer-cta-card {
    background: var(--primary);
    border-radius: 2rem;
    padding: 3.5rem 2.5rem;
    text-align: center;
    box-shadow: 0 12px 48px rgba(30, 58, 95, 0.25);
    max-width: 800px;
    margin: 0 auto;
}

.retailer-cta-card .section-label {
    color: var(--secondary);
}

.retailer-cta-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--primary-foreground);
}

.retailer-cta-text {
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.retailer-cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.retailer-cta-btn {
    border-radius: 2rem;
    font-size: 0.9rem;
    border-color: rgba(255,255,255,0.3);
    color: var(--primary-foreground);
    background: rgba(255,255,255,0.08);
}

.retailer-cta-btn:hover {
    border-color: var(--secondary);
    color: var(--secondary);
    background: rgba(255,255,255,0.12);
}

/* ===== FAQ ===== */
.faq-grid {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
    font-size: 1.0625rem;
    font-weight: 500;
    color: var(--foreground);
    text-align: left;
    gap: 1rem;
}

.faq-chevron {
    transition: transform 0.3s ease;
    flex-shrink: 0;
    color: var(--muted-foreground);
}

.faq-item.open .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding-bottom: 1.25rem;
}

.faq-answer p {
    color: var(--muted-foreground);
    line-height: 1.7;
}

/* ===== CONTACT ===== */
.contact-section {
    background: var(--muted);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .contact-grid { grid-template-columns: repeat(3, 1fr); }
}

.contact-card {
    background: var(--card);
    border-radius: 1.5rem;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-warm);
    transition: all 0.3s;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-elevated);
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    background: var(--muted);
    border-radius: 1rem;
    margin: 0 auto 1rem;
    color: var(--secondary);
}

.contact-card h3 {
    font-family: var(--font-display);
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.contact-card a {
    color: var(--secondary);
    font-weight: 500;
    transition: color 0.3s;
}

.contact-card a:hover {
    color: hsl(38, 80%, 45%);
}

.contact-card p {
    color: var(--muted-foreground);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--primary);
    color: var(--primary-foreground);
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer .container {
    position: relative;
    z-index: 1;
}

.footer-deco-logo {
    display: none;
    position: absolute;
    left: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
    line-height: 0;
}

.footer-deco-logo img {
    width: min(560px, 48vw);
    max-width: none;
    height: auto;
    transform: translate(-20%, 10%);
    opacity: 0.14;
}

@media (min-width: 768px) {
    .footer-deco-logo {
        display: block;
    }
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .footer-grid { grid-template-columns: 2fr 1fr 1.5fr; }
}

.footer-logo {
    height: 56px;
    margin-bottom: 1.25rem;
}

.footer-tagline {
    opacity: 0.7;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.footer-links h4,
.footer-contact-col h4 {
    font-family: var(--font-display);
    margin-bottom: 1rem;
    font-size: 1.0625rem;
}

.footer-consumer-title {
    margin-top: 2rem;
}

.footer-links nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    opacity: 0.7;
    transition: opacity 0.3s;
    font-size: 0.9375rem;
}

.footer-links a:hover { opacity: 1; }

.footer-contact-name {
    opacity: 0.85;
    margin-bottom: 0.75rem;
    font-size: 0.9375rem;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    opacity: 0.7;
    margin-bottom: 0.5rem;
    font-size: 0.9375rem;
    transition: opacity 0.3s;
    color: inherit;
    text-decoration: none;
}

a.footer-contact-item:hover {
    opacity: 1;
}

.footer-contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    margin-top: 0.1rem;
    color: var(--primary-foreground);
    opacity: 0.9;
}

.footer-contact-item p {
    margin: 0;
}

.footer-contact-col .footer-address {
    margin: 0;
}

.footer-contact-item--muted {
    opacity: 0.5;
}

.footer-consumer-hours {
    font-size: 0.875rem !important;
    margin: 0 !important;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.12);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    font-size: 0.875rem;
    opacity: 0.5;
}

.footer-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    opacity: 0.7;
}

.flag-icon {
    flex-shrink: 0;
    border-radius: 2px;
}

.footer-fran-sverige {
    display: inline-flex;
    align-items: center;
    opacity: 0.9;
    transition: opacity 0.2s;
}
.footer-fran-sverige:hover { opacity: 1; }
.footer-fran-sverige img {
    display: block;
    height: 48px;
    width: auto;
}

/* ===== ANNOUNCEMENT BAR ===== */
.announcement-bar {
    color: var(--foreground);
    text-align: center;
    padding: 0.6rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.announcement-bar-icon {
    font-size: 1.1em;
    line-height: 1;
}

.announcement-bar.dismissed {
    transform: translateY(-100%);
    opacity: 0;
    position: absolute;
    width: 100%;
}

.announcement-bar a {
    color: inherit;
    text-decoration: underline;
    margin-left: 0.25rem;
}

.announcement-bar-close {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: inherit;
    font-size: 1.25rem;
    cursor: pointer;
    opacity: 0.6;
    padding: 0.25rem;
    line-height: 1;
}

.announcement-bar-close:hover { opacity: 1; }

.announcement-bar--no-dismiss .announcement-bar-close {
    display: none;
}

/* ===== MEGA MENU ===== */
.nav-item {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-link {
    position: relative;
}

.mega-trigger { cursor: pointer; }

.mega-panel {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    background: var(--card);
    border-radius: 1.25rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12), 0 4px 20px rgba(0,0,0,0.06);
    padding: 1.75rem 2rem;
    min-width: 420px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 100;
    pointer-events: none;
}

.mega-panel::before {
    content: '';
    position: absolute;
    top: -0.75rem;
    left: 0;
    right: 0;
    height: 1rem;
    background: transparent;
}

.mega-panel::after {
    content: '';
    position: absolute;
    top: -4px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 0.75rem;
    height: 0.75rem;
    background: var(--card);
    border-radius: 2px;
}

.nav-item:hover .mega-panel,
.nav-item.mega-open .mega-panel {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.mega-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 2rem;
}

.mega-col-title {
    font-family: var(--font-display);
    font-size: 0.875rem;
    color: var(--foreground);
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--secondary);
    display: inline-block;
}

.mega-col-links {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.mega-col-links a {
    color: var(--muted-foreground);
    font-size: 0.9rem;
    padding: 0.3rem 0;
    transition: color 0.2s, padding-left 0.2s;
    white-space: nowrap;
}

.mega-col-links a:hover {
    color: var(--secondary);
    padding-left: 0.25rem;
}

.mega-featured {
    background: linear-gradient(135deg, hsl(40, 25%, 95%), hsl(45, 40%, 97%));
    border-radius: 1rem;
    padding: 1.25rem;
    text-align: center;
}

.mega-featured-title {
    font-family: var(--font-display);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.mega-featured-text {
    font-size: 0.8125rem;
    color: var(--muted-foreground);
    line-height: 1.5;
}

.header.scrolled .mega-panel {
    top: calc(100% + 0.5rem);
}

/* ===== ANIMATIONS ===== */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-up {
    opacity: 0;
    animation: fadeUp 0.8s ease forwards;
}

.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }
.stagger-5 { animation-delay: 0.6s; }

/* Scroll reveal variants */
.reveal {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.reveal-up {
    transform: translateY(40px);
}

.reveal.reveal-left {
    transform: translateX(-40px);
}

.reveal.reveal-right {
    transform: translateX(40px);
}

.reveal.reveal-scale {
    transform: scale(0.92);
}

.reveal.reveal-fade {
    transform: none;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
}

.reveal-stagger-1 { transition-delay: 0.05s; }
.reveal-stagger-2 { transition-delay: 0.1s; }
.reveal-stagger-3 { transition-delay: 0.15s; }
.reveal-stagger-4 { transition-delay: 0.2s; }
.reveal-stagger-5 { transition-delay: 0.25s; }
.reveal-stagger-6 { transition-delay: 0.3s; }
.reveal-stagger-7 { transition-delay: 0.35s; }
.reveal-stagger-8 { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
    .reveal { transition: opacity 0.4s ease; transform: none !important; }
    .product-card::after { display: none; }
    .animate-fade-up { animation: none; opacity: 1; }
}

/* ===== SUBPAGES ===== */
.subpage-spacer {
    height: var(--site-header-height);
}

.subpage-hero {
    position: relative;
    min-height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    background-size: cover;
    background-position: center;
    padding-top: calc(var(--site-header-height) + 2rem);
    padding-bottom: 3rem;
}

.subpage-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, hsla(216, 60%, 20%, 0.75), hsla(216, 60%, 20%, 0.85));
}

.subpage-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
}

.subpage-hero-title {
    font-family: var(--font-display);
    font-size: 2.75rem;
    color: var(--primary-foreground);
    margin-bottom: 0.75rem;
}

.subpage-hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.8);
    max-width: 600px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .subpage-hero-title { font-size: 3.5rem; }
}

.subpage-main {
    min-height: 40vh;
}

.subpage-section.bg-muted {
    background: var(--muted);
}

.content-block {
    max-width: 800px;
    margin: 0 auto;
}

.content-title {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 1.25rem;
    color: var(--foreground);
}

.content-text {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--muted-foreground);
}

.text-image-block {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 768px) {
    .text-image-block { grid-template-columns: 1fr 1fr; }
    .text-image-block.image-left .text-image-media { order: -1; }
}

.text-image-content .content-text { margin-bottom: 1.5rem; }

.text-image-media img {
    width: 100%;
    border-radius: 1.5rem;
    box-shadow: var(--shadow-elevated);
}

.gallery-grid {
    display: grid;
    gap: 1.5rem;
}

.gallery-cols-2 { grid-template-columns: repeat(2, 1fr); }
.gallery-cols-3 { grid-template-columns: repeat(3, 1fr); }
.gallery-cols-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 640px) {
    .gallery-cols-3, .gallery-cols-4 { grid-template-columns: repeat(2, 1fr); }
}

.gallery-item img {
    width: 100%;
    border-radius: 1rem;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.gallery-caption {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
    text-align: center;
}

.cta-block {
    background: var(--primary);
    color: var(--primary-foreground);
    border-radius: 2rem;
    padding: 3.5rem;
    text-align: center;
}

.cta-title {
    font-family: var(--font-display);
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.cta-text {
    font-size: 1.125rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cards-grid {
    display: grid;
    gap: 2rem;
}

.cards-cols-2 { grid-template-columns: repeat(2, 1fr); }
.cards-cols-3 { grid-template-columns: repeat(3, 1fr); }
.cards-cols-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 768px) {
    .cards-cols-3, .cards-cols-4 { grid-template-columns: 1fr; }
    .cards-cols-2 { grid-template-columns: 1fr; }
}

.info-card {
    background: var(--card);
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: var(--shadow-warm);
    transition: all 0.3s;
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-elevated);
}

.info-card-image img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
}

.info-card-body {
    padding: 1.5rem;
}

.info-card-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--foreground);
}

.info-card-body p {
    font-size: 0.9375rem;
    color: var(--muted-foreground);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.section-divider {
    border: none;
    border-top: 1px solid var(--border);
    max-width: 200px;
    margin: 0 auto;
}

/* ===== CHATBOT WIDGET ===== */
.chatbot-fab {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--primary-foreground);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    z-index: 3000;
    transition: transform 0.3s, box-shadow 0.3s;
    border: none;
}

.chatbot-fab:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 28px rgba(0,0,0,0.3);
}

.chatbot-fab.hidden { display: none; }

.chatbot-widget {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 380px;
    max-width: calc(100vw - 2rem);
    max-height: 520px;
    background: var(--card);
    border-radius: 1.25rem;
    box-shadow: 0 12px 48px rgba(0,0,0,0.18);
    z-index: 3001;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    animation: chatbotSlideIn 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.chatbot-widget.hidden {
    display: none;
}

@keyframes chatbotSlideIn {
    from { opacity: 0; transform: translateY(20px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.chatbot-header {
    background: var(--primary);
    color: var(--primary-foreground);
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.chatbot-header-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.chatbot-avatar {
    font-size: 1.75rem;
    line-height: 1;
}

.chatbot-name {
    display: block;
    font-family: var(--font-display);
    font-size: 1.05rem;
}

.chatbot-subtitle {
    display: block;
    font-size: 0.75rem;
    opacity: 0.75;
}

.chatbot-close {
    background: none;
    border: none;
    color: var(--primary-foreground);
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0.7;
    padding: 0.25rem;
    line-height: 1;
    transition: opacity 0.2s;
}

.chatbot-close:hover { opacity: 1; }

.chatbot-messages {
    flex: 1;
    overflow-y: auto;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    min-height: 280px;
    max-height: 360px;
}

.chat-bubble {
    max-width: 85%;
    padding: 0.75rem 1rem;
    border-radius: 1rem;
    font-size: 0.9rem;
    line-height: 1.5;
    animation: bubbleIn 0.3s ease;
}

@keyframes bubbleIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.chat-bubble.bot {
    background: var(--muted);
    color: var(--foreground);
    border-bottom-left-radius: 0.25rem;
    align-self: flex-start;
}

.chat-bubble.user {
    background: var(--primary);
    color: var(--primary-foreground);
    border-bottom-right-radius: 0.25rem;
    align-self: flex-end;
}

.chatbot-quick {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.chatbot-quick-label {
    font-size: 0.8rem;
    color: var(--muted-foreground);
    margin-bottom: 0.1rem;
}

.chatbot-quick-btn {
    background: transparent;
    border: 1.5px solid var(--border);
    border-radius: 1.5rem;
    padding: 0.55rem 1rem;
    font-size: 0.85rem;
    color: var(--foreground);
    cursor: pointer;
    text-align: left;
    transition: all 0.2s;
}

.chatbot-quick-btn:hover {
    border-color: var(--secondary);
    background: hsla(38, 80%, 55%, 0.08);
    color: var(--secondary);
}

.chatbot-input {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    border-top: 1px solid var(--border);
    gap: 0.5rem;
}

.chatbot-input input {
    flex: 1;
    border: 1px solid var(--border);
    border-radius: 1.5rem;
    padding: 0.6rem 1rem;
    font-size: 0.875rem;
    font-family: var(--font-body);
    outline: none;
    transition: border-color 0.2s;
}

.chatbot-input input:focus {
    border-color: var(--secondary);
}

.chatbot-send {
    background: none;
    border: none;
    color: var(--primary);
    cursor: pointer;
    padding: 0.4rem;
    border-radius: 50%;
    transition: color 0.2s, background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chatbot-send:hover {
    color: var(--secondary);
    background: var(--muted);
}

.chat-typing {
    display: flex;
    gap: 4px;
    padding: 0.75rem 1rem;
    align-self: flex-start;
}

.chat-typing span {
    width: 6px;
    height: 6px;
    background: var(--muted-foreground);
    border-radius: 50%;
    animation: typingDot 1.4s ease-in-out infinite;
}

.chat-typing span:nth-child(2) { animation-delay: 0.2s; }
.chat-typing span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingDot {
    0%, 100% { opacity: 0.3; transform: translateY(0); }
    50% { opacity: 1; transform: translateY(-3px); }
}

@media (max-width: 480px) {
    .chatbot-widget {
        bottom: 0;
        right: 0;
        width: 100%;
        max-width: 100%;
        max-height: 100vh;
        max-height: 100dvh;
        border-radius: 0;
    }
    .chatbot-messages { max-height: calc(100vh - 140px); max-height: calc(100dvh - 140px); }
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
    .container { padding: 0 1.25rem; }

    .section { padding: 4rem 0; }
    .section-header { margin-bottom: 2.5rem; }
    .section-title { font-size: 1.875rem; }
    .section-desc { font-size: 1rem; }

    /* Nav */
    .nav-toggle {
        padding: 0.625rem;
        min-width: 44px;
        min-height: 44px;
        justify-content: center;
        align-items: center;
    }

    .nav-mobile {
        overflow-y: auto;
        max-height: 0;
    }
    .nav-mobile.open { max-height: 75vh; }

    /* Mobile mega menu accordion */
    .nav-mobile-group { border-bottom: 1px solid var(--border); }
    .nav-mobile-mega-toggle {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        font-weight: 500;
        padding: 0.75rem 0;
        color: var(--foreground);
        cursor: pointer;
    }
    .nav-mobile-mega-toggle::after {
        content: '+';
        font-size: 1.25rem;
        font-weight: 300;
        transition: transform 0.3s;
    }
    .nav-mobile-group.open .nav-mobile-mega-toggle::after {
        content: '−';
    }
    .nav-mobile-mega-links {
        display: none;
        padding-left: 1rem;
        padding-bottom: 0.5rem;
    }
    .nav-mobile-group.open .nav-mobile-mega-links { display: block; }
    .nav-mobile-mega-links a {
        display: block;
        padding: 0.4rem 0;
        font-size: 0.9rem;
        color: var(--muted-foreground);
        transition: color 0.2s;
    }
    .nav-mobile-mega-links a:hover { color: var(--secondary); }
    .nav-mobile-mega-col-title {
        font-family: var(--font-display);
        font-size: 0.75rem;
        color: var(--foreground);
        margin-top: 0.5rem;
        margin-bottom: 0.25rem;
        opacity: 0.6;
    }

    /* Hero */
    .hero-logo-link {
        display: inline-block;
        margin-bottom: 1.5rem;
    }

    .hero-logo-img {
        height: 12rem;
        width: auto;
        max-width: min(340px, 85vw);
        filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.25));
    }

    .header:not(.header-solid):not(.scrolled) .logo-link {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
    }

    .header:not(.header-solid):not(.scrolled) .header-inner {
        justify-content: flex-end;
    }

    .hero-title { font-size: 2.5rem; }
    .hero-subtitle { font-size: 1rem; letter-spacing: 0.05em; }
    .hero-desc { font-size: 1rem; }
    .hero-actions { flex-direction: column; align-items: stretch; gap: 0.75rem; }
    .hero-actions .btn { text-align: center; justify-content: center; }
    .hero-decor-1 { width: 5rem; height: 5rem; left: 1rem; top: 3rem; }
    .hero-decor-2 { width: 7rem; height: 7rem; right: 2rem; bottom: 5rem; }

    /* Products */
    .products-grid { gap: 1.25rem; }
    .product-card-image { padding: 0 1rem; aspect-ratio: 4/3; }
    .product-card-body { padding: 0 1.25rem 0.5rem; }

    /* Quiz */
    .quiz-header { padding: 2rem 1.25rem 0.75rem; }
    .quiz-body { padding: 1.25rem; }
    .quiz-result { padding: 1.5rem 1.25rem; }
    .quiz-title { font-size: 1.25rem; }

    /* About */
    .about-intro-image img { height: 280px; }
    .about-mission-image img { height: 320px; }
    .about-values {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    .about-value-card { padding: 1.25rem; }
    .about-stat-overlay { padding: 0.75rem 1rem; }
    .about-stat-overlay .stat-value { font-size: 1.35rem; }

    /* Shop */
    .shop-title { font-size: 2rem; }
    .shop-card { padding: 1.5rem 1.25rem; }

    /* Store logos */
    .store-logos { gap: 1.5rem; }
    .store-logo { font-size: 1.35rem; }
    /* Retailer CTA */
    .retailer-cta-card { padding: 2rem 1.5rem; }
    .retailer-cta-title { font-size: 1.5rem; }
    .retailer-cta-actions { flex-direction: column; align-items: stretch; }
    .retailer-cta-btn { text-align: center; justify-content: center; }

    /* FAQ */
    .faq-question { padding: 1rem 0; font-size: 1rem; }
    .faq-item.open .faq-answer { max-height: 500px; }

    /* Footer */
    .footer-bottom { flex-direction: column; text-align: center; }

    /* Announcement bar */
    .announcement-bar { padding-right: 2.5rem; }
    .announcement-bar--no-dismiss .announcement-bar-close {
        display: block;
        min-width: 44px;
        min-height: 44px;
    }

    /* Modal */
    .modal-close {
        width: 2.75rem;
        height: 2.75rem;
        font-size: 1.5rem;
    }
    .modal-body { flex-direction: column; }
    .modal-product-image { max-height: 250px; }

    /* Pressrum */
    .press-hero {
        padding-top: calc(var(--site-header-height) + 2rem);
        padding-bottom: 3.5rem;
    }
    .press-hero-title { font-size: 2.25rem; }
    .press-section-title { font-size: 1.5rem; }
    .press-download-list { grid-template-columns: 1fr; }
    .press-layout { grid-template-columns: 1fr; gap: 2.5rem; }
    .press-sidebar { order: -1; }
    .press-download-card { flex-wrap: wrap; }
    .press-download-btn { width: 100%; text-align: right; padding-top: 0.25rem; }
    .press-media-card { flex-wrap: wrap; }

    /* Ostguide */
    .og-hero {
        padding-top: calc(var(--site-header-height) + 1.5rem);
        padding-bottom: 3rem;
    }
    .og-hero-title { font-size: 2.25rem; }
    .og-section-title { font-size: 1.5rem; }
    .og-cta-card { padding: 2.5rem 1.5rem; }
    .og-cta-title { font-size: 1.5rem; }
    .og-toc-section { top: var(--site-header-height); }

    /* Subpages */
    .subpage-hero {
        padding-top: calc(var(--site-header-height) + 1.25rem);
        padding-bottom: 2rem;
        min-height: 240px;
    }
    .subpage-hero-title { font-size: 2rem; }
    .cta-block { padding: 2rem 1.5rem; }
    .cta-title { font-size: 1.75rem; }

    /* Chatbot touch targets */
    .chatbot-close {
        min-width: 44px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .chatbot-send {
        min-width: 44px;
        min-height: 44px;
    }
    .chatbot-fab {
        bottom: 1rem;
        right: 1rem;
    }
}

@media (max-width: 480px) {
    .container { padding: 0 1rem; }

    .hero-title { font-size: 2rem; }
    .hero-logo-img {
        height: 10.5rem;
        max-width: min(300px, 88vw);
    }
    .section-title { font-size: 1.625rem; }

    .about-intro-image img { height: 220px; }
    .about-mission-image img { height: 260px; }

    .gallery-cols-2 { grid-template-columns: 1fr; }

    .quiz-option { padding: 1rem; }

    .subpage-hero-title { font-size: 1.75rem; }
    .content-title { font-size: 1.5rem; }

    /* Pressrum */
    .press-hero-title { font-size: 1.875rem; }
    .press-single-title { font-size: 1.75rem; }

    /* Ostguide */
    .og-hero-title { font-size: 1.875rem; }
    .og-section-number { font-size: 2rem; }
    .og-cta-actions { flex-direction: column; }
    .og-toc { flex-direction: column; align-items: flex-start; }
    .og-toc-links { flex-wrap: wrap; }

    .cookie-banner-inner { flex-direction: column; text-align: center; }
    .cookie-banner-actions { flex-direction: column; width: 100%; }
    .cookie-btn { width: 100%; }
}

/* ===== RECIPE PAGES ===== */
.recipe-hero {
    position: relative;
    padding-top: calc(var(--site-header-height) + 2.5rem);
    padding-bottom: 4rem;
    overflow: hidden;
    background: var(--primary);
    color: var(--primary-foreground);
}

.recipe-hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 60%, rgba(255,255,255,0.06) 0%, transparent 60%),
                radial-gradient(ellipse at 80% 20%, rgba(218,165,32,0.1) 0%, transparent 50%);
}

.recipe-hero-content {
    position: relative;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.recipe-hero-label {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.recipe-hero-title {
    font-family: var(--font-display);
    font-size: 3rem;
    line-height: 1.15;
    margin-bottom: 1rem;
}

.recipe-hero-subtitle {
    font-size: 1.125rem;
    opacity: 0.85;
    line-height: 1.6;
}

.recipe-filter-section {
    padding: 2rem 0 0;
    background: var(--background);
    position: sticky;
    top: var(--site-header-height);
    z-index: 50;
}

.recipe-filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.recipe-filter-btn {
    padding: 0.5rem 1.25rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    font-family: var(--font-body);
    color: var(--muted-foreground);
    background: transparent;
    border: 1.5px solid var(--border);
    cursor: pointer;
    transition: all 0.2s ease;
}

.recipe-filter-btn:hover {
    border-color: var(--secondary);
    color: var(--foreground);
}

.recipe-filter-btn.active {
    background: var(--primary);
    color: var(--primary-foreground);
    border-color: var(--primary);
}

.recipe-grid-section {
    padding: 3rem 0 4rem;
}

.recipe-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.recipe-card {
    border-radius: 1.25rem;
    overflow: hidden;
    background: white;
    box-shadow: var(--shadow-warm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.recipe-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-elevated);
}

.recipe-card-link {
    display: block;
    color: inherit;
}

.recipe-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, hsl(40,25%,92%) 0%, hsl(45,30%,88%) 100%);
}

.recipe-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.recipe-card:hover .recipe-card-image img {
    transform: scale(1.06);
}

.recipe-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted-foreground);
    opacity: 0.5;
}

.recipe-card-placeholder-sm {
    font-size: 2.5rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, hsl(40,25%,92%) 0%, hsl(45,30%,88%) 100%);
}

.recipe-card-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.25rem 0.75rem;
    background: var(--primary);
    color: var(--primary-foreground);
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.recipe-card-body {
    padding: 1.25rem 1.5rem 1.5rem;
}

.recipe-card-title {
    font-family: var(--font-display);
    font-size: 1.0625rem;
    margin-bottom: 0.5rem;
    line-height: 1.35;
}

.recipe-card-desc {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.55;
    margin-bottom: 1rem;
}

.recipe-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border);
}

.recipe-meta-item {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.8125rem;
    color: var(--muted-foreground);
}

.recipe-meta-cheese {
    color: var(--secondary);
    font-weight: 600;
}

.recipe-empty {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--muted-foreground);
    font-size: 1.125rem;
}

.recipe-cta-section {
    padding: 2rem 0 5rem;
}

.recipe-cta-card {
    background: var(--primary);
    color: var(--primary-foreground);
    border-radius: 1.5rem;
    padding: 3rem 3.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
    overflow: hidden;
}

.recipe-cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
    pointer-events: none;
}

.recipe-cta-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.recipe-cta-text {
    opacity: 0.85;
    font-size: 1rem;
}

/* === Recipe Single Page === */
.recipe-breadcrumb-bar {
    padding-top: calc(var(--site-header-height) + 0.5rem);
    background: var(--background);
}

.recipe-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
    padding: 1rem 0;
}

.recipe-breadcrumb a {
    color: var(--primary);
    font-weight: 500;
}

.recipe-breadcrumb a:hover {
    text-decoration: underline;
}

.recipe-breadcrumb-sep {
    opacity: 0.4;
}

.recipe-single-main {
    padding: 1rem 0 5rem;
}

.recipe-single-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-bottom: 3rem;
}

.recipe-single-category {
    display: inline-block;
    padding: 0.3rem 1rem;
    background: var(--primary);
    color: var(--primary-foreground);
    border-radius: 2rem;
    font-size: 0.8125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.recipe-single-title {
    font-family: var(--font-display);
    font-size: 2.25rem;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.recipe-single-desc {
    font-size: 1.0625rem;
    color: var(--muted-foreground);
    line-height: 1.65;
    margin-bottom: 1.5rem;
}

.recipe-single-badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.recipe-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: var(--card);
    border-radius: 0.75rem;
    border: 1px solid var(--border);
}

.recipe-badge svg {
    color: var(--secondary);
    flex-shrink: 0;
}

.recipe-badge-label {
    display: block;
    font-size: 0.75rem;
    color: var(--muted-foreground);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.recipe-badge-value {
    display: block;
    font-size: 0.9375rem;
    font-weight: 700;
}

.recipe-single-hero-image {
    border-radius: 1.25rem;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.recipe-single-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recipe-single-hero-placeholder {
    background: linear-gradient(135deg, hsl(40,25%,92%) 0%, hsl(45,30%,88%) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.recipe-placeholder-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    color: var(--muted-foreground);
    opacity: 0.4;
    font-size: 0.875rem;
}

.recipe-single-content {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 3rem;
    align-items: start;
}

.recipe-ingredients-card {
    background: var(--card);
    border-radius: 1.25rem;
    padding: 2rem;
    border: 1px solid var(--border);
    position: sticky;
    top: 100px;
}

.recipe-ingredients-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-display);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.recipe-ingredients-title svg {
    color: var(--secondary);
}

.recipe-cheese-highlight {
    background: linear-gradient(135deg, hsl(38,80%,55%,0.12), hsl(38,80%,55%,0.05));
    border: 1px solid hsl(38,80%,55%,0.25);
    border-radius: 0.75rem;
    padding: 0.75rem 1rem;
    font-size: 0.9375rem;
    margin-bottom: 1.25rem;
}

.recipe-ingredients-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.recipe-ingredients-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.625rem 0;
    border-bottom: 1px solid hsl(40,25%,92%);
    font-size: 0.9375rem;
    cursor: pointer;
    transition: opacity 0.2s;
    user-select: none;
}

.recipe-ingredients-list li:last-child {
    border-bottom: none;
}

.recipe-ingredients-list li.checked {
    text-decoration: line-through;
    opacity: 0.45;
}

.recipe-ingredient-check {
    width: 18px;
    height: 18px;
    border: 2px solid var(--border);
    border-radius: 4px;
    flex-shrink: 0;
    margin-top: 2px;
    transition: all 0.2s;
}

.recipe-ingredients-list li.checked .recipe-ingredient-check {
    background: var(--secondary);
    border-color: var(--secondary);
}

.recipe-instructions-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.recipe-steps {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.recipe-step {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.recipe-step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: var(--primary);
    color: var(--primary-foreground);
    border-radius: 50%;
    font-weight: 700;
    font-size: 1rem;
    font-family: var(--font-display);
}

.recipe-step-text {
    font-size: 1rem;
    line-height: 1.7;
    padding-top: 0.4rem;
}

.recipe-tips-card {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: linear-gradient(135deg, hsl(38,80%,55%,0.08), hsl(38,80%,55%,0.02));
    border: 1px solid hsl(38,80%,55%,0.2);
    border-radius: 1rem;
    margin-top: 2rem;
}

.recipe-tips-icon {
    font-size: 1.75rem;
    flex-shrink: 0;
}

.recipe-tips-title {
    font-family: var(--font-display);
    font-size: 1rem;
    margin-bottom: 0.375rem;
}

.recipe-tips-text {
    font-size: 0.9375rem;
    color: var(--muted-foreground);
    line-height: 1.6;
}

.recipe-related {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border);
}

.recipe-related-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 2rem;
}

.recipe-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.recipe-related-card {
    display: block;
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-warm);
    transition: transform 0.3s, box-shadow 0.3s;
}

.recipe-related-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-elevated);
}

.recipe-related-image {
    height: 160px;
    overflow: hidden;
    background: linear-gradient(135deg, hsl(40,25%,92%), hsl(45,30%,88%));
}

.recipe-related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recipe-related-body {
    padding: 1rem 1.25rem 1.25rem;
}

.recipe-related-cat {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--secondary);
    font-weight: 600;
}

.recipe-related-body h3 {
    font-family: var(--font-display);
    font-size: 0.9375rem;
    margin: 0.375rem 0;
    line-height: 1.3;
}

.recipe-related-meta {
    font-size: 0.8125rem;
    color: var(--muted-foreground);
}

/* Recipe pages – responsive (must follow base recipe styles above) */
@media (max-width: 768px) {
    .recipe-hero {
        padding-top: calc(var(--site-header-height) + 1.5rem);
        padding-bottom: 2.5rem;
    }

    .recipe-hero-title {
        font-size: 2.25rem;
    }

    .recipe-hero-subtitle {
        font-size: 1rem;
    }

    .recipe-filter-section {
        top: var(--site-header-height);
        padding: 1.25rem 0 0;
    }

    .recipe-filter-section .container {
        padding-left: 0;
        padding-right: 0;
    }

    .recipe-filter-bar {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        gap: 0.5rem;
        padding: 0 1.25rem 1.25rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .recipe-filter-bar::-webkit-scrollbar {
        display: none;
    }

    .recipe-filter-btn {
        flex-shrink: 0;
    }

    .recipe-grid-section {
        padding: 2rem 0 3rem;
    }

    .recipe-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }

    .recipe-card-image {
        height: 180px;
    }

    .recipe-card-body {
        padding: 1rem 1.125rem 1.25rem;
    }

    .recipe-cta-card {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
    }

    .recipe-cta-card .btn {
        width: 100%;
    }

    .recipe-breadcrumb-bar {
        padding-top: calc(var(--site-header-height) + 0.25rem);
    }

    .recipe-breadcrumb {
        flex-wrap: wrap;
    }

    .recipe-single-header {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .recipe-single-title {
        font-size: 1.75rem;
    }

    .recipe-single-content {
        grid-template-columns: 1fr;
    }

    .recipe-ingredients-card {
        position: static;
    }

    .recipe-single-badges {
        grid-template-columns: repeat(2, 1fr);
    }

    .recipe-related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .recipe-hero-title {
        font-size: 1.875rem;
    }

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

    .recipe-card-image {
        height: 200px;
    }

    .recipe-card-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .recipe-filter-bar {
        padding-left: 1rem;
        padding-right: 1rem;
        gap: 0.375rem;
    }

    .recipe-filter-btn {
        padding: 0.375rem 0.875rem;
        font-size: 0.8125rem;
    }

    .recipe-single-badges {
        grid-template-columns: 1fr;
    }

    .recipe-related-grid {
        grid-template-columns: 1fr;
    }

    .recipe-single-title {
        font-size: 1.5rem;
    }

    .recipe-ingredients-card {
        padding: 1.5rem;
    }
}

/* ===== OSTGUIDE PAGE ===== */
.og-hero {
    position: relative;
    padding-top: calc(var(--site-header-height) + 2.5rem);
    padding-bottom: 4rem;
    overflow: hidden;
    background: linear-gradient(160deg, hsl(216,60%,18%) 0%, hsl(216,60%,25%) 100%);
    color: var(--primary-foreground);
}

.og-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 70% 80%, rgba(218,165,32,0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 20% 30%, rgba(255,255,255,0.05) 0%, transparent 50%);
}

.og-hero-content {
    position: relative;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.og-hero-label {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.og-hero-title {
    font-family: var(--font-display);
    font-size: 3rem;
    line-height: 1.15;
    margin-bottom: 1rem;
}

.og-hero-subtitle {
    font-size: 1.125rem;
    opacity: 0.85;
    line-height: 1.6;
}

.og-toc-section {
    background: var(--card);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: var(--site-header-height);
    z-index: 50;
}

.og-toc {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    overflow-x: auto;
}

.og-toc-label {
    font-weight: 700;
    font-size: 0.875rem;
    white-space: nowrap;
    color: var(--muted-foreground);
}

.og-toc-links {
    display: flex;
    gap: 0.25rem;
    overflow-x: auto;
}

.og-toc-link {
    padding: 0.375rem 1rem;
    border-radius: 2rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--muted-foreground);
    white-space: nowrap;
    transition: all 0.2s;
}

.og-toc-link:hover {
    background: var(--muted);
    color: var(--foreground);
}

.og-main {
    padding: 4rem 0 2rem;
}

.og-content {
    max-width: 860px;
    margin: 0 auto;
}

.og-section {
    margin-bottom: 4rem;
    position: relative;
}

.og-section-image {
    border-radius: 1.25rem;
    overflow: hidden;
    margin-bottom: 1.5rem;
    max-height: 400px;
}

.og-section-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.og-section-number {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--secondary);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.og-section-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
    line-height: 1.3;
}

.og-section-body {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--foreground);
}

.og-cta-section {
    padding: 0 0 5rem;
}

.og-cta-card {
    background: var(--primary);
    color: var(--primary-foreground);
    border-radius: 1.5rem;
    padding: 3.5rem;
    text-align: center;
}

.og-cta-emoji {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.og-cta-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
}

.og-cta-text {
    font-size: 1.0625rem;
    opacity: 0.85;
    margin-bottom: 1.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.og-cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== PRESSRUM PAGE ===== */
.press-hero {
    position: relative;
    padding-top: calc(var(--site-header-height) + 3rem);
    padding-bottom: 5rem;
    background: linear-gradient(135deg, hsl(38,80%,55%,0.08) 0%, hsl(38,80%,55%,0.02) 100%);
}

.press-hero-content {
    text-align: center;
    padding-top: 0.5rem;
}

.press-hero-label {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--secondary);
    margin-bottom: 1.25rem;
}

.press-hero-title {
    font-family: var(--font-display);
    font-size: 3rem;
    line-height: 1.15;
    margin-bottom: 1.25rem;
}

.press-hero-subtitle {
    font-size: 1.125rem;
    opacity: 0.85;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

.press-hero-contact {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    margin-top: 2rem;
    padding: 0.75rem 1.25rem;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 2rem;
    color: var(--foreground);
    font-size: 0.9375rem;
    text-decoration: none;
    box-shadow: var(--shadow-warm);
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.press-hero-contact svg {
    flex-shrink: 0;
    color: var(--secondary);
}

.press-hero-contact strong {
    font-weight: 700;
    color: var(--primary);
}

.press-hero-contact:hover {
    border-color: var(--secondary);
    box-shadow: var(--shadow-elevated);
    transform: translateY(-1px);
}

.press-hero-contact:hover strong {
    color: var(--secondary);
}

.press-main {
    padding: 4rem 0 5rem;
}

.press-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 3rem;
    align-items: start;
}

.press-content {
    min-width: 0;
}

@media (min-width: 769px) {
    .press-sidebar {
        position: sticky;
        top: 100px;
    }
}

.press-section {
    margin-bottom: 4rem;
}

.press-section-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.press-section-desc {
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
}

.press-profile-text {
    font-size: 1.0625rem;
    line-height: 1.8;
}

.press-media-list {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.press-media-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 1rem;
    color: inherit;
    text-decoration: none;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.press-media-card:hover {
    border-color: var(--secondary);
    box-shadow: var(--shadow-warm);
    transform: translateY(-1px);
}

.press-media-card-body {
    min-width: 0;
}

.press-media-date {
    display: block;
    font-size: 0.8125rem;
    color: var(--muted-foreground);
    margin-bottom: 0.35rem;
}

.press-media-title {
    font-family: var(--font-display);
    font-size: 1.125rem;
    line-height: 1.35;
    margin: 0 0 0.35rem;
    color: var(--foreground);
}

.press-media-source {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--secondary);
}

.press-media-link-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    background: var(--muted);
    color: var(--primary);
    transition: background 0.2s, color 0.2s;
}

.press-media-card:hover .press-media-link-icon {
    background: var(--secondary);
    color: var(--foreground);
}

.press-download-grid {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.press-download-cat-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--muted-foreground);
}

.press-download-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1rem;
}

.press-download-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 1rem;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.press-download-card:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 12px hsl(38,80%,55%,0.15);
}

.press-download-thumb {
    width: 56px;
    height: 56px;
    border-radius: 0.75rem;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--muted);
}

.press-download-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.press-download-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.press-download-info {
    flex: 1;
    min-width: 0;
}

.press-download-info strong {
    display: block;
    font-size: 0.9375rem;
}

.press-download-info span {
    display: block;
    font-size: 0.8125rem;
    color: var(--muted-foreground);
}

.press-download-btn {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--primary);
    flex-shrink: 0;
}

.press-download-card-image {
    cursor: pointer;
}

.press-download-card-image:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* Press lightbox */
.press-lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.press-lightbox-overlay.active {
    display: flex;
}

.press-lightbox-content {
    position: relative;
    background: var(--card);
    border-radius: 1.25rem;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.4);
}

.press-lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2.5rem;
    height: 2.5rem;
    border: none;
    background: rgba(0,0,0,0.5);
    color: white;
    font-size: 1.5rem;
    line-height: 1;
    border-radius: 0.5rem;
    cursor: pointer;
    z-index: 2;
    transition: background 0.2s;
}

.press-lightbox-close:hover {
    background: rgba(0,0,0,0.7);
}

.press-lightbox-body {
    display: grid;
    grid-template-columns: 1fr 280px;
    max-height: 90vh;
}

.press-lightbox-image-wrap {
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: hsl(0, 0%, 96%);
    min-height: 200px;
}

.press-lightbox-image-wrap img {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
}

.press-lightbox-info {
    padding: 1.5rem;
    overflow-y: auto;
}

.press-lightbox-info h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.press-lightbox-details {
    font-size: 0.875rem;
    margin-bottom: 1.25rem;
}

.press-lightbox-details dt {
    font-weight: 600;
    color: var(--muted-foreground);
    margin-top: 0.75rem;
    margin-bottom: 0.25rem;
}

.press-lightbox-details dt:first-of-type {
    margin-top: 0;
}

.press-lightbox-details dd {
    margin: 0;
}

.press-lightbox-details dd:empty::before {
    content: '-';
    color: var(--muted-foreground);
}

@media (max-width: 768px) {
    .press-lightbox-body {
        grid-template-columns: 1fr;
    }
    .press-lightbox-image-wrap {
        max-height: 50vh;
    }
    .press-lightbox-image-wrap img {
        max-height: 45vh;
    }
}

.press-sidebar .press-section {
    margin-bottom: 2rem;
}

.press-sidebar .press-section:last-child {
    margin-bottom: 0;
}

.press-sidebar .press-section-title {
    font-size: 1.375rem;
}

.press-sidebar .press-section-desc {
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.press-sidebar .press-media-card {
    flex-direction: column;
    align-items: stretch;
    padding: 1.125rem 1.25rem;
    gap: 0.75rem;
}

.press-sidebar .press-media-title {
    font-size: 1rem;
}

.press-sidebar .press-media-link-icon {
    align-self: flex-end;
}

.press-media-more {
    margin-top: 0.875rem;
}

.press-media-more-btn {
    display: inline-block;
    cursor: pointer;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--primary);
    list-style: none;
}

.press-media-more-btn::-webkit-details-marker {
    display: none;
}

.press-media-more-btn::after {
    content: ' ↓';
    color: var(--secondary);
}

.press-media-more[open] .press-media-more-btn::after {
    content: ' ↑';
}

.press-media-more .press-media-list {
    margin-top: 0.875rem;
}

.press-releases-more .press-releases-list {
    margin-top: 0.875rem;
}

.press-sidebar .press-release-card {
    padding: 1.25rem;
}

.press-sidebar .press-release-title {
    font-size: 1.0625rem;
}

.press-releases-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.press-release-card {
    padding: 1.5rem;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 1rem;
}

.press-release-date {
    display: block;
    font-size: 0.8125rem;
    color: var(--muted-foreground);
    margin-bottom: 0.5rem;
}

.press-release-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.press-release-excerpt {
    font-size: 0.9375rem;
    color: var(--muted-foreground);
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.press-empty {
    color: var(--muted-foreground);
}

/* Press single */
.press-single-hero {
    padding: 8rem 0 3rem;
    background: linear-gradient(135deg, hsl(38,80%,55%,0.08) 0%, hsl(38,80%,55%,0.02) 100%);
}

.press-single-back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    color: var(--muted-foreground);
    text-decoration: none;
    margin-bottom: 1rem;
}

.press-single-back:hover {
    color: var(--primary);
}

.press-single-date {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 0.5rem;
}

.press-single-title {
    font-family: var(--font-display);
    font-size: 2.25rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.press-single-content {
    padding: 3rem 0 5rem;
}

.press-single-body {
    font-size: 1.0625rem;
    line-height: 1.8;
}

.press-single-body p {
    margin-bottom: 1rem;
}

.press-single-body strong,
.press-single-body b {
    font-weight: 700;
}

.press-single-body a {
    color: var(--primary);
    text-decoration: underline;
}

.press-single-body a:hover {
    color: var(--secondary);
}

.press-single-body ul,
.press-single-body ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.press-single-body li {
    margin-bottom: 0.5rem;
}

.press-single-images {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.press-single-image {
    margin: 0;
    border-radius: 1rem;
    overflow: hidden;
}

.press-single-image img {
    width: 100%;
    height: auto;
    display: block;
}

.press-single-main {
    padding-top: calc(var(--site-header-height) + 2rem);
    padding-bottom: 5rem;
}

.press-breadcrumb {
    margin-bottom: 1.5rem;
}

.press-breadcrumb a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    color: var(--muted-foreground);
    text-decoration: none;
}

.press-breadcrumb a:hover {
    color: var(--primary);
}

.press-single-article {
    max-width: 720px;
}

/* ===== WIDE-SCREEN ENHANCEMENTS ===== */
@media (min-width: 1400px) {
    .container {
        max-width: 1360px;
    }

    .products-section .container,
    .recipe-grid-section .container {
        max-width: 1500px;
    }

    .recipe-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }

    .recipe-single-header {
        gap: 4rem;
    }

    .recipe-single-content {
        grid-template-columns: 380px 1fr;
        gap: 4rem;
    }

    .og-content {
        max-width: 960px;
    }

    .about-intro,
    .about-mission {
        gap: 5rem;
    }

    .about-intro-image img {
        height: 460px;
    }

    .about-mission-image img {
        height: 500px;
    }

    .hero-title {
        font-size: 6rem;
    }
}

@media (min-width: 1700px) {
    .container {
        max-width: 1500px;
    }

    .products-section .container,
    .recipe-grid-section .container {
        max-width: 1660px;
    }

    .products-grid {
        gap: 2.5rem;
    }

    .recipe-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .recipe-related-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .about-intro-image img {
        height: 520px;
    }

    .footer-grid {
        grid-template-columns: 2.5fr 1fr 1.5fr;
    }
}

/* Full-bleed section accents for visual depth */

/* ===== COOKIE CONSENT BANNER ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    padding: 1.25rem;
}

.cookie-banner.cookie-animate-in {
    animation: cookieSlideUp 0.5s ease-out;
}

.cookie-banner.cookie-animate-out {
    animation: cookieSlideDown 0.4s ease-in forwards;
}

.cookie-banner-inner {
    max-width: 900px;
    margin: 0 auto;
    background: var(--primary);
    color: var(--primary-foreground);
    border-radius: 1rem;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: 0 -4px 40px rgba(0,0,0,0.25);
}

.cookie-banner-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    animation: cookieWobble 2s ease-in-out infinite;
}

.cookie-banner-content { flex: 1; }

.cookie-banner-title {
    font-family: var(--font-display);
    font-size: 1.125rem;
    margin: 0 0 0.375rem;
}

.cookie-banner-text {
    font-size: 0.875rem;
    margin: 0 0 0.25rem;
    line-height: 1.5;
    opacity: 0.92;
}

.cookie-banner-text a {
    color: var(--secondary);
    text-decoration: underline;
}

.cookie-banner-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.625rem 1.25rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: transform 0.15s, box-shadow 0.15s;
    font-family: var(--font-body);
}

.cookie-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.cookie-btn-accept {
    background: var(--secondary);
    color: var(--primary);
}

.cookie-btn-decline {
    background: transparent;
    color: var(--primary-foreground);
    border: 1.5px solid rgba(255,255,255,0.35);
}

.cookie-btn-decline:hover {
    background: rgba(255,255,255,0.1);
}

@keyframes cookieSlideUp {
    from { transform: translateY(100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes cookieSlideDown {
    from { transform: translateY(0); opacity: 1; }
    to { transform: translateY(100%); opacity: 0; }
}

@keyframes cookieWobble {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-8deg); }
    75% { transform: rotate(8deg); }
}
