/* ═══════════════════════════════════════════════
   ZFS Solution — Main Stylesheet
   Magento 2.4.7 Custom Theme
   ═══════════════════════════════════════════════ */

/* ── Variables ── */
:root {
    --zfs-bg:         #0d0e10;
    --zfs-bg-2:       #13151a;
    --zfs-bg-3:       #1a1d23;
    --zfs-border:     #1e2128;
    --zfs-border-2:   #2e3340;
    --zfs-text:       #e8eaed;
    --zfs-text-2:     #8a8f9a;
    --zfs-text-3:     #5a5f6a;
    --zfs-accent:     #00c2ff;
    --zfs-accent-bg:  #0e1e2e;
    --zfs-accent-bdr: #1a4a6e;
    --zfs-font:       'Barlow', -apple-system, BlinkMacSystemFont, sans-serif;
    --zfs-font-cond:  'Barlow Condensed', 'Barlow', sans-serif;
    --zfs-radius:     6px;
    --zfs-radius-lg:  10px;
    --zfs-transition: 0.15s ease;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; }

body.zfs-theme {
    background: var(--zfs-bg);
    color: var(--zfs-text);
    font-family: var(--zfs-font);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    -webkit-font-smoothing: antialiased;
}

/* ── Utilities ── */
.zfs-accent { color: var(--zfs-accent); }

/* ═══════════════════════════════════════════════
   TOPBAR
   ═══════════════════════════════════════════════ */
.zfs-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--zfs-bg);
}

.zfs-topbar {
    background: var(--zfs-bg-2);
    border-bottom: 1px solid var(--zfs-border);
    padding: 0 1.5rem;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    color: var(--zfs-text-2);
}

.zfs-topbar-msg {
    display: flex;
    align-items: center;
    gap: 8px;
}

.zfs-topbar-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--zfs-accent);
    flex-shrink: 0;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.zfs-topbar-links {
    display: flex;
    gap: 16px;
}

.zfs-topbar-links a {
    color: var(--zfs-text-2);
    text-decoration: none;
    transition: color var(--zfs-transition);
}

.zfs-topbar-links a:hover { color: var(--zfs-accent); }

/* ═══════════════════════════════════════════════
   NAV BAR
   ═══════════════════════════════════════════════ */
.zfs-nav-bar {
    background: var(--zfs-bg);
    border-bottom: 1px solid var(--zfs-border);
    padding: 0 1.5rem;
    height: 56px;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.zfs-logo {
    font-family: var(--zfs-font-cond);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
}

.zfs-logo-dot { color: var(--zfs-accent); }

.zfs-nav {
    display: flex;
    flex: 1;
    gap: 0;
}

.zfs-nav-link {
    padding: 0 0.9rem;
    height: 56px;
    display: flex;
    align-items: center;
    font-size: 13px;
    font-weight: 500;
    color: var(--zfs-text-2);
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: color var(--zfs-transition), border-color var(--zfs-transition);
    white-space: nowrap;
    letter-spacing: 0.01em;
}

.zfs-nav-link:hover,
.zfs-nav-link.active {
    color: var(--zfs-text);
}

.zfs-nav-link.active {
    color: var(--zfs-accent);
    border-bottom-color: var(--zfs-accent);
}

/* Nav Actions */
.zfs-nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
}

.zfs-search-form {
    display: flex;
    align-items: center;
    background: var(--zfs-bg-2);
    border: 1px solid var(--zfs-border);
    border-radius: var(--zfs-radius);
    overflow: hidden;
    transition: border-color var(--zfs-transition);
}

.zfs-search-form:focus-within {
    border-color: var(--zfs-accent);
}

.zfs-search-input {
    background: none;
    border: none;
    outline: none;
    color: var(--zfs-text);
    font-family: var(--zfs-font);
    font-size: 13px;
    padding: 0 12px;
    height: 34px;
    width: 200px;
}

.zfs-search-input::placeholder { color: var(--zfs-text-3); }

.zfs-search-btn {
    background: none;
    border: none;
    padding: 0 10px;
    height: 34px;
    cursor: pointer;
    color: var(--zfs-text-2);
    display: flex;
    align-items: center;
    transition: color var(--zfs-transition);
}

.zfs-search-btn:hover { color: var(--zfs-accent); }

