/* ============================================================
   Niko Collection — design tokens
   ============================================================ */
:root {
  color-scheme: only light;
  --bg: #faf8f4;
  --ink: #1c1a17;
  --panel: #f4efe6;
  --card: #fff;
  --warm: #f7edd2;
  --border: #e7e1d8;
  --border-input: #d9d1c5;
  --border-search: #e0d8cb;
  --muted: #57504a;
  --faint: #8a827a;
  --faintest: #a89a86;
  --danger: #a05a4a;
  --green-bg: #eef3ec;
  --green-text: #4f7a4a;
  --warm-pill-bg: #f6efe0;
  --accent: #9a7b4f;
  --accent-dark: #6f5836;
  --r-sm: 2px;
  --r-md: 4px;
  --r-lg: 6px;
  --tile-radius: 50%;
}

/* ============================================================
   Base
   ============================================================ */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: "Vazirmatn", system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
}
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-dark); }
::selection { background: #e9dcc4; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; }
h1, h2, h3, h4, p { margin: 0; }

.container { max-width: 1200px; margin: 0 auto; padding-inline: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }

.eyebrow {
  margin-bottom: 16px;
  font-size: 13px;
  letter-spacing: 4px;
  color: var(--accent);
  font-weight: 500;
}

/* Buttons */
.btn {
  display: inline-block;
  border: none;
  border-radius: var(--r-sm);
  font-size: 15px;
  text-align: center;
}
.btn-dark { background: var(--ink); color: var(--bg); padding: 16px 40px; }
.btn-dark:hover { color: var(--bg); opacity: 0.92; }
.btn-outline {
  background: none;
  color: var(--ink);
  border: 1px solid var(--ink);
  padding: 17px 28px;
}
.btn-accent { background: var(--accent); color: #fff; padding: 16px; }
.btn-accent:hover { background: var(--accent-dark); }
.btn-block { display: block; width: 100%; }

/* Form fields */
.field {
  width: 100%;
  padding: 14px;
  border: 1px solid var(--border-input);
  border-radius: var(--r-sm);
  font-size: 15px;
  background: var(--card);
  color: var(--ink);
  outline: none;
}
.field::placeholder { color: var(--faint); }
.form-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-2 .span-2 { grid-column: 1 / -1; }
.form-errors { margin: 0 0 16px; padding: 12px 16px; border: 1px solid var(--danger);
  border-radius: var(--r-sm); color: var(--danger); font-size: 13px; }
.form-errors p { margin: 2px 0; }

/* Image placeholder (hatch pattern from the handoff) */
.ph {
  background: repeating-linear-gradient(45deg, #f0ebe2, #f0ebe2 10px, #e9e2d7 10px, #e9e2d7 20px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ph span { font-family: monospace; font-size: 11px; color: var(--faintest); }

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 248, 244, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.hdr-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo { cursor: pointer; display: flex; align-items: baseline; gap: 8px; color: var(--ink); }
.logo:hover { color: var(--ink); }
.logo-fa { font-size: 32px; font-weight: 600; letter-spacing: 0.5px; }
.logo-en { font-size: 13px; color: var(--accent); font-weight: 500; letter-spacing: 2px; }
.desktop-nav { display: flex; align-items: center; gap: 34px; font-size: 15px; }
.desktop-nav a { color: var(--muted); }
.desktop-nav a.active { color: var(--accent); }
.hdr-actions { display: flex; align-items: center; gap: 20px; }
.search-box {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--card);
  border: 1px solid var(--border-search);
  border-radius: var(--r-sm);
  padding: 0 12px;
  height: 40px;
  width: 220px;
}
.search-box input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-size: 14px;
  color: var(--ink);
  min-width: 0;
}
.icon-btn {
  position: relative;
  background: none;
  border: none;
  padding: 6px;
  color: var(--ink);
  display: flex;
}
.cart-badge {
  position: absolute;
  top: -2px;
  left: -4px;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  min-width: 18px;
  height: 18px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  font-weight: 600;
}
.menu-btn { display: none; }

.mobile-nav {
  display: none;
  position: sticky;
  top: 76px;
  z-index: 49;
  flex-direction: column;
  gap: 2px;
  padding: 14px 20px 18px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.mobile-nav.open { display: flex; }
.mobile-nav .search-box { width: 100%; height: 44px; margin-bottom: 10px; }
.mobile-nav .search-box input { font-size: 15px; }
.mobile-nav a {
  padding: 12px 4px;
  font-size: 16px;
  color: var(--muted);
  border-bottom: 1px solid #efe9e0;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a.active { color: var(--accent); }

/* ============================================================
   Sections & headings
   ============================================================ */
.section { padding-top: 72px; }
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 28px;
}
.section-head h2 { font-size: 28px; font-weight: 600; }
.section-head a { font-size: 14px; }
.page-title { margin-bottom: 6px; font-size: 34px; font-weight: 600; }
.page-sub { margin-bottom: 32px; color: var(--faint); font-weight: 300; }

/* ============================================================
   Home
   ============================================================ */
.hero-section { padding-top: 28px; }
.hero-box {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  height: 520px;
  background-color: var(--warm);
  background-image: url("../img/hero.c88b32df29ba.png");
  background-size: cover;
  background-position: center left;
  display: flex;
  align-items: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    270deg,
    rgba(247, 237, 210, 0.96) 22%,
    rgba(247, 237, 210, 0.7) 40%,
    rgba(247, 237, 210, 0) 62%
  );
}
.hero-text { position: relative; margin-left: auto; padding: 0 64px; max-width: 520px; }
.hero-text h1 { margin-bottom: 20px; font-size: 52px; line-height: 1.25; font-weight: 600; }
.hero-text p {
  margin-bottom: 32px;
  font-size: 17px;
  line-height: 1.9;
  color: var(--muted);
  font-weight: 300;
}

.tile-item { cursor: pointer; display: flex; flex-direction: column; align-items: center; }
.tile {
  width: 100%;
  max-width: 190px;
  aspect-ratio: 1;
  border-radius: var(--tile-radius);
  overflow: hidden;
}
.tile-item > p { margin-top: 14px; text-align: center; font-size: 16px; font-weight: 500; }

.tile-card { display: flex; flex-direction: column; align-items: center; }
.tile-card .tile { cursor: pointer; }
.tile-card-info {
  padding-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: center;
}

.trust-grid { border-top: 1px solid var(--border); padding-top: 48px; }
.trust-item { text-align: center; }
.trust-item.bordered { border-inline: 1px solid var(--border); }
.trust-item svg { margin: 0 auto 14px; display: block; color: var(--accent); }
.trust-item h3 { margin-bottom: 8px; font-size: 17px; font-weight: 600; }
.trust-item p { color: var(--faint); font-size: 14px; font-weight: 300; }

.cta-band {
  background: var(--panel);
  border-radius: var(--r-lg);
  padding: 56px;
  text-align: center;
}
.cta-band h2 { margin-bottom: 12px; font-size: 28px; font-weight: 600; }
.cta-band p { margin-bottom: 28px; color: var(--muted); font-weight: 300; }

/* ============================================================
   Product cards (shop grid)
   ============================================================ */
.card { display: flex; flex-direction: column; }
.card-img {
  cursor: pointer;
  position: relative;
  height: 300px;
  border-radius: var(--r-md);
  overflow: hidden;
}
.card-info { padding-top: 14px; display: flex; flex-direction: column; gap: 6px; }
.card-cat { font-size: 12px; color: var(--accent); }
.card-name { cursor: pointer; font-size: 16px; font-weight: 500; color: var(--ink); }
.card-price { font-size: 15px; color: var(--muted); }

/* ============================================================
   Shop toolbar
   ============================================================ */
.shop-toolbar {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 36px;
}
.chips { display: flex; gap: 12px; flex-wrap: wrap; }
.chip {
  display: inline-block;
  border: 1px solid var(--border-input);
  background: var(--card);
  color: var(--muted);
  padding: 10px 22px;
  border-radius: var(--r-sm);
  font-size: 14px;
}
.chip:hover { color: var(--muted); border-color: var(--faintest); }
.chip.active { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.chip.active:hover { color: var(--bg); }
.shop-sort { display: flex; align-items: center; gap: 16px; }
.shop-count { font-size: 14px; color: var(--faint); }
.sort-select {
  appearance: none;
  -webkit-appearance: none;
  padding: 10px 14px 10px 38px;
  border: 1px solid var(--border-input);
  border-radius: var(--r-sm);
  font-size: 14px;
  background-color: var(--card);
  color: var(--ink);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none' stroke='%2357504a' stroke-width='1.6'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left 14px center;
}
.empty-state { text-align: center; padding: 72px 0; color: var(--faint); }
.empty-state p { font-size: 17px; margin-bottom: 20px; }
.empty-state .btn-dark { padding: 13px 30px; font-size: 14px; }

/* ============================================================
   Product detail
   ============================================================ */
.breadcrumb { margin-bottom: 28px; font-size: 13px; color: var(--faint); }
.breadcrumb a { color: var(--faint); }
.breadcrumb a:hover { color: var(--muted); }
.breadcrumb .current { color: var(--ink); }
.two-col { display: grid; gap: 56px; }
.pdp-grid { grid-template-columns: 1.1fr 1fr; }
.pdp-gallery { display: flex; flex-direction: column; gap: 14px; }
.pdp-main { position: relative; height: 520px; border-radius: var(--r-md); }
.pdp-main.ph {
  background: repeating-linear-gradient(45deg, #f0ebe2, #f0ebe2 12px, #e8e0d4 12px, #e8e0d4 24px);
}
.pdp-main.ph span { font-size: 12px; }
.pdp-thumbs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.pdp-thumbs .ph {
  height: 120px;
  border-radius: var(--r-md);
  background: repeating-linear-gradient(45deg, #f0ebe2, #f0ebe2 8px, #e9e2d7 8px, #e9e2d7 16px);
}
.pdp-info { padding-top: 8px; }
.pdp-info .card-cat { font-size: 13px; }
.pdp-info h1 { margin: 8px 0 14px; font-size: 34px; font-weight: 600; }
.pdp-price { margin-bottom: 24px; font-size: 24px; color: var(--ink); }
.pdp-desc {
  margin-bottom: 32px;
  font-size: 16px;
  line-height: 2;
  color: var(--muted);
  font-weight: 300;
}
.qty-row { display: flex; align-items: center; gap: 16px; margin-bottom: 28px; }
.qty-row > span { font-size: 14px; color: var(--muted); }
.stepper {
  display: flex;
  align-items: center;
  border: 1px solid var(--border-input);
  border-radius: var(--r-sm);
}
.stepper button {
  width: 44px;
  height: 46px;
  background: none;
  border: none;
  font-size: 20px;
  color: var(--muted);
}
.stepper output {
  width: 48px;
  text-align: center;
  font-size: 16px;
}
.pdp-actions { display: flex; gap: 14px; }
.pdp-actions .btn-dark { flex: 1; padding: 17px; }
.pdp-meta {
  margin-top: 36px;
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
  color: var(--muted);
  font-weight: 300;
}
.pdp-meta div { display: flex; justify-content: space-between; }
.pdp-meta div span:last-child { color: var(--ink); }

/* ============================================================
   Cart
   ============================================================ */
.narrow-container { max-width: 1080px; margin: 0 auto; padding-inline: 32px; }
.cart-grid { grid-template-columns: 1.6fr 1fr; gap: 48px; align-items: start; }
.cart-line {
  display: flex;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}
.cart-line .ph {
  width: 110px;
  height: 110px;
  flex-shrink: 0;
  border-radius: var(--r-md);
  background: repeating-linear-gradient(45deg, #f0ebe2, #f0ebe2 8px, #e9e2d7 8px, #e9e2d7 16px);
}
.cart-line .ph span { font-size: 9px; }
.cart-line-info { flex: 1; display: flex; flex-direction: column; gap: 6px; }
.cart-line-info .card-price { font-size: 14px; }
.cart-line-actions { display: flex; align-items: center; gap: 16px; margin-top: 6px; }
.cart-line-actions .stepper button { width: 34px; height: 34px; font-size: 17px; }
.cart-line-actions .stepper output { width: 38px; font-size: 14px; }
.remove-btn { background: none; border: none; color: var(--danger); font-size: 13px; padding: 0; }
.cart-line-total { text-align: left; font-size: 16px; font-weight: 500; }

.summary-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 28px;
}
.summary-card h3 { margin-bottom: 22px; font-size: 19px; font-weight: 600; }
.summary-rows { display: flex; flex-direction: column; gap: 14px; font-size: 15px; color: var(--muted); }
.summary-rows div { display: flex; justify-content: space-between; }
.summary-rows div span:last-child { color: var(--ink); }
.summary-total {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-size: 18px;
  font-weight: 600;
}
.summary-card .btn { margin-top: 24px; padding: 16px; font-size: 15px; }
.back-link {
  display: block;
  width: 100%;
  margin-top: 12px;
  background: none;
  color: var(--muted);
  border: none;
  padding: 8px;
  font-size: 14px;
  text-align: center;
}
.back-link:hover { color: var(--ink); }
.cart-empty { text-align: center; padding: 80px 0; }
.cart-empty p { font-size: 18px; color: var(--faint); margin-bottom: 24px; }
.cart-empty .btn-dark { padding: 15px 36px; }

/* ============================================================
   Checkout
   ============================================================ */
.checkout-grid { grid-template-columns: 1.5fr 1fr; gap: 48px; align-items: start; }
.checkout-form { display: flex; flex-direction: column; gap: 32px; }
.checkout-form h3 { margin-bottom: 18px; font-size: 18px; font-weight: 600; }
.pay-options { display: flex; flex-direction: column; gap: 12px; }
.pay-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--border-input);
  border-radius: var(--r-sm);
  background: var(--card);
  cursor: pointer;
  font-size: 15px;
}
.pay-option:has(input:checked) { border-color: var(--accent); background: #fdfbf7; }
.order-lines {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
  max-height: 260px;
  overflow: auto;
}
.order-lines div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}
.order-lines .l-name { color: var(--muted); }
.order-lines .l-total { color: var(--ink); white-space: nowrap; }
.summary-card .summary-rows.tight { gap: 12px; padding-top: 18px; border-top: 1px solid var(--border); }

/* ============================================================
   Account
   ============================================================ */
.order-success {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 36px;
  margin-bottom: 32px;
  text-align: center;
}
.check-circle {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--green-bg);
  color: var(--green-text);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 26px;
}
.order-success h2 { margin-bottom: 8px; font-size: 24px; font-weight: 600; }
.order-success p { color: var(--muted); font-weight: 300; }

.account-grid { grid-template-columns: 0.9fr 1.6fr; gap: 40px; align-items: start; }
.profile-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 28px;
}
.profile-head { display: flex; align-items: center; gap: 14px; margin-bottom: 24px; }
.avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #efe9e0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 20px;
  font-weight: 600;
}
.profile-head p:first-child { font-size: 16px; font-weight: 600; }
.profile-head p:last-child { margin-top: 2px; font-size: 13px; color: var(--faint); }
.account-nav { display: flex; flex-direction: column; gap: 4px; font-size: 15px; }
.account-nav span, .account-nav button {
  padding: 11px 14px;
  color: var(--muted);
  text-align: right;
  background: none;
  border: none;
  font-size: 15px;
}
.account-nav .active { background: var(--panel); border-radius: var(--r-sm); color: var(--ink); }
.account-nav .logout { color: var(--danger); cursor: pointer; }

