/* Checkout form sections */
.form-section {
    padding: 20px 0;
    border-top: 1px solid var(--border);
}
.form-section:first-of-type { border-top: none; padding-top: 0; }
.form-section-title {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 16px;
}

/* Payment methods */
.payment-methods {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.payment-method {
    cursor: pointer;
    margin: 0;
}
.payment-method input { display: none; }
.payment-method-inner {
    padding: 14px 12px;
    border: 1.5px solid var(--border);
    border-radius: 12px;
    text-align: center;
    transition: all 0.2s;
    height: 100%;
}
.payment-method-inner i {
    font-size: 1.3rem;
    display: block;
    margin-bottom: 6px;
    color: var(--text-light);
}
.payment-method-inner span {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
}
.payment-method-inner small {
    display: block;
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-top: 2px;
}
.payment-method input:checked + .payment-method-inner {
    border-color: var(--text);
    background: var(--bg-light);
}
.payment-method input:checked + .payment-method-inner i {
    color: var(--text);
}

/* Delivery zones list */
.zones-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.zone-row {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 16px;
    align-items: center;
    padding: 12px 0;
    border-top: 1px solid var(--border);
    font-size: 0.9rem;
}
.zone-row:first-child { border-top: none; padding-top: 0; }
.zone-name { color: var(--text); }
.zone-price {
    font-weight: 600;
    white-space: nowrap;
    color: var(--text);
}
.zone-interval {
    color: var(--text-muted);
    font-size: 0.8rem;
    white-space: nowrap;
}
@media (max-width: 600px) {
    .zone-row {
        grid-template-columns: 1fr auto;
        row-gap: 2px;
    }
    .zone-name { grid-column: 1 / -1; }
    .zone-price { grid-column: 1; }
    .zone-interval { grid-column: 2; text-align: right; }
}

/* Pickup addresses */
.pickup-addresses {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.pickup-addr { cursor: pointer; margin: 0; }
.pickup-addr input { display: none; }
.pickup-addr-inner {
    padding: 14px 16px;
    border: 1.5px solid var(--border);
    border-radius: 12px;
    transition: all 0.2s;
    height: 100%;
}
.pickup-addr-inner strong {
    display: block;
    font-size: 0.88rem;
    font-weight: 500;
    margin-bottom: 4px;
}
.pickup-addr-inner small {
    display: block;
    color: var(--text-muted);
    font-size: 0.78rem;
}
.pickup-addr input:checked + .pickup-addr-inner {
    border-color: var(--text);
    background: var(--bg-light);
}
@media (max-width: 600px) {
    .pickup-addresses { grid-template-columns: 1fr; }
}

/* Totals */
.totals-block {
    padding: 20px;
    background: var(--bg-light);
    border-radius: 12px;
    margin-top: 24px;
}
.totals-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--text-light);
}
.totals-row.totals-final {
    padding-top: 10px;
    border-top: 1px solid var(--border);
    margin-top: 8px;
    margin-bottom: 0;
    font-size: 1.1rem;
    color: var(--text);
}

/* Card template buttons */
.card-tpl.selected {
    background: var(--text);
    color: #fff;
    border-color: var(--text);
}

/* Date quick buttons */
.date-quick.selected {
    background: var(--text);
    color: #fff;
    border-color: var(--text);
}

@media (max-width: 600px) {
    .payment-methods { grid-template-columns: 1fr; }
}