.zfs-icon-btn {
    width: 34px;
    height: 34px;
    border-radius: var(--zfs-radius);
    background: var(--zfs-bg-2);
    border: 1px solid var(--zfs-border);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--zfs-text-2);
    text-decoration: none;
    transition: border-color var(--zfs-transition), color var(--zfs-transition);
}

.zfs-icon-btn:hover {
    border-color: var(--zfs-accent);
    color: var(--zfs-accent);
}

/* Mobile toggle (hidden on desktop) */
.zfs-mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    margin-left: auto;
}

.zfs-mobile-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--zfs-text-2);
    border-radius: 2px;
    transition: var(--zfs-transition);
}

/* Mobile nav */
.zfs-mobile-nav {
    display: none;
    flex-direction: column;
    background: var(--zfs-bg-2);
    border-bottom: 1px solid var(--zfs-border);
    padding: 1rem 1.5rem;
    gap: 0;
}

.zfs-mobile-nav.open { display: flex; }

.zfs-mobile-nav a {
    color: var(--zfs-text-2);
    text-decoration: none;
    font-size: 14px;
    padding: 10px 0;
    border-bottom: 1px solid var(--zfs-border);
    transition: color var(--zfs-transition);
}

.zfs-mobile-nav a:last-child { border-bottom: none; }
.zfs-mobile-nav a:hover { color: var(--zfs-accent); }

/* ═══════════════════════════════════════════════
   HOMEPAGE — HERO
   ═══════════════════════════════════════════════ */
.zfs-hero {
    position: relative;
    overflow: hidden;
    padding: 5rem 1.5rem 4rem;
    text-align: center;
    border-bottom: 1px solid var(--zfs-border);
}

.zfs-hero-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(var(--zfs-border) 1px, transparent 1px),
        linear-gradient(90deg, var(--zfs-border) 1px, transparent 1px);
    background-size: 48px 48px;
    opacity: 0.35;
    pointer-events: none;
}

.zfs-hero-inner {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}

.zfs-hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--zfs-accent-bg);
    border: 1px solid var(--zfs-accent-bdr);
    color: var(--zfs-accent);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.06em;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 1.75rem;
    text-transform: uppercase;
}

.zfs-hero-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--zfs-accent);
    animation: pulse 2s infinite;
}

.zfs-hero-title {
    font-family: var(--zfs-font-cond);
    font-size: 58px;
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: 0.01em;
    color: #fff;
    margin: 0 0 1.25rem;
    text-transform: uppercase;
}

.zfs-hero-sub {
    font-size: 15px;
    color: var(--zfs-text-2);
    max-width: 520px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
    font-weight: 300;
}

.zfs-hero-btns {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ─ Buttons ─ */
.zfs-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 11px 28px;
    background: var(--zfs-accent);
    color: #000;
    border: none;
    border-radius: var(--zfs-radius);
    font-family: var(--zfs-font);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: background var(--zfs-transition);
}

.zfs-btn-primary:hover { background: #33cfff; color: #000; }

.zfs-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 11px 28px;
    background: none;
    color: var(--zfs-text);
    border: 1px solid var(--zfs-border-2);
    border-radius: var(--zfs-radius);
    font-family: var(--zfs-font);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: border-color var(--zfs-transition), color var(--zfs-transition);
}

.zfs-btn-outline:hover {
    border-color: var(--zfs-accent);
    color: var(--zfs-accent);
}

/* ═══════════════════════════════════════════════
   STATS BAR
   ═══════════════════════════════════════════════ */
.zfs-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-bottom: 1px solid var(--zfs-border);
}

.zfs-stat {
    padding: 1.5rem;
    border-right: 1px solid var(--zfs-border);
    text-align: center;
}

.zfs-stat:last-child { border-right: none; }

.zfs-stat-num {
    font-family: var(--zfs-font-cond);
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin-bottom: 4px;
}

.zfs-stat-lbl {
    font-size: 11px;
    color: var(--zfs-text-3);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* ═══════════════════════════════════════════════
   SECTIONS
   ═══════════════════════════════════════════════ */
.zfs-section {
    padding: 2.5rem 1.5rem;
    border-bottom: 1px solid var(--zfs-border);
}

.zfs-section-hdr {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
}

.zfs-section-label {
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--zfs-text-3);
    font-weight: 500;
}

.zfs-view-all {
    font-size: 12px;
    color: var(--zfs-accent);
    text-decoration: none;
    font-weight: 500;
    transition: opacity var(--zfs-transition);
}

