/* ============================================================
   COSORI EU — Main Stylesheet
   Design reference: cosori.site (Woodmart theme)
   Fonts: DIN 2014, MuseoSlab, Inter
   Primary accent: #ff5e38
   ============================================================ */

/* === Font Faces === */
@font-face {
    font-family: 'DIN 2014';
    src: url('/assets/fonts/din2014/DIN2014-Light.woff2') format('woff2'),
         url('/assets/fonts/din2014/DIN2014-Light.woff') format('woff');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'DIN 2014';
    src: url('/assets/fonts/din2014/DIN2014-Regular.woff2') format('woff2'),
         url('/assets/fonts/din2014/DIN2014-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'DIN 2014';
    src: url('/assets/fonts/din2014/DIN2014-DemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'DIN 2014';
    src: url('/assets/fonts/din2014/DIN2014-Bold.woff2') format('woff2'),
         url('/assets/fonts/din2014/DIN2014-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'DIN 2014';
    src: url('/assets/fonts/din2014/DIN2014-ExtraBold.woff2') format('woff2'),
         url('/assets/fonts/din2014/DIN2014-ExtraBold.woff') format('woff');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'MuseoSlab';
    src: url('/assets/fonts/museoslab/MuseoSlab-300.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'MuseoSlab';
    src: url('/assets/fonts/museoslab/MuseoSlab-500.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'MuseoSlab';
    src: url('/assets/fonts/museoslab/MuseoSlab-700.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'MuseoSlab';
    src: url('/assets/fonts/museoslab/MuseoSlab-900.woff2') format('woff2');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

/* === CSS Variables === */
:root {
    --color-primary: #ff5e38;
    --color-primary-hover: #e84e28;
    --color-black: #000;
    --color-white: #fff;
    --color-gray-100: #f7f7f7;
    --color-gray-200: #f1f1f1;
    --color-gray-300: #bbb;
    --color-gray-400: #a5a5a5;
    --color-gray-500: #777;
    --color-gray-600: #666;
    --color-gray-700: #555;
    --color-gray-800: #333;
    --color-gray-900: #242424;
    --color-border: rgba(0,0,0,0.105);
    --font-body: 'DIN 2014', Arial, Helvetica, sans-serif;
    --font-title: 'DIN 2014', Arial, Helvetica, sans-serif;
    --font-alt: 'MuseoSlab', Georgia, serif;
    --font-nav: 'Inter', Arial, Helvetica, sans-serif;
    --container-width: 1222px;
    --gap: 30px;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-gray-500);
    background: var(--color-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-title);
    font-weight: 700;
    color: var(--color-gray-900);
    line-height: 1.3;
    margin-bottom: 15px;
}

h1 { font-size: 36px; }
h2 { font-size: 28px; }
h3 { font-size: 22px; }
h4 { font-size: 18px; }
h5 { font-size: 16px; }
h6 { font-size: 14px; }

p { margin-bottom: 20px; }

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.25s ease;
}

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

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

ul, ol { margin-bottom: 20px; padding-left: 17px; }
li { margin-bottom: 10px; }

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 15px;
}

/* === Top Bar === */
.top-bar {
    background: var(--color-gray-900);
    color: var(--color-white);
    font-size: 13px;
    font-weight: 400;
    text-align: center;
    padding: 10px 0;
    letter-spacing: 0.3px;
}

/* === Header === */
.site-header {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 15px;
    min-height: 70px;
}

.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo img { height: 36px; width: auto; }

.main-nav ul {
    list-style: none;
    display: inline-flex;
    flex-wrap: wrap;
    gap: 1px 22px;
    padding: 0;
    margin: 0;
}

.main-nav a {
    font-family: var(--font-nav);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--color-gray-800);
    letter-spacing: 0.5px;
    padding: 8px 0;
    display: inline-block;
    position: relative;
    transition: color 0.25s ease;
}

.main-nav a:hover,
.main-nav a.active { color: var(--color-primary); }

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width 0.3s ease;
}

.main-nav a:hover::after { width: 100%; }

/* Dropdown menu */
.main-nav .has-dropdown { position: relative; }
.main-nav .dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 380;
    margin-top: 10px;
    background: var(--color-white);
    box-shadow: 0 0 3px rgba(0,0,0,0.15);
    min-width: 200px;
    padding: 12px 0;
    list-style: none;
}

.main-nav .has-dropdown:hover .dropdown { display: block; }

.main-nav .dropdown li { margin: 0; }
.main-nav .dropdown a {
    display: block;
    padding: 8px 18px;
    font-size: 14px;
    font-weight: 400;
    text-transform: none;
    color: #848484;
}

.main-nav .dropdown a:hover {
    color: var(--color-primary);
    background: var(--color-gray-100);
}

.main-nav .dropdown a::after { display: none; }

/* Mobile toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-gray-900);
    margin: 5px 0;
    transition: all 0.3s ease;
    border-radius: 1px;
}

.mobile-menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-menu-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* === Hero Section === */
.hero {
    position: relative;
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    min-height: 520px;
    display: flex;
    align-items: center;
    color: var(--color-white);
    background-color: #1a1a1a;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.05) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 60px 0;
}

.hero-content h1 {
    font-size: 42px;
    font-weight: 800;
    color: var(--color-white);
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 16px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
}

/* === Buttons === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    min-height: 44px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 0 solid transparent;
    border-radius: 0;
    cursor: pointer;
    transition: color 0.25s ease, background-color 0.25s ease, transform 0.15s ease;
    text-decoration: none;
    line-height: 1;
}

.btn:hover { text-decoration: none; transform: translateY(-1px); }

.btn-primary {
    background: var(--color-primary);
    color: var(--color-white);
}

.btn-primary:hover { background: var(--color-primary-hover); color: var(--color-white); }

.btn-outline {
    background: transparent;
    color: var(--color-gray-800);
    border: 2px solid var(--color-border);
}

.btn-outline:hover { border-color: var(--color-gray-800); color: var(--color-gray-800); }

.btn-white {
    background: var(--color-white);
    color: var(--color-gray-900);
}

.btn-white:hover { background: var(--color-gray-200); color: var(--color-gray-900); }

.btn-amazon {
    background: #ff9900;
    color: var(--color-white);
    border-radius: 4px;
}

.btn-amazon:hover { background: #e68a00; color: var(--color-white); }

.btn-corte-ingles {
    background: #00843d;
    color: var(--color-white);
    border-radius: 4px;
}

.btn-corte-ingles:hover { background: #006e33; color: var(--color-white); }

.btn-mediamarkt {
    background: #df0000;
    color: var(--color-white);
    border-radius: 4px;
}

.btn-mediamarkt:hover { background: #c10000; color: var(--color-white); }

.btn-sm { padding: 8px 18px; font-size: 12px; min-height: 36px; }
.btn-lg { padding: 16px 36px; font-size: 14px; min-height: 52px; }

/* === Section Spacing === */
.section { padding: 70px 0; }
.section-sm { padding: 40px 0; }
.section-lg { padding: 100px 0; }
.section-gray { background: var(--color-gray-100); }

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 10px;
}