.orders-list h3 { margin-bottom: 18px; font-size: 19px; font-weight: 600; }
.order-cards { display: flex; flex-direction: column; gap: 14px; }
.order-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.order-card .o-code { margin-bottom: 6px; font-size: 15px; font-weight: 500; }
.order-card .o-meta { font-size: 13px; color: var(--faint); }
.order-card .o-side { text-align: left; }
.order-card .o-total { margin-bottom: 8px; font-size: 15px; font-weight: 500; }
.status-pill { font-size: 12px; padding: 4px 12px; border-radius: 20px; }
.status-pill.delivered { background: var(--green-bg); color: var(--green-text); }
.status-pill.shipping { background: var(--warm-pill-bg); color: var(--accent); }
.no-orders { color: var(--faint); font-weight: 300; }

/* ============================================================
   Auth
   ============================================================ */
.auth-container { max-width: 460px; margin: 0 auto; padding: 64px 32px 96px; }
.auth-head { text-align: center; margin-bottom: 36px; }
.auth-head h1 { margin-bottom: 8px; font-size: 30px; font-weight: 600; }
.auth-head p { color: var(--faint); font-weight: 300; }
.auth-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 32px;
}
.auth-tabs {
  display: flex;
  gap: 4px;
  background: var(--panel);
  border-radius: var(--r-sm);
  padding: 4px;
  margin-bottom: 28px;
}
.auth-tabs a {
  flex: 1;
  padding: 11px;
  border-radius: var(--r-sm);
  font-size: 14px;
  text-align: center;
  color: var(--faint);
}
.auth-tabs a.active { background: var(--card); color: var(--ink); }
.auth-fields { display: flex; flex-direction: column; gap: 16px; }
.auth-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}
.auth-row label { display: flex; align-items: center; gap: 8px; color: var(--muted); cursor: pointer; }
.auth-fields .btn-dark { padding: 16px; margin-top: 4px; }
.divider { display: flex; align-items: center; gap: 14px; margin: 24px 0; }
.divider div { flex: 1; height: 1px; background: var(--border); }
.divider span { font-size: 12px; color: var(--faintest); }
.otp-btn {
  width: 100%;
  background: none;
  border: 1px solid var(--border-input);
  padding: 14px;
  font-size: 14px;
  border-radius: var(--r-sm);
  color: var(--ink);
}
.auth-terms {
  text-align: center;
  margin-top: 24px;
  font-size: 13px;
  color: var(--faint);
  font-weight: 300;
}

