/* ============================================================
   SIXSKIN DESIGN — CSS Global
   ============================================================ */

/* ── Tokens ── */
:root {
  --black:    #080808;
  --surface:  #111;
  --card:     #161616;
  --card2:    #1c1c1c;
  --border:   #252525;
  --border2:  #2e2e2e;
  --orange:   #f55b00;
  --orange-d: #c44700;
  --orange-g: rgba(245,91,0,.15);
  --yellow:   #f4e20a;
  --green:    #22c55e;
  --red:      #ef4444;
  --blue:     #3b82f6;
  --white:    #f0ede8;
  --muted:    #777;
  --muted2:   #555;
  --radius:   10px;
  --radius-sm:6px;
  --fd: 'Barlow Condensed', sans-serif;
  --fb: 'Inter', sans-serif;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--fb);
  font-size: 14px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--fb); }
input, select, textarea { font-family: var(--fb); }
.hidden { display: none !important; }

/* ── Layout ── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 5vw; }
main { padding-top: 62px; min-height: 100vh; }
.section { padding: 96px 5vw; }
.section-label { font-family: var(--fd); font-size: 12px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--orange); margin-bottom: 12px; }
.section-title { font-family: var(--fd); font-size: clamp(36px,5vw,60px); font-weight: 800; text-transform: uppercase; line-height: 1; margin-bottom: 48px; }

/* ── Header ── */
#header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(8,8,8,.94); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border); height: 62px;
  display: flex; align-items: center; padding: 0 24px;
}
.header-inner { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.logo { font-family: var(--fd); font-size: 24px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; line-height: 1; }
.logo span { color: var(--orange); }
.logo-sub { font-size: 10px; font-weight: 300; letter-spacing: .22em; color: var(--muted); display: block; margin-top: 2px; text-transform: uppercase; }
.h-nav { display: flex; align-items: center; gap: 4px; }
.h-nav-link { font-family: var(--fd); font-size: 14px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); padding: 8px 14px; border-radius: var(--radius-sm); transition: all .2s; cursor: pointer; }
.h-nav-link:hover, .h-nav-link.active { color: var(--white); background: var(--card); }
.h-nav-link.admin-link { color: var(--orange); }
.h-actions { display: flex; align-items: center; gap: 8px; }
.h-icon-btn { background: none; border: none; color: var(--muted); padding: 8px; border-radius: var(--radius-sm); transition: all .2s; position: relative; font-size: 18px; display: flex; align-items: center; }
.h-icon-btn:hover { color: var(--white); background: var(--card); }
.cart-count { position: absolute; top: 2px; right: 2px; background: var(--orange); color: #fff; font-size: 9px; font-weight: 700; width: 15px; height: 15px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }

/* ── Buttons ── */
.btn { display: inline-flex; align-items: center; gap: 7px; font-family: var(--fd); font-size: 14px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; padding: 9px 18px; border-radius: var(--radius-sm); border: none; transition: all .2s; cursor: pointer; }
.btn-primary { background: var(--orange); color: #fff; }
.btn-primary:hover { background: var(--orange-d); transform: translateY(-1px); }
.btn-primary:disabled { background: var(--muted2); cursor: not-allowed; transform: none; }
.btn-outline { background: transparent; color: var(--white); border: 1px solid var(--border2); }
.btn-outline:hover { border-color: var(--orange); background: var(--orange-g); }
.btn-ghost { background: transparent; color: var(--muted); border: none; }
.btn-ghost:hover { color: var(--white); }
.btn-danger { background: rgba(239,68,68,.12); color: var(--red); border: 1px solid rgba(239,68,68,.2); }
.btn-danger:hover { background: rgba(239,68,68,.2); }
.btn-sm { padding: 6px 12px; font-size: 12px; }
.btn-lg { font-size: 16px; padding: 13px 28px; border-radius: 8px; }
.w-full { width: 100%; justify-content: center; }

/* ── Forms ── */
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-label { font-size: 12px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); }
.form-input, .form-select, .form-textarea {
  background: var(--card2); border: 1px solid var(--border2); border-radius: var(--radius-sm);
  color: var(--white); padding: 10px 14px; font-size: 14px; transition: border-color .2s; width: 100%;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { outline: none; border-color: var(--orange); }
.form-textarea { resize: vertical; min-height: 100px; }
.form-select option { background: var(--surface); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-row-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; }
.form-hint { font-size: 11px; color: var(--muted); margin-top: 4px; }
.required { color: var(--orange); }
.char-counter { font-size: 11px; color: var(--muted); text-align: right; margin-top: 4px; }

/* ── Cards ── */
.card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; }
.card-title { font-family: var(--fd); font-size: 18px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; margin-bottom: 16px; }

/* ── Badges ── */
.badge { display: inline-flex; align-items: center; padding: 3px 10px; border-radius: 20px; font-size: 11px; font-weight: 600; letter-spacing: .05em; }
.badge-orange { background: rgba(245,91,0,.15); color: var(--orange); }
.badge-green { background: rgba(34,197,94,.12); color: var(--green); }
.badge-yellow { background: rgba(244,226,10,.12); color: var(--yellow); }
.badge-blue { background: rgba(59,130,246,.12); color: var(--blue); }
.badge-red { background: rgba(239,68,68,.12); color: var(--red); }
.badge-muted { background: #1e1e1e; color: var(--muted); }

/* ── Toggle ── */
.toggle { position: relative; width: 40px; height: 22px; cursor: pointer; display: inline-block; }
.toggle input { opacity: 0; width: 0; height: 0; position: absolute; }
.toggle-track { position: absolute; inset: 0; background: var(--border2); border-radius: 20px; transition: .3s; }
.toggle input:checked + .toggle-track { background: var(--orange); }
.toggle-thumb { position: absolute; top: 3px; left: 3px; width: 16px; height: 16px; background: #fff; border-radius: 50%; transition: .3s; pointer-events: none; }
.toggle input:checked ~ .toggle-thumb { left: 21px; }

/* ── Table ── */
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; }
th { text-align: left; font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); padding: 10px 14px; border-bottom: 1px solid var(--border); }
td { padding: 13px 14px; border-bottom: 1px solid var(--border); font-size: 13px; vertical-align: middle; }
tr:last-child td { border-bottom: none; }
tr:hover td { background: rgba(255,255,255,.02); }
.td-actions { display: flex; gap: 6px; align-items: center; }
.thumb { width: 44px; height: 44px; border-radius: 6px; background: var(--card2); border: 1px solid var(--border2); display: flex; align-items: center; justify-content: center; font-size: 20px; overflow: hidden; }

/* ── Flash messages ── */
.flash { padding: 12px 20px; border-radius: var(--radius-sm); margin: 10px 0; font-size: 13px; }
.flash-success { background: rgba(34,197,94,.12); border: 1px solid rgba(34,197,94,.25); color: var(--green); }
.flash-error   { background: rgba(239,68,68,.12); border: 1px solid rgba(239,68,68,.25); color: var(--red); }
.flash-info    { background: rgba(59,130,246,.12); border: 1px solid rgba(59,130,246,.25); color: var(--blue); }

/* ── Alert ── */
.alert { padding: 12px 20px; border-radius: var(--radius-sm); margin-bottom: 16px; font-size: 13px; }
.alert a { text-decoration: underline; }
.alert-orange { background: var(--orange-g); border: 1px solid rgba(245,91,0,.3); color: var(--orange); }
.alert-yellow { background: rgba(244,226,10,.08); border: 1px solid rgba(244,226,10,.2); color: var(--yellow); }

/* ── Hero ── */
.hero { min-height: calc(100vh - 62px); display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 60px 5vw; position: relative; overflow: hidden; background: radial-gradient(ellipse 80% 55% at 50% 0%, rgba(245,91,0,.11) 0%, transparent 65%); }
.hero::before, .hero::after { content: ''; position: absolute; top: 0; bottom: 0; width: 1px; background: linear-gradient(to bottom, transparent, var(--orange) 35%, transparent); opacity: .3; }
.hero::before { left: 6vw; } .hero::after { right: 6vw; }
.hero-eye { font-family: var(--fd); font-size: 12px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--orange); margin-bottom: 20px; }
.hero h1 { font-family: var(--fd); font-size: clamp(56px,10vw,120px); font-weight: 800; line-height: .9; text-transform: uppercase; letter-spacing: -.01em; margin-bottom: 28px; }
.hero h1 em { font-style: italic; color: var(--orange); }
.hero-sub { max-width: 500px; font-size: 16px; color: var(--muted); line-height: 1.65; margin-bottom: 44px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

/* ── Categories grid ── */
.cats-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; margin-top: 48px; }
.cat-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 16px; text-align: center; cursor: pointer; transition: all .25s; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.cat-card:hover, .cat-card[data-selected] { border-color: var(--orange); transform: translateY(-4px); background: #1a1a1a; }
.cat-ico { width: 48px; height: 48px; background: var(--orange-g); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 22px; }
.cat-name { font-family: var(--fd); font-size: 14px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }

/* ── How it works ── */
.how-section { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 96px 5vw; }
.how-inner { max-width: 1280px; margin: 0 auto; }
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; }
.step { padding: 40px 32px; position: relative; }
.step:not(:last-child)::after { content: ''; position: absolute; right: 0; top: 40px; bottom: 40px; width: 1px; background: var(--border); }
.step-num { font-family: var(--fd); font-size: 72px; font-weight: 800; color: rgba(245,91,0,.12); line-height: 1; margin-bottom: 16px; }
.step-title { font-family: var(--fd); font-size: 22px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; margin-bottom: 12px; }
.step-title span { color: var(--orange); }
.step-desc { font-size: 13px; color: var(--muted); line-height: 1.65; }

