/* =========================================================
   ركن الأثاث — Arabic RTL furniture site
   Palette: beige, warm white, soft gray, light brown
   Type:    Cairo (UI) + Tajawal (body)
   ========================================================= */

:root {
  --bg:        #faf6f0;   /* warm off-white */
  --surface:   #ffffff;
  --beige:     #efe6d6;
  --beige-2:   #e6dac4;
  --brown:     #a87b4b;   /* light brown accent */
  --brown-d:   #8a5f33;
  --ink:       #2b2520;   /* near-black warm */
  --ink-2:     #5b524a;
  --gray:      #b9b1a6;
  --gray-l:    #ece7df;
  --line:      #e3dbcc;
  --shadow:    0 1px 2px rgba(60,45,25,.04), 0 8px 24px rgba(60,45,25,.06);
  --shadow-lg: 0 2px 6px rgba(60,45,25,.05), 0 18px 48px rgba(60,45,25,.10);
  --radius:    14px;
  --radius-lg: 22px;
  --maxw:      1200px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Tajawal', 'Cairo', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Cairo', 'Tajawal', system-ui, sans-serif;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 .5em;
  line-height: 1.3;
}
h1 { font-size: clamp(28px, 4vw, 44px); }
h2 { font-size: clamp(22px, 2.4vw, 30px); }
h3 { font-size: 18px; }

p  { margin: 0 0 1em; color: var(--ink-2); }
a  { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- Top bar ---------- */
.topbar {
  background: var(--ink);
  color: #efe6d6;
  font-size: 13px;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 20px;
}
.topbar .tb-links { display: flex; gap: 18px; opacity: .9; }
.topbar a:hover { color: #fff; }

/* ---------- Navbar ---------- */
.navbar {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Cairo', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--ink);
}
.logo [dir="ltr"] {
  font-family: Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-weight: 700;
  letter-spacing: .01em;
  font-size: 20px;
}
.logo-mark {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--beige);
  border: 1px solid var(--beige-2);
  display: grid; place-items: center;
  color: var(--brown-d);
  font-size: 18px;
}
.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0; padding: 0;
  font-family: 'Cairo', sans-serif;
  font-weight: 500;
}
.nav-links a {
  color: var(--ink-2);
  font-size: 15px;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: color .15s, border-color .15s;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--brown-d);
  border-color: var(--brown);
}
.nav-tools {
  display: flex;
  align-items: center;
  gap: 14px;
}
.icon-btn {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--surface);
  display: grid; place-items: center;
  color: var(--ink);
  cursor: pointer;
  position: relative;
  transition: background .15s, border-color .15s;
}
.icon-btn:hover { background: var(--beige); border-color: var(--beige-2); }
.cart-badge {
  position: absolute;
  top: -4px;
  inset-inline-end: -4px;
  background: var(--brown);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  width: 20px; height: 20px;
  border-radius: 50%;
  display: grid; place-items: center;
  border: 2px solid var(--surface);
}
.menu-toggle { display: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 10px;
  border: 1px solid transparent;
  font-family: 'Cairo', sans-serif;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: transform .15s, background .15s, border-color .15s;
}
.btn-primary {
  background: var(--brown);
  color: #fff;
}
.btn-primary:hover { background: var(--brown-d); }
.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-outline:hover { border-color: var(--brown); color: var(--brown-d); }
.btn-ghost {
  background: var(--beige);
  color: var(--ink);
}
.btn-ghost:hover { background: var(--beige-2); }
.btn-block { width: 100%; }

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(135deg, var(--beige) 0%, #f4ecdb 100%);
  position: relative;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  align-items: center;
  gap: 48px;
  padding: 60px 20px 70px;
}
.hero-eyebrow {
  display: inline-block;
  font-family: 'Cairo', sans-serif;
  font-size: 13px;
  letter-spacing: .04em;
  color: var(--brown-d);
  background: rgba(255,255,255,.6);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(32px, 4.6vw, 56px);
  line-height: 1.25;
  margin-bottom: 16px;
}
.hero h1 .accent { color: var(--brown-d); }
.hero p {
  font-size: 17px;
  max-width: 480px;
  margin-bottom: 28px;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid rgba(138,95,51,.18);
}
.hero-stats .stat strong {
  font-family: 'Cairo', sans-serif;
  font-size: 24px;
  color: var(--ink);
  display: block;
}
.hero-stats .stat span { font-size: 13px; color: var(--ink-2); }

