/* Color Scheme Variables */

:root {
    /* Primary Colors */
    --primary-color: #768b46;
    --primary-light: #9ca97e;
    --primary-dark: #40511a;
    --primary-vibrant: #7fa031;

    /* Secondary Colors */
    --secondary-color: #688650;
    --secondary-light: #a3b894;
    --secondary-dark: #3c5c24;

    /* Accent Colors */
    --accent-color: #5f6f2f;
    --accent-light: #a4b17c;
    --accent-dark: #5d6d2c;
    --seed-amber: #c9922f;
    --seed-cream: #f7f2e7;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #859c4f, #648849);
    --gradient-secondary: linear-gradient(135deg, #7e933e, #a7bd75);
    --gradient-accent: linear-gradient(90deg, #768b46, #688650, #5f6f2f);
    --gradient-vibrant: linear-gradient(45deg, #7fa031, #5f6f2f);
    --gradient-soft: linear-gradient(180deg, #9ca97e, #a3b894);

    /* Status Colors */
    --success-color: #39b625;
    --success-light: #43cb4a;
    --success-dark: #0c9713;
    --warning-color: #e2b236;
    --warning-light: #d8aa5a;
    --warning-dark: #d29214;
    --error-color: #e4170c;
    --error-light: #de7663;
    --danger-color: #e4170c;

    /* Text Colors */
    --text-primary: #1a1a1a;
    --text-secondary: #4a4a4a;
    --text-tertiary: #6a6a6a;
    --text-muted: #9a9a9a;
    --text-inverse: #ffffff;

    /* Background Colors */
    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fa;
    --bg-tertiary: #f1f3f5;
    --bg-inverse: #1a1a1a;
    --bg-overlay: rgba(255, 255, 255, 0.9);
    --bg-overlay-light: rgba(255, 255, 255, 0.2);

    /* Border Colors */
    --border-color: #e0e0e0;
    --border-light: #f0f0f0;
    --border-dark: #c0c0c0;

    /* Overlay Colors */
    --overlay-light: rgba(255, 255, 255, 0.1);
    --overlay-medium: rgba(255, 255, 255, 0.2);
    --overlay-dark: rgba(0, 0, 0, 0.1);
    --overlay-darker: rgba(0, 0, 0, 0.2);

    /* Themed Overlays (primary-dark based) */
    --primary-overlay-90: rgba(64, 81, 26, 0.9);
    --primary-overlay-75: rgba(64, 81, 26, 0.75);
    --primary-overlay-50: rgba(64, 81, 26, 0.5);
    --primary-overlay-25: rgba(64, 81, 26, 0.25);
    --primary-rgb: 118, 139, 70;

    /* Shadow Colors */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.18);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.2);
    --shadow-colored: 0 10px 30px #768b4633;
}

/* ── BASE RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-primary);
    background: var(--bg-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
.container { max-width: 1380px; margin: 0 auto; padding: 0 24px; }

/* ── CSS CUSTOM PROPERTIES (design tokens) ── */
:root {
    --max-width: 1380px;
    --header-height: 64px;
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
}

/* ── SECTIONS ── */
.section { padding: 72px 0; }
.section-header { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 36px; }
.section-title { font-size: 28px; font-weight: 700; letter-spacing: 0; }
.section-subtitle { font-size: 15px; color: var(--text-secondary); margin-top: 6px; }
.section-link {
    font-size: 14px; font-weight: 500; color: var(--primary-color);
    display: flex; align-items: center; gap: 4px; transition: gap 0.2s; text-decoration: none;
}
.section-link:hover { gap: 8px; }
.section-link svg { width: 16px; height: 16px; stroke: currentColor; stroke-width: 2; fill: none; }

/* ── HEADER ── */

/* ── HEADER: Top Bar Split ── */
.header { position: sticky; top: 0; z-index: 100; background: #fff; }
.header-top-bar {
    background: var(--bg-secondary); border-bottom: 1px solid var(--border-color);
    padding: 8px 0; font-size: 13px;
}
.header-top-bar .container { display: flex; justify-content: space-between; align-items: center; }
.header-top-left { display: flex; align-items: center; gap: 20px; }
.header-top-right { display: flex; gap: 20px; }
.header-top-right a {
    color: var(--text-secondary); text-decoration: none; font-size: 13px;
    transition: color 0.2s;
}
.header-top-right a:hover { color: var(--primary-color); }
.header-phone {
    display: flex; align-items: center; gap: 6px;
    font-weight: 600; color: var(--text-primary); text-decoration: none;
}
.header-phone svg { width: 14px; height: 14px; stroke: var(--primary-color); stroke-width: 2; fill: none; }
.header-main { padding: 12px 0; border-bottom: 1px solid var(--border-color); }
.header-main .container { display: flex; align-items: center; justify-content: space-between; }
.header-logo {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 18px; font-weight: 800; letter-spacing: 0;
    color: var(--text-primary); text-decoration: none; flex-shrink: 0;
}
.header-logo img {
    width: 42px; height: 42px; border-radius: 50%;
    object-fit: cover; flex-shrink: 0;
}
.header-logo-text { display: flex; flex-direction: column; line-height: 1.05; }
.header-logo-text em {
    font-style: normal; font-size: 11px; font-weight: 700;
    color: var(--seed-amber); text-transform: uppercase; letter-spacing: 0.8px;
}
.header-nav { display: flex; gap: 28px; list-style: none; }
.header-nav a {
    font-size: 14px; font-weight: 500; color: var(--text-secondary);
    text-decoration: none; transition: color 0.2s;
}
.header-nav a:hover { color: var(--primary-color); }
.header-actions { display: flex; align-items: center; gap: 8px; }
.header-action-btn {
    display: flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; border: 1px solid var(--border-color);
    background: transparent; color: var(--text-secondary); cursor: pointer;
    border-radius: var(--radius-sm, 6px); transition: all 0.2s;
}
.header-action-btn:hover { color: var(--primary-color); border-color: var(--primary-color); }
.header-action-btn svg { width: 20px; height: 20px; stroke: currentColor; stroke-width: 1.8; fill: none; }
.cart-count { position: relative; }
.cart-count::after {
    content: '0'; position: absolute; top: -4px; right: -4px;
    width: 18px; height: 18px; background: var(--primary-color); color: #fff;
    font-size: 10px; font-weight: 600; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}
.menu-toggle { display: none; }

/* ── HERO ── */

/* ── HERO: Minimal Hero ── */
.hero {
    position: relative; min-height: 580px; padding: 112px 0 88px;
    display: flex; align-items: center; overflow: hidden;
    background:
        linear-gradient(90deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.94) 33%, rgba(255,255,255,0.42) 66%, rgba(255,255,255,0.12) 100%),
        url('../images/hero-seeds.png') center right / cover no-repeat;
}
.hero::after {
    content: ''; position: absolute; left: 0; right: 0; bottom: 0;
    height: 12px; background: linear-gradient(90deg, var(--primary-color), var(--seed-amber), var(--secondary-color));
}
.hero-minimal { max-width: 650px; position: relative; z-index: 1; }
.hero-kicker {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--primary-dark); font-size: 13px; font-weight: 800;
    text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 18px;
}
.hero-kicker::before {
    content: ''; width: 32px; height: 2px; border-radius: 99px;
    background: var(--seed-amber);
}
.hero h1 {
    font-size: 56px; font-weight: 800; line-height: 1.08;
    letter-spacing: 0; color: var(--text-primary); margin-bottom: 24px;
}
.hero-desc {
    font-size: 18px; color: var(--text-secondary); line-height: 1.7;
    margin-bottom: 40px; max-width: 480px;
}
.seed-badges {
    display: flex; flex-wrap: wrap; gap: 10px;
    margin-top: 28px; max-width: 520px;
}
.seed-badges span {
    padding: 8px 12px; border: 1px solid rgba(var(--primary-rgb), 0.22);
    background: rgba(255,255,255,0.78); border-radius: var(--radius-sm);
    font-size: 13px; font-weight: 700; color: var(--primary-dark);
    box-shadow: 0 6px 18px rgba(64, 81, 26, 0.08);
}

@media (max-width: 768px) {
    .hero {
        min-height: 520px; padding: 68px 0 64px;
        background:
            linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.88) 55%, rgba(255,255,255,0.38) 100%),
            url('../images/hero-seeds.png') center right / cover no-repeat;
    }
    .hero h1 { font-size: 36px; letter-spacing: 0; }
    .hero-desc { font-size: 16px; }
}

