/* Color Scheme Variables */

:root {
    /* Primary Colors */
    --primary-color: #9f9950;
    --primary-light: #b1ae8b;
    --primary-dark: #5c571f;
    --primary-vibrant: #c1b52f;

    /* Secondary Colors */
    --secondary-color: #5c996d;
    --secondary-light: #a6c4af;
    --secondary-dark: #225e33;

    /* Accent Colors */
    --accent-color: #8b5737;
    --accent-light: #b29380;
    --accent-dark: #895434;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #b4ae6a, #549c68);
    --gradient-secondary: linear-gradient(135deg, #ad6c43, #c5c087);
    --gradient-accent: linear-gradient(90deg, #9f9950, #5c996d, #8b5737);
    --gradient-vibrant: linear-gradient(45deg, #c1b52f, #8b5737);
    --gradient-soft: linear-gradient(180deg, #b1ae8b, #a6c4af);

    /* Status Colors */
    --success-color: #1ec83a;
    --success-light: #56d54d;
    --success-dark: #13b41b;
    --warning-color: #db9533;
    --warning-light: #e8ca6d;
    --warning-dark: #bd8214;
    --error-color: #de3535;
    --error-light: #e75440;
    --danger-color: #de3535;

    /* 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(92, 87, 31, 0.9);
    --primary-overlay-75: rgba(92, 87, 31, 0.75);
    --primary-overlay-50: rgba(92, 87, 31, 0.5);
    --primary-overlay-25: rgba(92, 87, 31, 0.25);
    --primary-rgb: 159, 153, 80;

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

/* ── 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: Minimal Line ── */
.header {
    position: sticky; top: 0; z-index: 100;
    background: #fff;
    border-bottom: 2px solid var(--text-primary);
    height: var(--header-height, 56px);
}
.header .container {
    display: flex; align-items: center; justify-content: space-between; height: 100%;
}
.header-logo {
    font-size: 18px; font-weight: 700; letter-spacing: 2px;
    color: var(--text-primary); text-decoration: none; text-transform: uppercase;
}
.header-phone {
    font-size: 13px; font-weight: 500; color: var(--text-secondary);
    text-decoration: none; transition: color 0.2s;
    position: absolute; left: 50%; transform: translateX(-50%);
}
.header-phone:hover { color: var(--text-primary); }
.header-nav { display: none; }
.header-actions { display: flex; align-items: center; gap: 4px; }
.header-action-btn {
    display: flex; align-items: center; justify-content: center;
    width: 36px; height: 36px; border: none; background: transparent;
    color: var(--text-primary); cursor: pointer; border-radius: 0;
    transition: opacity 0.2s;
}
.header-action-btn:hover { opacity: 0.6; }
.header-action-btn svg { width: 20px; height: 20px; stroke: currentColor; stroke-width: 1.5; fill: none; }
.cart-count { position: relative; }
.cart-count::after {
    content: '0'; position: absolute; top: 0; right: -2px;
    width: 16px; height: 16px; background: var(--text-primary); color: #fff;
    font-size: 10px; font-weight: 600; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}
.menu-toggle { display: flex; }

/* ── HERO ── */

/* ── HERO: Split Layout + Image ── */
.hero { padding: 64px 0 72px; overflow: hidden; }
.hero .container { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.hero-text { max-width: 520px; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 7px 16px; background: color-mix(in srgb, var(--primary-color) 8%, white); color: var(--primary-color);
    font-size: 13px; font-weight: 600; border-radius: 50px; margin-bottom: 24px;
    border: 1px solid color-mix(in srgb, var(--primary-color) 15%, white);
}
.hero-badge svg { width: 14px; height: 14px; stroke: currentColor; stroke-width: 2; fill: none; }
.hero h1 {
    font-size: 46px; font-weight: 800; line-height: 1.12;
    letter-spacing: -1.5px; color: var(--text-primary); margin-bottom: 20px;
}
.hero h1 em {
    font-style: normal; color: var(--primary-color);
    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: 17px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 32px; }
.hero-buttons { display: flex; gap: 12px; margin-bottom: 40px; }
.hero-stats { display: flex; gap: 40px; }
.hero-stat-num { font-size: 28px; font-weight: 800; color: var(--text-primary); letter-spacing: -0.5px; }
.hero-stat-label { font-size: 13px; color: var(--text-secondary); }
.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; }
.hero-image-main {
    width: 100%; aspect-ratio: 1/1; border-radius: 24px;
    background: var(--bg-secondary) url('hero-bg.jpg') center/cover no-repeat;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg, 0 8px 24px rgba(0,0,0,0.12));
}
.hero-float-card {
    position: absolute; background: #fff; border-radius: var(--radius-md, 10px);
    padding: 14px 18px; box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    border: 1px solid var(--border-color); font-size: 13px;
}
.hero-float-card.top-right { top: -8px; right: -16px; display: flex; align-items: center; gap: 10px; }
.hero-float-card.bottom-left { bottom: 16px; left: -24px; display: flex; align-items: center; gap: 10px; }
.float-icon {
    width: 36px; height: 36px; border-radius: var(--radius-sm, 6px);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.float-icon svg { width: 18px; height: 18px; stroke-width: 2; fill: none; }
.float-icon.green { background: rgba(16,185,129,0.1); color: var(--success-color); }
.float-icon.green svg { stroke: var(--success-color); }
.float-icon.blue { background: color-mix(in srgb, var(--primary-color) 10%, white); color: var(--primary-color); }
.float-icon.blue svg { stroke: var(--primary-color); }
.float-card-text strong { display: block; color: var(--text-primary); font-weight: 600; }
.float-card-text span { color: var(--text-secondary); font-size: 12px; }

@media (max-width: 1024px) {
    .hero .container { grid-template-columns: 1fr; gap: 32px; }
    .hero h1 { font-size: 36px; }
    .hero-visual { display: none; }
}
@media (max-width: 768px) {
    .hero { padding: 40px 0 48px; }
    .hero h1 { font-size: 28px; letter-spacing: -1px; }
    .hero-desc { font-size: 15px; }
    .hero-buttons { flex-direction: column; gap: 8px; }
    .hero-stats { gap: 24px; }
    .hero-stat-num { font-size: 22px; }
}

/* ── BUTTONS ── */

/* ── BUTTONS: Underline Text ── */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 4px; font-size: 15px; font-weight: 600;
    border-radius: 0; border: none; cursor: pointer;
    transition: color 0.2s;
    text-decoration: none; line-height: 1;
    background: transparent; position: relative;
}
.btn::after {
    content: ''; position: absolute; bottom: 4px; left: 0;
    width: 0; height: 2px; background: currentColor;
    transition: width 0.3s ease;
}
.btn:hover::after { width: 100%; }
.btn svg { width: 18px; height: 18px; stroke: currentColor; stroke-width: 2; fill: none; }

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

.btn-outline {
    color: var(--text-secondary); background: transparent;
    border: none;
}
.btn-outline:hover { color: var(--text-primary); }

.btn-white {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 4px; font-size: 15px; font-weight: 600;
    border-radius: 0; border: none; cursor: pointer;
    background: transparent; color: #fff;
    transition: color 0.2s; text-decoration: none;
    position: relative;
}
.btn-white::after {
    content: ''; position: absolute; bottom: 4px; left: 0;
    width: 0; height: 2px; background: #fff;
    transition: width 0.3s ease;
}
.btn-white:hover::after { width: 100%; }
.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: 14px 28px; border-radius: var(--radius-md, 10px);
    font-weight: 600; cursor: pointer; border: none;
    transition: background 0.2s, transform 0.15s;
    display: inline-flex; align-items: center; gap: 8px;
}
.add-to-cart:hover, .product-btn:hover, .cart-button:hover {
    background: var(--primary-dark); transform: translateY(-1px);
}

/* ── PRODUCT CARDS ── */

/* ── PRODUCT CARDS: Minimal Flat ── */
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.product-card {
    background: transparent; border: none; border-radius: 0;
    transition: opacity 0.2s;
}
.product-card:hover { opacity: 0.85; }
.product-card-image {
    position: relative; aspect-ratio: 3/4; background: var(--bg-secondary);
    overflow: hidden; display: block; text-decoration: none;
    border-radius: var(--radius-sm, 6px); margin-bottom: 12px;
}
.product-card-image img { width: 100%; height: 100%; object-fit: cover; }
.product-card-body { padding: 0; }
.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: 500; color: var(--text-primary);
    margin-bottom: 6px; 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: 8px; }
.product-card-stars { display: flex; gap: 1px; color: var(--accent-color, var(--warning-color)); }
.product-card-stars svg { width: 12px; height: 12px; fill: currentColor; stroke: none; }
.product-card-stars .empty { color: var(--border-color); }
.product-card-rating span { font-size: 11px; color: var(--text-secondary); }
.product-card-footer { display: flex; align-items: center; justify-content: space-between; }
.product-card-price { font-size: 16px; font-weight: 600; color: var(--text-primary); }
.product-card-cart-btn {
    width: 32px; height: 32px; border-radius: 50%;
    border: 1px solid var(--border-color); background: transparent;
    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); color: var(--primary-color); }
.product-card-cart-btn svg { width: 14px; height: 14px; 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: -1px; }
.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 {
    font-size: 20px; font-weight: 800; color: var(--text-primary);
    text-decoration: none; flex-shrink: 0;
}
.footer-logo span { color: var(--primary-color); }
.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, 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; }