.zfs-view-all:hover { opacity: 0.7; }

/* ═══════════════════════════════════════════════
   CATEGORY GRID
   ═══════════════════════════════════════════════ */
.zfs-cat-grid {
    display: grid;
    grid-template-columns: repeat(8, minmax(0, 1fr));
    gap: 10px;
}

.zfs-cat-card {
    background: var(--zfs-bg-2);
    border: 1px solid var(--zfs-border);
    border-radius: var(--zfs-radius-lg);
    padding: 1.25rem 0.75rem 1rem;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: border-color var(--zfs-transition), background var(--zfs-transition);
}

.zfs-cat-card:hover {
    border-color: var(--zfs-accent);
    background: #0e1a24;
}

.zfs-cat-icon {
    width: 44px;
    height: 44px;
    background: var(--zfs-accent-bg);
    border: 1px solid var(--zfs-accent-bdr);
    border-radius: var(--zfs-radius);
    display: flex;
    align-items: center;
    justify-content: center;
}

.zfs-cat-name {
    font-size: 12px;
    font-weight: 500;
    color: var(--zfs-text-2);
    line-height: 1.3;
}

.zfs-cat-arrow {
    font-size: 11px;
    color: var(--zfs-text-3);
}

.zfs-cat-card:hover .zfs-cat-name { color: var(--zfs-text); }
.zfs-cat-card:hover .zfs-cat-arrow { color: var(--zfs-accent); }

/* ═══════════════════════════════════════════════
   PRODUCT CARDS (shared between home + catalog)
   ═══════════════════════════════════════════════ */
.zfs-prod-grid,
.products-grid .products.list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.zfs-prod-card,
.products-grid .product-item {
    background: var(--zfs-bg-2);
    border: 1px solid var(--zfs-border);
    border-radius: var(--zfs-radius-lg);
    overflow: hidden;
    transition: border-color var(--zfs-transition);
    list-style: none;
}

.zfs-prod-card:hover,
.products-grid .product-item:hover {
    border-color: var(--zfs-border-2);
}

.product-item-photo,
.zfs-prod-img {
    display: block;
    background: var(--zfs-bg);
    border-bottom: 1px solid var(--zfs-border);
    text-align: center;
    padding: 1.5rem;
}