/* ── BUTTONS ── */

/* ── BUTTONS: Pill Rounded ── */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 32px; font-size: 15px; font-weight: 600;
    border-radius: 50px; border: none; cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none; line-height: 1;
    position: relative; overflow: hidden;
}
.btn:active { transform: scale(0.97); }
.btn svg { width: 18px; height: 18px; stroke: currentColor; stroke-width: 2; fill: none; }

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color, var(--primary-dark)));
    color: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.12);
}
.btn-primary:hover {
    box-shadow: 0 6px 25px rgba(0,0,0,0.2);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent; color: var(--primary-color);
    border: 1.5px solid var(--primary-color);
}
.btn-outline:hover {
    background: var(--primary-color); color: #fff;
}

.btn-white {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 32px; font-size: 15px; font-weight: 600;
    border-radius: 50px; border: none; cursor: pointer;
    background: #fff; color: var(--primary-color);
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.btn-white:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.15); transform: translateY(-2px); }
.btn-white svg { width: 18px; height: 18px; stroke: currentColor; stroke-width: 2; fill: none; }

.add-to-cart, .product-btn, .cart-button {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color, var(--primary-dark)));
    color: #fff;
    padding: 14px 32px; border-radius: 50px;
    font-weight: 600; cursor: pointer; border: none;
    transition: all 0.3s ease;
    display: inline-flex; align-items: center; gap: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.12);
}
.add-to-cart:hover, .product-btn:hover, .cart-button:hover {
    box-shadow: 0 6px 25px rgba(0,0,0,0.2);
    transform: translateY(-2px);
}

