/* ═══════════════════════════════════════════
   KAN-SAME — style.css
   Police : Montserrat | Palette : Noir & Blanc
═══════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --black:   #0a0a0a;
    --white:   #ffffff;
    --gray-50:  #f9f9f9;
    --gray-100: #f0f0f0;
    --gray-200: #e0e0e0;
    --gray-400: #a0a0a0;
    --gray-600: #606060;
    --gray-800: #202020;
    --accent:  #0a0a0a;
    --accent-light: #2a2a2a;
    --border:  #e8e8e8;
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --shadow-sm: 0 1px 4px rgba(0,0,0,.06);
    --shadow-md: 0 4px 20px rgba(0,0,0,.08);
    --shadow-lg: 0 8px 40px rgba(0,0,0,.12);
    --font: 'Montserrat', sans-serif;
    --transition: .25s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }
body { font-family: var(--font); background: var(--white); color: var(--black); line-height: 1.6; overflow-x: hidden; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-alt { background: var(--gray-50); }
.section-label { font-size: .7rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--gray-400); margin-bottom: .5rem; }
.section-title { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 700; line-height: 1.2; }
.section-head { margin-bottom: 2.5rem; }

/* ── HEADER ── */
.site-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid transparent;
    transition: border-color var(--transition), box-shadow var(--transition);
}
.site-header.scrolled { border-color: var(--border); box-shadow: var(--shadow-sm); }
.nav-inner { display: flex; align-items: center; gap: 2rem; height: 68px; }
.brand { display: flex; align-items: center; gap: .75rem; text-decoration: none; color: var(--black); }
.brand-mark { width: 40px; height: 40px; background: var(--black); color: var(--white); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: .8rem; font-weight: 900; letter-spacing: .05em; }
.brand-name { display: block; font-size: .95rem; font-weight: 800; letter-spacing: .08em; }
.brand-sub { display: block; font-size: .65rem; color: var(--gray-400); letter-spacing: .05em; }
.nav-links { display: flex; gap: 0; list-style: none; margin-left: auto; }
.nav-links a { display: block; padding: .5rem 1rem; font-size: .8rem; font-weight: 600; letter-spacing: .04em; color: var(--gray-600); text-decoration: none; transition: color var(--transition); }
.nav-links a:hover { color: var(--black); }
.nav-actions { margin-left: auto; }
.btn-cart { display: flex; align-items: center; gap: .4rem; background: var(--black); color: var(--white); border: none; border-radius: var(--radius-md); padding: .55rem 1.1rem; font-family: var(--font); font-size: .8rem; font-weight: 600; cursor: pointer; transition: background var(--transition); position: relative; }
.btn-cart:hover { background: var(--gray-800); }
.cart-badge { background: var(--white); color: var(--black); border-radius: 50%; width: 18px; height: 18px; display: none; align-items: center; justify-content: center; font-size: .65rem; font-weight: 800; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--black); border-radius: 2px; transition: var(--transition); }