/* ── Products ── */
.products-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.product-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: all .25s; cursor: pointer; }
.product-card:hover { border-color: var(--orange); transform: translateY(-3px); }
.product-img { width: 100%; aspect-ratio: 16/9; background: #1a1a1a; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.product-img img { width: 100%; height: 100%; object-fit: cover; }
.product-img-placeholder { display: flex; flex-direction: column; align-items: center; gap: 8px; color: var(--muted); }
.promo-badge { position: absolute; top: 12px; left: 12px; background: var(--yellow); color: #000; font-family: var(--fd); font-size: 13px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: 4px 10px; border-radius: 4px; }
.product-body { padding: 20px; }
.product-category { font-size: 11px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--orange); margin-bottom: 8px; }
.product-name { font-family: var(--fd); font-size: 20px; font-weight: 700; text-transform: uppercase; margin-bottom: 6px; }
.product-pricing { display: flex; align-items: baseline; gap: 10px; }
.price-old { font-size: 13px; color: var(--muted); text-decoration: line-through; }
.price-current { font-family: var(--fd); font-size: 28px; font-weight: 800; }
.price-current.discounted { color: var(--yellow); }

/* ── Trust band ── */
.trust-band { background: var(--card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 0 5vw; }
.trust-inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); }
.trust-item { padding: 36px 32px; display: flex; align-items: center; gap: 16px; position: relative; }
.trust-item:not(:last-child)::after { content: ''; position: absolute; right: 0; top: 24px; bottom: 24px; width: 1px; background: var(--border); }
.trust-icon { font-size: 28px; flex-shrink: 0; }
.trust-title { font-family: var(--fd); font-size: 16px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; }
.trust-desc { font-size: 12px; color: var(--muted); }

