/* ============================================
   MESTONY — STATIC SITE CSS 2024
   ============================================ */
:root {
  --black:    #080808;
  --dark:     #0f0f0f;
  --dark2:    #141414;
  --card:     #111111;
  --border:   #1e1e1e;
  --border2:  #2a2a2a;
  --red:      #e52222;
  --red-dark: #b81a1a;
  --red-glow: rgba(229,34,34,0.22);
  --white:    #ffffff;
  --gray:     #888888;
  --gray2:    #555555;
  --ff-d: 'Bebas Neue', sans-serif;
  --ff-b: 'Barlow Condensed', sans-serif;
  --ff-m: 'Space Mono', monospace;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--black); color: var(--white); font-family: var(--ff-b); font-size: 16px; line-height: 1.6; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ─── ANNOUNCE BAR ─── */
.announce-bar { background: var(--red); overflow: hidden; padding: 8px 0; }
.announce-inner { display: flex; gap: 4rem; white-space: nowrap; animation: ticker 28s linear infinite; font-family: var(--ff-m); font-size: 11px; font-weight: 700; letter-spacing: 0.12em; }
.announce-inner span { flex-shrink: 0; }
@keyframes ticker { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ─── NAVBAR ─── */
.navbar { position: sticky; top: 0; z-index: 100; background: rgba(8,8,8,0.96); backdrop-filter: blur(16px); border-bottom: 1px solid var(--border); }
.nav-container { max-width: 1400px; margin: 0 auto; padding: 0 2rem; height: 64px; display: flex; align-items: center; gap: 2rem; }
.nav-logo { flex-shrink: 0; }
.logo-img { height: 42px; width: auto; }
.nav-links { display: flex; list-style: none; flex: 1; justify-content: center; }
.nav-link { display: block; padding: 0 1rem; height: 64px; line-height: 64px; font-family: var(--ff-d); font-size: 15px; letter-spacing: 0.08em; color: var(--gray); transition: color 0.2s; position: relative; }
.nav-link::after { content:''; position: absolute; bottom:0; left:50%; right:50%; height:2px; background:var(--red); transition: left 0.25s, right 0.25s; }
.nav-link:hover { color: var(--white); }
.nav-link:hover::after { left:1rem; right:1rem; }
.nav-link.highlight { color: var(--red); }
.nav-actions { display: flex; align-items: center; gap: 0.25rem; }
.nav-icon-btn { width:40px; height:40px; display:flex; align-items:center; justify-content:center; color:var(--gray); border-radius:6px; transition: color 0.2s, background 0.2s; position:relative; }
.nav-icon-btn:hover { color:var(--white); background:var(--dark2); }
.menu-btn { display: none; }
.cart-btn { position: relative; }
.cart-count { position:absolute; top:3px; right:3px; background:var(--red); color:white; font-family:var(--ff-m); font-size:10px; font-weight:700; width:16px; height:16px; border-radius:50%; display:flex; align-items:center; justify-content:center; display:none; }
.cart-count.visible { display:flex; }
.search-bar { display:none; border-top:1px solid var(--border); padding:0.75rem 2rem; background:var(--dark); }
.search-bar.open { display:block; }
.search-form { display:flex; max-width:560px; margin:0 auto; }
.search-input { flex:1; background:var(--dark2); border:1px solid var(--border2); border-right:none; color:var(--white); padding:0.6rem 1rem; font-family:var(--ff-m); font-size:13px; outline:none; }
.search-input:focus { border-color:var(--red); }
.search-submit { background:var(--red); color:white; padding:0 1.5rem; font-family:var(--ff-d); font-size:16px; letter-spacing:0.1em; border:1px solid var(--red); }

/* ─── MOBILE MENU ─── */
.mobile-menu { position:fixed; top:0; right:-310px; width:290px; height:100vh; background:var(--dark); border-left:1px solid var(--border); z-index:200; transition:right 0.3s cubic-bezier(0.4,0,0.2,1); padding:1.5rem; display:flex; flex-direction:column; }
.mobile-menu.open { right:0; }
.mobile-close { align-self:flex-end; color:var(--gray); font-size:20px; margin-bottom:1.5rem; padding:0.25rem; }
.mobile-logo img { width:90px; margin-bottom:2rem; }
.mobile-links { list-style:none; }
.mobile-links li { border-bottom:1px solid var(--border); }
.mobile-links a { display:block; padding:0.9rem 0; font-family:var(--ff-d); font-size:20px; letter-spacing:0.08em; color:var(--gray); transition: color 0.2s, padding-left 0.2s; }
.mobile-links a:hover { color:var(--white); padding-left:0.5rem; }
.mobile-links .highlight { color:var(--red); }
.overlay { position:fixed; inset:0; background:rgba(0,0,0,0.7); z-index:150; opacity:0; pointer-events:none; transition:opacity 0.3s; }
.overlay.active { opacity:1; pointer-events:all; }

/* ─── BUTTONS ─── */
.btn { display:inline-flex; align-items:center; justify-content:center; gap:0.5rem; padding:0.85rem 2rem; font-family:var(--ff-d); font-size:16px; letter-spacing:0.15em; border:2px solid transparent; transition:all 0.2s; cursor:pointer; }
.btn-primary { background:var(--red); color:white; border-color:var(--red); }
.btn-primary:hover { background:var(--red-dark); border-color:var(--red-dark); transform:translateY(-2px); box-shadow:0 8px 24px var(--red-glow); }
.btn-outline { background:transparent; color:var(--white); border-color:var(--border2); }
.btn-outline:hover { border-color:var(--white); transform:translateY(-2px); }
.btn-full { width:100%; }
.btn-big { padding:1rem 2rem; font-size:18px; }

/* ─── HERO ─── */
.hero { position:relative; min-height:calc(100vh - 100px); display:flex; align-items:center; overflow:hidden; }
.hero-bg { position:absolute; inset:0; }
.hero-grid { position:absolute; inset:0; background-image:linear-gradient(rgba(229,34,34,0.035) 1px,transparent 1px),linear-gradient(90deg,rgba(229,34,34,0.035) 1px,transparent 1px); background-size:60px 60px; }
.hero-content { position:relative; z-index:1; max-width:1400px; margin:0 auto; padding:6rem 2rem; }
.hero-eyebrow { font-family:var(--ff-m); font-size:11px; letter-spacing:0.3em; color:var(--red); margin-bottom:1.5rem; display:flex; align-items:center; gap:1rem; }
.hero-eyebrow::before { content:''; width:36px; height:2px; background:var(--red); }
.hero-title { display:flex; flex-direction:column; font-family:var(--ff-d); line-height:0.9; margin-bottom:1.5rem; }
.hero-line { display:block; font-size:clamp(72px,13vw,170px); letter-spacing:-0.02em; }
.hero-line.white { color:var(--white); }
.hero-line.outline { -webkit-text-stroke:2px var(--red); color:transparent; }
.hero-sub { font-size:17px; color:var(--gray); max-width:460px; line-height:1.6; margin-bottom:2.5rem; }
.hero-btns { display:flex; gap:1rem; flex-wrap:wrap; }

/* ─── MARQUEE ─── */
.marquee-strip { background:var(--red); padding:10px 0; overflow:hidden; }
.marquee-track { display:flex; gap:3rem; white-space:nowrap; animation:ticker 22s linear infinite; font-family:var(--ff-d); font-size:17px; letter-spacing:0.12em; }
.marquee-track span { flex-shrink:0; }

/* ─── SECTIONS ─── */
.section { max-width:1400px; margin:0 auto; padding:5rem 2rem; }
.section-header { display:flex; align-items:baseline; gap:1.5rem; margin-bottom:2.5rem; flex-wrap:wrap; }
.section-label { font-family:var(--ff-m); font-size:10px; letter-spacing:0.3em; color:var(--red); }
.section-title { font-family:var(--ff-d); font-size:clamp(30px,5vw,52px); letter-spacing:0.06em; flex:1; }
.section-link { font-family:var(--ff-m); font-size:11px; letter-spacing:0.15em; color:var(--gray); transition:color 0.2s; }
.section-link:hover { color:var(--red); }

/* ─── PRODUCT CARDS ─── */
.products-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(260px,1fr)); gap:1.5rem; }
.product-card { background:var(--card); border:1px solid var(--border); transition:transform 0.3s, border-color 0.3s, box-shadow 0.3s; }
.product-card:hover { transform:translateY(-6px); border-color:var(--border2); box-shadow:0 16px 40px rgba(0,0,0,0.5); }
.product-img-wrap { position:relative; display:block; aspect-ratio:1/1.1; overflow:hidden; background:#0d0d0d; }
.product-img-wrap img { width:100%; height:100%; object-fit:cover; transition:transform 0.5s; }
.product-card:hover .product-img-wrap img { transform:scale(1.06); }
.product-hover-overlay { position:absolute; inset:0; background:rgba(229,34,34,0.82); display:flex; align-items:center; justify-content:center; opacity:0; transition:opacity 0.3s; font-family:var(--ff-d); font-size:17px; letter-spacing:0.2em; }
.product-card:hover .product-hover-overlay { opacity:1; }
.badge-new { position:absolute; top:12px; left:12px; padding:4px 10px; font-family:var(--ff-m); font-size:10px; font-weight:700; letter-spacing:0.1em; z-index:2; background:var(--white); color:var(--black); }
.product-info { padding:1rem; }
.product-cat { font-family:var(--ff-m); font-size:10px; letter-spacing:0.2em; color:var(--gray2); margin-bottom:0.25rem; }
.product-name { font-family:var(--ff-d); font-size:20px; letter-spacing:0.04em; margin-bottom:0.5rem; line-height:1.2; }
.product-name:hover { color:var(--red); }
.product-price { font-family:var(--ff-m); font-size:15px; font-weight:700; margin-bottom:0.75rem; }
.btn-add-cart { width:100%; padding:0.65rem; background:transparent; border:1px solid var(--border2); color:var(--gray); font-family:var(--ff-d); font-size:14px; letter-spacing:0.1em; transition:all 0.2s; cursor:pointer; }
.btn-add-cart:hover { background:var(--red); border-color:var(--red); color:white; }

/* ─── BANNER CTA ─── */
.banner-cta { background:var(--dark); border-top:1px solid var(--border); border-bottom:1px solid var(--border); }
.banner-content { max-width:1400px; margin:0 auto; padding:5rem 2rem; display:flex; align-items:center; justify-content:space-between; gap:3rem; }
.banner-label { font-family:var(--ff-m); font-size:10px; letter-spacing:0.3em; color:var(--red); margin-bottom:0.75rem; }
.banner-text h2 { font-family:var(--ff-d); font-size:clamp(36px,5vw,68px); line-height:0.95; margin-bottom:1rem; letter-spacing:0.02em; }
.banner-text p { color:var(--gray); font-size:16px; margin-bottom:2rem; }
.banner-text .red { color:var(--red); }
.banner-visual { flex-shrink:0; animation:spin 25s linear infinite; }
@keyframes spin { from{transform:rotate(0)} to{transform:rotate(360deg)} }

/* ─── FEATURES ─── */
.features-strip { display:flex; border-top:1px solid var(--border); }
.feature-item { flex:1; display:flex; align-items:center; gap:1rem; padding:2rem; border-right:1px solid var(--border); }
.feature-item:last-child { border-right:none; }
.feature-icon { font-size:24px; }
.feature-title { font-family:var(--ff-d); font-size:16px; letter-spacing:0.04em; }
.feature-sub { font-size:13px; color:var(--gray); }

/* ─── SHOP PAGE ─── */
.shop-hero { background:var(--dark); border-bottom:1px solid var(--border); padding:4rem 2rem; text-align:center; position:relative; overflow:hidden; }
.shop-hero::before { content:'SHOP'; position:absolute; font-family:var(--ff-d); font-size:22vw; color:rgba(255,255,255,0.015); top:50%; left:50%; transform:translate(-50%,-50%); white-space:nowrap; pointer-events:none; }
.shop-hero-title { font-family:var(--ff-d); font-size:clamp(44px,8vw,96px); letter-spacing:0.1em; position:relative; }
.shop-hero-sub { font-family:var(--ff-m); font-size:11px; letter-spacing:0.3em; color:var(--red); margin-top:0.5rem; }
.shop-section { max-width:1400px; margin:0 auto; padding:3rem 2rem 5rem; }

/* ─── PRODUCT DETAIL ─── */
.product-detail-page { max-width:1400px; margin:0 auto; padding:2rem 2rem 5rem; }
.breadcrumb { font-family:var(--ff-m); font-size:11px; letter-spacing:0.08em; color:var(--gray2); margin-bottom:2rem; }
.breadcrumb a { color:var(--gray2); transition:color 0.2s; }
.breadcrumb a:hover { color:var(--red); }
.product-detail-grid { display:grid; grid-template-columns:1fr 1fr; gap:4rem; margin-bottom:5rem; }
.product-images { position:sticky; top:80px; align-self:start; }
.product-main-img { border:1px solid var(--border); overflow:hidden; aspect-ratio:1/1.1; background:#0a0a0a; }
.product-main-img img { width:100%; height:100%; object-fit:cover; }
.product-detail-cat { font-family:var(--ff-m); font-size:10px; letter-spacing:0.3em; color:var(--red); margin-bottom:0.5rem; }
.product-detail-name { font-family:var(--ff-d); font-size:clamp(30px,4vw,48px); letter-spacing:0.04em; line-height:1; margin-bottom:1.25rem; }
.price-big { font-family:var(--ff-m); font-size:28px; font-weight:700; display:block; margin-bottom:1.5rem; }
.product-detail-desc { color:var(--gray); font-size:16px; line-height:1.6; margin-bottom:2rem; padding-top:1.5rem; border-top:1px solid var(--border); }
.option-group { margin-bottom:1.5rem; }
.option-label { display:block; font-family:var(--ff-m); font-size:10px; letter-spacing:0.2em; color:var(--gray); margin-bottom:0.75rem; }
.size-options { display:flex; gap:0.5rem; flex-wrap:wrap; }
.size-btn { min-width:46px; height:42px; padding:0 0.75rem; border:1px solid var(--border2); color:var(--gray); font-family:var(--ff-m); font-size:12px; background:transparent; transition:all 0.15s; cursor:pointer; }
.size-btn:hover { border-color:var(--white); color:var(--white); }
.size-btn.selected { border-color:var(--red); background:var(--red); color:white; }
.qty-control { display:flex; align-items:center; border:1px solid var(--border2); width:fit-content; }
.qty-btn { width:40px; height:40px; font-size:18px; color:var(--gray); transition:color 0.2s, background 0.2s; cursor:pointer; }
.qty-btn:hover { color:var(--white); background:var(--dark2); }
.qty-input { width:56px; text-align:center; background:transparent; border:none; border-left:1px solid var(--border2); border-right:1px solid var(--border2); color:var(--white); font-family:var(--ff-m); font-size:15px; height:40px; outline:none; }
.stock-note { font-family:var(--ff-m); font-size:11px; color:#4caf50; margin-top:0.75rem; }
.product-meta { margin-top:2rem; padding-top:1.5rem; border-top:1px solid var(--border); display:flex; flex-direction:column; gap:0.5rem; }
.meta-item { font-size:14px; color:var(--gray); }

/* ─── CART DRAWER ─── */
.cart-drawer { position:fixed; top:0; right:-420px; width:400px; height:100vh; background:var(--dark); border-left:1px solid var(--border); z-index:300; transition:right 0.35s cubic-bezier(0.4,0,0.2,1); display:flex; flex-direction:column; }
.cart-drawer.open { right:0; }
.cart-drawer-header { display:flex; align-items:center; justify-content:space-between; padding:1.5rem; border-bottom:1px solid var(--border); }
.cart-drawer-header h2 { font-family:var(--ff-d); font-size:22px; letter-spacing:0.1em; }
.cart-close { color:var(--gray); font-size:20px; cursor:pointer; padding:0.25rem; transition:color 0.2s; }
.cart-close:hover { color:var(--red); }
.cart-drawer-items { flex:1; overflow-y:auto; padding:1rem 1.5rem; }
.cart-drawer-empty { text-align:center; padding:4rem 1rem; }
.cart-drawer-empty p { font-family:var(--ff-d); font-size:20px; color:var(--gray); margin-bottom:1.5rem; }
.cart-item { display:flex; gap:1rem; padding:1rem 0; border-bottom:1px solid var(--border); }
.cart-item-img { width:70px; height:70px; flex-shrink:0; border:1px solid var(--border); overflow:hidden; }
.cart-item-img img { width:100%; height:100%; object-fit:cover; }
.cart-item-info { flex:1; min-width:0; }
.cart-item-info h4 { font-family:var(--ff-d); font-size:17px; letter-spacing:0.04em; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.cart-item-meta { font-size:12px; color:var(--gray); margin-top:0.2rem; font-family:var(--ff-m); }
.cart-item-price { font-family:var(--ff-m); font-size:14px; font-weight:700; margin-top:0.4rem; }
.cart-item-actions { display:flex; flex-direction:column; align-items:flex-end; gap:0.5rem; flex-shrink:0; }
.cart-item-remove { color:var(--gray2); font-size:14px; cursor:pointer; transition:color 0.2s; background:none; border:none; padding:0.2rem; }
.cart-item-remove:hover { color:var(--red); }
.cart-item-qty { display:flex; align-items:center; border:1px solid var(--border2); }
.cqty-btn { width:28px; height:28px; display:flex; align-items:center; justify-content:center; font-size:16px; color:var(--gray); cursor:pointer; background:none; border:none; transition:color 0.2s; }
.cqty-btn:hover { color:var(--white); }
.cqty-num { width:30px; text-align:center; font-family:var(--ff-m); font-size:13px; color:var(--white); }
.cart-drawer-footer { padding:1.5rem; border-top:1px solid var(--border); }
.cart-summary-row { display:flex; justify-content:space-between; padding:0.5rem 0; font-size:15px; color:var(--gray); border-bottom:1px solid var(--border); }
.cart-summary-total { display:flex; justify-content:space-between; padding:0.75rem 0; font-family:var(--ff-m); font-weight:700; font-size:18px; color:var(--white); border-bottom:2px solid var(--red); margin-bottom:1rem; }
.free-ship-note { font-family:var(--ff-m); font-size:11px; color:var(--red); margin:0.4rem 0; }

/* ─── CHECKOUT PAGE ─── */
.checkout-page { max-width:1100px; margin:0 auto; padding:3rem 2rem 5rem; }
.page-title { font-family:var(--ff-d); font-size:clamp(36px,6vw,72px); letter-spacing:0.1em; margin-bottom:3rem; }
.checkout-grid { display:grid; grid-template-columns:1fr 340px; gap:3rem; }
.form-section { margin-bottom:2rem; }
.form-section h2 { font-family:var(--ff-d); font-size:20px; letter-spacing:0.1em; margin-bottom:1.25rem; border-bottom:1px solid var(--border); padding-bottom:0.75rem; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:1rem; }
.form-group { display:flex; flex-direction:column; gap:0.4rem; margin-bottom:1rem; }
.form-group label { font-family:var(--ff-m); font-size:10px; letter-spacing:0.2em; color:var(--gray); }
.form-group input, .form-group select, .form-group textarea { background:var(--dark2); border:1px solid var(--border2); color:var(--white); padding:0.75rem 1rem; font-size:15px; outline:none; transition:border-color 0.2s; width:100%; appearance:none; }
.form-group input:focus, .form-group select:focus { border-color:var(--red); }
.payment-options { display:flex; flex-direction:column; gap:0.75rem; }
.payment-option { cursor:pointer; }
.payment-option input[type="radio"] { display:none; }
.payment-option-inner { display:flex; align-items:center; gap:1rem; padding:1rem 1.25rem; border:2px solid var(--border2); background:var(--dark2); transition:border-color 0.2s; }
.payment-option input:checked + .payment-option-inner { border-color:var(--red); }
.payment-icon { font-size:22px; }
.payment-option-inner strong { display:block; font-family:var(--ff-d); font-size:16px; }
.payment-option-inner span { font-size:13px; color:var(--gray); display:block; }
.checkout-summary-box { background:var(--dark); border:1px solid var(--border); padding:1.5rem; height:fit-content; position:sticky; top:80px; }
.checkout-summary-box h2 { font-family:var(--ff-d); font-size:20px; letter-spacing:0.1em; margin-bottom:1.25rem; border-bottom:1px solid var(--border); padding-bottom:0.75rem; }
.checkout-items { margin-bottom:1rem; }
.checkout-item { display:flex; align-items:center; gap:1rem; padding:0.75rem 0; border-bottom:1px solid var(--border); }
.checkout-item-img { position:relative; width:48px; height:48px; flex-shrink:0; border:1px solid var(--border); overflow:hidden; }
.checkout-item-img img { width:100%; height:100%; object-fit:cover; }
.checkout-qty-badge { position:absolute; top:-5px; right:-5px; background:var(--red); color:white; font-size:9px; font-family:var(--ff-m); font-weight:700; width:16px; height:16px; border-radius:50%; display:flex; align-items:center; justify-content:center; }
.checkout-item-info { flex:1; min-width:0; }
.checkout-item-info p { font-size:14px; font-weight:600; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.checkout-item-info small { font-size:12px; color:var(--gray); }
.checkout-item > span { font-family:var(--ff-m); font-size:13px; white-space:nowrap; }
.checkout-totals { border-top:1px solid var(--border); padding-top:0.5rem; }
.summary-row { display:flex; justify-content:space-between; padding:0.5rem 0; border-bottom:1px solid var(--border); font-size:15px; color:var(--gray); }
.total-row { font-family:var(--ff-m); font-weight:700; color:var(--white); font-size:17px; border-color:var(--red); }

/* ─── SUCCESS ─── */
.success-page { min-height:70vh; display:flex; align-items:center; justify-content:center; padding:3rem 2rem; }
.success-container { max-width:560px; width:100%; text-align:center; }
.success-icon { font-size:60px; margin-bottom:1rem; }
.success-title { font-family:var(--ff-d); font-size:52px; letter-spacing:0.1em; margin-bottom:0.5rem; color:var(--red); }
.success-sub { color:var(--gray); margin-bottom:2.5rem; font-size:17px; }
.success-order-box { background:var(--dark); border:1px solid var(--border); padding:1.5rem; text-align:left; margin-bottom:2rem; }
.success-ref { font-family:var(--ff-m); font-size:13px; color:var(--red); margin-bottom:1rem; padding-bottom:1rem; border-bottom:1px solid var(--border); }
.success-detail-row { display:flex; justify-content:space-between; padding:0.5rem 0; border-bottom:1px solid var(--border); font-size:14px; color:var(--gray); }
.success-actions { display:flex; gap:1rem; justify-content:center; flex-wrap:wrap; margin-top:2rem; }

/* ─── TOAST ─── */
.toast { position:fixed; bottom:2rem; right:2rem; z-index:9999; background:var(--red); color:white; font-family:var(--ff-m); font-size:12px; letter-spacing:0.08em; padding:0.85rem 1.5rem; border-left:4px solid var(--red-dark); box-shadow:0 4px 20px var(--red-glow); transform:translateY(100px); opacity:0; transition:all 0.3s cubic-bezier(0.4,0,0.2,1); pointer-events:none; }
.toast.show { transform:translateY(0); opacity:1; }

/* ─── FOOTER ─── */
.footer { background:var(--dark); border-top:1px solid var(--border); }
.footer-top { max-width:1400px; margin:0 auto; padding:4rem 2rem 3rem; display:grid; grid-template-columns:2fr 1fr 1fr 2fr; gap:3rem; }
.footer-logo { width:110px; margin-bottom:1rem; }
.footer-tagline { font-size:14px; color:var(--gray); line-height:1.6; margin-bottom:1.5rem; }
.footer-socials { display:flex; gap:0.6rem; }
.social-link { width:34px; height:34px; border:1px solid var(--border2); display:flex; align-items:center; justify-content:center; font-family:var(--ff-m); font-size:9px; color:var(--gray); transition:all 0.2s; }
.social-link:hover { background:var(--red); border-color:var(--red); color:white; }
.footer-col h4 { font-family:var(--ff-d); font-size:14px; letter-spacing:0.2em; margin-bottom:1rem; }
.footer-col ul { list-style:none; }
.footer-col li { margin-bottom:0.5rem; }
.footer-col a { font-size:14px; color:var(--gray); transition:color 0.2s; }
.footer-col a:hover { color:var(--red); }
.footer-newsletter p { font-size:14px; color:var(--gray); margin-bottom:1rem; line-height:1.5; }
.newsletter-form { display:flex; }
.newsletter-form input { flex:1; background:var(--black); border:1px solid var(--border2); border-right:none; color:var(--white); padding:0.65rem 1rem; font-family:var(--ff-m); font-size:12px; outline:none; }
.newsletter-form input:focus { border-color:var(--red); }
.newsletter-form button { background:var(--red); color:white; padding:0 1rem; font-size:18px; border:1px solid var(--red); cursor:pointer; }
.newsletter-form button:hover { background:var(--red-dark); }
.newsletter-ok { font-family:var(--ff-m); font-size:12px; color:#4caf50; margin-top:0.5rem; display:none; }
.footer-bottom { border-top:1px solid var(--border); padding:1.25rem 2rem; display:flex; align-items:center; justify-content:space-between; max-width:1400px; margin:0 auto; }
.footer-bottom p { font-family:var(--ff-m); font-size:11px; letter-spacing:0.08em; color:var(--gray2); }
.payment-icons { display:flex; gap:0.5rem; }
.payment-icons span { border:1px solid var(--border2); padding:3px 8px; font-family:var(--ff-m); font-size:10px; color:var(--gray2); }

/* ─── RESPONSIVE ─── */
@media (max-width:1024px) {
  .footer-top { grid-template-columns:1fr 1fr; }
  .product-detail-grid { grid-template-columns:1fr; }
  .product-images { position:static; }
}
@media (max-width:768px) {
  .nav-links { display:none; }
  .menu-btn { display:flex; }
  .hero-content { padding:4rem 1.5rem; }
  .features-strip { flex-direction:column; }
  .feature-item { border-right:none; border-bottom:1px solid var(--border); }
  .checkout-grid { grid-template-columns:1fr; }
  .checkout-summary-box { position:static; }
  .banner-content { flex-direction:column; text-align:center; }
  .banner-visual { display:none; }
  .footer-top { grid-template-columns:1fr; gap:2rem; }
  .form-row { grid-template-columns:1fr; }
  .cart-drawer { width:100%; right:-100%; }
}
@media (max-width:480px) {
  .products-grid { grid-template-columns:repeat(2,1fr); gap:0.75rem; }
  .footer-bottom { flex-direction:column; gap:0.75rem; text-align:center; }
}