.section-title p {
    font-size: 15px;
    color: var(--color-gray-500);
    max-width: 600px;
    margin: 0 auto;
}

/* === Grid System === */
.grid {
    display: grid;
    gap: var(--gap);
}

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

/* === Product Cards === */
.product-card {
    background: var(--color-white);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

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

.product-card-image {
    position: relative;
    overflow: hidden;
    background: var(--color-gray-100);
    aspect-ratio: 1;
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 15px;
    transition: transform 0.4s ease;
}

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

.product-card-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.badge-sale { background: var(--color-primary); color: var(--color-white); }
.badge-new { background: var(--color-gray-900); color: var(--color-white); }
.badge-out { background: var(--color-gray-400); color: var(--color-white); }

.product-card-body { padding: 15px 10px; }

.product-card-title {
    font-family: var(--font-title);
    font-size: 14px;
    font-weight: 600;
    color: var(--color-gray-900);
    margin-bottom: 8px;
    line-height: 1.4;
}

.product-card-title a { color: inherit; }
.product-card-title a:hover { color: var(--color-primary); }

.product-card-price {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-gray-900);
    margin-bottom: 12px;
}

.product-card-price .old-price {
    text-decoration: line-through;
    color: var(--color-gray-400);
    font-weight: 400;
    font-size: 14px;
    margin-right: 5px;
}

