/* Color Scheme Variables */

:root {
    /* Primary Colors */
    --primary-color: #ed6864;
    --primary-light: #edc5c4;
    --primary-dark: #d4130c;
    --primary-vibrant: #ff5752;

    /* Secondary Colors */
    --secondary-color: #83e29c;
    --secondary-light: #aeeabe;
    --secondary-dark: #0df24a;

    /* Accent Colors */
    --accent-color: #ed5a6b;
    --accent-light: #e59aa2;
    --accent-dark: #df0c24;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #ef7f7b, #6ee28d);
    --gradient-secondary: linear-gradient(135deg, #f35e6f, #ed9592);
    --gradient-accent: linear-gradient(90deg, #ed6864, #83e29c, #ed5a6b);
    --gradient-vibrant: linear-gradient(45deg, #ff5752, #ed5a6b);
    --gradient-soft: linear-gradient(180deg, #edc5c4, #aeeabe);

    /* Status Colors */
    --success-color: #2dc02a;
    --success-light: #50d638;
    --success-dark: #168823;
    --warning-color: #e29f2c;
    --warning-light: #dcbd6f;
    --warning-dark: #bd7f14;
    --error-color: #e93b2b;
    --error-light: #e76655;
    --danger-color: #e93b2b;

    /* 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(212, 19, 12, 0.9);
    --primary-overlay-75: rgba(212, 19, 12, 0.75);
    --primary-overlay-50: rgba(212, 19, 12, 0.5);
    --primary-overlay-25: rgba(212, 19, 12, 0.25);
    --primary-rgb: 237, 104, 100;

    /* 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 #ed686433;
}

/* ── 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.5px; }
.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: Clean Sticky ── */
.header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    height: var(--header-height, 64px);
}
.header .container {
    display: flex; align-items: center; justify-content: space-between; height: 100%;
}
.header-logo {
    font-size: 22px; font-weight: 800; letter-spacing: -0.5px;
    color: var(--text-primary); flex-shrink: 0; text-decoration: none;
}
.header-logo span { color: var(--primary-color); }
.header-nav { display: flex; gap: 32px; list-style: none; }
.header-nav a {
    font-size: 14px; font-weight: 500; color: var(--text-secondary);
    transition: color 0.2s; position: relative; padding: 4px 0; text-decoration: none;
}
.header-nav a:hover { color: var(--text-primary); }
.header-nav a::after {
    content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 2px;
    background: var(--primary-color); transition: width 0.2s; 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: var(--text-primary);
    margin-right: 8px; text-decoration: none;
}
.header-phone svg { width: 16px; height: 16px; stroke: 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: var(--text-secondary); cursor: pointer; border-radius: var(--radius-sm, 6px);
    transition: color 0.2s, background 0.2s;
}
.header-action-btn:hover { color: var(--text-primary); background: var(--bg-secondary); }
.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 ── */
.hero {
    padding: 80px 0 72px; overflow: hidden;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary, #fff) 100%);
}
.hero .container { max-width: 800px; }
.hero-center { text-align: center; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 8px 20px; background: var(--primary-color); color: #fff;
    font-size: 13px; font-weight: 600; border-radius: 50px; margin-bottom: 28px;
}
.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: -2px; color: var(--text-primary); margin-bottom: 20px;
}
.hero h1 em {
    font-style: normal;
    background: linear-gradient(120deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-desc {
    font-size: 18px; color: var(--text-secondary); line-height: 1.7;
    margin-bottom: 36px; max-width: 600px; margin-left: auto; margin-right: auto;
}
.hero-buttons { display: flex; gap: 12px; justify-content: center; margin-bottom: 56px; }
.hero-stats {
    display: flex; align-items: center; justify-content: center; gap: 40px;
    padding: 32px 48px; background: #fff; border-radius: var(--radius-lg, 16px);
    box-shadow: 0 4px 24px rgba(0,0,0,0.06); border: 1px solid var(--border-color);
}
.hero-stat { text-align: center; }
.hero-stat-num { font-size: 32px; font-weight: 800; color: var(--text-primary); letter-spacing: -0.5px; }
.hero-stat-label { font-size: 13px; color: var(--text-secondary); margin-top: 4px; }
.hero-stat-divider { width: 1px; height: 40px; background: var(--border-color); }

/* ── 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: Horizontal Card ── */
.product-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.product-card {
    background: var(--bg-primary); border: 1px solid var(--border-color);
    border-radius: var(--radius-lg, 16px); overflow: hidden;
    display: flex; flex-direction: row;
    transition: box-shadow 0.3s, transform 0.2s;
}
.product-card:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.08); transform: translateY(-2px); }
.product-card-image {
    width: 200px; min-height: 200px; background: var(--bg-secondary);
    display: block; text-decoration: none; flex-shrink: 0; overflow: hidden;
}
.product-card-image img { width: 100%; height: 100%; object-fit: cover; }
.product-card-body { padding: 20px; display: flex; flex-direction: column; justify-content: center; flex: 1; }
.product-card-category {
    font-size: 11px; text-transform: uppercase; letter-spacing: 0.5px;
    color: var(--text-secondary); margin-bottom: 6px;
}
.product-card-title {
    font-size: 16px; font-weight: 600; color: var(--text-primary);
    margin-bottom: 8px; line-height: 1.4; text-decoration: none;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.product-card-rating { display: flex; align-items: center; gap: 4px; margin-bottom: 12px; }
.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; gap: 16px; margin-top: auto; }
.product-card-price { font-size: 20px; font-weight: 700; color: var(--text-primary); }
.product-card-cart-btn {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 10px 20px; border-radius: var(--radius-md, 10px);
    border: 1.5px solid var(--primary-color); background: transparent;
    color: var(--primary-color); cursor: pointer; font-size: 13px;
    font-weight: 600; transition: all 0.2s; box-shadow: none;
}
.product-card-cart-btn:hover { background: var(--primary-color); color: #fff; }
.product-card-cart-btn svg { width: 16px; height: 16px; stroke: currentColor; stroke-width: 1.8; 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: Clean Detail ── */
.product-detail { padding: 48px 0 72px; }
.product-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.product-gallery { position: sticky; top: calc(var(--header-height, 64px) + 24px); }
.product-gallery-main {
    aspect-ratio: 1/1; 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: 12px; }
.product-gallery-thumb {
    width: 72px; height: 72px; 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-top: 8px; }
.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: 32px; font-weight: 700; line-height: 1.25; letter-spacing: -0.5px; margin-bottom: 16px; }
.product-rating { display: flex; align-items: center; gap: 8px; margin-bottom: 24px; }
.product-rating-stars { display: flex; gap: 2px; color: var(--accent-color, var(--warning-color)); }
.product-rating-stars svg { width: 18px; height: 18px; fill: currentColor; stroke: none; }
.product-rating-stars .empty { color: var(--border-color); }
.product-rating-text { font-size: 14px; color: var(--text-secondary); }
.product-price-block {
    display: flex; align-items: baseline; gap: 12px; margin-bottom: 24px;
    padding-bottom: 24px; border-bottom: 1px solid var(--border-color);
}
.product-price-current { font-size: 36px; font-weight: 800; letter-spacing: -1px; }
.product-price-old { font-size: 20px; color: var(--text-secondary); text-decoration: line-through; }
.product-price-discount {
    padding: 4px 10px; font-size: 13px; font-weight: 600;
    background: rgba(239,68,68,0.08); color: var(--error-color); border-radius: var(--radius-sm, 6px);
}
.product-description { font-size: 15px; color: var(--text-secondary); line-height: 1.8; margin-bottom: 32px; }
.product-actions { display: flex; gap: 12px; margin-bottom: 32px; }
.product-actions .btn { flex: 1; justify-content: center; }
.product-meta {
    display: flex; flex-direction: column; gap: 12px; padding: 20px;
    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: 12px; font-size: 14px; color: var(--text-secondary);
}
.product-meta-item svg {
    width: 18px; height: 18px; 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: Clean Dark ── */
.footer { background: var(--footer-bg, #111827); color: var(--footer-text, #d1d5db); padding: 64px 0 0; }
.footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 48px;
    padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand h3 { font-size: 22px; font-weight: 800; color: #fff; margin-bottom: 12px; }
.footer-brand h3 span { color: var(--primary-light); }
.footer-brand p {
    font-size: 14px; line-height: 1.7; color: var(--footer-text, #d1d5db);
    max-width: 300px; margin-bottom: 20px;
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
    width: 38px; height: 38px; border-radius: var(--radius-sm, 6px);
    border: 1px solid rgba(255,255,255,0.12); display: flex;
    align-items: center; justify-content: center;
    color: var(--footer-text, #d1d5db); transition: border-color 0.2s, color 0.2s, background 0.2s;
    text-decoration: none;
}
.footer-social a:hover { border-color: var(--primary-light); color: #fff; background: rgba(255,255,255,0.05); }
.footer-social svg { width: 18px; height: 18px; stroke: currentColor; stroke-width: 1.8; fill: none; }
.footer-col h4 {
    font-size: 13px; font-weight: 600; text-transform: uppercase;
    letter-spacing: 0.5px; color: #fff; margin-bottom: 20px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 12px; }
.footer-col a { font-size: 14px; color: var(--footer-text, #d1d5db); transition: color 0.2s; text-decoration: none; }
.footer-col a:hover { color: #fff; }
.footer-contact-item {
    display: flex; align-items: center; gap: 10px; margin-bottom: 14px; font-size: 14px;
}
.footer-contact-item svg {
    width: 16px; height: 16px; stroke: var(--primary-light); stroke-width: 1.8; fill: none; flex-shrink: 0;
}
.footer-bottom {
    padding: 24px 0; display: flex; align-items: center; justify-content: space-between;
    font-size: 13px; color: rgba(255,255,255,0.4);
}
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { color: rgba(255,255,255,0.4); transition: color 0.2s; text-decoration: none; }
.footer-bottom-links a:hover { color: #fff; }

/* ── 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);
}
@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.5px; }
.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; }

/* ── NEWSLETTER ── */
.newsletter { padding: 72px 0; border-top: 1px solid var(--border-color); }
.newsletter-inner { text-align: center; max-width: 520px; margin: 0 auto; }
.newsletter-inner h2 { font-size: 26px; font-weight: 700; margin-bottom: 10px; letter-spacing: -0.5px; }
.newsletter-inner p { font-size: 15px; color: var(--text-secondary); margin-bottom: 28px; }
.newsletter-form { display: flex; gap: 10px; max-width: 440px; margin: 0 auto; }
.newsletter-input {
    flex: 1; padding: 14px 18px; font-size: 14px;
    border: 1.5px solid var(--border-color); border-radius: var(--radius-md);
    outline: none; transition: border-color 0.2s; background: var(--bg-primary);
    color: var(--text-primary);
}
.newsletter-input:focus { border-color: var(--primary-color); }
.newsletter-form .btn-primary { white-space: nowrap; }

/* ── 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; }
    .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; }
    .newsletter-form { flex-direction: column; }
}
@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; }
}