.hero-art {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  background: var(--beige-2);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.hero-art::after {
  content: 'صورة الأثاث';
  font-family: 'Cairo', monospace;
  font-size: 14px;
  color: rgba(43, 37, 32, .55);
  background: rgba(255,255,255,.7);
  padding: 8px 16px;
  border-radius: 8px;
}
.hero-badge {
  position: absolute;
  inset-block-end: 24px;
  inset-inline-start: -16px;
  background: var(--surface);
  padding: 14px 18px;
  border-radius: 14px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Cairo', sans-serif;
}
.hero-badge .dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: #6aa67d;
}

/* ---------- Sections ---------- */
.section { padding: 80px 0; }
.section-tight { padding: 50px 0; }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 36px;
  gap: 20px;
  flex-wrap: wrap;
}
.section-head .eyebrow {
  font-family: 'Cairo', sans-serif;
  color: var(--brown-d);
  font-size: 14px;
  letter-spacing: .05em;
  margin-bottom: 8px;
  display: block;
}
.section-head .link {
  color: var(--brown-d);
  font-family: 'Cairo', sans-serif;
  font-weight: 600;
  font-size: 14px;
}
.section-head .link:hover { text-decoration: underline; }

/* ---------- Category cards ---------- */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.cat-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  transition: transform .2s, box-shadow .2s, border-color .2s;
  cursor: pointer;
}
.cat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--beige-2);
}
.cat-icon {
  width: 84px; height: 84px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--beige);
  display: grid; place-items: center;
  color: var(--brown-d);
  font-size: 32px;
  transition: background .2s;
}
.cat-card:hover .cat-icon { background: var(--beige-2); }
.cat-card h3 {
  font-size: 17px;
  margin-bottom: 4px;
}
.cat-card .count {
  font-size: 13px;
  color: var(--ink-2);
}