/* Cookie consent */
.cookie-consent {
    position: fixed;
    bottom: 16px;
    left: 16px;
    right: 16px;
    max-width: 700px;
    margin: 0 auto;
    z-index: 9999;
    animation: cookieSlideUp 0.4s ease;
}
.cookie-consent.hide {
    animation: cookieSlideDown 0.3s ease forwards;
}
.cookie-consent-inner {
    background: #1a1a1a;
    color: #fff;
    padding: 20px 24px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    gap: 20px;
}
.cookie-consent-text {
    flex: 1;
    font-size: 0.82rem;
    line-height: 1.5;
    color: rgba(255,255,255,0.85);
}
.cookie-consent-text a {
    color: #fff;
    text-decoration: underline;
}
.cookie-consent-text a:hover { opacity: 0.8; }
.cookie-consent-btn {
    padding: 10px 24px;
    background: #fff;
    color: #1a1a1a;
    border: none;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s;
}
.cookie-consent-btn:hover { background: #f0f0f0; }

@keyframes cookieSlideUp {
    from { transform: translateY(100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
@keyframes cookieSlideDown {
    from { transform: translateY(0); opacity: 1; }
    to { transform: translateY(100%); opacity: 0; }
}

@media (max-width: 600px) {
    .cookie-consent-inner {
        flex-direction: column;
        gap: 12px;
        padding: 16px;
    }
    .cookie-consent-btn { width: 100%; }
    .cookie-consent-text { font-size: 0.78rem; text-align: center; }
}

/* ─── Fonts ─── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ─── Colors ─── */
:root {
    --bg: #ffffff;
    --bg-light: #f7f7f7;
    --bg-dark: #1a1a1a;
    --text: #1a1a1a;
    --text-light: #6b6b6b;
    --text-muted: #999;
    --border: #e5e5e5;
    --card-radius: 16px;
    --btn-radius: 12px;
}

/* ─── Reset & Global ─── */
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body {
    overscroll-behavior-y: none;
}
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    max-width: 100vw;
    overflow-x: clip;
    margin: 0;
    padding: 0;
}
a { color: var(--text); text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

/* ═══════════════════════════════════════
   TOP INFO BAR
   ═══════════════════════════════════════ */
.top-bar {
    background: var(--bg-light);
    border-bottom: 1px solid var(--border);
    font-size: 0.78rem;
    color: var(--text-light);
    padding: 8px 0;
}
.top-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.top-bar-left {
    display: flex;
    align-items: center;
    gap: 24px;
}
.top-bar-left a,
.top-bar-left span {
    color: var(--text-light);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}
.top-bar-phone {
    font-weight: 600;
    color: var(--text);
    font-size: 0.85rem;
    white-space: nowrap;
}
.top-bar-social {
    display: flex;
    gap: 8px;
}
.top-bar-social a {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--text);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    transition: opacity 0.2s;
}
.top-bar-social a:hover { opacity: 0.7; }

/* ═══════════════════════════════════════
   HEADER
   ═══════════════════════════════════════ */
.site-header {
    background: var(--bg);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

/* Logo */
.header-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
}
.logo-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.logo-icon img { width: 100%; height: 100%; object-fit: contain; }
.logo-text {
    font-size: 2.3rem;
    font-weight: 800;
    color: var(--text);
    letter-spacing: 0.05em;
    line-height: 1;
}
.logo-ratings {
    display: flex;
    flex-direction: column;
    gap: 1px;
    margin-left: 8px;
}
.logo-rating {
    font-size: 0.7rem;
    color: var(--text-light);
    white-space: nowrap;
}
.logo-rating .star { color: #f5a623; }

/* Nav */
.header-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-left: auto;
    margin-right: 24px;
}
.header-nav a {
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--text);
    transition: color 0.2s;
}
.header-nav a:hover { color: var(--text-light); }

/* Search */
.header-search {
    position: relative;
    flex: 0 1 220px;
}
.header-search input {
    width: 100%;
    padding: 10px 16px 10px 38px;
    border: 1.5px solid var(--border);
    border-radius: 100px;
    font-size: 0.85rem;
    outline: none;
    transition: border-color 0.2s;
    background: var(--bg);
}
.header-search input:focus { border-color: var(--text); }
.header-search i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Cart */
.header-cart {
    position: relative;
    font-size: 1.4rem;
    color: var(--text);
    display: flex;
    align-items: center;
}
.cart-badge {
    position: absolute;
    top: -5px;
    right: -8px;
    background: var(--text);
    color: #fff;
    font-size: 0.6rem;
    font-weight: 700;
    min-width: 17px;
    height: 17px;
    line-height: 17px;
    text-align: center;
    border-radius: 50%;
    padding: 0 4px;
}

/* Menu toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text);
    cursor: pointer;
}

/* ═══════════════════════════════════════
   CATEGORY TABS BAR
   ═══════════════════════════════════════ */
.category-tabs {
    border-bottom: 1px solid var(--border);
    background: var(--bg);
}
.category-tabs-inner {
    display: flex;
    align-items: stretch;
    overflow-x: auto;
    scrollbar-width: none;
}
.category-tabs-inner::-webkit-scrollbar { display: none; }
.category-tab {
    flex: 1;
    text-align: center;
    padding: 16px 20px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text);
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s;
}
.category-tab:hover { background: var(--bg-light); }
.category-tab.active { background: var(--bg-light); font-weight: 700; }

/* ═══════════════════════════════════════
   HERO SLIDER
   ═══════════════════════════════════════ */
.hero-slider {
    position: relative;
    height: 400px;
    overflow: hidden;
    background: #f0f0f0;
}
.hero-slides { position: relative; width: 100%; height: 100%; }
.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}
.hero-slide.active {
    opacity: 1;
    pointer-events: auto;
}
.hero-slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-slide-link {
    position: absolute;
    inset: 0;
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}
.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0) 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 48px;
}
.hero-slide-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1.15;
    margin: 0;
}
.hero-slide-subtitle {
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
    margin: 12px 0 0;
}
.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.85);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--text);
    transition: background 0.2s, transform 0.2s;
    z-index: 10;
}
.hero-arrow:hover {
    background: #fff;
    transform: translateY(-50%) scale(1.08);
}
.hero-arrow-left { left: 20px; }
.hero-arrow-right { right: 20px; }
.hero-dots {
    position: absolute;
    bottom: 20px;
    left: 48px;
    display: flex;
    gap: 8px;
    z-index: 10;
}
.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: background 0.2s;
}
.hero-dot.active { background: #fff; }
.hero-dot:hover { background: rgba(255,255,255,0.7); }

/* ═══════════════════════════════════════
   CATEGORY CIRCLES
   ═══════════════════════════════════════ */
.section { padding: 48px 0; }
.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
}
.section-title {
    font-size: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}