.product-card .btn {
    width: 100%;
    margin-top: 5px;
}

/* === Product Detail === */
.product-detail { padding: 40px 0; }

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.product-gallery {}

.product-gallery-main {
    background: var(--color-gray-100);
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    overflow: hidden;
    cursor: zoom-in;
}

.product-gallery-main img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.product-gallery-thumbs {
    display: flex;
    gap: 10px;
}

.product-gallery-thumbs .thumb {
    width: 80px;
    height: 80px;
    background: var(--color-gray-100);
    padding: 5px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.2s ease;
}

.product-gallery-thumbs .thumb.active,
.product-gallery-thumbs .thumb:hover {
    border-color: var(--color-primary);
}

.product-gallery-thumbs .thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-info h1 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

.product-info .product-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-gray-900);
    margin-bottom: 20px;
}

.product-info .product-stock {
    display: inline-block;
    padding: 5px 14px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 20px;
    border-radius: 2px;
}

.stock-in { background: #e8f5e9; color: #2e7d32; }
.stock-out { background: #fbe9e7; color: #c62828; }

.product-info .product-desc {
    margin-bottom: 25px;
    line-height: 1.7;
}

.product-info .product-sku {
    font-size: 13px;
    color: var(--color-gray-400);
    margin-bottom: 25px;
}

.retailer-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
}

.retailer-buttons .btn {
    font-size: 14px;
    padding: 14px 24px;
}

/* Product accordion/tabs */
.product-tabs { margin-top: 50px; }

.product-tabs .tab-header {
    display: flex;
    border-bottom: 2px solid var(--color-border);
    margin-bottom: 30px;
    gap: 0;
}

.product-tabs .tab-btn {
    padding: 12px 24px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--color-gray-500);
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    cursor: pointer;
    transition: color 0.25s ease, border-color 0.25s ease;
    text-transform: uppercase;
}

.product-tabs .tab-btn:hover,
.product-tabs .tab-btn.active {
    color: var(--color-gray-900);
    border-bottom-color: var(--color-primary);
}

.product-tabs .tab-content { display: none; }
.product-tabs .tab-content.active { display: block; }

.product-tabs .tab-content p { line-height: 1.8; }

/* Specs table */
.specs-table {
    width: 100%;
    border-collapse: collapse;
}

.specs-table tr { border-bottom: 1px solid var(--color-border); }

.specs-table td {
    padding: 12px 15px;
    font-size: 14px;
}

.specs-table td:first-child {
    font-weight: 600;
    color: var(--color-gray-900);
    width: 40%;
}

/* === Color Picker Pills === */
.color-picker {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    align-items: center;
}

.color-pill {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--color-border);
    cursor: pointer;
    transition: box-shadow 0.2s ease, transform 0.15s ease;
    position: relative;
    padding: 0;
    outline: none;
    flex-shrink: 0;
}

.color-pill:hover { transform: scale(1.1); }
.color-pill.active { box-shadow: 0 0 0 3px var(--color-primary); border-color: transparent; }
.color-pill[data-light="true"] { border-color: var(--color-gray-300); }
.color-pill[data-light="true"].active { border-color: var(--color-gray-300); }

.color-pill-label {
    display: block;
    text-align: center;
    font-size: 12px;
    color: var(--color-gray-500);
    margin-top: 4px;
}