/* ── Fidélité ── */
.loyalty-card { background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 56px 64px; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; position: relative; overflow: hidden; }
.loyalty-card::before { content: ''; position: absolute; top: -80px; right: -80px; width: 280px; height: 280px; border-radius: 50%; background: radial-gradient(circle, rgba(245,91,0,.12) 0%, transparent 70%); pointer-events: none; }
.loyalty-label { font-family: var(--fd); font-size: 12px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--orange); margin-bottom: 16px; }
.loyalty-title { font-family: var(--fd); font-size: 48px; font-weight: 800; text-transform: uppercase; line-height: .95; margin-bottom: 20px; }
.loyalty-desc { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 32px; }
.loyalty-points { display: flex; flex-direction: column; gap: 16px; }
.lp-item { background: var(--surface); border: 1px solid var(--border); border-radius: 8px; padding: 20px 24px; display: flex; align-items: center; gap: 16px; }
.lp-num { font-family: var(--fd); font-size: 36px; font-weight: 800; color: var(--orange); min-width: 56px; }
.lp-text { font-size: 13px; color: var(--muted); }
.lp-text strong { color: var(--white); }

/* ── Configurateur ── */
.cfg-wrap { padding: 48px 5vw; }
.cfg-card { margin-bottom: 20px; }
.options-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.option-card { background: var(--card2); border: 2px solid var(--border2); border-radius: 8px; padding: 14px; cursor: pointer; transition: all .2s; text-align: center; display: block; }
.option-card input[type=radio] { display: none; }
.option-card:has(input:checked) { border-color: var(--orange); background: var(--orange-g); }
.option-card img { width: 100%; height: 80px; object-fit: cover; border-radius: 4px; margin-bottom: 8px; }
.opt-name { font-size: 13px; font-weight: 600; margin-bottom: 4px; }
.opt-old-price { font-size: 11px; color: var(--muted); text-decoration: line-through; }
.opt-final-price { font-family: var(--fd); font-size: 18px; font-weight: 700; color: var(--white); }
.has-promo .opt-final-price { color: var(--yellow); }
.liserets-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.liseret-label { display: flex; align-items: center; gap: 6px; cursor: pointer; font-size: 13px; background: var(--card2); border: 1px solid var(--border2); padding: 8px 14px; border-radius: 6px; transition: all .2s; }
.liseret-label:has(input:checked) { border-color: var(--orange); background: var(--orange-g); }
.liseret-label input { accent-color: var(--orange); }
.upload-zone { border: 2px dashed var(--border2); border-radius: var(--radius); padding: 32px; text-align: center; cursor: pointer; transition: all .2s; color: var(--muted); }
.upload-zone:hover { border-color: var(--orange); color: var(--white); background: var(--orange-g); }
.upload-icon { font-size: 32px; margin-bottom: 8px; }
.files-list { display: flex; flex-direction: column; gap: 8px; margin-top: 12px; }
.files-list li { display: flex; align-items: center; justify-content: space-between; background: var(--card2); border: 1px solid var(--border2); border-radius: 6px; padding: 8px 14px; font-size: 12px; }
.cfg-recap { background: var(--orange-g); border-color: rgba(245,91,0,.3); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
.recap-label { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--orange); margin-bottom: 4px; }
.recap-price { font-family: var(--fd); font-size: 48px; font-weight: 800; line-height: 1; }
.recap-price span { font-size: 24px; }
.recap-detail { font-size: 12px; color: var(--muted); margin-top: 4px; }
.radio-group { display: flex; gap: 16px; }
.radio-label { display: flex; align-items: center; gap: 8px; cursor: pointer; font-size: 14px; }
.radio-label input { accent-color: var(--orange); }
.vehicule-preview { display: flex; gap: 20px; align-items: center; margin-top: 16px; background: var(--card2); border: 1px solid var(--border2); border-radius: 8px; padding: 16px; }
.vehicule-preview img { width: 120px; height: 80px; object-fit: cover; border-radius: 6px; }