.section-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text);
    text-decoration: none;
    padding: 10px 24px;
    border: 1.5px solid var(--border);
    border-radius: 100px;
    transition: border-color 0.2s;
    white-space: nowrap;
}
.section-link:hover { border-color: var(--text); }

.category-circles {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    padding: 32px 0 16px;
}
.category-circle {
    flex: 0 0 auto;
}
.category-circle {
    text-align: center;
    text-decoration: none;
    color: var(--text);
    transition: transform 0.2s;
}
.category-circle:hover { transform: translateY(-4px); }
.category-circle-img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 12px;
    border: 2px solid var(--border);
    background: var(--bg-light);
}
.category-circle-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.category-circle-name {
    font-size: 0.85rem;
    font-weight: 500;
}

/* Full-width catalog button */
.catalog-btn-full {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 18px;
    border: 1.5px solid var(--border);
    border-radius: 100px;
    background: transparent;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--text);
    text-decoration: none;
    transition: border-color 0.2s, background 0.2s;
    margin: 24px 0;
}
.catalog-btn-full:hover {
    border-color: var(--text);
    background: var(--bg-light);
    color: var(--text);
}

/* ═══════════════════════════════════════
   PRODUCT GRID
   ═══════════════════════════════════════ */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* ═══════════════════════════════════════
   PRODUCT CARD
   ═══════════════════════════════════════ */
.product-card {
    background: var(--bg);
    border-radius: var(--card-radius);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}