/* ── PRODUCT CARDS ── */

/* ── PRODUCT CARDS: Clean Card ── */
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.product-card {
    background: var(--bg-primary); border: 1px solid var(--border-color);
    border-radius: var(--radius-lg, 16px); overflow: hidden;
    transition: box-shadow 0.3s, transform 0.3s;
}
.product-card:hover { box-shadow: var(--shadow-lg, 0 8px 24px rgba(0,0,0,0.12)); transform: translateY(-4px); }
.product-card-image {
    position: relative; aspect-ratio: 4/5; background: var(--bg-secondary);
    overflow: hidden; display: block; text-decoration: none;
}
.product-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.product-card:hover .product-card-image img { transform: scale(1.08); }
.product-card-badge {
    position: absolute; top: 12px; left: 12px; padding: 4px 10px;
    font-size: 11px; font-weight: 700; border-radius: var(--radius-sm, 6px);
    text-transform: uppercase; letter-spacing: 0.3px;
}
.product-card-badge.sale { background: var(--error-color); color: #fff; }
.product-card-badge.new { background: var(--success-color); color: #fff; }
.product-card-badge.hit { background: var(--accent-color, var(--warning-color)); color: #fff; }
.product-card-wishlist {
    position: absolute; top: 12px; right: 12px;
    width: 36px; height: 36px; border-radius: 50%; border: none;
    background: rgba(255,255,255,0.9); cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: opacity 0.2s, background 0.2s;
    color: var(--text-secondary);
}
.product-card:hover .product-card-wishlist { opacity: 1; }
.product-card-wishlist:hover { background: #fff; color: var(--error-color); }
.product-card-wishlist svg { width: 18px; height: 18px; stroke: currentColor; stroke-width: 2; fill: none; }
.product-card-overlay {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 12px; transform: translateY(100%); transition: transform 0.3s;
}
.product-card:hover .product-card-overlay { transform: translateY(0); }
.product-card-overlay .btn-quick {
    width: 100%; padding: 10px; text-align: center; font-size: 13px; font-weight: 600;
    background: rgba(255,255,255,0.95); backdrop-filter: blur(8px);
    border: 1px solid var(--border-color); border-radius: var(--radius-sm, 6px);
    cursor: pointer; color: var(--text-primary); transition: background 0.2s, color 0.2s;
}
.product-card-overlay .btn-quick:hover { background: var(--primary-color); color: #fff; border-color: var(--primary-color); }
.product-card-body { padding: 16px; }
.product-card-category {
    font-size: 11px; text-transform: uppercase; letter-spacing: 0.5px;
    color: var(--text-secondary); margin-bottom: 4px;
}
.product-card-title {
    font-size: 14px; font-weight: 600; color: var(--text-primary);
    margin-bottom: 8px; line-height: 1.4; display: block;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
    overflow: hidden; text-decoration: none;
}
.product-card-rating { display: flex; align-items: center; gap: 4px; margin-bottom: 10px; }
.product-card-stars { display: flex; gap: 1px; color: var(--accent-color, var(--warning-color)); }
.product-card-stars svg { width: 13px; height: 13px; fill: currentColor; stroke: none; }
.product-card-stars .empty { color: var(--border-color); }
.product-card-rating span { font-size: 12px; color: var(--text-secondary); }
.product-card-footer { display: flex; align-items: center; justify-content: space-between; }
.product-card-price { font-size: 17px; font-weight: 700; color: var(--text-primary); }
.product-card-price-old {
    font-size: 13px; font-weight: 400; color: var(--text-secondary);
    text-decoration: line-through; margin-left: 6px;
}
.product-card-cart-btn {
    width: 38px; height: 38px; border-radius: var(--radius-md, 10px);
    border: 1.5px solid var(--border-color); background: var(--bg-primary);
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    transition: all 0.2s; color: var(--text-secondary);
    padding: 0; box-shadow: none;
}
.product-card-cart-btn:hover { border-color: var(--primary-color); background: var(--primary-color); color: #fff; }
.product-card-cart-btn svg { width: 17px; height: 17px; stroke: currentColor; stroke-width: 2; fill: none; }
.product-card-stars .half-filled { margin-left: -14px; clip-path: inset(0 50% 0 0); }

/* ── ITEM PAGE ── */

/* ── BREADCRUMBS ── */
.breadcrumbs { padding: 16px 0; border-bottom: 1px solid var(--border-color); }
.breadcrumbs-list { display: flex; align-items: center; gap: 8px; list-style: none; font-size: 13px; color: var(--text-secondary); padding: 0; margin: 0; }
.breadcrumbs-list a { color: var(--text-secondary); transition: color 0.2s; text-decoration: none; }
.breadcrumbs-list a:hover { color: var(--primary-color); }
.breadcrumbs-list .separator { color: var(--border-color); }
.breadcrumbs-list .current { color: var(--text-primary); font-weight: 500; }

/* ── PRODUCT DETAIL: Wide Layout ── */
.product-detail { padding: 48px 0 72px; }
.product-detail-grid { display: grid; grid-template-columns: 3fr 2fr; gap: 56px; align-items: start; }
.product-gallery { position: sticky; top: calc(var(--header-height, 64px) + 24px); }
.product-gallery-main {
    aspect-ratio: 4/3; border-radius: var(--radius-lg, 16px); background: var(--bg-secondary);
    border: 1px solid var(--border-color); overflow: hidden; margin-bottom: 12px;
}
.product-gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.product-gallery-thumbs { display: flex; gap: 10px; }
.product-gallery-thumb {
    width: 80px; height: 80px; border-radius: var(--radius-sm, 6px);
    background: var(--bg-secondary); border: 2px solid var(--border-color);
    overflow: hidden; cursor: pointer; transition: border-color 0.2s;
}
.product-gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-gallery-thumb.active, .product-gallery-thumb:hover { border-color: var(--primary-color); }
.product-info { padding: 16px 0 16px 0; }
.product-info-category {
    font-size: 13px; text-transform: uppercase; letter-spacing: 0.5px;
    color: var(--primary-color); font-weight: 600; margin-bottom: 12px;
}
.product-info h1 { font-size: 28px; font-weight: 700; line-height: 1.3; margin-bottom: 12px; }
.product-rating { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; }
.product-rating-stars { display: flex; gap: 2px; color: var(--accent-color, var(--warning-color)); }
.product-rating-stars svg { width: 16px; height: 16px; fill: currentColor; stroke: none; }
.product-rating-stars .empty { color: var(--border-color); }
.product-rating-text { font-size: 13px; color: var(--text-secondary); }
.product-price-block {
    margin-bottom: 20px; padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}
.product-price-current { font-size: 32px; font-weight: 800; letter-spacing: 0; }
.product-description { font-size: 14px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 24px; }
.product-actions { display: flex; gap: 10px; margin-bottom: 24px; }
.product-actions .btn { flex: 1; justify-content: center; font-size: 14px; padding: 12px 16px; }
.product-meta {
    display: flex; gap: 16px; padding: 16px;
    background: var(--bg-secondary); border-radius: var(--radius-md, 10px);
    border: 1px solid var(--border-color);
}
.product-meta-item {
    display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-secondary);
}
.product-meta-item svg {
    width: 16px; height: 16px; stroke: var(--primary-color); stroke-width: 1.8; fill: none; flex-shrink: 0;
}
.related-section { padding: 72px 0; border-top: 1px solid var(--border-color); }

/* ── FOOTER ── */

/* ── FOOTER: Light Minimal ── */
.footer {
    background: var(--bg-secondary); border-top: 1px solid var(--border-color);
    padding: 40px 0 0; color: var(--text-secondary);
}
.footer-row {
    display: flex; align-items: center; justify-content: space-between;
    padding-bottom: 32px; border-bottom: 1px solid var(--border-color);
    flex-wrap: wrap; gap: 20px;
}
.footer-logo {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 18px; font-weight: 800; color: var(--text-primary);
    text-decoration: none; flex-shrink: 0;
}
.footer-logo img {
    width: 36px; height: 36px; border-radius: 50%;
    object-fit: cover; flex-shrink: 0;
}
.footer-logo span { color: var(--primary-dark); }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a {
    font-size: 14px; color: var(--text-secondary); text-decoration: none;
    transition: color 0.2s;
}
.footer-links a:hover { color: var(--primary-color); }
.footer-contacts { display: flex; align-items: center; gap: 20px; font-size: 14px; }
.footer-contacts a {
    font-weight: 600; color: var(--text-primary); text-decoration: none;
}
.footer-contacts span { color: var(--text-secondary); }
.footer-bottom {
    padding: 20px 0; font-size: 13px; color: var(--text-secondary);
    text-align: center;
}

/* ── CATEGORIES ── */

/* ── CATEGORIES: Underline Tabs ── */
.categories { padding: 0; border-bottom: 1px solid var(--border-color); }
.categories-tabs {
    display: flex; gap: 0; overflow-x: auto; -webkit-overflow-scrolling: touch;
    scrollbar-width: none; justify-content: center;
}
.categories-tabs::-webkit-scrollbar { display: none; }
.category-tab {
    display: flex; align-items: center; gap: 6px;
    padding: 20px 24px; white-space: nowrap;
    font-size: 14px; font-weight: 500; color: var(--text-secondary);
    text-decoration: none; cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: color 0.2s, border-color 0.2s;
}
.category-tab:hover { color: var(--text-primary); }
.category-tab.active { color: var(--primary-color); border-bottom-color: var(--primary-color); }
.category-tab.active .tab-count { background: var(--primary-color); color: #fff; }
.tab-count {
    font-size: 11px; font-weight: 600; padding: 2px 7px;
    border-radius: 10px; background: var(--bg-secondary); color: var(--text-secondary);
}

.catalog-empty {
    min-height: 260px; border: 1px solid rgba(var(--primary-rgb), 0.18);
    border-radius: var(--radius-lg); background:
        linear-gradient(135deg, rgba(247,242,231,0.92), rgba(255,255,255,0.96)),
        radial-gradient(circle at 85% 20%, rgba(201,146,47,0.16), transparent 30%);
    padding: 44px 36px; display: flex; flex-direction: column;
    justify-content: center; align-items: flex-start;
}
.catalog-empty-icon {
    width: 54px; height: 54px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: #fff; color: var(--primary-color);
    border: 1px solid rgba(var(--primary-rgb), 0.16);
    margin-bottom: 18px;
}
.catalog-empty-icon svg { width: 28px; height: 28px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.catalog-empty h3 { font-size: 24px; line-height: 1.2; margin-bottom: 10px; color: var(--text-primary); }
.catalog-empty p { max-width: 640px; color: var(--text-secondary); font-size: 15px; line-height: 1.7; }

@media (max-width: 480px) {
    .category-tab { padding: 16px 16px; font-size: 13px; }
}

/* ── PROMO BANNER ── */
.promo-banner { padding: 0 0 72px; }
.promo-inner {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: var(--radius-lg); padding: 56px 64px;
    display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: center;
    color: #fff; position: relative; overflow: hidden;
}
.promo-inner::before {
    content: ''; position: absolute; top: -50%; right: -10%;
    width: 400px; height: 400px; border-radius: 50%;
    background: rgba(255,255,255,0.06);
}
.promo-inner::after {
    content: ''; position: absolute; bottom: -30%; left: 20%;
    width: 300px; height: 300px; border-radius: 50%;
    background: rgba(255,255,255,0.04);
}
.promo-text { position: relative; z-index: 1; }
.promo-text h2 { font-size: 32px; font-weight: 700; margin-bottom: 12px; letter-spacing: 0; }
.promo-text p { font-size: 16px; opacity: 0.85; line-height: 1.6; max-width: 480px; }

/* ── FEATURES ── */
.features { padding: 72px 0; background: var(--bg-secondary); border-top: 1px solid var(--border-color); }
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.feature-card {
    background: var(--bg-primary); border: 1px solid var(--border-color);
    border-radius: var(--radius-lg); padding: 28px 24px; text-align: center;
    transition: box-shadow 0.2s, transform 0.2s;
}
.feature-card:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.08); transform: translateY(-2px); }
.feature-icon {
    width: 56px; height: 56px; border-radius: 50%; margin: 0 auto 16px;
    display: flex; align-items: center; justify-content: center;
    background: color-mix(in srgb, var(--primary-color) 8%, white); color: var(--primary-color);
}
.feature-icon svg { width: 24px; height: 24px; stroke: currentColor; stroke-width: 1.8; fill: none; }
.feature-card h4 { font-size: 15px; font-weight: 600; color: var(--text-primary); margin-bottom: 6px; }
.feature-card p { font-size: 13px; color: var(--text-secondary); line-height: 1.5; }

/* ── PLACEHOLDER IMAGE ── */
.placeholder-img {
    width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
    background: var(--bg-secondary); color: var(--border-color);
}
.placeholder-img svg { width: 48px; height: 48px; stroke: currentColor; stroke-width: 1.2; fill: none; }

/* ── CART MODAL ── */
.modal {
    display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.5); z-index: 1000;
    backdrop-filter: blur(4px);
}
.cart-content {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    background: #fff; border-radius: var(--radius-lg); width: 95%; max-width: 750px;
    max-height: 85vh; overflow-y: auto; box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}
.cart-header {
    display: flex; justify-content: space-between; align-items: center;
    padding: 20px 24px; border-bottom: 1px solid var(--border-color);
}
.cart-header h3 { font-size: 18px; font-weight: 700; }
.close-cart { font-size: 28px; cursor: pointer; color: var(--text-secondary); line-height: 1; }
.close-cart:hover { color: var(--text-primary); }
.cart-body { padding: 20px 24px; }
.show-cart { width: 100%; border-collapse: collapse; }
.show-cart th { padding: 10px 0; border-bottom: 2px solid var(--border-color); font-size: 13px; font-weight: 600; text-align: left; color: var(--text-secondary); }
.show-cart td { padding: 10px 0; border-bottom: 1px solid var(--border-color); font-size: 14px; vertical-align: middle; }
.show-cart td img { width: 60px; height: 60px; object-fit: cover; border-radius: var(--radius-sm); }
.quantity-control { display: inline-flex; align-items: center; gap: 4px; }
.quantity-btn { width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; background: var(--bg-secondary); border-radius: var(--radius-sm); cursor: pointer; font-size: 16px; user-select: none; }
.quantity-btn:hover { background: var(--border-color); }
.item-count { width: 40px; text-align: center; border: 1px solid var(--border-color); border-radius: var(--radius-sm); padding: 4px; font-size: 14px; }
.delete-item { background: none; border: none; color: var(--text-secondary); cursor: pointer; font-size: 16px; padding: 4px 8px; }
.delete-item:hover { color: #e53e3e; }
.cart-total {
    display: flex; justify-content: space-between; align-items: center;
    padding: 16px 0; font-size: 18px; font-weight: 700;
}
.cart-form { padding: 0 24px 16px; }
.cart-form label { display: block; font-size: 14px; font-weight: 500; margin-bottom: 8px; }
.cart-form input {
    width: 100%; padding: 12px 16px; border: 1.5px solid var(--border-color);
    border-radius: var(--radius-md); font-size: 14px; outline: none;
}
.cart-form input:focus { border-color: var(--primary-color); }
.cart-footer {
    display: flex; gap: 10px; padding: 16px 24px; border-top: 1px solid var(--border-color);
}
.cart-footer button {
    flex: 1; padding: 12px; border-radius: var(--radius-md); font-size: 14px;
    font-weight: 600; cursor: pointer; border: none; transition: background 0.2s;
}
.clear-cart { background: var(--bg-secondary); color: var(--text-secondary); }
.clear-cart:hover { background: var(--border-color); }
.order-btn { background: var(--primary-color); color: #fff; }
.order-btn:hover { background: var(--primary-dark); }
.close-btn { background: var(--bg-secondary); color: var(--text-secondary); }
.close-btn:hover { background: var(--border-color); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .hero .container { grid-template-columns: 1fr; text-align: center; }
    .hero-text { max-width: 100%; margin: 0 auto; }
    .hero-buttons { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-visual { max-width: 400px; margin: 0 auto; }
    .hero-float-card { display: none; }
    .product-grid { grid-template-columns: repeat(3, 1fr); }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
    .promo-inner { padding: 40px 36px; }
    .promo-text h2 { font-size: 26px; }
}
@media (max-width: 768px) {
    .hero { padding: 40px 0 48px; }
    .hero h1 { font-size: 34px; }
    .hero-desc { font-size: 15px; }
    .seed-badges { justify-content: center; }
    .hero-stats { gap: 24px; }
    .hero-stat-num { font-size: 22px; }
    .section { padding: 48px 0; }
    .product-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .features-grid { grid-template-columns: 1fr 1fr; }
    .header-nav, .header-phone { display: none; }
    .header-logo { font-size: 16px; max-width: calc(100vw - 150px); }
    .header-logo img { width: 38px; height: 38px; }
    .header-logo-text { min-width: 0; overflow-wrap: anywhere; }
    .menu-toggle { display: flex; }
    .product-detail-grid { grid-template-columns: 1fr; gap: 32px; }
    .product-gallery { position: static; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
    .section-header { flex-direction: column; gap: 8px; }
    .promo-inner { grid-template-columns: 1fr; text-align: center; }
}
@media (max-width: 480px) {
    .hero h1 { font-size: 28px; }
    .hero-stats { flex-direction: column; gap: 12px; }
    .catalog-empty { padding: 30px 22px; align-items: center; text-align: center; }
    .catalog-empty h3 { font-size: 20px; }
    .product-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .product-card-body { padding: 10px; }
    .product-card-title { font-size: 13px; }
    .product-card-price { font-size: 15px; }
    .container { padding: 0 16px; }
    .product-info h1 { font-size: 24px; }
    .product-price-current { font-size: 28px; }
    .product-actions { flex-direction: column; }
    .features-grid { grid-template-columns: 1fr; }
}