/* ── HERO ── */
.hero { padding: 120px 0 80px; background: var(--black); color: var(--white); overflow: hidden; position: relative; }
.hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 70% 50%, rgba(255,255,255,.03) 0%, transparent 60%); pointer-events: none; }
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.hero-tag { display: inline-flex; align-items: center; gap: .5rem; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); border-radius: 100px; padding: .35rem .9rem; font-size: .72rem; font-weight: 600; letter-spacing: .06em; margin-bottom: 1.5rem; }
.tag-dot { width: 6px; height: 6px; background: #fff; border-radius: 50%; }
.hero-h1 { font-size: clamp(2.2rem, 4.5vw, 3.2rem); font-weight: 900; line-height: 1.1; letter-spacing: -.02em; margin-bottom: 1.2rem; }
.hero-h1 em { font-style: italic; font-weight: 300; color: rgba(255,255,255,.7); }
.hero-lead { font-size: .95rem; color: rgba(255,255,255,.65); line-height: 1.7; margin-bottom: 2rem; max-width: 420px; }
.hero-btns { display: flex; gap: .75rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.btn-primary { background: var(--white); color: var(--black); padding: .8rem 1.6rem; border-radius: var(--radius-md); text-decoration: none; font-size: .85rem; font-weight: 700; letter-spacing: .02em; transition: opacity var(--transition); }
.btn-primary:hover { opacity: .9; }
.btn-outline { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,.3); padding: .8rem 1.6rem; border-radius: var(--radius-md); text-decoration: none; font-size: .85rem; font-weight: 600; transition: border-color var(--transition); }
.btn-outline:hover { border-color: rgba(255,255,255,.7); }
.hero-stats { display: flex; gap: 2rem; }
.hero-stat .stat-val { font-size: 1.6rem; font-weight: 800; }
.hero-stat .stat-lbl { font-size: .7rem; color: rgba(255,255,255,.5); letter-spacing: .06em; margin-top: .1rem; }
.hero-visual { display: flex; justify-content: center; align-items: center; position: relative; }
.hero-card-main { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-xl); padding: 2.5rem; text-align: center; width: 280px; }
.hero-monogram { width: 80px; height: 80px; background: var(--white); color: var(--black); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; font-size: 1.6rem; font-weight: 900; margin: 0 auto 1.2rem; letter-spacing: .05em; }
.hero-card-label { font-size: 1rem; font-weight: 800; letter-spacing: .1em; margin-bottom: .3rem; }
.hero-card-sub { font-size: .72rem; color: rgba(255,255,255,.5); letter-spacing: .04em; margin-bottom: 1.2rem; }
.hero-tags-row { display: flex; flex-wrap: wrap; gap: .4rem; justify-content: center; }
.htag { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.12); border-radius: 100px; padding: .25rem .7rem; font-size: .68rem; font-weight: 600; }
.hero-floating-pill { position: absolute; background: var(--white); color: var(--black); border-radius: 100px; padding: .4rem .9rem; font-size: .72rem; font-weight: 700; box-shadow: var(--shadow-md); }
.pill-1 { top: 20%; left: -20px; }
.pill-2 { bottom: 20%; right: -20px; }

/* ── TRUST BAR ── */
.trust-bar { background: var(--gray-50); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.trust-list { display: flex; gap: 0; }
.trust-item { flex: 1; display: flex; align-items: center; gap: .6rem; padding: 1.1rem 1.5rem; font-size: .78rem; font-weight: 600; color: var(--gray-600); border-right: 1px solid var(--border); }
.trust-item:last-child { border-right: none; }
.trust-item svg { flex-shrink: 0; color: var(--black); }

/* ── CATEGORIES ── */
.cats-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; margin-top: 2rem; }
.cat-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.5rem 1rem; text-align: center; cursor: pointer; transition: all var(--transition); }
.cat-card:hover { background: var(--black); border-color: var(--black); color: var(--white); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.cat-card:hover .cat-name { color: var(--white); }
.cat-card:hover .cat-desc { color: rgba(255,255,255,.5); }
.cat-card:hover .cat-icon-wrap { background: rgba(255,255,255,.1); color: var(--white); }
.cat-icon-wrap { width: 52px; height: 52px; background: var(--gray-100); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; margin: 0 auto .9rem; transition: background var(--transition); }
.cat-name { font-size: .82rem; font-weight: 700; margin-bottom: .25rem; color: var(--black); }
.cat-desc { font-size: .7rem; color: var(--gray-400); }

/* ── CATALOG ── */
.catalog-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }
.filter-bar { display: flex; flex-wrap: wrap; gap: .4rem; }
.filter-btn { background: var(--white); border: 1px solid var(--border); border-radius: 100px; padding: .4rem .9rem; font-family: var(--font); font-size: .75rem; font-weight: 600; cursor: pointer; color: var(--gray-600); transition: all var(--transition); }
.filter-btn:hover, .filter-btn.active { background: var(--black); color: var(--white); border-color: var(--black); }
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1.25rem; }
.loading-state { grid-column: 1/-1; text-align: center; padding: 4rem; color: var(--gray-400); font-size: .9rem; }