/* ── Checkout ── */
.checkout-wrap { padding: 48px 5vw; }
.checkout-grid { display: grid; grid-template-columns: 1fr 360px; gap: 24px; }
.checkout-item { margin-bottom: 14px; padding-bottom: 14px; border-bottom: 1px solid var(--border); }
.checkout-item:last-child { border-bottom: none; }
.stripe-info { background: var(--card2); border: 1px solid var(--border2); border-radius: 8px; padding: 14px 18px; margin-bottom: 16px; display: flex; align-items: center; gap: 16px; }
.stripe-logo { font-size: 14px; }
.stripe-cards { font-size: 12px; color: var(--muted); }
#payment-element { background: var(--card2); border: 1px solid var(--border2); border-radius: 8px; padding: 16px; min-height: 60px; }
.payment-message { padding: 10px 16px; border-radius: 6px; font-size: 13px; margin-top: 10px; background: rgba(239,68,68,.12); border: 1px solid rgba(239,68,68,.25); color: var(--red); }

/* ── Stats ── */
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-bottom: 24px; }
.stat-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px 24px; }
.stat-label { font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.stat-val { font-family: var(--fd); font-size: 40px; font-weight: 800; line-height: 1; }
.stat-val.orange { color: var(--orange); }

/* ── Page layout sidebar ── */
.admin-layout, .account-layout { display: grid; grid-template-columns: 240px 1fr; min-height: calc(100vh - 62px); }
.sidebar { background: var(--surface); border-right: 1px solid var(--border); padding: 24px 0; position: sticky; top: 62px; height: calc(100vh - 62px); overflow-y: auto; }
.sidebar-section { margin-bottom: 8px; }
.sidebar-title { font-size: 10px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--muted2); padding: 12px 20px 6px; }
.sidebar-link { display: flex; align-items: center; gap: 10px; padding: 9px 20px; font-size: 13px; font-weight: 500; color: var(--muted); transition: all .2s; cursor: pointer; border-left: 2px solid transparent; }
.sidebar-link:hover { color: var(--white); background: var(--card); }
.sidebar-link.active { color: var(--orange); border-left-color: var(--orange); background: rgba(245,91,0,.06); }
.sidebar-link .icon { width: 18px; text-align: center; font-size: 15px; }
.main-content { padding: 32px 36px; overflow-y: auto; }
.page-hd { margin-bottom: 32px; }
.page-hd-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.page-title { font-family: var(--fd); font-size: 36px; font-weight: 800; text-transform: uppercase; letter-spacing: .02em; }
.page-sub { font-size: 13px; color: var(--muted); }

