/* ============================================================
   TANK ROAD — تانك رود
   Shock Surplus style — light theme, sharp corners, orange
   ============================================================ */

:root {
  --black: #020202;
  --white: #ffffff;
  --orange: #ff6800;
  --gold: #ffb800;
  --light: #efefef;
  --body: #e6e6e6;
  --muted: #898989;
  --dark: #232323;
  --green: #48c11e;
  --blue: #48cdff;
  --font-head: 'Cairo', sans-serif;
  --font-body: 'Tajawal', sans-serif;
  --header-h: 76px;
  --border-t: 16px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--body);
  color: var(--black);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* no border-radius anywhere — the signature */
button, input, select, textarea, .btn, img, .card { border-radius: 0 !important; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; background: none; border: none; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }

h1, h2, h3, h4, h5, h6 { font-family: var(--font-head); font-weight: 800; line-height: 1.25; }

bdi { unicode-bidi: plaintext; }

/* ============================================================
   BUTTONS — bold, uppercase, sharp
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 1.25rem 2.6rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

.btn svg { width: 18px; height: 18px; flex: none; }

.btn--primary {
  background: var(--orange);
  color: var(--black);
  border-color: var(--orange);
}
.btn--primary:hover { box-shadow: inset 0 0 0 2px var(--black); }

.btn--dark {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.btn--dark:hover { background: var(--orange); color: var(--black); border-color: var(--orange); }

.btn--secondary {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}
.btn--secondary:hover { background: var(--black); color: var(--white); }

.btn--secondary-light {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn--secondary-light:hover { background: var(--white); color: var(--black); }

.btn--block { width: 100%; }
.btn--lg { padding: 1.5rem 3.2rem; font-size: 1.1rem; }
.btn--sm { padding: 0.85rem 1.6rem; font-size: 0.9rem; }

/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */

.announce {
  background: var(--orange);
  color: var(--black);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.92rem;
  text-align: center;
  padding: 9px 16px;
  letter-spacing: 0.02em;
}
.announce a { text-decoration: underline; text-underline-offset: 3px; }

/* ============================================================
   HEADER — transparent over hero on index, white on scroll
   ============================================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid #d9d9d9;
  transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.site-header.transparent {
  background: transparent;
  border-bottom-color: rgba(255, 255, 255, 0.25);
}
.site-header.transparent.scrolled {
  background: var(--white);
  border-bottom-color: #d9d9d9;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: var(--header-h);
}

.logo {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.55rem;
  color: var(--black);
  letter-spacing: -0.02em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.logo .logo-mark {
  width: 34px;
  height: 34px;
  background: var(--orange);
  color: var(--black);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  font-weight: 900;
}
.logo .accent { color: var(--orange); }
.site-header.transparent:not(.scrolled) .logo { color: var(--white); }

.main-nav { display: flex; gap: 6px; }
.main-nav a {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  padding: 10px 14px;
  color: var(--black);
  position: relative;
  transition: color 0.2s ease;
}
.main-nav a:hover { color: var(--orange); }
.main-nav a.active { color: var(--orange); }
.main-nav a.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  inset-inline-start: 14px;
  width: calc(100% - 28px);
  height: 4px;
  background: var(--orange);
}
.site-header.transparent:not(.scrolled) .main-nav a { color: var(--white); }
.site-header.transparent:not(.scrolled) .main-nav a:hover,
.site-header.transparent:not(.scrolled) .main-nav a.active { color: var(--orange); }

.header-actions { display: flex; align-items: center; gap: 10px; }

.icon-btn {
  position: relative;
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  background: var(--light);
  transition: background 0.2s ease, color 0.2s ease;
}
.icon-btn:hover { background: var(--orange); color: var(--black); }
.icon-btn svg { width: 22px; height: 22px; }
.site-header.transparent:not(.scrolled) .icon-btn { color: var(--white); background: rgba(255, 255, 255, 0.14); }

.cart-count {
  position: absolute;
  top: 2px;
  inset-inline-start: 50%;
  transform: translateX(-50%);
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  background: var(--orange);
  color: var(--black);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.75rem;
  line-height: 20px;
  text-align: center;
  display: none;
}
.cart-count.show { display: block; }

.btn--wa {
  background: var(--orange);
  color: var(--black);
  border-color: var(--orange);
  padding: 0.7rem 1.3rem;
  font-size: 0.9rem;
}
.btn--wa:hover { box-shadow: inset 0 0 0 2px var(--black); }

.menu-toggle { display: none; }

/* ============================================================
   MOBILE MENU
   ============================================================ */