.product-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: box-shadow var(--transition), transform var(--transition); display: flex; flex-direction: column; }
.product-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.product-media { position: relative; aspect-ratio: 1; background: var(--gray-100); overflow: hidden; }
.product-media img, .product-media video { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.product-card:hover .product-media img { transform: scale(1.04); }
.media-slide { position: absolute; inset: 0; opacity: 0; transition: opacity .3s; }
.media-slide.active { opacity: 1; position: relative; }
.media-nav { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,.85); border: none; border-radius: 50%; width: 28px; height: 28px; font-size: .9rem; cursor: pointer; z-index: 2; transition: background var(--transition); display: flex; align-items: center; justify-content: center; }
.media-nav:hover { background: var(--white); }
.media-nav.prev { left: 8px; }
.media-nav.next { right: 8px; }
.badge { position: absolute; top: 10px; left: 10px; border-radius: 100px; padding: .2rem .6rem; font-size: .65rem; font-weight: 700; letter-spacing: .04em; }
.badge-local { background: var(--black); color: var(--white); }
.badge-special { background: var(--white); color: var(--black); border: 1px solid var(--border); }
.product-body { padding: 1rem 1rem .5rem; cursor: pointer; flex: 1; }
.product-name { font-size: .88rem; font-weight: 700; margin-bottom: .25rem; line-height: 1.3; }
.product-desc-preview { font-size: .77rem; color: var(--gray-400); margin-bottom: .6rem; line-height: 1.4; }
.product-price { font-size: 1.05rem; font-weight: 800; color: var(--black); }
.product-footer { padding: .75rem 1rem; border-top: 1px solid var(--gray-100); display: flex; gap: .5rem; }
.btn-add { flex: 1; background: var(--black); color: var(--white); border: none; border-radius: var(--radius-sm); padding: .55rem; font-family: var(--font); font-size: .78rem; font-weight: 700; cursor: pointer; transition: background var(--transition); }
.btn-add:hover { background: var(--gray-800); }
.btn-add:disabled { background: var(--gray-200); color: var(--gray-400); cursor: not-allowed; }
.btn-view-sm { background: var(--white); color: var(--black); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: .55rem .9rem; font-family: var(--font); font-size: .78rem; font-weight: 600; cursor: pointer; transition: background var(--transition); }
.btn-view-sm:hover { background: var(--gray-100); }

/* ── COMMANDE SPECIALE ── */
.special-section { padding: 80px 0; background: var(--black); color: var(--white); }
.special-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.special-info .section-label { color: rgba(255,255,255,.4); }
.special-info .section-title { color: var(--white); margin-bottom: 1rem; }
.special-lead { color: rgba(255,255,255,.65); font-size: .9rem; line-height: 1.7; margin-bottom: 1.5rem; }
.platform-pills { display: flex; flex-wrap: wrap; gap: .5rem; }
.platform-pill { border: 1px solid rgba(255,255,255,.2); border-radius: 100px; padding: .3rem .8rem; font-size: .75rem; font-weight: 600; color: rgba(255,255,255,.8); }
.form-card { background: var(--white); border-radius: var(--radius-xl); padding: 2rem; color: var(--black); }
.form-title { font-size: 1rem; font-weight: 800; margin-bottom: 1.5rem; letter-spacing: .02em; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group.full { grid-column: 1/-1; }
.form-label { font-size: .72rem; font-weight: 700; letter-spacing: .04em; color: var(--gray-600); }
.form-input, .form-textarea { font-family: var(--font); font-size: .82rem; border: 1px solid var(--border); border-radius: var(--radius-sm); padding: .65rem .85rem; transition: border-color var(--transition); background: var(--white); color: var(--black); outline: none; }
.form-input:focus, .form-textarea:focus { border-color: var(--black); }
.form-textarea { resize: vertical; min-height: 80px; }
.btn-submit { width: 100%; background: var(--black); color: var(--white); border: none; border-radius: var(--radius-md); padding: .85rem 1.5rem; font-family: var(--font); font-size: .85rem; font-weight: 700; cursor: pointer; margin-top: 1rem; transition: background var(--transition); letter-spacing: .02em; }
.btn-submit:hover { background: var(--gray-800); }

/* ── PAIEMENT ── */
.payment-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.payment-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.5rem; display: flex; align-items: flex-start; gap: 1rem; transition: box-shadow var(--transition); }
.payment-card--featured { cursor: pointer; position: relative; }
.payment-card--featured:hover { box-shadow: var(--shadow-md); }
.payment-card-icon { width: 48px; height: 48px; background: var(--gray-100); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.payment-title { font-size: .9rem; font-weight: 700; margin-bottom: .3rem; display: flex; align-items: center; gap: .5rem; }
.payment-badge { background: var(--black); color: var(--white); border-radius: 100px; padding: .1rem .5rem; font-size: .65rem; font-weight: 700; }
.payment-desc { font-size: .82rem; color: var(--gray-600); line-height: 1.5; }
.payment-arrow { margin-left: auto; font-size: 1.1rem; color: var(--gray-400); }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 2rem; }
.contact-info-card { background: var(--black); color: var(--white); border-radius: var(--radius-xl); padding: 2rem; }
.contact-logo-mark { width: 56px; height: 56px; background: var(--white); color: var(--black); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; font-size: 1rem; font-weight: 900; margin-bottom: 1rem; letter-spacing: .05em; }
.contact-brand { font-size: 1.1rem; font-weight: 800; letter-spacing: .06em; margin-bottom: .5rem; }
.contact-info-card p { font-size: .85rem; color: rgba(255,255,255,.6); line-height: 1.6; margin-bottom: 1.5rem; }
.contact-items { display: flex; flex-direction: column; gap: .75rem; }
.contact-item { display: flex; align-items: center; gap: .75rem; text-decoration: none; color: rgba(255,255,255,.8); font-size: .85rem; font-weight: 500; transition: color var(--transition); }
.contact-item:hover { color: var(--white); }
.contact-icon { width: 32px; height: 32px; background: rgba(255,255,255,.1); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-form-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 2rem; }