/* ── Account ── */
.points-bar { height: 10px; background: var(--card2); border-radius: 10px; overflow: hidden; margin: 8px 0; }
.points-fill { height: 100%; background: linear-gradient(90deg,var(--orange),#ff8c42); border-radius: 10px; transition: width .6s; }
.promo-card { background: var(--card2); border: 1px solid var(--border2); border-radius: 8px; padding: 16px 20px; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.promo-code { font-family: var(--fd); font-size: 20px; font-weight: 700; letter-spacing: .12em; color: var(--orange); }
.msg-thread { display: flex; flex-direction: column; gap: 12px; max-height: 400px; overflow-y: auto; padding-right: 4px; }
.msg-bubble { padding: 12px 16px; border-radius: 10px; max-width: 80%; font-size: 13px; line-height: 1.55; }
.msg-bubble.client { background: var(--orange-g); border: 1px solid rgba(245,91,0,.25); align-self: flex-end; }
.msg-bubble.admin  { background: var(--card2); border: 1px solid var(--border); align-self: flex-start; }
.msg-meta { font-size: 10px; color: var(--muted); margin-top: 4px; letter-spacing: .04em; }
.order-status-steps { display: flex; margin: 16px 0; }
.oss { flex: 1; text-align: center; position: relative; }
.oss::after { content: ''; position: absolute; top: 14px; left: 50%; right: -50%; height: 2px; background: var(--border); }
.oss:last-child::after { display: none; }
.oss-dot { width: 28px; height: 28px; border-radius: 50%; background: var(--card2); border: 2px solid var(--border); display: flex; align-items: center; justify-content: center; margin: 0 auto 6px; font-size: 12px; position: relative; z-index: 1; }
.oss.done .oss-dot  { background: var(--green); border-color: var(--green); }
.oss.active .oss-dot { background: var(--orange); border-color: var(--orange); }
.oss-label { font-size: 10px; color: var(--muted); letter-spacing: .06em; text-transform: uppercase; }
.oss.active .oss-label { color: var(--orange); }

/* ── Footer ── */
footer { background: var(--surface); border-top: 1px solid var(--border); padding: 64px 5vw 32px; }
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 64px; }
.footer-brand .logo { font-size: 28px; margin-bottom: 16px; }
.footer-tagline { font-size: 13px; color: var(--muted); line-height: 1.7; margin-bottom: 24px; max-width: 280px; }
.footer-socials { display: flex; gap: 12px; }
.social-btn { width: 36px; height: 36px; background: var(--card); border: 1px solid var(--border); border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 16px; transition: border-color .2s; cursor: pointer; }
.social-btn:hover { border-color: var(--orange); }
.footer-col h4 { font-family: var(--fd); font-size: 14px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 20px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 13px; color: var(--muted); transition: color .2s; }
.footer-col a:hover { color: var(--orange); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 24px; display: flex; align-items: center; justify-content: space-between; font-size: 12px; color: var(--muted); }

/* ── Toast ── */
#toast-container { position: fixed; bottom: 28px; right: 28px; z-index: 9999; display: flex; flex-direction: column; gap: 8px; }
.toast-item { background: var(--card); border: 1px solid var(--border); border-radius: 8px; padding: 12px 18px; font-size: 13px; min-width: 220px; animation: toastIn .3s ease; display: flex; align-items: center; gap: 10px; }
.toast-success { border-left: 3px solid var(--green); }
.toast-error   { border-left: 3px solid var(--red); }
.toast-info    { border-left: 3px solid var(--blue); }
@keyframes toastIn { from { transform: translateX(60px); opacity: 0; } to { transform: translateX(0); opacity: 1; } }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .admin-layout, .account-layout { grid-template-columns: 1fr; }
  .sidebar { display: none; }
  .loyalty-card { grid-template-columns: 1fr; gap: 32px; padding: 36px 28px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .cats-grid { grid-template-columns: repeat(3,1fr); }
  .steps { grid-template-columns: 1fr 1fr; }
  .step:not(:last-child)::after { display: none; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .trust-inner { grid-template-columns: 1fr 1fr; }
  .checkout-grid { grid-template-columns: 1fr; }
  .form-row, .form-row-3 { grid-template-columns: 1fr; }
  .options-grid { grid-template-columns: 1fr 1fr; }
  .h-nav { display: none; }
  .main-content { padding: 20px 16px; }
}
@media (max-width: 480px) {
  .cats-grid { grid-template-columns: repeat(2,1fr); }
  .steps { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .trust-inner { grid-template-columns: 1fr; }
  .trust-item::after { display: none !important; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .options-grid { grid-template-columns: 1fr; }
}