/* ============================================================
   About
   ============================================================ */
.about-intro { text-align: center; max-width: 680px; margin: 0 auto; padding-top: 56px; }
.about-intro .eyebrow { margin-bottom: 14px; }
.about-intro h1 { margin-bottom: 20px; font-size: 44px; line-height: 1.3; font-weight: 600; }
.about-intro p { font-size: 17px; line-height: 2; color: var(--muted); font-weight: 300; }
.about-image {
  height: 360px;
  border-radius: var(--r-lg);
  background-color: var(--warm);
  background-image: url("../img/about.9536c19add0e.png");
  background-size: cover;
  background-position: center 28%;
}
.stat-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 32px;
}
.stat-card .stat-num { font-size: 30px; font-weight: 600; color: var(--accent); margin-bottom: 8px; }
.stat-card h3 { margin-bottom: 6px; font-size: 17px; font-weight: 600; }
.stat-card p { color: var(--faint); font-size: 14px; font-weight: 300; line-height: 1.9; }
.values-head { margin-bottom: 28px; font-size: 28px; font-weight: 600; text-align: center; }
.value-item { text-align: center; }
.value-item.bordered { border-inline: 1px solid var(--border); }
.value-item h3 { margin-bottom: 8px; font-size: 17px; font-weight: 600; }
.value-item p { color: var(--faint); font-size: 14px; font-weight: 300; line-height: 1.9; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer { border-top: 1px solid var(--border); background: var(--panel); }
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 32px 40px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
}
.footer-brand { font-size: 22px; font-weight: 600; margin-bottom: 12px; }
.footer-blurb { font-size: 14px; line-height: 2; color: var(--faint); font-weight: 300; }
.footer-grid h4 { margin-bottom: 14px; font-size: 14px; font-weight: 600; }
.footer-links { display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.footer-social-blurb { margin-bottom: 14px; font-size: 13px; color: var(--faint); font-weight: 300; }
.insta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 18px;
  border: 1px solid var(--border-input);
  border-radius: var(--r-sm);
  font-size: 14px;
  background: var(--card);
}
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 32px;
  text-align: center;
  font-size: 13px;
  color: var(--faint);
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 820px) {
  .hdr-inner { padding-inline: 20px; gap: 12px; }
  .desktop-nav { display: none; }
  .site-header .search-box { display: none; }
  .menu-btn { display: flex; align-items: center; }
  .logo-fa { font-size: 24px; }
  .hero-box { height: auto; min-height: 440px; }
  .hero-text { max-width: 100%; padding: 36px 26px; }
  .hero-text h1 { font-size: 36px; }
  .hero-text p { font-size: 15px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 32px; }
  .form-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .trust-item.bordered, .value-item.bordered { border-inline: none; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-text h1 { font-size: 30px; }
}

/* ============================================================
   Uploaded images (admin-managed media)
   ============================================================ */
.tile img,
.card-img img,
.pdp-main img,
.pdp-thumbs .thumb img,
.cart-thumb img,
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pdp-main { overflow: hidden; }
.pdp-thumbs .thumb {
  height: 120px;
  border-radius: var(--r-md);
  overflow: hidden;
}
.cart-line .cart-thumb {
  width: 110px;
  height: 110px;
  flex-shrink: 0;
  border-radius: var(--r-md);
  overflow: hidden;
}