.sr-only {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}

/* === Star Ratings === */
.product-rating-summary {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}

.stars { display: inline-flex; gap: 1px; }

.stars .star {
    font-size: 18px;
    color: #F59E0B;
    line-height: 1;
}

.stars .star.empty { color: var(--color-gray-300); }

.stars .star.half {
    position: relative;
    color: var(--color-gray-300);
}

.stars .star.half::before {
    content: '\2605';
    position: absolute;
    left: 0;
    top: 0;
    overflow: hidden;
    width: 50%;
    color: #F59E0B;
}

.rating-text {
    font-size: 14px;
    color: var(--color-gray-500);
}

.rating-text a { color: var(--color-gray-500); text-decoration: underline; }
.rating-text a:hover { color: var(--color-primary); }

/* === Reviews Section === */
.product-reviews {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--color-border);
}

.product-reviews h2 { margin-bottom: 25px; }

.reviews-summary {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding: 25px;
    background: var(--color-gray-100);
}

.reviews-summary-score {
    font-size: 48px;
    font-weight: 800;
    color: var(--color-gray-900);
    line-height: 1;
}

.reviews-summary-stars .stars .star { font-size: 22px; }

.reviews-summary-count {
    font-size: 14px;
    color: var(--color-gray-500);
    margin-top: 4px;
}

.review-card {
    padding: 20px 0;
    border-bottom: 1px solid var(--color-border);
}

.review-card.hidden { display: none; }

.review-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.review-author {
    font-weight: 600;
    font-size: 14px;
    color: var(--color-gray-900);
}

.review-date {
    font-size: 13px;
    color: var(--color-gray-400);
}

.review-stars { margin-bottom: 6px; }
.review-stars .star { font-size: 14px; }

.review-title {
    font-weight: 600;
    font-size: 15px;
    color: var(--color-gray-900);
    margin-bottom: 6px;
}

.review-body {
    font-size: 14px;
    line-height: 1.7;
    color: var(--color-gray-600);
}

.reviews-more {
    margin-top: 20px;
    text-align: center;
}

/* === Rich Tab Content === */
.tab-rich p { margin-bottom: 15px; line-height: 1.8; }
.tab-rich ul { margin-bottom: 15px; }
.tab-rich li { margin-bottom: 6px; font-size: 14px; }
.tab-rich h3 { font-size: 18px; margin-top: 25px; margin-bottom: 10px; }
.tab-rich strong { color: var(--color-gray-900); }

/* === Gallery Thumbs Overflow === */
.product-gallery-thumbs {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}

/* === Recipe Cards === */
.recipe-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.recipe-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.recipe-card-image {
    aspect-ratio: 16/10;
    overflow: hidden;
}

.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-body { padding: 20px; }

.recipe-card-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-primary);
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.recipe-card-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-gray-900);
    margin-bottom: 8px;
    line-height: 1.4;
}

.recipe-card-title a { color: inherit; }
.recipe-card-title a:hover { color: var(--color-primary); }

.recipe-card-date {
    font-size: 12px;
    color: var(--color-gray-400);
}

/* === Blog Cards === */
.blog-card {
    background: var(--color-white);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.blog-card:hover { transform: translateY(-3px); }

.blog-card-image {
    aspect-ratio: 16/10;
    overflow: hidden;
}

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

.blog-card:hover .blog-card-image img { transform: scale(1.05); }

.blog-card-body { padding: 20px 0; }

.blog-card-date {
    font-size: 12px;
    color: var(--color-gray-400);
    margin-bottom: 8px;
}

.blog-card-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-gray-900);
    line-height: 1.4;
    margin-bottom: 10px;
}

.blog-card-title a { color: inherit; }
.blog-card-title a:hover { color: var(--color-primary); }

.blog-card-excerpt {
    font-size: 14px;
    color: var(--color-gray-500);
    line-height: 1.6;
}