.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}
.product-card-img {
    aspect-ratio: 1;
    overflow: hidden;
    background: #f5f5f5;
    border-radius: var(--card-radius);
}
.product-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.product-card:hover .product-card-img img {
    transform: scale(1.05);
}
.product-card-body {
    padding: 14px 4px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.product-card-title {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 6px;
    line-height: 1.4;
    min-height: 2.8em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.product-card-title a { color: var(--text); }
.product-card-bottom {
    margin-top: auto;
}
.product-card-price {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
}
.product-card-btn {
    width: 100%;
    padding: 10px;
    border: 1.5px solid var(--border);
    background: transparent;
    color: var(--text);
    font-size: 0.82rem;
    font-weight: 500;
    border-radius: var(--btn-radius);
    cursor: pointer;
    transition: all 0.2s;
}
.product-card-btn:hover {
    background: var(--text);
    color: #fff;
    border-color: var(--text);
}

/* ═══════════════════════════════════════
   ADVANTAGES
   ═══════════════════════════════════════ */
.advantages {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.advantage {
    text-align: center;
    padding: 32px 16px;
    border: 1px solid var(--border);
    border-radius: var(--card-radius);
}
.advantage i { font-size: 1.6rem; color: var(--text); margin-bottom: 12px; display: block; }
.advantage h6 { font-size: 0.88rem; font-weight: 600; margin-bottom: 4px; }
.advantage small { color: var(--text-muted); font-size: 0.78rem; }

/* ═══════════════════════════════════════
   FAQ
   ═══════════════════════════════════════ */
.faq-section { background: var(--bg-light); }
.accordion-item {
    border: 1px solid var(--border) !important;
    border-radius: var(--card-radius) !important;
    overflow: hidden;
    margin-bottom: 10px;
}
.accordion-button {
    font-weight: 500;
    font-size: 0.92rem;
    padding: 18px 24px;
    background: var(--bg) !important;
    color: var(--text) !important;
    box-shadow: none !important;
}
.accordion-body {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.7;
    padding: 0 24px 18px;
}

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
.site-footer {
    background: var(--bg-dark);
    color: rgba(255,255,255,0.6);
    padding: 56px 0 28px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
.footer-brand {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
}
.footer-text { font-size: 0.82rem; line-height: 1.7; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    transition: all 0.2s;
}
.footer-social a:hover { border-color: #fff; color: #fff; }
.footer-col h6 {
    color: #fff;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 16px;
}
.footer-col a {
    display: block;
    color: rgba(255,255,255,0.45);
    font-size: 0.82rem;
    margin-bottom: 10px;
    transition: color 0.2s;
}
.footer-col a:hover { color: #fff; }
.footer-col p {
    font-size: 0.82rem;
    margin-bottom: 8px;
    color: rgba(255,255,255,0.45);
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.25);
}

/* ═══════════════════════════════════════
   BREADCRUMBS
   ═══════════════════════════════════════ */
.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 0;
    font-size: 0.8rem;
    color: var(--text-muted);
}
.breadcrumbs a { color: var(--text-muted); transition: color 0.2s; }
.breadcrumbs a:hover { color: var(--text); }

/* ═══════════════════════════════════════
   CATALOG PAGE
   ═══════════════════════════════════════ */
.category-pills {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}
.category-pill {
    padding: 10px 24px;
    border: 1.5px solid var(--border);
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text);
    transition: all 0.2s;
}
.category-pill:hover { border-color: var(--text); color: var(--text); }
.category-pill.active {
    background: var(--text);
    color: #fff;
    border-color: var(--text);
}
.sort-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-size: 0.82rem;
    color: var(--text-muted);
}
.sort-bar select {
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 0.8rem;
}

/* ═══════════════════════════════════════
   CATALOG FILTERS
   ═══════════════════════════════════════ */
.catalog-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 32px;
    align-items: start;
}
.catalog-filters {
    position: sticky;
    top: 140px;
    border: 1px solid var(--border);
    border-radius: var(--card-radius);
    padding: 20px;
    background: var(--bg);
}
.filters-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}
.filters-header h3 { font-size: 1.05rem; font-weight: 700; margin: 0; }
.filters-close { display: none; background: none; border: none; font-size: 1.2rem; cursor: pointer; color: var(--text-muted); }
.filter-section {
    padding: 14px 0;
    border-top: 1px solid var(--border);
}
.filter-title {
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0 0 10px;
    color: var(--text);
}
.filter-price-row {
    display: flex;
    align-items: center;
    gap: 8px;
}
.filter-price-input {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 0.82rem;
    outline: none;
}
.filter-price-input:focus { border-color: var(--text); }