.mobile-menu {
  position: fixed;
  top: 0;
  inset-inline-start: 0;
  width: min(320px, 85vw);
  height: 100vh;
  height: 100dvh;
  background: var(--white);
  z-index: 1100;
  padding: 90px 20px 30px;
  overflow-y: auto;
  transform: translateX(0);
  transition: transform 0.3s ease;
}
[dir="rtl"] .mobile-menu { transform: translateX(100%); }
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a {
  display: block;
  padding: 14px 12px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  border-bottom: 1px solid var(--light);
}
.mobile-menu a:hover, .mobile-menu a.active { color: var(--orange); }
.mobile-menu .mm-wa { margin-top: 18px; }

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(2, 2, 2, 0.6);
  z-index: 1050;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.menu-overlay.show { opacity: 1; pointer-events: auto; }

/* ============================================================
   PLACEHOLDER [needs image]
   ============================================================ */

.ph {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background:
    repeating-linear-gradient(-45deg, #f4f4f4 0 14px, #ebebeb 14px 28px);
  color: var(--orange);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: lowercase;
  border: 2px dashed #cfcfcf;
}
.ph--dark {
  background:
    repeating-linear-gradient(-45deg, #202020 0 16px, #181818 16px 32px);
  color: var(--orange);
  border-color: #3a3a3a;
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
  position: relative;
  background: var(--black);
  border-bottom: 16px solid var(--orange);
}
.hero-visual {
  position: absolute;
  inset: 0;
}
.hero-visual img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-visual .ph { border: none; }
.hero-inner {
  position: relative;
  z-index: 2;
  padding: calc(var(--header-h) + 70px) 0 100px;
  max-width: 720px;
  color: var(--white);
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: var(--black);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  padding: 8px 16px;
  letter-spacing: 0.05em;
}
.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--black);
}
.hero h1 {
  font-size: clamp(2.6rem, 6vw, 5.2rem);
  font-weight: 900;
  margin: 26px 0 20px;
  text-transform: uppercase;
}
.hero h1 .accent { color: var(--orange); }
.hero .lead {
  font-size: 1.2rem;
  color: #d6d6d6;
  max-width: 620px;
  margin-bottom: 36px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 44px;
  margin-top: 54px;
  flex-wrap: wrap;
}
.hero-stats .item { border-inline-start: 4px solid var(--orange); padding-inline-start: 14px; }
.hero-stats .item strong {
  display: block;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.9rem;
  color: var(--white);
  line-height: 1.2;
}
.hero-stats .item span { font-size: 0.95rem; color: var(--muted); }

/* ============================================================
   SECTIONS
   ============================================================ */

.section { padding: 90px 0; background: var(--white); }
.section--alt { background: var(--light); }
.section--body { background: var(--body); }
.section--dark { background: var(--black); color: var(--white); }

.section-head { max-width: 760px; margin-bottom: 52px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-tag {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--orange);
  margin-bottom: 12px;
  padding-bottom: 6px;
  border-bottom: 3px solid var(--orange);
}
.section-head h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.9rem);
  font-weight: 900;
  text-transform: uppercase;
}
.section-head h2 .accent { color: var(--orange); }
.section-head p { color: var(--muted); font-size: 1.05rem; margin-top: 14px; }