/* ── 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; }
}
@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; }
}

/* ── LIWCIA KITCHEN REFRESH ── */
:root {
    --primary-color: #17625c;
    --primary-light: #6fa89a;
    --primary-dark: #0f3533;
    --primary-vibrant: #d6a84f;
    --secondary-color: #d6a84f;
    --secondary-light: #ead49a;
    --secondary-dark: #8d6428;
    --accent-color: #7c5360;
    --accent-light: #b9838e;
    --accent-dark: #57333d;
    --gradient-primary: linear-gradient(135deg, #17625c, #d6a84f);
    --gradient-secondary: linear-gradient(135deg, #0f3533, #7c5360);
    --gradient-accent: linear-gradient(90deg, #17625c, #d6a84f, #7c5360);
    --gradient-vibrant: linear-gradient(45deg, #d6a84f, #17625c);
    --gradient-soft: linear-gradient(180deg, #f7fbf9, #e1eee9);
    --text-primary: #142826;
    --text-secondary: #52635f;
    --text-tertiary: #778681;
    --bg-primary: #ffffff;
    --bg-secondary: #f4f8f6;
    --bg-tertiary: #e8f0ec;
    --border-color: #dbe7e2;
    --shadow-colored: 0 16px 38px rgba(23, 98, 92, 0.18);
    --primary-rgb: 23, 98, 92;
}

body {
    background:
        linear-gradient(180deg, #ffffff 0, #ffffff 62%, #f4f8f6 100%);
}

.header {
    border-bottom: 1px solid rgba(20, 40, 38, 0.12);
    box-shadow: 0 10px 28px rgba(20, 40, 38, 0.06);
}

.header-logo,
.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 0.4px;
    text-transform: none;
}

.header-logo-mark {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.footer-logo-mark {
    width: 38px;
    height: 38px;
    object-fit: contain;
}

.header-logo span,
.footer-logo span {
    color: var(--text-primary);
}

.header-phone {
    padding: 7px 14px;
    border: 1px solid var(--border-color);
    border-radius: 999px;
    background: #fff;
}

.header-action-btn {
    border-radius: 999px;
    background: var(--bg-secondary);
}

.hero {
    padding: 72px 0 82px;
    background:
        linear-gradient(110deg, #ffffff 0 58%, #e8f0ec 58% 100%),
        repeating-linear-gradient(90deg, transparent 0 36px, rgba(23, 98, 92, 0.035) 36px 37px);
}

.hero .container {
    grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
}

.hero-badge {
    border-radius: 8px;
    color: var(--primary-dark);
    background: #edf6f2;
}

.hero h1 {
    font-size: clamp(38px, 5vw, 64px);
    line-height: 1.02;
    letter-spacing: 0;
}

.hero h1 em {
    color: var(--secondary-color);
    background: linear-gradient(120deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    max-width: 590px;
}

.hero-stat-num {
    color: var(--primary-dark);
}

.hero-image-main {
    aspect-ratio: 4 / 3;
    border-radius: 8px;
    background: #e7efeb url('../assets/hero-kitchenware.png') center/cover no-repeat;
    border: 1px solid rgba(20, 40, 38, 0.14);
    box-shadow: 0 24px 54px rgba(20, 40, 38, 0.18);
}

.hero-visual {
    width: 100%;
}

.hero-float-card {
    border-radius: 8px;
    box-shadow: 0 18px 40px rgba(20, 40, 38, 0.14);
}

.category-card {
    min-width: 168px;
    border-radius: 8px;
    background: #fff;
    border-color: var(--border-color);
}

.category-icon {
    border-radius: 8px;
}

.section {
    padding: 78px 0;
}

.product-grid {
    gap: 28px;
}

.product-card {
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 12px 28px rgba(20, 40, 38, 0.06);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.product-card:hover {
    opacity: 1;
    transform: translateY(-4px);
    border-color: rgba(23, 98, 92, 0.34);
    box-shadow: 0 18px 38px rgba(20, 40, 38, 0.11);
}

.product-card-image {
    aspect-ratio: 1 / 1;
    border-radius: 8px;
    background: var(--gradient-soft);
    margin-bottom: 14px;
}

.product-card-image img {
    object-fit: cover;
}

.product-card-body {
    padding: 4px 2px 2px;
}

.product-card-category {
    color: var(--primary-color);
    font-weight: 700;
}

.product-card-title {
    min-height: 40px;
    font-weight: 650;
}

.product-card-price {
    color: var(--primary-dark);
}

.product-card-cart-btn {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

.product-card-cart-btn:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--primary-dark);
}

.promo-banner {
    padding: 0 0 78px;
}

.promo-inner {
    border-radius: 8px;
    background:
        linear-gradient(120deg, rgba(15, 53, 51, 0.96), rgba(23, 98, 92, 0.92)),
        url('../assets/hero-kitchenware.png') center/cover no-repeat;
    min-height: 250px;
}

.promo-inner::before,
.promo-inner::after {
    display: none;
}

.feature-card,
.product-gallery-main,
.product-meta,
.cart-content {
    border-radius: 8px;
}

.product-gallery-main {
    background: var(--gradient-soft);
}

.product-main-img {
    object-fit: cover;
}

.main-content h1,
.main-content h2,
.main-content h3 {
    color: var(--primary-dark);
    letter-spacing: 0;
}

.contact-section,
.shipping-details,
.warranty-return {
    display: grid;
    gap: 24px;
}

.contact-info-block,
.feedback-section,
.location-map,
.zone,
.payment-card,
.guarantee-item,
.delivery-policy,
.exchange-info,
.contact-support {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 22px;
    box-shadow: 0 12px 28px rgba(20, 40, 38, 0.06);
}

.shipping-zones,
.payment-grid,
.guarantees {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        display: flex;
        width: 100%;
        max-width: 720px;
    }

    .shipping-zones,
    .payment-grid,
    .guarantees {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 44px 0 54px;
        background: #fff;
    }

    .hero h1 {
        font-size: 34px;
    }

    .hero-image-main {
        aspect-ratio: 4 / 3;
    }

    .header-logo span {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 30px;
    }

    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .product-card {
        padding: 8px;
    }

    .product-card-body {
        padding: 2px 0 0;
    }
}