/* Price range slider */
.price-slider-wrap {
    position: relative;
    height: 28px;
    margin-top: 12px;
}
.price-slider-track {
    position: absolute;
    top: 50%;
    left: 0; right: 0;
    height: 4px;
    transform: translateY(-50%);
    background: var(--border);
    border-radius: 2px;
    pointer-events: none;
}
.price-slider-track::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    left: var(--left, 0%);
    right: var(--right, 0%);
    background: var(--text);
    border-radius: 2px;
}
.price-range {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
    pointer-events: none;
    margin: 0;
}
.price-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--text);
    border: 2px solid #fff;
    box-shadow: 0 1px 4px rgba(0,0,0,0.25);
    cursor: pointer;
    pointer-events: all;
}
.price-range::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--text);
    border: 2px solid #fff;
    box-shadow: 0 1px 4px rgba(0,0,0,0.25);
    cursor: pointer;
    pointer-events: all;
}
.filter-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.filter-link {
    font-size: 0.85rem;
    color: var(--text-light);
    padding: 2px 0;
    transition: color 0.2s;
}
.filter-link:hover { color: var(--text); }
.filter-check, .filter-radio {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-light);
    cursor: pointer;
}
.filter-check input, .filter-radio input { accent-color: var(--text); cursor: pointer; }
.filter-colors {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.filter-color {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    cursor: pointer;
}
.filter-color input { display: none; }
.filter-color-dot {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    flex-shrink: 0;
    transition: transform 0.2s, box-shadow 0.2s;
}
.filter-color:hover .filter-color-dot {
    transform: scale(1.15);
}
.filter-color input:checked + .filter-color-dot {
    box-shadow: 0 0 0 2.5px var(--bg), 0 0 0 4px var(--text);
    transform: scale(1.1);
}
.filter-color-name {
    font-size: 0.62rem;
    color: var(--text-muted);
    text-align: center;
    line-height: 1.2;
}
.filter-actions {
    padding-top: 16px;
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.filter-btn-reset {
    width: 100%;
    padding: 10px;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.82rem;
    text-decoration: none;
    transition: color 0.2s;
}
.filter-btn-reset:hover { color: var(--text); }
.filter-toggle-mobile {
    display: none;
    padding: 10px 20px;
    border: 1.5px solid var(--border);
    border-radius: var(--btn-radius);
    background: var(--bg);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    margin-bottom: 16px;
}
.catalog-main { min-width: 0; }

@media (max-width: 768px) {
    .catalog-layout { grid-template-columns: 1fr; }
    .catalog-filters {
        position: fixed;
        top: 0; left: -100%; bottom: 0;
        width: 280px;
        z-index: 2000;
        border-radius: 0;
        border: none;
        box-shadow: 4px 0 24px rgba(0,0,0,0.15);
        overflow-y: auto;
        transition: left 0.3s ease;
    }
    .catalog-filters.open { left: 0; }
    .filters-close { display: block; }
    .filter-toggle-mobile { display: inline-flex; align-items: center; }
}

/* ═══════════════════════════════════════
   PRODUCT PAGE
   ═══════════════════════════════════════ */
.product-page { padding: 24px 0 60px; }
.product-gallery-wrap { position: relative; }
.product-gallery {
    position: relative;
    border-radius: var(--card-radius);
    overflow: hidden;
    background: #f5f5f5;
}
.product-gallery > img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    transition: opacity 0.3s;
}
.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.85);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--text);
    transition: background 0.2s;
    z-index: 5;
}
.gallery-arrow:hover { background: #fff; }
.gallery-arrow-left { left: 12px; }
.gallery-arrow-right { right: 12px; }
.gallery-counter {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(0,0,0,0.5);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
}
.gallery-thumbs {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    overflow-x: auto;
    scrollbar-width: thin;
    padding-bottom: 4px;
}
.gallery-thumb {
    width: 64px;
    height: 64px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    flex-shrink: 0;
    border: 2px solid transparent;
    opacity: 0.6;
    transition: opacity 0.2s, border-color 0.2s;
}
.gallery-thumb.active {
    border-color: var(--text);
    opacity: 1;
}
.gallery-thumb:hover { opacity: 1; }
.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.product-info { padding-left: 40px; }
.product-info h1 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
}
.product-price-big {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 24px;
}
.product-meta-top { margin-bottom: 8px; }
.product-category-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.product-composition {
    font-size: 0.88rem;
    color: var(--text-light);
    margin-bottom: 12px;
    line-height: 1.6;
}
.comp-label { font-weight: 600; color: var(--text); }
.product-dimensions {
    display: flex;
    gap: 20px;
    margin-bottom: 16px;
    font-size: 0.82rem;
    color: var(--text-muted);
}
.product-dimensions i { margin-right: 4px; }
.product-description {
    color: var(--text-light);
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 20px;
}
/* Variant selector */
.variant-selector {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.variant-btn {
    padding: 10px 18px;
    border: 1.5px solid var(--border);
    background: var(--bg);
    border-radius: var(--btn-radius);
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 80px;
}
.variant-btn:hover { border-color: var(--text); }
.variant-btn.active {
    background: var(--text);
    color: #fff;
    border-color: var(--text);
}
.variant-label {
    font-size: 0.88rem;
    font-weight: 600;
}
.variant-price {
    font-size: 0.75rem;
    opacity: 0.7;
}

/* Buy row (qty + buy button) */
.buy-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    max-width: 280px;
}
.qty-control {
    display: flex;
    align-items: center;
    border: 1.5px solid var(--border);
    border-radius: 100px;
    overflow: hidden;
    height: 44px;
}
.qty-btn {
    width: 44px;
    height: 44px;
    border: none;
    background: transparent;
    font-size: 1.1rem;
    color: var(--text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s;
}
.qty-btn:hover { background: var(--bg-light); }
.qty-value {
    min-width: 28px;
    text-align: center;
    font-size: 0.95rem;
    font-weight: 600;
}
.buy-btn {
    flex: 1;
    height: 44px;
    border: 1.5px solid var(--text);
    background: transparent;
    color: var(--text);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}
.buy-btn:hover { background: var(--text); color: #fff; }

/* Secondary action buttons */
.product-actions-secondary {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}
.product-btn-wa {
    max-width: 280px;
    padding: 8px 20px;
    background: #2AABEE;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 0.82rem;
    font-weight: 500;
    text-align: center;
    display: block;
    text-decoration: none;
    transition: background 0.2s;
}
.product-btn-wa:hover { background: #229ED9; color: #fff; }
.product-btn-call {
    max-width: 280px;
    padding: 8px 20px;
    border: 1.5px solid var(--border);
    background: transparent;
    color: var(--text);
    border-radius: 10px;
    font-size: 0.82rem;
    font-weight: 500;
    text-align: center;
    display: block;
    text-decoration: none;
    transition: border-color 0.2s;
}
.product-btn-call:hover { border-color: var(--text); color: var(--text); }

/* Legacy buttons for cart/delivery pages */
.btn-buy {
    width: 100%;
    padding: 14px;
    background: var(--text);
    color: #fff;
    border: none;
    border-radius: var(--btn-radius);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    margin-bottom: 10px;
}
.btn-buy:hover { background: #333; }
.btn-whatsapp {
    width: 100%;
    padding: 12px;
    background: #25d366;
    color: #fff;
    border: none;
    border-radius: var(--btn-radius);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    text-align: center;
    display: block;
    transition: background 0.2s;
}
.btn-whatsapp:hover { background: #1da851; color: #fff; }
.product-features-row {
    display: flex;
    gap: 16px;
    padding: 12px 0;
    border-top: 1px solid var(--border);
    margin-bottom: 4px;
}
.pf-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    color: var(--text-muted);
}
.pf-item i { font-size: 0.9rem; color: var(--text-light); }

/* Gifts (always visible) */
.product-gifts {
    padding: 16px 0;
    border-top: 1px solid var(--border);
}
.product-gifts h4 {
    font-size: 0.88rem;
    font-weight: 600;
    margin: 0 0 12px;
}
.gift-row {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 10px;
}
.gift-img {
    width: 52px;
    height: 52px;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
}
.gift-row strong { font-size: 0.85rem; display: block; }
.gift-row p { margin: 0; font-size: 0.78rem; color: var(--text-muted); line-height: 1.4; }

/* Keep old .product-feature for compatibility */
.product-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.82rem;
    color: var(--text-light);
}
.product-feature i { font-size: 1.1rem; color: var(--text); }
/* Product info blocks (always visible) */
.product-info-block {
    padding: 14px 0;
    border-top: 1px solid var(--border);
}
.product-info-block h4 {
    font-size: 0.85rem;
    font-weight: 600;
    margin: 0 0 8px;
}
.product-info-block p {
    font-size: 0.82rem;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

/* Product details accordion (kept for backward compat) */
.product-details {
    margin-top: 20px;
}
.product-detail-section {
    border-top: 1px solid var(--border);
    padding: 16px 0;
}
.product-detail-section h4 {
    font-size: 0.92rem;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
}
.product-detail-section h4 i { font-size: 1rem; color: var(--text-light); }
.detail-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}
.toggle-icon {
    transition: transform 0.3s;
    color: var(--text-muted);
    font-size: 0.85rem;
}
.product-detail-section.open .toggle-icon {
    transform: rotate(180deg);
}
.detail-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.product-detail-section.open .detail-content {
    max-height: 500px;
}
.detail-content p {
    margin: 12px 0 0;
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.7;
}
.detail-gift {
    display: flex;
    gap: 12px;
    margin-top: 12px;
}
.detail-gift > i {
    font-size: 1.2rem;
    color: var(--text);
    margin-top: 2px;
    flex-shrink: 0;
}
.detail-gift > img {
    flex-shrink: 0;
}
.detail-gift strong { font-size: 0.88rem; display: block; margin-bottom: 2px; }
.detail-gift p { margin: 0; font-size: 0.82rem; color: var(--text-muted); line-height: 1.5; }

.related-section {
    margin-top: 56px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
}

/* ═══════════════════════════════════════
   CART PAGE
   ═══════════════════════════════════════ */
.cart-item {
    display: flex;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
    align-items: center;
}
.cart-item-img {
    width: 90px;
    height: 90px;
    border-radius: 12px;
    object-fit: cover;
    flex-shrink: 0;
}
.cart-item-info { flex: 1; }
.cart-item-info h6 { margin: 0 0 4px; font-size: 0.92rem; font-weight: 500; }
.cart-item-price { font-size: 0.95rem; font-weight: 600; }
.cart-item-qty { display: flex; align-items: center; gap: 12px; }
.cart-item-qty button {
    width: 34px; height: 34px;
    border: 1.5px solid var(--border);
    background: var(--bg);
    border-radius: 10px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cart-item-qty button:hover { border-color: var(--text); }
.cart-item-qty span { font-weight: 600; min-width: 20px; text-align: center; }
.cart-item-total { font-weight: 700; font-size: 1rem; min-width: 100px; text-align: right; }
.cart-remove {
    background: none; border: none; color: var(--text-muted);
    cursor: pointer; font-size: 1.1rem; padding: 4px; transition: color 0.2s;
}
.cart-remove:hover { color: #e53935; }

/* ═══════════════════════════════════════
   INFO CARDS
   ═══════════════════════════════════════ */
.info-card {
    border: 1px solid var(--border);
    border-radius: var(--card-radius);
    padding: 28px;
    margin-bottom: 16px;
    transition: box-shadow 0.3s;
}
.info-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.04); }
.info-card h5 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ═══════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════ */
.btn-primary-dark {
    display: inline-block;
    padding: 12px 32px;
    background: var(--text);
    color: #fff;
    border: none;
    border-radius: var(--btn-radius);
    font-size: 0.88rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
}
.btn-primary-dark:hover { background: #333; color: #fff; }
.btn-outline {
    display: inline-block;
    padding: 12px 28px;
    background: transparent;
    color: var(--text);
    border: 1.5px solid var(--border);
    border-radius: var(--btn-radius);
    font-size: 0.88rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}
.btn-outline:hover { border-color: var(--text); color: var(--text); }

/* ═══════════════════════════════════════
   FORMS
   ═══════════════════════════════════════ */
.form-control, .form-select {
    border: 1.5px solid var(--border);
    border-radius: var(--btn-radius);
    padding: 12px 16px;
    font-size: 0.88rem;
}
.form-control:focus, .form-select:focus {
    border-color: var(--text);
    box-shadow: none;
}
.form-label { font-size: 0.8rem; font-weight: 500; color: var(--text-light); margin-bottom: 6px; }

/* ═══════════════════════════════════════
   TOAST
   ═══════════════════════════════════════ */
.toast-notification {
    position: fixed;
    bottom: 24px;
    right: 24px;
    padding: 14px 24px;
    background: var(--text);
    color: #fff;
    border-radius: var(--btn-radius);
    font-size: 0.85rem;
    font-weight: 500;
    z-index: 9999;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    animation: slideUp 0.3s ease;
}
@keyframes slideUp {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* ═══════════════════════════════════════
   MAP BLOCK
   ═══════════════════════════════════════ */
.map-block {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 32px;
    align-items: stretch;
}
.map-container {
    min-height: 400px;
    border-radius: 16px;
    overflow: hidden;
    background: var(--bg-light);
}
.map-info {
    display: flex;
    flex-direction: column;
    gap: 28px;
}
.map-info-section h5 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.map-address {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.88rem;
    line-height: 1.6;
}
.map-address i {
    color: #e53935;
    font-size: 1rem;
    margin-top: 3px;
    flex-shrink: 0;
}
.map-address a {
    color: var(--text);
    font-size: 0.85rem;
}
.map-contacts {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.map-contacts a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    color: var(--text-light);
    transition: color 0.2s;
}
.map-contacts a:hover { color: var(--text); }
.map-contacts a i { font-size: 1rem; width: 20px; }

@media (max-width: 768px) {
    .map-block {
        grid-template-columns: 1fr;
    }
    .map-container { min-height: 280px; }
}

/* ═══════════════════════════════════════
   ADMIN
   ═══════════════════════════════════════ */
.admin-sidebar {
    width: 240px;
    min-height: calc(100vh - 56px);
    background: #1a1a2e;
}
.admin-sidebar .nav-link {
    color: rgba(255,255,255,0.55);
    padding: 0.75rem 1.25rem;
    font-size: 0.85rem;
    transition: all 0.2s;
}
.admin-sidebar .nav-link:hover,
.admin-sidebar .nav-link.active { color: #fff; background: rgba(255,255,255,0.08); }
.admin-sidebar .nav-link i { width: 24px; }
.admin-content {
    flex: 1;
    padding: 1.5rem;
    background: #f5f5f5;
    min-height: calc(100vh - 56px);
}
.status-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 500;
}
.status-new { background: #e3f2fd; color: #1565c0; }
.status-confirmed { background: #fff3e0; color: #e65100; }
.status-preparing { background: #fce4ec; color: #c2185b; }
.status-delivering { background: #e8eaf6; color: #283593; }
.status-completed { background: #e8f5e9; color: #1b5e20; }
.status-cancelled { background: #fafafa; color: #757575; }

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */
@media (max-width: 1024px) {
    .products-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .advantages { grid-template-columns: repeat(2, 1fr); }
    .top-bar-left { gap: 12px; }
}
@media (max-width: 768px) {
    .top-bar { display: none; }
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .hero-slider { height: 260px; }
    .hero-slide-title { font-size: 1.5rem; }
    .hero-slide-overlay { padding: 24px; }
    .hero-arrow { width: 36px; height: 36px; font-size: 0.9rem; }
    .hero-dots { left: 24px; bottom: 14px; }
    .header-nav { display: none; }
    .header-search { display: none; }
    .menu-toggle { display: block; }
    .product-info { padding-left: 0; margin-top: 24px; }
    .footer-grid { grid-template-columns: 1fr; gap: 24px; }
    .advantages { grid-template-columns: 1fr 1fr; }
    .section { padding: 32px 0; }
    .category-circles {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
        max-width: 100%;
        padding: 20px 0 8px;
    }
    .category-circle-img { width: 90px; height: 90px; max-width: 100%; }
    .category-circle-name { font-size: 0.75rem; }
    .category-tabs-inner { gap: 0; }
    .category-tab { padding: 12px 16px; font-size: 0.75rem; }
    .header-nav.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0; right: 0;
        background: var(--bg);
        border-bottom: 1px solid var(--border);
        padding: 16px 24px;
        gap: 12px;
        box-shadow: 0 8px 24px rgba(0,0,0,0.06);
        z-index: 999;
    }
    .admin-sidebar { width: 100%; min-height: auto; }
}
@media (max-width: 480px) {
    .product-card-body { padding: 10px 2px; }
    .product-card-title { font-size: 0.78rem; }
    .product-card-price { font-size: 0.9rem; }
    .category-pill { padding: 8px 16px; font-size: 0.78rem; }
}