/* ============================================================
   TRUST ROW
   ============================================================ */

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 2px solid var(--black);
  background: var(--white);
}
.trust-item {
  padding: 38px 28px;
  border-inline-end: 2px solid var(--black);
  text-align: center;
}
.trust-item:last-child { border-inline-end: none; }
.t-icon {
  width: 62px;
  height: 62px;
  margin: 0 auto 18px;
  background: var(--orange);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
}
.t-icon svg { width: 32px; height: 32px; }
.trust-item h3 { font-size: 1.15rem; font-weight: 800; text-transform: uppercase; margin-bottom: 4px; }
.trust-item p { color: var(--muted); font-size: 0.92rem; }

/* ============================================================
   CATEGORY CARDS — اختر سيارتك
   ============================================================ */

.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.cat-card {
  position: relative;
  display: block;
  background: var(--black);
  color: var(--white);
  overflow: hidden;
  min-height: 300px;
}
.cat-card .cc-img { position: absolute; inset: 0; }
.cat-card .cc-img img { width: 100%; height: 100%; object-fit: cover; opacity: 0.55; display: block; }
.cat-card .cc-img .ph { border: none; opacity: 0.55; }
.cat-card .cc-body {
  position: relative;
  z-index: 2;
  padding: 26px;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 6px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0) 55%);
  transition: background 0.3s ease;
}
.cat-card:hover .cc-body { background: rgba(255, 104, 0, 0.88); }
.cat-card h3 {
  font-size: 1.55rem;
  font-weight: 900;
  text-transform: uppercase;
}
.cat-card .cc-tag { color: #d6d6d6; font-size: 0.95rem; transition: color 0.3s ease; }
.cat-card:hover .cc-tag { color: rgba(0, 0, 0, 0.75); }
.cat-card .cc-arrow {
  position: absolute;
  top: 26px;
  inset-inline-end: 26px;
  width: 46px;
  height: 46px;
  background: var(--orange);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}
.cat-card .cc-arrow svg { width: 22px; height: 22px; }
.cat-card:hover .cc-arrow { transform: translateX(-6px); }

/* ============================================================
   PRODUCT CARDS
   ============================================================ */

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.product-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 2px solid var(--black);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.product-card:hover { box-shadow: 8px 8px 0 rgba(255, 104, 0, 0.55); transform: translate(-2px, -2px); }
.product-card.alt-bg { background: var(--light); }

.pc-img {
  position: relative;
  aspect-ratio: 1 / 1;
  border-bottom: 2px solid var(--black);
  overflow: hidden;
}
.pc-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pc-sale {
  position: absolute;
  top: 12px;
  inset-inline-start: 12px;
  background: var(--orange);
  color: var(--black);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.75rem;
  text-transform: uppercase;
  padding: 5px 10px;
  letter-spacing: 0.05em;
}

.pc-body { padding: 18px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.pc-cat {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange);
}
.pc-name {
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.45;
  min-height: 3em;
  color: var(--black);
}
.pc-stock {
  display: flex;
  align-items: center;
  gap: 7px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--green);
}
.pc-stock .dot {
  width: 9px;
  height: 9px;
  background: var(--green);
  display: inline-block;
}
.pc-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 2px;
  flex-wrap: wrap;
}
.pc-price .price {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.45rem;
  color: var(--black);
}
.pc-price .price .cur { font-size: 0.85rem; margin-inline-start: 3px; }
.pc-price .old {
  font-size: 0.95rem;
  color: var(--muted);
  text-decoration: line-through;
}
.pc-price .old .cur { font-size: 0.75rem; }

.pc-actions { margin-top: auto; padding-top: 10px; }
.btn--add { width: 100%; padding: 0.95rem 1rem; font-size: 0.95rem; }

/* ============================================================
   TESTIMONIALS SLIDER
   ============================================================ */