/* Bigger category cards (categories page) */
.cat-grid-lg {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.cat-card-lg {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}
.cat-card-lg:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.cat-card-lg .ph {
  aspect-ratio: 4/3;
  background:
    repeating-linear-gradient(135deg, #ead9b8 0 10px, #ddc89b 10px 20px);
  display: grid; place-items: center;
  color: rgba(43,37,32,.5);
  font-family: 'Cairo', monospace;
  font-size: 13px;
}
.cat-card-lg .body { padding: 20px; }
.cat-card-lg h3 { margin-bottom: 4px; }
.cat-card-lg p { font-size: 14px; margin: 0; }

/* ---------- Product cards ---------- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.product-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .2s, box-shadow .2s;
}
.product-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.product-img {
  aspect-ratio: 1/1;
  background:
    repeating-linear-gradient(45deg, #ead9b8 0 10px, #ddc89b 10px 20px);
  position: relative;
  display: grid; place-items: center;
  color: rgba(43,37,32,.45);
  font-family: 'Cairo', monospace;
  font-size: 12px;
}
.product-tag {
  position: absolute;
  top: 12px;
  inset-inline-start: 12px;
  background: var(--brown);
  color: #fff;
  font-size: 11px;
  font-family: 'Cairo', sans-serif;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
}
.product-tag.tag-new { background: #6aa67d; }
.product-tag.tag-sale { background: #c25b4f; }
.product-fav {
  position: absolute;
  top: 12px;
  inset-inline-end: 12px;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  border: none;
  display: grid; place-items: center;
  cursor: pointer;
  color: var(--ink-2);
  transition: color .15s, background .15s;
}
.product-fav:hover { color: var(--brown-d); background: #fff; }
.product-body {
  padding: 16px 16px 18px;
  display: flex; flex-direction: column;
  gap: 6px;
  flex: 1;
}
.product-cat {
  font-size: 12px;
  color: var(--ink-2);
  font-family: 'Cairo', sans-serif;
}
.product-name {
  font-family: 'Cairo', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--ink);
  margin: 0;
}
.product-price {
  display: flex; align-items: baseline; gap: 8px;
  margin-top: 4px;
}
.product-price .now {
  font-family: 'Cairo', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--brown-d);
}
.product-price .old {
  font-size: 13px;
  color: var(--gray);
  text-decoration: line-through;
}
.product-card .add-cart {
  margin-top: 10px;
  width: 100%;
  padding: 10px;
  background: var(--beige);
  border: none;
  border-radius: 8px;
  font-family: 'Cairo', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
  cursor: pointer;
  transition: background .15s, color .15s;
}
.product-card .add-cart:hover {
  background: var(--brown);
  color: #fff;
}

/* ---------- Banner / offers ---------- */
.banner {
  background: var(--ink);
  color: #efe6d6;
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  align-items: center;
  gap: 30px;
  position: relative;
  overflow: hidden;
}
.banner::before {
  content: '';
  position: absolute;
  inset-inline-end: -80px;
  inset-block-start: -80px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: rgba(168, 123, 75, .25);
}
.banner h2 { color: #fff; font-size: 32px; margin-bottom: 10px; }
.banner p { color: rgba(239, 230, 214, .8); margin-bottom: 22px; }
.banner .badge-sale {
  background: var(--brown);
  color: #fff;
  display: inline-block;
  padding: 5px 14px;
  border-radius: 100px;
  font-family: 'Cairo', sans-serif;
  font-size: 13px;
  margin-bottom: 14px;
}
.banner-art {
  aspect-ratio: 16/10;
  border-radius: var(--radius);
  background: repeating-linear-gradient(135deg, #4a3f33 0 12px, #3d342a 12px 24px);
  position: relative;
  z-index: 1;
}

/* ---------- Features strip ---------- */
.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 40px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.feature {
  display: flex;
  align-items: center;
  gap: 14px;
}
.feature-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--beige);
  display: grid; place-items: center;
  color: var(--brown-d);
  flex-shrink: 0;
}
.feature h4 {
  font-family: 'Cairo', sans-serif;
  font-size: 15px;
  margin: 0 0 2px;
}
.feature p { font-size: 13px; margin: 0; }

/* ---------- Page header ---------- */
.page-head {
  background: var(--beige);
  padding: 50px 0;
  border-bottom: 1px solid var(--beige-2);
}
.page-head h1 { margin-bottom: 8px; }
.crumbs {
  font-family: 'Cairo', sans-serif;
  font-size: 14px;
  color: var(--ink-2);
}
.crumbs a:hover { color: var(--brown-d); }
.crumbs .sep { margin: 0 8px; color: var(--gray); }

/* ---------- Filter bar ---------- */
.filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 28px;
  padding: 14px 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  flex-wrap: wrap;
}
.filter-chips { display: flex; gap: 8px; flex-wrap: wrap; }
.chip {
  border: 1px solid var(--line);
  background: transparent;
  padding: 7px 14px;
  border-radius: 100px;
  font-family: 'Cairo', sans-serif;
  font-size: 13px;
  cursor: pointer;
  color: var(--ink-2);
  transition: all .15s;
}
.chip:hover, .chip.active {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.sort-select {
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  font-family: 'Cairo', sans-serif;
  font-size: 14px;
  color: var(--ink);
}

/* ---------- Product details ---------- */
.pd-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 50px;
  align-items: start;
}
.pd-gallery .main {
  aspect-ratio: 1/1;
  border-radius: var(--radius-lg);
  background: repeating-linear-gradient(135deg, #ead9b8 0 10px, #ddc89b 10px 20px);
  display: grid; place-items: center;
  color: rgba(43,37,32,.45);
  font-family: 'Cairo', monospace;
  font-size: 13px;
}
.pd-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 12px;
}
.pd-thumbs .thumb {
  aspect-ratio: 1/1;
  border-radius: 10px;
  background: repeating-linear-gradient(135deg, #ead9b8 0 8px, #ddc89b 8px 16px);
  border: 2px solid transparent;
  cursor: pointer;
}
.pd-thumbs .thumb.active { border-color: var(--brown); }
.pd-info h1 { font-size: 32px; margin-bottom: 6px; }
.pd-rating {
  display: flex; align-items: center; gap: 8px;
  color: #d4a73c; font-size: 15px;
  margin-bottom: 14px;
}
.pd-rating .count { color: var(--ink-2); font-size: 13px; }
.pd-price {
  display: flex; align-items: baseline; gap: 12px;
  margin: 18px 0;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.pd-price .now {
  font-family: 'Cairo', sans-serif;
  font-weight: 700;
  font-size: 30px;
  color: var(--brown-d);
}
.pd-price .old {
  font-size: 16px;
  color: var(--gray);
  text-decoration: line-through;
}
.pd-desc { color: var(--ink-2); margin-bottom: 22px; }
.pd-options { margin-bottom: 22px; }
.pd-options .label {
  font-family: 'Cairo', sans-serif;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 8px;
  display: block;
}
.swatches { display: flex; gap: 10px; margin-bottom: 18px; }
.swatch {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2px solid var(--line);
  cursor: pointer;
  transition: border-color .15s;
}
.swatch.active { border-color: var(--brown-d); }
.qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
}
.qty button {
  width: 40px; height: 44px;
  background: transparent; border: none;
  font-size: 18px; cursor: pointer;
  color: var(--ink);
}
.qty button:hover { background: var(--beige); }
.qty input {
  width: 50px; height: 44px;
  text-align: center;
  border: none;
  font-family: 'Cairo', sans-serif;
  font-weight: 600;
  font-size: 15px;
  background: transparent;
}
.pd-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.pd-meta {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 14px;
  color: var(--ink-2);
}
.pd-meta div { margin-bottom: 6px; }
.pd-meta strong { color: var(--ink); font-family: 'Cairo', sans-serif; }

/* ---------- Cart table ---------- */
.cart-wrap {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
  align-items: start;
}
.cart-table {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.cart-row {
  display: grid;
  grid-template-columns: 90px 1fr auto auto auto;
  align-items: center;
  gap: 18px;
  padding: 18px;
  border-bottom: 1px solid var(--line);
}
.cart-row:last-child { border-bottom: none; }
.cart-row .thumb {
  width: 90px; height: 90px;
  border-radius: 10px;
  background: repeating-linear-gradient(135deg, #ead9b8 0 8px, #ddc89b 8px 16px);
}
.cart-row .name {
  font-family: 'Cairo', sans-serif;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 4px;
}
.cart-row .meta {
  font-size: 13px; color: var(--ink-2);
}
.cart-row .price {
  font-family: 'Cairo', sans-serif;
  font-weight: 700;
  color: var(--brown-d);
  min-width: 90px;
  text-align: end;
}
.cart-remove {
  background: transparent;
  border: none;
  color: var(--gray);
  cursor: pointer;
  width: 36px; height: 36px;
  border-radius: 50%;
}
.cart-remove:hover { color: #c25b4f; background: #fbeae8; }

.summary {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  position: sticky;
  top: 90px;
}
.summary h3 { margin-bottom: 18px; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 15px;
  color: var(--ink-2);
}
.summary-row.total {
  border-top: 1px solid var(--line);
  padding-top: 14px;
  margin-top: 14px;
  margin-bottom: 18px;
  font-family: 'Cairo', sans-serif;
  font-weight: 700;
  font-size: 19px;
  color: var(--ink);
}
.summary .promo {
  display: flex; gap: 8px; margin-bottom: 16px;
}
.summary .promo input {
  flex: 1;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-family: 'Tajawal', sans-serif;
}

/* ---------- Forms ---------- */
.form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-row.full { grid-template-columns: 1fr; }
.field label {
  display: block;
  font-family: 'Cairo', sans-serif;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 6px;
  color: var(--ink);
}
.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--bg);
  font-family: 'Tajawal', sans-serif;
  font-size: 15px;
  color: var(--ink);
  transition: border-color .15s, background .15s;
}
.field textarea { min-height: 110px; resize: vertical; }
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--brown);
  background: var(--surface);
}
.form-section-title {
  font-family: 'Cairo', sans-serif;
  font-weight: 700;
  font-size: 16px;
  margin: 0 0 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}
.pay-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 8px;
}
.pay-opt {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px;
  cursor: pointer;
  font-family: 'Cairo', sans-serif;
  font-size: 14px;
  display: flex; align-items: center; gap: 10px;
  transition: border-color .15s, background .15s;
}
.pay-opt:hover { border-color: var(--brown); }
.pay-opt input { accent-color: var(--brown); }
.pay-opt.active { border-color: var(--brown); background: var(--beige); }