.product-item-photo img,
.zfs-prod-img img {
    max-width: 100%;
    height: 150px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.product-item-details,
.zfs-prod-body {
    padding: 0.875rem;
}

.product-item-name,
.zfs-prod-name {
    font-size: 13px;
    font-weight: 500;
    color: var(--zfs-text-2);
    line-height: 1.4;
    margin-bottom: 8px;
}

.product-item-name a {
    color: var(--zfs-text-2);
    text-decoration: none;
    transition: color var(--zfs-transition);
}

.product-item-name a:hover { color: var(--zfs-text); }

.price-box {
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
}

.price {
    font-family: var(--zfs-font-cond);
    font-size: 20px;
    font-weight: 600;
    color: #fff;
}

.old-price .price {
    font-size: 13px;
    color: var(--zfs-text-3);
    text-decoration: line-through;
    font-weight: 400;
    font-family: var(--zfs-font);
}

.product-item-actions {
    margin-top: 10px;
}

.action.tocart.primary {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: var(--zfs-accent);
    color: #000;
    border: none;
    border-radius: var(--zfs-radius);
    font-family: var(--zfs-font);
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: background var(--zfs-transition);
    width: 100%;
    justify-content: center;
}

.action.tocart.primary:hover { background: #33cfff; }

.action.tocompare,
.action.towishlist {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 10px;
    background: none;
    color: var(--zfs-text-3);
    border: 1px solid var(--zfs-border);
    border-radius: var(--zfs-radius);
    font-size: 11px;
    cursor: pointer;
    text-decoration: none;
    transition: border-color var(--zfs-transition), color var(--zfs-transition);
}

.action.tocompare:hover,
.action.towishlist:hover {
    border-color: var(--zfs-accent);
    color: var(--zfs-accent);
}

/* Stock badge */
.stock.available span,
.stock.unavailable span {
    display: inline-block;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.06em;
    padding: 2px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.stock.available span {
    background: #0e2e18;
    color: #4ade80;
    border: 1px solid #1a5e30;
}

.stock.unavailable span {
    background: var(--zfs-bg-3);
    color: var(--zfs-text-3);
    border: 1px solid var(--zfs-border);
}

/* ═══════════════════════════════════════════════
   TRUST BAR
   ═══════════════════════════════════════════════ */
.zfs-trust {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-bottom: 1px solid var(--zfs-border);
}

.zfs-trust-item {
    padding: 1.75rem 1.5rem;
    border-right: 1px solid var(--zfs-border);
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.zfs-trust-item:last-child { border-right: none; }

.zfs-trust-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--zfs-radius);
    background: var(--zfs-accent-bg);
    border: 1px solid var(--zfs-accent-bdr);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.zfs-trust-title {
    font-size: 13px;
    font-weight: 500;
    color: var(--zfs-text);
    margin-bottom: 4px;
}

.zfs-trust-desc {
    font-size: 12px;
    color: var(--zfs-text-3);
    line-height: 1.6;
}

/* ═══════════════════════════════════════════════
   CATALOG / SHOP PAGE
   ═══════════════════════════════════════════════ */
.catalog-category-view .page-title-wrapper {
    padding: 1.5rem;
    border-bottom: 1px solid var(--zfs-border);
}

.catalog-category-view .page-title {
    font-family: var(--zfs-font-cond);
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin: 0;
}

.catalog-category-view .columns {
    display: grid;
    grid-template-columns: 220px 1fr;
}

.catalog-category-view .sidebar {
    border-right: 1px solid var(--zfs-border);
    padding: 1.5rem;
}

.catalog-category-view .column.main {
    padding: 1.5rem;
}

/* Layered nav */
.filter-title strong {
    font-family: var(--zfs-font-cond);
    font-size: 13px;
    font-weight: 600;
    color: var(--zfs-text);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.filter-options-title {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--zfs-text-3);
    padding: 0.75rem 0 0.5rem;
    border-top: 1px solid var(--zfs-border);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.filter-options-content {
    padding-bottom: 0.75rem;
}

.filter-options-content .item {
    margin-bottom: 6px;
}

.filter-options-content a {
    font-size: 13px;
    color: var(--zfs-text-2);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color var(--zfs-transition);
}

.filter-options-content a:hover { color: var(--zfs-accent); }

/* Toolbar */
.toolbar.toolbar-products {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
    gap: 10px;
}

.toolbar-amount {
    font-size: 12px;
    color: var(--zfs-text-3);
}

.sorter-label {
    font-size: 12px;
    color: var(--zfs-text-3);
}

.sorter-options {
    background: var(--zfs-bg-2);
    border: 1px solid var(--zfs-border);
    color: var(--zfs-text);
    font-family: var(--zfs-font);
    font-size: 13px;
    padding: 6px 10px;
    border-radius: var(--zfs-radius);
    cursor: pointer;
    outline: none;
}

.sorter-options:focus { border-color: var(--zfs-accent); }

/* Pagination */
.pages .items {
    display: flex;
    gap: 4px;
    list-style: none;
    padding: 0;
    justify-content: center;
    margin-top: 2rem;
}

.pages .item a,
.pages .item strong {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: var(--zfs-radius);
    font-size: 13px;
    color: var(--zfs-text-2);
    text-decoration: none;
    border: 1px solid var(--zfs-border);
    background: var(--zfs-bg-2);
    transition: border-color var(--zfs-transition), color var(--zfs-transition);
}

.pages .item a:hover {
    border-color: var(--zfs-accent);
    color: var(--zfs-accent);
}

.pages .item.current strong {
    background: var(--zfs-accent-bg);
    border-color: var(--zfs-accent-bdr);
    color: var(--zfs-accent);
}

/* ═══════════════════════════════════════════════
   PRODUCT DETAIL PAGE
   ═══════════════════════════════════════════════ */
.catalog-product-view .product-info-main .page-title {
    font-family: var(--zfs-font-cond);
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: 0.75rem;
}

.catalog-product-view .product-info-price .price {
    font-family: var(--zfs-font-cond);
    font-size: 36px;
    font-weight: 700;
    color: #fff;
}

.catalog-product-view .product.description {
    font-size: 14px;
    color: var(--zfs-text-2);
    line-height: 1.8;
}

/* ═══════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════ */
.zfs-footer {
    background: #0a0b0d;
    border-top: 1px solid var(--zfs-border);
    padding: 3rem 1.5rem 0;
}

.zfs-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--zfs-border);
}

.zfs-footer-tagline {
    font-size: 13px;
    color: var(--zfs-text-3);
    line-height: 1.7;
    margin: 1rem 0 1.5rem;
}

.zfs-footer-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.zfs-footer-contact span,
.zfs-footer-contact a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--zfs-text-3);
    text-decoration: none;
    transition: color var(--zfs-transition);
}

