/* Color Scheme Variables */

:root {
    /* Primary Colors */
    --primary-color: #0f7f8e;
    --primary-light: #d8eef2;
    --primary-dark: #093d56;
    --primary-vibrant: #1ca6b8;

    /* Secondary Colors */
    --secondary-color: #f06449;
    --secondary-light: #f9d4cc;
    --secondary-dark: #9f3426;

    /* Accent Colors */
    --accent-color: #62b6cb;
    --accent-light: #d7f0f6;
    --accent-dark: #1f7082;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #0f7f8e, #f06449);
    --gradient-secondary: linear-gradient(135deg, #093d56, #62b6cb);
    --gradient-accent: linear-gradient(90deg, #0f7f8e, #62b6cb, #f06449);
    --gradient-vibrant: linear-gradient(45deg, #1ca6b8, #f06449);
    --gradient-soft: linear-gradient(180deg, #d8eef2, #f9d4cc);

    /* Status Colors */
    --success-color: #25d434;
    --success-light: #28d742;
    --success-dark: #0b8e0b;
    --warning-color: #e2b450;
    --warning-light: #d9a863;
    --warning-dark: #c68306;
    --error-color: #e8382c;
    --error-light: #e06c61;
    --danger-color: #e8382c;

    /* 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(9, 61, 86, 0.9);
    --primary-overlay-75: rgba(9, 61, 86, 0.75);
    --primary-overlay-50: rgba(9, 61, 86, 0.5);
    --primary-overlay-25: rgba(9, 61, 86, 0.25);
    --primary-rgb: 15, 127, 142;

    /* 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 rgba(15, 127, 142, 0.2);
}

/* ── 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; }
.page-section { padding: 56px 24px; max-width: 960px; }
.page-section h1 { font-size: 34px; line-height: 1.2; margin-bottom: 26px; }
.page-section h2 { font-size: 22px; margin: 28px 0 12px; }
.page-section h3 { font-size: 17px; margin: 18px 0 8px; }
.page-section p, .page-section li { color: var(--text-secondary); line-height: 1.7; }
.page-section ul, .page-section ol { padding-left: 22px; margin: 10px 0 20px; }
.contact-info, .shipping-details, .warranty-return, .legal-copy, #privacy-policy {
    max-width: 860px;
}
.contact-details, .shipping-zones, .payment-grid, .guarantees {
    display: grid; gap: 16px; margin: 22px 0;
}
.shipping-zones, .payment-grid, .guarantees {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.contact-details, .contact-note, .zone, .payment-card, .guarantee-item, .delivery-policy, .exchange-info, .contact-support {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    background: #fff;
    padding: 20px;
}

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

/* ── 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: Dark Header ── */
.header {
    position: sticky; top: 0; z-index: 100;
    background: #071c2c;
    height: var(--header-height, 68px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.header .container {
    display: flex; align-items: center; justify-content: space-between; height: 100%;
}
.header-logo {
    display: flex; align-items: center; gap: 10px;
    color: #fff; text-decoration: none; flex-shrink: 0;
}
.header-logo img {
    height: 48px; width: 48px; object-fit: cover; border-radius: 50%;
    background: #fff; padding: 3px; flex-shrink: 0;
}
.header-brand { display: flex; flex-direction: column; line-height: 1.1; }
.header-brand strong { font-size: 19px; font-weight: 800; color: #fff; }
.header-brand small { font-size: 11px; color: rgba(255,255,255,0.62); text-transform: uppercase; letter-spacing: 0; margin-top: 3px; }
.header-nav { display: flex; gap: 32px; list-style: none; }
.header-nav a {
    font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.7);
    text-decoration: none; transition: color 0.2s; position: relative; padding: 4px 0;
}
.header-nav a:hover { color: #fff; }
.header-nav a::after {
    content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color, var(--primary-light)));
    transition: width 0.3s; border-radius: 1px;
}
.header-nav a:hover::after { width: 100%; }
.header-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.header-phone {
    display: flex; align-items: center; gap: 8px;
    font-size: 14px; font-weight: 600; color: #fff;
    margin-right: 8px; text-decoration: none;
}
.header-phone svg { width: 16px; height: 16px; stroke: var(--primary-light, var(--primary-color)); stroke-width: 2; fill: none; }
.header-action-btn {
    display: flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; border: none; background: transparent;
    color: rgba(255,255,255,0.7); cursor: pointer; border-radius: var(--radius-sm, 6px);
    transition: color 0.2s, background 0.2s;
}
.header-action-btn:hover { color: #fff; background: rgba(255,255,255,0.1); }
.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: 16px; height: 16px; 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: Full Center + Background Image ── */
.hero {
    min-height: 620px; padding: 96px 0 72px; overflow: hidden; position: relative;
    background: #071c2c url('../images/hero-seafood-market.png') center/cover no-repeat;
}
.hero-overlay {
    position: absolute; inset: 0;
    background:
        linear-gradient(90deg, rgba(5, 20, 32, 0.92) 0%, rgba(5, 20, 32, 0.78) 42%, rgba(5, 20, 32, 0.26) 100%),
        linear-gradient(180deg, rgba(5, 20, 32, 0.08) 0%, rgba(5, 20, 32, 0.28) 100%);
}
.hero .container { position: relative; z-index: 1; max-width: var(--max-width); }
.hero-center { text-align: left; max-width: 650px; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 8px 20px; background: rgba(255,255,255,0.15); color: #fff;
    font-size: 13px; font-weight: 600; border-radius: 50px; margin-bottom: 28px;
    backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.2);
}
.hero-badge svg { width: 14px; height: 14px; stroke: currentColor; stroke-width: 2.5; fill: none; }
.hero h1 {
    font-size: 52px; font-weight: 800; line-height: 1.1;
    letter-spacing: 0; color: #fff; margin-bottom: 20px;
}
.hero h1 em {
    font-style: normal;
    background: linear-gradient(120deg, rgba(255,255,255,0.95), rgba(255,255,255,0.7));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-desc {
    font-size: 18px; color: rgba(255,255,255,0.8); line-height: 1.7;
    margin-bottom: 36px; max-width: 600px; margin-left: 0; margin-right: 0;
}
.hero-buttons { display: flex; gap: 12px; justify-content: flex-start; margin-bottom: 56px; }
.hero .btn-white {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 32px; font-size: 15px; font-weight: 600;
    border-radius: var(--radius-md, 10px); border: 2px solid #fff; cursor: pointer;
    background: #fff; color: #111827; transition: all 0.2s ease; text-decoration: none;
}
.hero .btn-white:hover { background: rgba(255,255,255,0.1); color: #fff; }
.hero .btn-white svg { width: 18px; height: 18px; stroke: currentColor; stroke-width: 2; fill: none; }
.hero .btn-outline-white {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 32px; font-size: 15px; font-weight: 600;
    border-radius: var(--radius-md, 10px); border: 2px solid rgba(255,255,255,0.5); cursor: pointer;
    background: transparent; color: #fff; transition: all 0.2s ease; text-decoration: none;
}
.hero .btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: #fff; }
.hero-stats {
    display: flex; align-items: center; justify-content: flex-start; gap: 28px;
    padding: 24px 30px; background: rgba(255,255,255,0.1); border-radius: var(--radius-lg, 8px);
    backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,0.15);
    max-width: 620px;
}
.hero-stat { text-align: center; }
.hero-stat-num { font-size: 32px; font-weight: 800; color: #fff; letter-spacing: 0; }
.hero-stat-label { font-size: 13px; color: rgba(255,255,255,0.7); margin-top: 4px; }
.hero-stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.2); }

@media (max-width: 768px) {
    .hero { min-height: auto; padding: 48px 0 40px; background-position: 62% center; }
    .hero-overlay { background: linear-gradient(90deg, rgba(5, 20, 32, 0.92), rgba(5, 20, 32, 0.68)); }
    .hero-center { text-align: left; }
    .hero h1 { font-size: 36px; letter-spacing: 0; }
    .hero-desc { font-size: 16px; }
    .hero-buttons { flex-direction: column; align-items: stretch; gap: 8px; }
    .hero-stats { flex-direction: column; gap: 16px; padding: 24px; }
    .hero-stat-divider { width: 40px; height: 1px; }
    .hero-stat-num { font-size: 24px; }
}

/* ── BUTTONS ── */

/* ── BUTTONS: Soft Elevated ── */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 16px 32px; font-size: 15px; font-weight: 600;
    border-radius: var(--radius-md); border: none; cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none; line-height: 1;
}
.btn:active { transform: scale(0.97); }
.btn svg { width: 18px; height: 18px; stroke: currentColor; stroke-width: 2; fill: none; }

.btn-primary {
    background: var(--primary-color); color: #fff;
    box-shadow: 0 8px 24px -4px rgba(0,0,0,0.2),
                0 2px 6px rgba(0,0,0,0.08);
}
.btn-primary:hover {
    background: var(--primary-dark);
    box-shadow: 0 12px 32px -4px rgba(0,0,0,0.25),
                0 4px 8px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}

.btn-outline {
    background: var(--bg-primary, #fff); color: var(--text-primary);
    border: 1.5px solid var(--border-color);
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}
.btn-outline:hover {
    border-color: var(--primary-color); color: var(--primary-color);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.btn-white {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 16px 32px; font-size: 15px; font-weight: 600;
    border-radius: var(--radius-md); border: none; cursor: pointer;
    background: #fff; color: var(--primary-color);
    transition: all 0.25s ease; text-decoration: none;
    box-shadow: 0 8px 24px -4px rgba(0,0,0,0.12),
                0 2px 6px rgba(0,0,0,0.06);
}
.btn-white:hover {
    box-shadow: 0 12px 32px -4px rgba(0,0,0,0.18),
                0 4px 8px rgba(0,0,0,0.08);
    transform: translateY(-3px);
}
.btn-white svg { width: 18px; height: 18px; stroke: currentColor; stroke-width: 2; fill: none; }

.add-to-cart, .product-btn, .cart-button {
    background: var(--primary-color); color: #fff;
    padding: 16px 32px; border-radius: var(--radius-md);
    font-weight: 600; cursor: pointer; border: none;
    transition: all 0.25s ease;
    display: inline-flex; align-items: center; gap: 8px;
    box-shadow: 0 8px 24px -4px rgba(0,0,0,0.2),
                0 2px 6px rgba(0,0,0,0.08);
}
.add-to-cart:hover, .product-btn:hover, .cart-button:hover {
    background: var(--primary-dark);
    box-shadow: 0 12px 32px -4px rgba(0,0,0,0.25),
                0 4px 8px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}

/* ── PRODUCT CARDS ── */

/* ── PRODUCT CARDS: Overlay Card ── */
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.product-card {
    border-radius: var(--radius-lg, 16px); overflow: hidden;
    transition: transform 0.3s;
}
.product-card:hover { transform: translateY(-4px); }
.product-card-image {
    position: relative; aspect-ratio: 3/4; background: var(--bg-secondary);
    overflow: hidden; display: block; text-decoration: none;
}
.product-card-image img { width: 100%; height: 100%; object-fit: cover; }
.product-card-info-overlay {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 20px; color: #fff;
    background: linear-gradient(to top, var(--primary-overlay-90) 0%, var(--primary-overlay-50) 50%, transparent 100%);
}
.product-card-category {
    display: inline-block; font-size: 10px; text-transform: uppercase; letter-spacing: 0;
    color: #fff; margin-bottom: 6px;
    padding: 3px 8px; border-radius: 4px;
    background: rgba(255,255,255,0.15); backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.2);
}
.product-card-title {
    font-size: 15px; font-weight: 600; color: #fff;
    margin-bottom: 6px; line-height: 1.4;
    text-shadow: 0 1px 4px rgba(0,0,0,0.4);
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.product-card-footer { display: flex; align-items: center; justify-content: space-between; }
.product-card-price { font-size: 18px; font-weight: 700; color: #fff; text-shadow: 0 1px 4px rgba(0,0,0,0.4); }
.product-card-cart-btn {
    width: 38px; height: 38px; border-radius: var(--radius-md, 10px);
    border: 1.5px solid rgba(255,255,255,0.4); background: rgba(255,255,255,0.1);
    backdrop-filter: blur(4px);
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    transition: all 0.2s; color: #fff;
    padding: 0; box-shadow: none;
}
.product-card-cart-btn:hover { background: #fff; color: var(--text-primary); border-color: #fff; }
.product-card-cart-btn svg { width: 17px; height: 17px; stroke: currentColor; stroke-width: 1.8; fill: none; }
.catalog-empty {
    grid-column: 1 / -1;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, #f8fbfa, #fff);
    padding: 34px;
    max-width: 760px;
}
.catalog-empty h3 { font-size: 22px; margin-bottom: 10px; color: var(--text-primary); }
.catalog-empty p { color: var(--text-secondary); max-width: 620px; margin-bottom: 16px; }
.catalog-empty a {
    display: inline-flex; color: var(--primary-dark); font-weight: 700;
    text-decoration: none; border-bottom: 1px solid currentColor;
}

/* ── 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: Compact Side ── */
.product-detail { padding: 48px 0 72px; }
.product-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.product-gallery { display: flex; gap: 12px; position: sticky; top: calc(var(--header-height, 64px) + 24px); }
.product-gallery-side {
    display: flex; flex-direction: column; gap: 10px; width: 64px; flex-shrink: 0;
}
.product-gallery-thumb {
    width: 64px; height: 64px; 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.active, .product-gallery-thumb:hover { border-color: var(--primary-color); }
.product-gallery-main {
    flex: 1; aspect-ratio: 1/1; border-radius: var(--radius-lg, 16px);
    background: var(--bg-secondary); border: 1px solid var(--border-color); overflow: hidden;
}
.product-gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.product-gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-info { padding-top: 0; }
.product-info-category {
    font-size: 12px; text-transform: uppercase; letter-spacing: 0;
    color: var(--primary-color); font-weight: 600; margin-bottom: 8px;
}
.product-info h1 { font-size: 28px; font-weight: 700; line-height: 1.3; margin-bottom: 12px; }
.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; }
.product-actions .btn { flex: 1; justify-content: center; padding: 12px 20px; font-size: 14px; }
.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: 20px; font-weight: 800; color: var(--text-primary);
    text-decoration: none; flex-shrink: 0;
}
.footer-logo img {
    border-radius: 50%; object-fit: cover; background: #fff;
    border: 1px solid var(--border-color);
}
.footer-logo span { color: var(--text-primary); }
.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: Scroll Cards ── */
.categories { padding: 48px 0; border-bottom: 1px solid var(--border-color); }
.categories-scroll { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }
.category-card {
    display: flex; flex-direction: column; align-items: center; gap: 12px;
    padding: 24px 16px; border-radius: var(--radius-lg); min-width: 140px;
    background: var(--bg-secondary); border: 1px solid transparent;
    cursor: pointer; transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
    text-decoration: none;
}
.category-card:hover { border-color: var(--primary-color); box-shadow: 0 4px 12px rgba(0,0,0,0.08); transform: translateY(-2px); }
.category-card.active { border-color: var(--primary-color); background: var(--primary-color); }
.category-card.active .category-icon { background: rgba(255,255,255,0.2); color: #fff; }
.category-card.active span { color: #fff; }
.category-card.active small { color: rgba(255,255,255,0.8); }
.category-icon {
    width: 52px; height: 52px; border-radius: 50%; display: flex;
    align-items: center; justify-content: center;
    background: color-mix(in srgb, var(--primary-color) 10%, white); color: var(--primary-color);
}
.category-icon svg { width: 24px; height: 24px; }
.category-card span { font-size: 13px; font-weight: 600; color: var(--text-primary); }
.category-card small { font-size: 12px; color: var(--text-secondary); margin-top: -8px; }
@media (max-width: 480px) {
    .category-card { padding: 16px 10px; min-width: 120px; flex: 1; }
}

/* ── PROMO BANNER ── */
.promo-banner { padding: 0 0 72px; }
.promo-inner {
    background: linear-gradient(135deg, #082339, #0f7f8e 58%, #803225);
    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-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-order-note p { margin: 0; color: var(--text-secondary); font-size: 14px; line-height: 1.5; }
.cart-order-note a { color: var(--primary-color); font-weight: 700; text-decoration: none; }
.cart-footer {
    display: flex; gap: 10px; padding: 16px 24px; border-top: 1px solid var(--border-color);
}
.cart-footer button, .cart-footer a {
    flex: 1; padding: 12px; border-radius: var(--radius-md); font-size: 14px;
    font-weight: 600; cursor: pointer; border: none; transition: background 0.2s;
    text-align: center; text-decoration: none;
}
.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; }
    .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; }
    .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; }
    .shipping-zones, .payment-grid, .guarantees { grid-template-columns: 1fr; }
    .page-section { padding: 40px 16px; }
    .page-section h1 { font-size: 28px; }
}
@media (max-width: 480px) {
    .hero h1 { font-size: 28px; }
    .hero-stats { flex-direction: column; gap: 12px; }
    .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; }
    .header-brand small { display: none; }
    .header-logo img { width: 42px; height: 42px; }
    .catalog-empty { padding: 24px 18px; }
}