.testi-wrap { position: relative; max-width: 860px; margin: 0 auto; }
.testi-slider { overflow: hidden; }
.testi-track { display: flex; transition: transform 0.6s ease; }
.testi-slide {
  flex: 0 0 100%;
  padding: 10px 40px 40px;
  text-align: center;
}
.testi-slide .quote-mark {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 5rem;
  line-height: 1;
  color: var(--orange);
  display: block;
  margin-bottom: 6px;
}
.testi-slide .stars {
  color: var(--orange);
  font-size: 1.5rem;
  letter-spacing: 6px;
  margin-bottom: 18px;
}
.testi-slide blockquote {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(1.25rem, 2.4vw, 1.8rem);
  line-height: 1.8;
  margin-bottom: 26px;
}
.testi-slide .client strong { display: block; font-family: var(--font-head); font-size: 1.05rem; }
.testi-slide .client span { color: var(--muted); font-size: 0.9rem; }
.testi-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.testi-dots button {
  width: 14px;
  height: 14px;
  background: #cfcfcf;
  border: 2px solid var(--black);
  transition: background 0.2s ease;
}
.testi-dots button.active { background: var(--orange); }

/* ============================================================
   CTA BANNER
   ============================================================ */

.cta-banner {
  position: relative;
  background: var(--black);
  color: var(--white);
  border: 2px solid var(--black);
  border-top: 16px solid var(--orange);
  padding: 64px 48px;
  text-align: center;
}
.cta-banner h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.7rem);
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.cta-banner h2 .accent { color: var(--orange); }
.cta-banner p { color: #b9b9b9; font-size: 1.08rem; max-width: 640px; margin: 0 auto 34px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  background: var(--black);
  color: #b9b9b9;
  border-top: 16px solid var(--orange);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding: 70px 0 50px;
}
.footer-brand .logo { color: var(--white); margin-bottom: 18px; }
.footer-brand .logo .accent { color: var(--orange); }
.footer-brand p { font-size: 0.98rem; max-width: 320px; }
.footer-col h4 {
  color: var(--white);
  font-size: 1.05rem;
  text-transform: uppercase;
  margin-bottom: 18px;
  padding-bottom: 8px;
  border-bottom: 3px solid var(--orange);
  display: inline-block;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { transition: color 0.2s ease; }
.footer-col ul li a:hover { color: var(--orange); }
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  line-height: 1.6;
}
.footer-contact svg { width: 19px; height: 19px; flex: none; color: var(--orange); margin-top: 4px; }
.newsletter p { font-size: 0.95rem; margin-bottom: 14px; }
.newsletter form { display: flex; }
.newsletter input {
  flex: 1;
  padding: 12px 14px;
  border: 2px solid #3a3a3a;
  background: #121212;
  color: var(--white);
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
}
.newsletter input::placeholder { color: var(--muted); }
.newsletter input:focus { border-color: var(--orange); }
.newsletter button {
  padding: 12px 18px;
  background: var(--orange);
  color: var(--black);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.95rem;
}
.footer-bottom {
  border-top: 1px solid #2a2a2a;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 0.92rem;
}
.footer-bottom .accent { color: var(--orange); font-weight: 800; }

/* ============================================================
   PAGE HERO (subpages)
   ============================================================ */

.page-hero {
  background: var(--black);
  border-bottom: 16px solid var(--orange);
  color: var(--white);
  padding: 70px 0 64px;
}
.page-hero .crumbs {
  display: flex;
  gap: 8px;
  font-size: 0.92rem;
  color: var(--muted);
  margin-bottom: 18px;
  text-transform: uppercase;
}
.page-hero .crumbs a:hover { color: var(--orange); }
.page-hero .crumbs .sep { color: var(--orange); }
.page-hero h1 {
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  font-weight: 900;
  text-transform: uppercase;
}
.page-hero h1 .accent { color: var(--orange); }
.page-hero p { color: #b9b9b9; font-size: 1.1rem; margin-top: 12px; max-width: 640px; }

/* ============================================================
   SHOP — chips + search + grid
   ============================================================ */

.shop-bar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}
.shop-count {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
  background: var(--orange);
  color: var(--black);
  padding: 10px 18px;
  white-space: nowrap;
}
.shop-search { position: relative; width: min(420px, 100%); }
.shop-search input {
  width: 100%;
  padding: 14px 48px 14px 16px;
  border: 2px solid var(--black);
  background: var(--white);
  font-family: inherit;
  font-size: 1rem;
  outline: none;
}
.shop-search input:focus { border-color: var(--orange); }
.shop-search svg {
  position: absolute;
  top: 50%;
  inset-inline-start: 16px;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: var(--muted);
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}
.chip {
  padding: 10px 18px;
  background: var(--white);
  border: 2px solid var(--black);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.92rem;
  transition: background 0.2s ease, color 0.2s ease;
}
.chip:hover { background: var(--light); }
.chip.active {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--black);
}
.chip .chip-count { color: var(--muted); font-weight: 700; }
.chip.active .chip-count { color: rgba(0, 0, 0, 0.6); }

.empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 70px 20px;
  border: 2px dashed var(--muted);
  color: var(--muted);
}
.empty-state strong { display: block; font-family: var(--font-head); font-size: 1.4rem; color: var(--black); margin-bottom: 6px; }

/* ============================================================
   ABOUT
   ============================================================ */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: center;
}
.about-img {
  aspect-ratio: 4 / 3;
  border: 2px solid var(--black);
  overflow: hidden;
}
.about-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-content h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 900; margin: 14px 0 18px; text-transform: uppercase; }
.about-content h2 .accent { color: var(--orange); }
.about-content p { color: #444; font-size: 1.05rem; margin-bottom: 16px; }
.about-list { margin: 18px 0 26px; }
.about-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  margin-bottom: 12px;
}
.about-list .check {
  width: 30px;
  height: 30px;
  background: var(--orange);
  color: var(--black);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.about-list .check svg { width: 17px; height: 17px; }

.model-chips { display: flex; flex-wrap: wrap; gap: 12px; }
.model-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 2px solid var(--black);
  padding: 12px 18px;
  font-family: var(--font-head);
  font-weight: 700;
  transition: background 0.2s ease, color 0.2s ease;
}
.model-chip svg { width: 20px; height: 20px; color: var(--orange); }
.model-chip:hover { background: var(--orange); border-color: var(--orange); }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat-card {
  background: var(--white);
  border: 2px solid var(--black);
  border-top: 8px solid var(--orange);
  padding: 34px 22px;
  text-align: center;
}
.stat-card .num {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 2.6rem;
  color: var(--orange);
  line-height: 1.2;
}
.stat-card .lbl { font-family: var(--font-head); font-weight: 700; margin-top: 6px; text-transform: uppercase; }
.stat-card .sub { color: var(--muted); font-size: 0.88rem; }

.story-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.story-card {
  background: var(--white);
  border: 2px solid var(--black);
  overflow: hidden;
  transition: box-shadow 0.25s ease;
}
.story-card:hover { box-shadow: 8px 8px 0 rgba(255, 104, 0, 0.55); }
.story-card .sc-img { aspect-ratio: 4 / 3; border-bottom: 2px solid var(--black); overflow: hidden; }
.story-card .sc-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.story-card .sc-body { padding: 22px; }
.story-card h3 { font-size: 1.25rem; font-weight: 800; margin-bottom: 8px; text-transform: uppercase; }
.story-card p { color: var(--muted); font-size: 0.98rem; }

/* ============================================================
   CONTACT
   ============================================================ */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 48px;
  align-items: start;
}
.contact-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  border: 2px solid var(--black);
  padding: 20px;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