/* ---------- About ---------- */
.about-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.about-hero .ph {
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  background: repeating-linear-gradient(135deg, #ead9b8 0 12px, #ddc89b 12px 24px);
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 50px;
}
.stat-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  text-align: center;
}
.stat-card strong {
  display: block;
  font-family: 'Cairo', sans-serif;
  font-weight: 800;
  font-size: 36px;
  color: var(--brown-d);
  margin-bottom: 4px;
}
.stat-card span { color: var(--ink-2); font-size: 14px; }

.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.value {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}
.value .v-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: var(--beige);
  display: grid; place-items: center;
  color: var(--brown-d);
  margin-bottom: 16px;
}
.value h3 { margin-bottom: 6px; }
.value p { margin: 0; font-size: 14px; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 30px;
  align-items: start;
}
.contact-info {
  background: var(--ink);
  color: #efe6d6;
  border-radius: var(--radius);
  padding: 30px;
}
.contact-info h2 { color: #fff; margin-bottom: 8px; }
.contact-info p { color: rgba(239,230,214,.75); margin-bottom: 24px; }
.ci-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(239,230,214,.12);
}
.ci-item:last-child { border-bottom: none; }
.ci-item .ic {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(239,230,214,.08);
  display: grid; place-items: center;
  color: #efe6d6;
  flex-shrink: 0;
}
.ci-item h4 { color: #fff; font-family: 'Cairo', sans-serif; font-size: 14px; margin: 0 0 2px; }
.ci-item span { font-size: 14px; opacity: .8; }

/* ---------- Footer ---------- */
.footer {
  background: #1f1a16;
  color: #d8cdb8;
  padding: 60px 0 0;
  margin-top: 80px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
}
.footer h4 {
  color: #fff;
  font-family: 'Cairo', sans-serif;
  font-size: 16px;
  margin-bottom: 18px;
}
.footer p { color: rgba(216, 205, 184, .7); font-size: 14px; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin-bottom: 10px; }
.footer a {
  color: rgba(216, 205, 184, .8);
  font-size: 14px;
  transition: color .15s;
}
.footer a:hover { color: var(--brown); }
.socials { display: flex; gap: 10px; margin-top: 16px; }
.socials a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(239,230,214,.08);
  display: grid; place-items: center;
  color: #efe6d6;
}
.socials a:hover { background: var(--brown); color: #fff; }
.newsletter {
  display: flex; gap: 8px;
  margin-top: 14px;
}
.newsletter input {
  flex: 1;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid rgba(239,230,214,.18);
  background: rgba(239,230,214,.05);
  color: #efe6d6;
  font-family: 'Tajawal', sans-serif;
  font-size: 14px;
}
.newsletter input::placeholder { color: rgba(239,230,214,.4); }
.newsletter button {
  padding: 10px 18px;
  border-radius: 8px;
  border: none;
  background: var(--brown);
  color: #fff;
  font-family: 'Cairo', sans-serif;
  font-weight: 600;
  cursor: pointer;
}
.newsletter button:hover { background: var(--brown-d); }
.copy {
  border-top: 1px solid rgba(239,230,214,.1);
  padding: 22px 0;
  text-align: center;
  font-size: 13px;
  color: rgba(216, 205, 184, .55);
}

/* ---------- Mobile ---------- */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; padding: 50px 20px; }
  .hero-art { max-width: 480px; margin: 0 auto; }
  .pd-grid, .cart-wrap, .about-hero, .contact-grid { grid-template-columns: 1fr; }
  .summary { position: static; }
  .banner { grid-template-columns: 1fr; padding: 36px 28px; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .cat-grid-lg { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .features { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .values { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .topbar .tb-links { display: none; }
  .nav-links {
    position: absolute;
    top: 100%; inset-inline-end: 0; inset-inline-start: 0;
    background: var(--surface);
    flex-direction: column;
    padding: 16px 20px;
    border-bottom: 1px solid var(--line);
    gap: 14px;
    display: none;
  }
  .nav-links.open { display: flex; }
  .menu-toggle { display: grid; }
  .nav-inner { position: relative; }
  .cart-row {
    grid-template-columns: 70px 1fr auto;
    grid-template-areas:
      'thumb info info'
      'thumb qty price';
    gap: 10px;
  }
  .cart-row .thumb { width: 70px; height: 70px; grid-area: thumb; }
  .cart-row .info { grid-area: info; }
  .cart-row .qty { grid-area: qty; }
  .cart-row .price { grid-area: price; }
  .cart-row .cart-remove { display: none; }
  .pay-options { grid-template-columns: 1fr; }
}


/* Footer contact list */
.footer .contact-list { list-style: none; padding: 0; margin: 0; }
.footer .contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 14px;
  color: rgba(216, 205, 184, .8);
  line-height: 1.6;
}
.footer .contact-list .ci-ic {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: rgba(239,230,214,.08);
  display: grid; place-items: center;
  color: #efe6d6;
  flex-shrink: 0;
}
.footer .contact-list a { color: rgba(216, 205, 184, .9); }
.footer .contact-list a:hover { color: var(--brown); }


/* ---------- Product details: refined v2 ---------- */
.pd-info h1 { font-size: 30px; margin-bottom: 8px; }

.opt-buttons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.opt-btn {
  padding: 10px 18px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
  font-family: 'Cairo', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: var(--ink);
  cursor: pointer;
  transition: border-color .15s, background .15s, color .15s;
}
.opt-btn:hover { border-color: var(--brown); }
.opt-btn.active {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.qty-row {
  display: flex;
  align-items: stretch;
  gap: 12px;
  flex-wrap: wrap;
}
.qty-row .qty { height: 52px; }
.qty-row .qty button { height: 50px; }
.qty-row .qty input { height: 50px; }
.btn-add {
  flex: 1;
  min-width: 220px;
  padding: 14px 26px;
  font-size: 16px;
  height: 52px;
}

.pd-pay {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.pd-pay-label {
  display: block;
  font-family: 'Cairo', sans-serif;
  font-size: 13px;
  color: var(--ink-2);
  margin-bottom: 10px;
}
.pay-icons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}
.pay-ic {
  min-width: 52px;
  height: 32px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cairo', system-ui, sans-serif;
  font-weight: 700;
  font-size: 12px;
  color: var(--ink);
  letter-spacing: .03em;
}

/* Tabs */
.pd-tabs {
  margin-top: 60px;
}
.tabs-bar {
  display: flex;
  gap: 4px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 26px;
  flex-wrap: wrap;
}
.tab-btn {
  padding: 14px 22px;
  background: transparent;
  border: none;
  font-family: 'Cairo', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--ink-2);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color .15s, border-color .15s;
}
.tab-btn:hover { color: var(--ink); }
.tab-btn.active {
  color: var(--brown-d);
  border-color: var(--brown);
}
.tab-panel { display: none; }
.tab-panel.active { display: block; }
.tab-panel p { color: var(--ink-2); margin-bottom: 14px; }

.pd-list {
  margin: 14px 0 0;
  padding-inline-start: 22px;
  color: var(--ink-2);
}
.pd-list li { margin-bottom: 8px; }

.pd-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}
.pd-table th, .pd-table td {
  padding: 14px 16px;
  text-align: start;
  border-bottom: 1px solid var(--line);
}
.pd-table th {
  width: 220px;
  font-family: 'Cairo', sans-serif;
  font-weight: 600;
  color: var(--ink);
  background: var(--bg);
}
.pd-table td { color: var(--ink-2); }

.review {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.review:last-child { border-bottom: none; }
.review-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}
.review-head strong {
  font-family: 'Cairo', sans-serif;
  font-size: 15px;
  color: var(--ink);
}
.review-head .stars { color: #d4a73c; font-size: 14px; }
.review p { margin: 0; }

@media (max-width: 640px) {
  .btn-add { width: 100%; }
  .pd-table th { width: auto; }
}


/* ---------- Cart shipping options ---------- */
.ship-section {
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.ship-title {
  display: block;
  font-family: 'Cairo', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
  margin-bottom: 10px;
}
.ship-opt {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  margin-bottom: 8px;
  cursor: pointer;
  font-family: 'Cairo', sans-serif;
  font-size: 14px;
  transition: border-color .15s, background .15s;
}
.ship-opt:hover { border-color: var(--brown); }
.ship-opt.active { border-color: var(--brown); background: var(--beige); }
.ship-opt input { accent-color: var(--brown); }
.ship-opt .ship-name { flex: 1; color: var(--ink); }
.ship-opt .ship-price {
  font-weight: 700;
  color: var(--brown-d);
}


/* ---------- nowrap fix for prices ---------- */
.ship-opt .ship-price,
.summary-row span,
.product-price .now,
.product-price .old,
.cart-row .price,
.pd-price .now,
.pd-price .old { white-space: nowrap; }


/* =========================================================
   Real image support — override placeholder gradients
   ========================================================= */

/* Product card images */
.product-img {
  background: var(--beige-2);
  overflow: hidden;
  display: block;
  color: transparent;
  font-size: 0;
}
.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .45s ease;
}
.product-card:hover .product-img img { transform: scale(1.06); }

/* Hero art */
.hero-art {
  background-color: var(--beige-2);
  background-size: cover;
  background-position: center;
  min-height: 420px;
}
.hero-art::after { display: none; }

/* Category large cards */
.cat-card-lg .ph {
  background: var(--beige-2);
  overflow: hidden;
  display: block;
  color: transparent;
  font-size: 0;
}
.cat-card-lg .ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .45s ease;
}
.cat-card-lg:hover .ph img { transform: scale(1.05); }

/* Product detail gallery */
.pd-gallery .main {
  background: var(--beige-2);
  overflow: hidden;
}
.pd-gallery .main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  display: block;
  transition: opacity .2s;
}
.pd-thumbs .thumb {
  background: var(--beige-2);
  overflow: hidden;
}
.pd-thumbs .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* About hero image */
.about-hero .ph {
  background: var(--beige-2);
  overflow: hidden;
  display: block;
  color: transparent;
  font-size: 0;
}
.about-hero .ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
}