/* === About / Info Sections === */
.about-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-block.reversed { direction: rtl; }
.about-block.reversed > * { direction: ltr; }

.about-block-text h2 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 15px;
}

.about-block-text p { line-height: 1.8; }

.about-block-image img { border-radius: 0; }

/* Features grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.feature-item { padding: 30px 20px; }

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon img { max-width: 100%; max-height: 100%; }

.feature-item h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
}

.feature-item p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-gray-500);
}

/* === Newsletter Section === */
.newsletter-section {
    background: var(--color-gray-900);
    padding: 50px 0;
    text-align: center;
    color: var(--color-white);
}

.newsletter-section h3 {
    color: var(--color-white);
    font-size: 22px;
    margin-bottom: 8px;
}

.newsletter-section p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 25px;
}

.newsletter-inline {
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-inline form {
    display: flex;
    gap: 0;
}

.newsletter-inline input[type="email"] {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.1);
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 14px;
    outline: none;
    transition: border-color 0.25s ease;
}

.newsletter-inline input[type="email"]::placeholder { color: rgba(255,255,255,0.5); }
.newsletter-inline input[type="email"]:focus { border-color: var(--color-primary); }

.newsletter-inline button {
    padding: 12px 24px;
    background: var(--color-primary);
    color: var(--color-white);
    border: none;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.25s ease;
}

.newsletter-inline button:hover { background: var(--color-primary-hover); }

.newsletter-gdpr {
    margin-top: 12px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 6px;
    font-size: 12px;
    color: rgba(255,255,255,0.6);
}

.newsletter-gdpr input[type="checkbox"] { margin-top: 2px; }
.newsletter-gdpr a { color: rgba(255,255,255,0.8); text-decoration: underline; }

#newsletter-msg { margin-top: 10px; font-size: 13px; }
#newsletter-msg.success { color: #5aba47; }
#newsletter-msg.error { color: #ff6b6b; }

/* === Footer === */
.site-footer {
    background: var(--color-gray-900);
    color: rgba(255,255,255,0.7);
    padding-top: 0;
    margin-top: 0;
}

.footer-logo {
    text-align: center;
    padding: 50px 0 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 40px;
}

.footer-logo img { height: 32px; margin: 0 auto; }

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding-bottom: 40px;
}

.footer-col h4 {
    color: var(--color-white);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.footer-col ul { list-style: none; padding: 0; margin: 0; }

.footer-col li { margin-bottom: 10px; }

.footer-col a {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    transition: color 0.25s ease;
}

.footer-col a:hover { color: var(--color-primary); }

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 5px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
}

.footer-bottom p { margin: 0; }

.footer-payments img { height: 24px; }

/* === Page Header (breadcrumbs area) === */
.page-header {
    background: var(--color-gray-100);
    padding: 30px 0;
    border-bottom: 1px solid var(--color-border);
}

.breadcrumbs {
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--color-gray-900);
}

.breadcrumbs a { color: var(--color-gray-400); }
.breadcrumbs a:hover { color: var(--color-primary); }
.breadcrumbs .sep { padding: 0 8px; color: var(--color-gray-300); }

.page-header h1 {
    font-size: 30px;
    margin-top: 10px;
    margin-bottom: 0;
}

/* === Page Content === */
.page-content { padding: 60px 0; }
.page-content p { line-height: 1.8; font-size: 15px; }

.page-content h2 {
    font-size: 24px;
    margin-top: 40px;
    margin-bottom: 15px;
}

/* === FAQ / Support === */
.faq-list { max-width: 800px; margin: 0 auto; }

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

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    color: var(--color-gray-900);
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-family: var(--font-body);
}

.faq-question::after {
    content: '+';
    font-size: 20px;
    font-weight: 300;
    color: var(--color-gray-400);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
}

.faq-item.active .faq-question::after {
    content: '−';
}

.faq-answer {
    display: none;
    padding: 0 0 18px;
    font-size: 14px;
    line-height: 1.7;
    color: var(--color-gray-500);
}