a.contact-card:hover { box-shadow: 6px 6px 0 rgba(255, 104, 0, 0.55); transform: translate(-2px, -2px); }
.c-icon {
  width: 52px;
  height: 52px;
  background: var(--orange);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.c-icon svg { width: 26px; height: 26px; }
.contact-card strong { display: block; font-family: var(--font-head); font-size: 1.02rem; margin-bottom: 2px; }
.contact-card span, .contact-card a { color: #444; font-size: 0.94rem; }

.contact-form {
  background: var(--white);
  border: 2px solid var(--black);
  border-top: 12px solid var(--orange);
  padding: 34px;
}
.contact-form h2 { font-size: 1.6rem; font-weight: 900; margin-bottom: 6px; text-transform: uppercase; }
.contact-form h2 .accent { color: var(--orange); }
.contact-form > p { color: var(--muted); font-size: 0.98rem; margin-bottom: 26px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.92rem;
  margin-bottom: 8px;
}
.form-group .req { color: var(--orange); }
.form-control {
  width: 100%;
  padding: 13px 14px;
  border: 2px solid #c9c9c9;
  background: var(--white);
  font-family: inherit;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s ease;
}
.form-control:focus { border-color: var(--orange); }
textarea.form-control { resize: vertical; min-height: 120px; }

/* ============================================================
   ACCOUNT
   ============================================================ */

.auth-wrap { display: flex; justify-content: center; }
.auth-card {
  width: min(460px, 100%);
  background: var(--white);
  border: 2px solid var(--black);
  border-top: 12px solid var(--orange);
  padding: 40px 36px;
  text-align: center;
}
.auth-logo {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  background: var(--orange);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
}
.auth-logo svg { width: 32px; height: 32px; }
.auth-card h1 { font-size: 1.6rem; font-weight: 900; margin-bottom: 6px; }
.auth-sub { color: var(--muted); margin-bottom: 26px; }
.auth-card form .form-group { text-align: start; margin-bottom: 18px; }
.auth-card form .btn { width: 100%; margin-top: 6px; }
.auth-hint {
  margin-top: 18px;
  background: #ffe9e0;
  border: 2px solid var(--orange);
  color: #a33c00;
  font-weight: 700;
  padding: 12px 16px;
  display: none;
}
.auth-hint.show { display: block; animation: shake 0.4s ease; }
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-6px); }
  75% { transform: translateX(6px); }
}
.auth-foot { margin-top: 20px; font-size: 0.95rem; }
.auth-foot a { color: var(--orange); font-weight: 700; }

/* ============================================================
   CART DRAWER
   ============================================================ */

.cart-drawer {
  position: fixed;
  top: 0;
  inset-inline-end: 0;
  width: min(420px, 92vw);
  height: 100vh;
  height: 100dvh;
  background: var(--white);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  border-inline-start: 2px solid var(--black);
  border-top: 8px solid var(--orange);
  transform: translateX(0);
  transition: transform 0.3s ease;
}
[dir="rtl"] .cart-drawer { transform: translateX(-100%); }
.cart-drawer.open { transform: translateX(0); }

.cart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px;
  border-bottom: 2px solid var(--black);
}
.cart-head h3 { font-size: 1.25rem; font-weight: 900; text-transform: uppercase; }
.cart-close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
  color: var(--white);
}
.cart-close svg { width: 18px; height: 18px; }
.cart-close:hover { background: var(--orange); color: var(--black); }

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 18px 22px;
}
.cart-empty {
  text-align: center;
  color: var(--muted);
  padding: 60px 0;
}
.cart-empty svg { width: 52px; height: 52px; margin: 0 auto 16px; display: block; color: var(--muted); }
.cart-empty p { font-weight: 700; }

.cart-item {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--light);
}
.cart-item:last-child { border-bottom: none; }
.ci-img {
  width: 78px;
  height: 78px;
  flex: none;
  border: 2px solid var(--black);
  overflow: hidden;
}
.ci-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ci-img .ph { font-size: 0.62rem; }
.ci-info { flex: 1; min-width: 0; }
.ci-info h4 { font-size: 0.95rem; font-weight: 700; line-height: 1.45; margin-bottom: 4px; }
.ci-price { font-family: var(--font-head); font-weight: 800; font-size: 1.05rem; margin-bottom: 8px; }
.ci-price .cur { font-size: 0.78rem; margin-inline-start: 3px; }
.ci-controls { display: flex; align-items: center; gap: 10px; }
.qty-btn {
  width: 30px;
  height: 30px;
  border: 2px solid var(--black);
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
}
.qty-btn:hover { background: var(--orange); }
.ci-qty { font-family: var(--font-head); font-weight: 800; min-width: 22px; text-align: center; }
.ci-remove {
  width: 34px;
  height: 34px;
  border: 2px solid var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  color: var(--black);
  flex: none;
}
.ci-remove svg { width: 15px; height: 15px; }
.ci-remove:hover { background: var(--black); color: var(--white); }