/* ── FOOTER ── */
.site-footer { background: var(--black); border-top: none; padding: 3.5rem 0 1.5rem; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 2.5rem; }
.footer-brand { display: flex; flex-direction: column; gap: .4rem; }
.footer-logo { width: 36px; height: 36px; background: var(--white); color: var(--black); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: .75rem; font-weight: 900; }
.footer-brand-name { font-size: .9rem; font-weight: 800; letter-spacing: .06em; color: var(--white); }
.footer-brand p { font-size: .8rem; color: rgba(255,255,255,.5); line-height: 1.5; margin-top: .25rem; }
.footer-col h4 { font-size: .75rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: .9rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .4rem; }
.footer-col a { font-size: .82rem; color: rgba(255,255,255,.55); text-decoration: none; transition: color var(--transition); }
.footer-col a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; font-size: .75rem; color: rgba(255,255,255,.35); }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { color: rgba(255,255,255,.35); text-decoration: none; transition: color var(--transition); }
.footer-links a:hover { color: var(--white); }

/* ── MODALS ── */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 2000; display: none; align-items: center; justify-content: center; padding: 1rem; backdrop-filter: blur(4px); }
.modal-overlay.open { display: flex; }
.modal-panel { background: var(--white); border-radius: var(--radius-xl); width: 100%; max-width: 520px; max-height: 90vh; overflow-y: auto; box-shadow: var(--shadow-lg); animation: modalIn .25s ease; }
.modal-panel--sm { max-width: 420px; }
@keyframes modalIn { from { opacity: 0; transform: scale(.96) translateY(8px); } to { opacity: 1; transform: scale(1) translateY(0); } }
.modal-head { display: flex; justify-content: space-between; align-items: center; padding: 1.25rem 1.5rem; border-bottom: 1px solid var(--border); }
.modal-head strong { font-size: .95rem; font-weight: 800; letter-spacing: .02em; }
.modal-close { background: var(--gray-100); border: none; border-radius: 50%; width: 30px; height: 30px; cursor: pointer; font-size: .9rem; transition: background var(--transition); display: flex; align-items: center; justify-content: center; }
.modal-close:hover { background: var(--gray-200); }
.modal-body { padding: 1.5rem; }
.modal-price-row { display: flex; align-items: center; justify-content: space-between; margin: .8rem 0 .5rem; }
.modal-stock-badge { background: var(--black); color: var(--white); border-radius: 100px; padding: .2rem .7rem; font-size: .65rem; font-weight: 700; }
.modal-desc-text { font-size: .87rem; color: var(--gray-600); line-height: 1.65; margin-bottom: 1.2rem; }
.modal-actions { display: flex; gap: .6rem; flex-wrap: wrap; }
.modal-actions .btn-submit { flex: 1; margin-top: 0; }
.btn-outline-sm { background: var(--white); color: var(--black); border: 1px solid var(--border); border-radius: var(--radius-md); padding: .85rem 1.2rem; font-family: var(--font); font-size: .85rem; font-weight: 600; cursor: pointer; transition: background var(--transition); }
.btn-outline-sm:hover { background: var(--gray-100); }