.faq-item.active .faq-answer { display: block; }

/* === Contact Form === */
.contact-form { max-width: 600px; }

.form-group { margin-bottom: 20px; }

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-gray-900);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--color-border);
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--color-gray-800);
    background: var(--color-white);
    outline: none;
    transition: border-color 0.25s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--color-primary);
}

.form-group textarea { resize: vertical; min-height: 120px; }

/* === Recipe Detail === */
.recipe-detail-page { padding: 40px 0; }

.recipe-detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

.recipe-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    font-size: 13px;
    color: var(--color-gray-400);
}

.recipe-video {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    margin-bottom: 30px;
    background: var(--color-black);
}

.recipe-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.recipe-ingredients {
    background: var(--color-gray-100);
    padding: 25px;
    margin-bottom: 30px;
}

.recipe-ingredients h3 { font-size: 18px; margin-bottom: 15px; }

.recipe-ingredients ul { padding-left: 20px; margin-bottom: 0; }
.recipe-ingredients li { font-size: 14px; margin-bottom: 8px; }

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

.recipe-steps li {
    counter-increment: step;
    padding: 15px 0 15px 50px;
    position: relative;
    border-bottom: 1px solid var(--color-border);
    font-size: 14px;
    line-height: 1.7;
}

.recipe-steps li::before {
    content: counter(step);
    position: absolute;
    left: 0;
    top: 15px;
    width: 32px;
    height: 32px;
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
}

/* === Utility === */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mb-0 { margin-bottom: 0; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.mb-40 { margin-bottom: 40px; }
.mb-60 { margin-bottom: 60px; }
.mt-30 { margin-top: 30px; }
.mt-40 { margin-top: 40px; }
.mt-60 { margin-top: 60px; }

/* === Responsive === */
@media (max-width: 1024px) {
    .grid-4 { grid-template-columns: repeat(3, 1fr); }
    .grid-5 { grid-template-columns: repeat(3, 1fr); }
    .product-detail-grid { gap: 30px; }
}

@media (max-width: 768px) {
    .mobile-menu-toggle { display: block; }

    .main-nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--color-white);
        z-index: 999;
        padding: 80px 30px 30px;
        overflow-y: auto;
    }

    .main-nav.active { display: block; }

    .main-nav ul {
        flex-direction: column;
        gap: 0;
    }

    .main-nav li { border-bottom: 1px solid var(--color-border); }

    .main-nav a {
        display: block;
        padding: 14px 0;
        font-size: 15px;
    }

    .main-nav a::after { display: none; }

    .main-nav .dropdown {
        position: static;
        box-shadow: none;
        padding: 0 0 0 15px;
    }

    .main-nav .has-dropdown:hover .dropdown { display: block; }

    h1 { font-size: 28px; }
    h2 { font-size: 22px; }

    .hero { min-height: 380px; background-position: center center; }
    .hero-content h1 { font-size: 28px; }
    .hero-overlay { background: linear-gradient(180deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.35) 100%); }

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

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

    .about-block { grid-template-columns: 1fr; gap: 30px; }
    .about-block.reversed { direction: ltr; }

    .features-grid { grid-template-columns: 1fr; gap: 20px; }

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

    .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }

    .section { padding: 50px 0; }
    .section-lg { padding: 60px 0; }

    .product-tabs .tab-header { overflow-x: auto; -webkit-overflow-scrolling: touch; }
    .product-tabs .tab-btn { white-space: nowrap; font-size: 12px; padding: 10px 16px; }

    .color-pill { width: 28px; height: 28px; }
    .reviews-summary { flex-direction: column; text-align: center; gap: 10px; }
    .reviews-summary-score { font-size: 36px; }
    .review-card-header { flex-direction: column; gap: 4px; }
}

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

    .hero-content h1 { font-size: 24px; }

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

    .newsletter-inline form { flex-direction: column; }
    .newsletter-inline button { width: 100%; }
}