.cart-foot {
  border-top: 2px solid var(--black);
  padding: 20px 22px 24px;
  display: grid;
  gap: 10px;
}
.cart-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
  font-family: var(--font-head);
}
.cart-total span { font-weight: 700; text-transform: uppercase; }
.cart-total-amount { font-weight: 900; font-size: 1.3rem; }
.cart-total-amount .cur { font-size: 0.9rem; margin-inline-start: 3px; }

/* ============================================================
   PAYMENT MODAL
   ============================================================ */

.modal {
  position: fixed;
  inset: 0;
  z-index: 1300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.modal.show { opacity: 1; pointer-events: auto; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(2, 2, 2, 0.75); }
.modal-box {
  position: relative;
  width: min(480px, 100%);
  background: var(--white);
  border: 2px solid var(--black);
  border-top: 16px solid var(--orange);
  padding: 40px 34px;
  text-align: center;
  transform: translateY(14px);
  transition: transform 0.25s ease;
}
.modal.show .modal-box { transform: translateY(0); }
.modal-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: var(--orange);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-icon svg { width: 34px; height: 34px; }
.modal-box h3 { font-size: 1.5rem; font-weight: 900; text-transform: uppercase; margin-bottom: 12px; }
.modal-box p { color: var(--muted); margin-bottom: 26px; line-height: 1.8; }
.modal-actions { display: grid; gap: 10px; }

/* ============================================================
   TOAST / SCROLL TOP / REVEAL
   ============================================================ */

.toast {
  position: fixed;
  bottom: calc(24px + env(safe-area-inset-bottom));
  left: 50%;
  transform: translate(-50%, 90px);
  background: var(--black);
  color: var(--white);
  border: 2px solid var(--orange);
  font-weight: 700;
  padding: 14px 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1400;
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
  font-size: 0.98rem;
}
.toast.show { transform: translate(-50%, 0); opacity: 1; }
.toast .t-dot { width: 10px; height: 10px; background: var(--orange); flex: none; }

.scroll-top {
  position: fixed;
  bottom: calc(24px + env(safe-area-inset-bottom));
  inset-inline-end: 24px;
  width: 48px;
  height: 48px;
  background: var(--orange);
  color: var(--black);
  border: 2px solid var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 900;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.scroll-top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }
.scroll-top svg { width: 20px; height: 20px; }
.scroll-top:hover { background: var(--black); color: var(--white); }

.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1100px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .main-nav { display: none; }
  .menu-toggle { display: inline-flex; }
  .btn--wa { padding: 0.7rem 1rem; }
  .btn--wa .wa-text { display: none; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-item:nth-child(2) { border-inline-end: none; }
  .trust-item { border-bottom: 2px solid var(--black); }
  .trust-item:nth-last-child(-n+2) { border-bottom: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .story-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .cat-grid { grid-template-columns: 1fr; }
  .hero-inner { padding-top: calc(var(--header-h) + 44px); }
  .hero-stats { gap: 24px; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { border-inline-end: none; border-bottom: 2px solid var(--black); }
  .trust-item:last-child { border-bottom: none; }
  .contact-cards { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .cta-banner { padding: 48px 26px; }
  .pc-name { font-size: 0.92rem; }
  .pc-price .price { font-size: 1.2rem; }
  .pc-sale { font-size: 0.66rem; }
  .btn--lg { padding: 1.15rem 2rem; }
  .cart-drawer { width: 100vw; border-inline-start: none; }
}