/* ── PAYPAL MODAL ── */
.paypal-info { text-align: center; }
.paypal-icon-wrap { width: 64px; height: 64px; background: var(--gray-100); border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; }
.paypal-title { font-size: 1rem; font-weight: 800; margin-bottom: .5rem; }
.paypal-desc { font-size: .85rem; color: var(--gray-600); line-height: 1.6; margin-bottom: 1.5rem; }
.paypal-steps { display: flex; flex-direction: column; gap: .6rem; text-align: left; margin-bottom: 1.5rem; }
.paypal-step { display: flex; align-items: center; gap: .75rem; font-size: .82rem; color: var(--gray-600); }
.paypal-step span { width: 24px; height: 24px; background: var(--black); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .7rem; font-weight: 800; flex-shrink: 0; }
.btn-paypal { display: block; width: 100%; background: #003087; color: var(--white); border: none; border-radius: var(--radius-md); padding: .9rem; font-family: var(--font); font-size: .88rem; font-weight: 700; cursor: pointer; text-decoration: none; margin-bottom: .8rem; transition: background var(--transition); text-align: center; }
.btn-paypal:hover { background: #001f5a; }
.paypal-note { font-size: .75rem; color: var(--gray-400); }
.paypal-note a { color: var(--black); }

/* ── CART MODAL ── */
.cart-total-row { display: flex; justify-content: space-between; font-weight: 700; margin-bottom: 1rem; font-size: .9rem; }
.cart-total-val { color: var(--black); font-size: 1.05rem; }

/* ── PRODUCT MEDIA MODAL ── */
.product-media-slider { position: relative; border-radius: var(--radius-md); overflow: hidden; background: var(--gray-100); }
.modal-slide { display: none; }
.modal-slide.active { display: block; }
.modal-slide img { width: 100%; max-height: 320px; object-fit: contain; background: var(--gray-100); border-radius: var(--radius-md); display: block; }
.modal-slide video { width: 100%; max-height: 320px; border-radius: var(--radius-md); background: #000; display: block; }
.modal-media-nav { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(0,0,0,.55); color: #fff; border: none; border-radius: 50%; width: 36px; height: 36px; font-size: 1.1rem; cursor: pointer; display: flex; align-items: center; justify-content: center; z-index: 10; transition: background .2s; }
.modal-media-nav:hover { background: rgba(0,0,0,.8); }
.modal-media-nav.prev { left: 8px; }
.modal-media-nav.next { right: 8px; }
.modal-media-dots { display: flex; justify-content: center; gap: 5px; margin-top: 8px; }
.modal-media-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gray-200); border: none; cursor: pointer; transition: background .2s; padding: 0; }
.modal-media-dot.active { background: var(--black); }

/* ── TOAST ── */
.toast { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(80px); background: var(--black); color: var(--white); border-radius: var(--radius-md); padding: .75rem 1.25rem; font-size: .82rem; font-weight: 600; display: flex; align-items: center; gap: .5rem; z-index: 3000; transition: transform .35s cubic-bezier(.34,1.56,.64,1), opacity .35s; opacity: 0; }
.toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .cats-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
}

@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    nav#main-nav { display: none; position: absolute; top: 68px; left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--border); padding: 1rem 0; }
    nav#main-nav.open { display: block; }
    .nav-links { flex-direction: column; }
    .nav-links a { padding: .75rem 1.5rem; border-bottom: 1px solid var(--gray-100); }
    .nav-inner { position: relative; }
    .hero-inner { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
    .hero { padding: 100px 0 60px; }
    .hero-visual { order: -1; }
    .hero-floating-pill { display: none; }
    .hero-lead { margin: 0 auto 1.5rem; }
    .hero-btns { justify-content: center; }
    .hero-stats { justify-content: center; }
    .trust-list { flex-wrap: wrap; }
    .trust-item { flex: 0 0 50%; border: none; border-bottom: 1px solid var(--border); }
    .cats-grid { grid-template-columns: repeat(2, 1fr); }
    .special-grid { grid-template-columns: 1fr; gap: 2rem; }
    .payment-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .footer-bottom { flex-direction: column; gap: .75rem; text-align: center; }
    .catalog-head { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
    .cats-grid { grid-template-columns: 1fr 1fr; }
    .footer-top { grid-template-columns: 1fr; }
    .form-grid { grid-template-columns: 1fr; }
    .hero-card-main { width: 240px; }
}