.zfs-footer-contact a:hover { color: var(--zfs-accent); }

.zfs-footer-col h4 {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--zfs-text-2);
    margin-bottom: 1rem;
}

.zfs-footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.zfs-footer-col ul li a {
    font-size: 13px;
    color: var(--zfs-text-3);
    text-decoration: none;
    transition: color var(--zfs-transition);
}

.zfs-footer-col ul li a:hover { color: var(--zfs-accent); }

.zfs-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 0;
    font-size: 11px;
    color: var(--zfs-text-3);
}

.zfs-footer-bottom-links {
    display: flex;
    gap: 16px;
}

.zfs-footer-bottom-links a {
    color: var(--zfs-text-3);
    text-decoration: none;
    transition: color var(--zfs-transition);
}

.zfs-footer-bottom-links a:hover { color: var(--zfs-accent); }

/* ═══════════════════════════════════════════════
   MESSAGES / ALERTS
   ═══════════════════════════════════════════════ */
.message.success,
.message.error,
.message.notice,
.message.warning {
    padding: 10px 16px;
    border-radius: var(--zfs-radius);
    font-size: 13px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.message.success { background: #0e2e18; border: 1px solid #1a5e30; color: #4ade80; }
.message.error   { background: #2e0e0e; border: 1px solid #5e1a1a; color: #f87171; }
.message.notice  { background: var(--zfs-accent-bg); border: 1px solid var(--zfs-accent-bdr); color: var(--zfs-accent); }

/* ═══════════════════════════════════════════════
   FORMS (login, checkout, etc.)
   ═══════════════════════════════════════════════ */
.zfs-theme input[type="text"],
.zfs-theme input[type="email"],
.zfs-theme input[type="password"],
.zfs-theme input[type="tel"],
.zfs-theme input[type="number"],
.zfs-theme select,
.zfs-theme textarea {
    background: var(--zfs-bg-2);
    border: 1px solid var(--zfs-border);
    color: var(--zfs-text);
    font-family: var(--zfs-font);
    font-size: 14px;
    padding: 10px 14px;
    border-radius: var(--zfs-radius);
    width: 100%;
    outline: none;
    transition: border-color var(--zfs-transition);
    -webkit-appearance: none;
}

.zfs-theme input:focus,
.zfs-theme select:focus,
.zfs-theme textarea:focus {
    border-color: var(--zfs-accent);
}

.zfs-theme input::placeholder,
.zfs-theme textarea::placeholder {
    color: var(--zfs-text-3);
}

.zfs-theme label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: var(--zfs-text-2);
    margin-bottom: 6px;
    letter-spacing: 0.02em;
}

/* ═══════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════ */
@media (max-width: 1200px) {
    .zfs-cat-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (max-width: 1024px) {
    .zfs-hero-title { font-size: 44px; }
    .products-grid .products.list,
    .zfs-prod-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .zfs-trust { grid-template-columns: repeat(2, 1fr); }
    .zfs-trust-item:nth-child(2) { border-right: none; }
    .zfs-footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
    .zfs-nav { display: none; }
    .zfs-search-form { display: none; }
    .zfs-mobile-toggle { display: flex; }
    .zfs-hero-title { font-size: 36px; }
    .zfs-stats { grid-template-columns: repeat(2, 1fr); }
    .zfs-stat:nth-child(2) { border-right: none; }
    .zfs-cat-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .products-grid .products.list,
    .zfs-prod-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .catalog-category-view .columns { grid-template-columns: 1fr; }
    .catalog-category-view .sidebar { border-right: none; border-bottom: 1px solid var(--zfs-border); }
    .zfs-trust { grid-template-columns: 1fr; }
    .zfs-trust-item { border-right: none; border-bottom: 1px solid var(--zfs-border); }
    .zfs-trust-item:last-child { border-bottom: none; }
    .zfs-footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .zfs-footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
    .zfs-cat-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .products-grid .products.list,
    .zfs-prod-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .zfs-hero-btns { flex-direction: column; }
    .zfs-btn-primary, .zfs-btn-outline { width: 100%; justify-content: center; }
}