/* Banner art */
.banner-art {
  background: #3d342a;
  overflow: hidden;
}
.banner-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: .45;
  mix-blend-mode: luminosity;
}


/* =========================================================
   Checkout page — specific styles
   ========================================================= */

/* Required asterisk */
.req {
  color: #c0392b;
  font-size: 13px;
  margin-inline-start: 2px;
}

/* Checkbox line (ship to different address) */
.check-line {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-family: 'Cairo', sans-serif;
  font-size: 14px;
  color: var(--ink-2);
  margin-bottom: 16px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--bg);
  transition: border-color .15s, background .15s;
}
.check-line:hover { border-color: var(--brown); background: var(--surface); }
.check-line input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--brown);
  cursor: pointer;
  flex-shrink: 0;
}

/* Checkout layout — override cart-wrap to 1fr 1fr on checkout */
.checkout-wrap {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 30px;
  align-items: start;
}

/* Order summary box — checkout variant */
.checkout-summary {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  position: sticky;
  top: 90px;
}
.checkout-summary h3 {
  font-family: 'Cairo', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

/* Order header row (product | subtotal labels) */
.order-head {
  display: flex;
  justify-content: space-between;
  font-family: 'Cairo', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: .04em;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

/* Individual order product line */
.order-line {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px dashed var(--line);
  margin-bottom: 14px;
}
.ol-name {
  font-family: 'Cairo', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  flex: 1;
  line-height: 1.5;
}
.ol-x {
  display: inline-block;
  font-weight: 400;
  color: var(--ink-2);
  margin-inline-start: 4px;
}
.ol-price {
  font-family: 'Cairo', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--brown-d);
  white-space: nowrap;
}

/* Subtotal row inside summary */
.sub-row {
  padding-bottom: 10px;
  margin-bottom: 4px;
  border-bottom: 1px solid var(--line);
}

/* Tighter shipping section inside checkout summary */
.ship-section-tight {
  margin-top: 4px;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.ship-section-tight .ship-title {
  font-size: 14px;
  color: var(--ink);
  font-weight: 600;
  margin-bottom: 8px;
}
.ship-section-tight .ship-opt {
  padding: 10px 12px;
  margin-bottom: 6px;
  font-size: 13px;
}

/* Payment block (cash on delivery) */
.pay-block {
  background: var(--beige);
  border: 1px solid var(--beige-2);
  border-radius: 10px;
  padding: 14px 16px;
  margin: 4px 0 14px;
}
.pay-block-title {
  font-family: 'Cairo', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 6px;
}
.pay-block-note {
  font-family: 'Tajawal', sans-serif;
  font-size: 13px;
  color: var(--ink-2);
  background: rgba(255,255,255,.6);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 8px 12px;
  line-height: 1.6;
}

/* Privacy / data-use note */
.privacy-note {
  font-family: 'Tajawal', sans-serif;
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.7;
  margin: 0 0 18px;
  padding: 10px 0;
  border-top: 1px solid var(--line);
}
.privacy-note a {
  color: var(--brown-d);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.privacy-note a:hover { color: var(--brown); }

/* Confirm order button */
.btn-confirm {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 15px 24px;
  background: var(--brown);
  color: #fff;
  font-family: 'Cairo', sans-serif;
  font-weight: 700;
  font-size: 16px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background .15s, transform .1s;
  letter-spacing: .01em;
}
.btn-confirm:hover { background: var(--brown-d); }
.btn-confirm:active { transform: scale(.99); }

/* Responsive: stack on mobile */
@media (max-width: 980px) {
  .checkout-wrap { grid-template-columns: 1fr; }
  .checkout-summary { position: static; }
}
@media (max-width: 640px) {
  .checkout-summary { padding: 18px; }
  .form { padding: 20px; }
}


/* =========================================================
   Instagram Reels section
   ========================================================= */

/* Section header */
.ig-section .section-head { margin-bottom: 32px; }
.ig-handle {
  font-family: 'Cairo', sans-serif;
  font-size: 14px;
  color: var(--ink-2);
  margin: 6px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

/* Grid — 3 columns, square cells */
.ig-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

/* Individual reel card */
.ig-item {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 14px;
  overflow: hidden;
  display: block;
  cursor: pointer;
  text-decoration: none;
}

/* Image */
.ig-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .45s ease;
}

/* Dark overlay */
.ig-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 14, 8, .42);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .3s ease;
}

/* Play icon */
.ig-play {
  color: #fff;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, .55));
  opacity: .82;
  transition: opacity .3s ease, transform .3s ease;
}

/* Hover effects */
.ig-item:hover img              { transform: scale(1.07); }
.ig-item:hover .ig-overlay      { background: rgba(20, 14, 8, .22); }
.ig-item:hover .ig-play         { opacity: 1; transform: scale(1.12); }
.ig-item:focus-visible          { outline: 3px solid var(--brown); outline-offset: 2px; }

/* Follow button */
.ig-follow {
  text-align: center;
  margin-top: 32px;
}
.ig-follow-btn {
  gap: 9px;
  padding: 12px 28px;
  font-size: 15px;
}

/* Mobile — 2 columns */
@media (max-width: 640px) {
  .ig-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .ig-item  { border-radius: 10px; }
  .ig-play  { width: 40px; height: 40px; }
}


/* =========================================================
   Mobile hero — full background image layout (max 768px)
   Desktop hero is completely untouched above this block.
   ========================================================= */
@media (max-width: 768px) {

  /* 1. Inject background image onto the section itself */
  .hero {
    background-image: url('https://images.unsplash.com/photo-1555041469-a586c61ea9bc?w=800&h=1100&q=85&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    min-height: 82vh;
    display: flex;
    align-items: center;
  }

  /* 2. Semi-transparent dark overlay for text readability */
  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(28, 22, 16, .54);
    z-index: 0;
    pointer-events: none;
  }

  /* 3. Single-column centred layout, stacked above overlay */
  .hero-inner {
    grid-template-columns: 1fr !important;
    text-align: center;
    padding: 80px 24px 90px;
    position: relative;
    z-index: 1;
    gap: 0;
  }

  /* 4. Hide the separate image panel (image is now the section bg) */
  .hero-art { display: none !important; }

  /* 5. Readable text colours over the dark overlay */
  .hero h1        { color: #fff; }
  .hero h1 .accent { color: var(--beige); }
  .hero > .container > div > p,
  .hero-inner > div > p { color: rgba(239, 230, 214, .9); max-width: 100%; }
  .hero-eyebrow {
    color: var(--beige);
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(239, 230, 214, .22);
  }

  /* 6. CTA buttons — centred, spaced, large tap targets */
  .hero-ctas {
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 8px;
  }

  .hero-ctas .btn {
    padding: 14px 28px;
    font-size: 15px;
    min-width: 148px;
    border-radius: 12px;
    transition: transform .18s, opacity .18s, box-shadow .18s;
  }

  /* Primary button — keep solid brown, boost shadow */
  .hero-ctas .btn-primary {
    box-shadow: 0 4px 18px rgba(0, 0, 0, .35);
  }
  .hero-ctas .btn-primary:hover  { transform: translateY(-2px); box-shadow: 0 6px 22px rgba(0,0,0,.4); }
  .hero-ctas .btn-primary:active { transform: scale(.97); }

  /* Secondary button — white fill, dark text, soft shadow (Option A) */
  .hero-ctas .btn-outline {
    background: rgba(255, 255, 255, .95);
    color: var(--ink);
    border-color: transparent;
    box-shadow: 0 4px 18px rgba(0, 0, 0, .28);
  }
  .hero-ctas .btn-outline:hover  { background: #fff; transform: translateY(-2px); box-shadow: 0 6px 22px rgba(0,0,0,.35); }
  .hero-ctas .btn-outline:active { transform: scale(.97); }

  /* 7. Stats strip hidden on mobile — keeps layout clean */
  .hero-stats { display: none; }

  /* ---- Mobile footer ---- */

  /* Reduce top padding slightly */
  .footer { padding-top: 44px; margin-top: 56px; }

  /* Single column, separator between each section */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 0;
    padding-bottom: 0;
  }

  .footer-grid > div {
    padding-top: 24px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(239, 230, 214, .1);
  }
  .footer-grid > div:first-child { padding-top: 0; }
  .footer-grid > div:last-child  { border-bottom: none; padding-bottom: 32px; }

  /* Section headings */
  .footer h4 {
    font-size: 15px;
    margin-bottom: 14px;
    letter-spacing: .01em;
  }

  /* Body text and links */
  .footer p   { font-size: 14px; line-height: 1.9; }
  .footer li  { margin-bottom: 12px; }
  .footer a   { font-size: 14px; line-height: 1.6; }

  /* Contact list items */
  .footer .contact-list li {
    margin-bottom: 14px;
    align-items: flex-start;
    line-height: 1.7;
  }

  /* Social icons — bigger tap targets */
  .socials { gap: 12px; margin-top: 20px; }
  .socials a { width: 44px; height: 44px; }

  /* Copyright bar */
  .copy { padding: 18px 0; font-size: 12px; }
}
