/*
Theme Name: Bahria Stores
Theme URI: https://bahriastores.com
Description: Luxury editorial e-commerce theme — bold, cinematic, uniquely Pakistani.
Version: 3.2.3
Author: Bahria Stores
Text Domain: bahria
*/

/* ─── Fonts ──────────────────────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400;1,700;1,900&family=Inter:wght@300;400;500;600;700&family=DM+Serif+Display:ital@0;1&display=swap');

/* ─── Design tokens ──────────────────────────────────────────────────────────── */
:root {
  --ink:        #0E0E0E;
  --ink-soft:   #555555;
  --ink-faint:  #999999;
  --paper:      #FAFAF7;
  --paper-alt:  #F5F5F2;
  --cream:      #F2EDE3;
  --cream-dark: #E8E1D4;
  --gold:       #B8952A;
  --gold-lt:    #D4AF50;
  --gold-pale:  #F5EDD3;
  --teal:       #0B4F6C;
  --teal-lt:    #1A6B8A;
  --teal-pale:  #EBF4F8;
  --white:      #FFFFFF;
  --border:     #E5E1D8;
  --border-lt:  #F0EDE6;
  --green:      #15803D;
  --error:      #B91C1C;

  --font-display: 'DM Serif Display', 'Playfair Display', Georgia, serif;
  --font-serif:   'Playfair Display', Georgia, serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --ease:         cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out:     cubic-bezier(0.0, 0.0, 0.2, 1);
  --ease-spring:  cubic-bezier(0.34, 1.56, 0.64, 1);

  --shadow-xs:  0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-sm:  0 4px 12px rgba(0,0,0,0.07), 0 2px 4px rgba(0,0,0,0.04);
  --shadow-md:  0 8px 24px rgba(11,79,108,0.10), 0 2px 8px rgba(0,0,0,0.04);
  --shadow-lg:  0 20px 48px rgba(11,79,108,0.14), 0 4px 12px rgba(0,0,0,0.06);

  --r:    4px;
  --r-md: 8px;
  --r-lg: 12px;
  --r-xl: 20px;

  --max: 1280px;
  --max-narrow: 960px;
  --t: 0.28s;
}

/* ─── Reset ──────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, textarea, select { font-family: inherit; }

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 40px;
}
.wrap-narrow {
  max-width: var(--max-narrow);
  margin: 0 auto;
  padding: 0 40px;
}

/* ─── Scroll-reveal animations ───────────────────────────────────────────────── */
@keyframes reveal-in {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: none; }
}
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* Hero above-fold: transform-only stagger — content always visible, no opacity risk */
@keyframes hero-up {
  from { transform: translateY(20px); }
  to   { transform: none; }
}
.hero-elem {
  animation-name: hero-up;
  animation-duration: 0.65s;
  animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  animation-fill-mode: both;
}
.hero-elem-1 { animation-delay: 0s; }
.hero-elem-2 { animation-delay: 0.08s; }
.hero-elem-3 { animation-delay: 0.16s; }
.hero-elem-4 { animation-delay: 0.26s; }
.hero-elem-5 { animation-delay: 0.36s; }
.hero-elem-6 { animation-delay: 0.46s; }
.reveal-fast { transition-duration: 0.45s; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

.reveal-left  { transform: translateX(-24px) translateY(0); }
.reveal-right { transform: translateX(24px) translateY(0); }
.reveal-left.is-visible,
.reveal-right.is-visible { transform: none; }

/* ─── Marquee ticker ─────────────────────────────────────────────────────────── */
.site-ticker {
  background: var(--ink);
  color: rgba(255,255,255,0.6);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 10px 0;
  overflow: hidden;
  white-space: nowrap;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.ticker-track {
  display: inline-flex;
  align-items: center;
  animation: ticker 36s linear infinite;
  gap: 0;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-item { padding: 0 28px; display: flex; align-items: center; gap: 10px; }
.ticker-dot {
  width: 4px; height: 4px;
  background: var(--gold);
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}
.ticker-highlight { color: rgba(255,255,255,0.9); font-weight: 600; }
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── Header ─────────────────────────────────────────────────────────────────── */
.site-header {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-lt);
  position: sticky;
  top: 0;
  z-index: 900;
  transition: box-shadow var(--t) var(--ease);
}
.site-header.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  border-bottom-color: var(--border);
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 16px 40px;
  max-width: var(--max);
  margin: 0 auto;
  gap: 24px;
}

/* Logo */
.site-logo { display: flex; align-items: center; }
.site-logo a { display: flex; flex-direction: column; gap: 2px; }
.logo-wordmark {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -1px;
  color: var(--ink);
  line-height: 1;
}
.logo-wordmark em { color: var(--gold); font-style: normal; }
.logo-sub {
  font-size: 8.5px;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--ink-faint);
}

/* Centered nav */
.header-nav-center { display: flex; align-items: center; justify-content: center; }
.nav-list {
  display: flex;
  align-items: center;
  gap: 0;
}
.nav-list a {
  display: block;
  padding: 8px 16px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--ink-soft);
  transition: color var(--t);
  position: relative;
  white-space: nowrap;
}
.nav-list a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 16px; right: 16px;
  height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s var(--ease);
}
.nav-list a:hover { color: var(--ink); }
.nav-list a:hover::after { transform: scaleX(1); }
.nav-list .current-menu-item > a { color: var(--ink); }
.nav-list .current-menu-item > a::after { transform: scaleX(1); }
.nav-list li { list-style: none; }

/* Header icons */
.header-actions { display: flex; align-items: center; justify-content: flex-end; gap: 4px; }
.h-icon {
  position: relative;
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink);
  border-radius: 50%;
  transition: background var(--t), color var(--t);
}
.h-icon:hover { background: var(--cream); }
.h-icon svg { width: 19px; height: 19px; }
.cart-badge {
  position: absolute; top: 5px; right: 3px;
  width: 16px; height: 16px;
  background: var(--teal); color: white;
  font-size: 9px; font-weight: 700;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 1.5px solid white;
}

/* Search bar */
.header-search-bar {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease), opacity 0.25s;
  opacity: 0;
  border-top: 0px solid transparent;
}
.header-search-bar.open {
  max-height: 80px;
  opacity: 1;
  border-top: 1px solid var(--border-lt);
}
.search-wrap {
  padding: 14px 40px;
  max-width: var(--max);
  margin: 0 auto;
}
.search-wrap .search-form { display: flex; gap: 0; border: 1.5px solid var(--ink); border-radius: var(--r); overflow: hidden; }
.search-wrap .search-field { flex: 1; border: none; outline: none; padding: 11px 18px; font-size: 14px; background: white; }
.search-wrap .search-submit {
  background: var(--ink); color: white;
  border: none; padding: 11px 20px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.5px;
  cursor: pointer; transition: background var(--t);
  text-transform: uppercase;
}
.search-wrap .search-submit:hover { background: var(--teal); }

/* ─── Hero ───────────────────────────────────────────────────────────────────── */
.hero-section {
  min-height: calc(100vh - 100px);
  display: grid;
  grid-template-columns: 55% 45%;
  overflow: hidden;
  position: relative;
}

.hero-text {
  background: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px 80px 40px;
  position: relative;
  overflow: hidden;
}

/* Decorative serif numerals in background */
.hero-text::before {
  content: 'B';
  position: absolute;
  bottom: -60px; right: -20px;
  font-family: var(--font-display);
  font-size: 420px;
  color: rgba(184,149,42,0.06);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}
.hero-label::before {
  content: '';
  display: block;
  width: 32px; height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(44px, 5.5vw, 80px);
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: -2px;
  color: var(--ink);
  margin-bottom: 28px;
}
.hero-headline em {
  font-style: italic;
  color: var(--teal);
}
.hero-headline .line-block { display: block; }

.hero-desc {
  font-size: 16px;
  line-height: 1.85;
  color: var(--ink-soft);
  max-width: 400px;
  margin-bottom: 44px;
}

.hero-cta-row { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--ink); color: white;
  padding: 16px 36px;
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: var(--r);
  transition: background var(--t), transform var(--t), box-shadow var(--t);
}
.btn-primary:hover {
  background: var(--teal); color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(11,79,108,0.25);
}
.btn-primary svg { transition: transform var(--t); }
.btn-primary:hover svg { transform: translateX(3px); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink);
  padding-bottom: 2px;
  border-bottom: 1.5px solid currentColor;
  transition: color var(--t);
}
.btn-ghost:hover { color: var(--gold); }

.hero-stats {
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--cream-dark);
  display: flex;
  gap: 40px;
}
.hero-stat-item {}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 400;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat-label {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--ink-faint);
  text-transform: uppercase;
}

/* Hero visual side */
.hero-visual {
  position: relative;
  display: grid;
  grid-template-rows: 1fr 220px;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  background: var(--ink);
}
.hero-visual-cell {
  overflow: hidden;
  position: relative;
}
.hero-visual-cell:first-child {
  grid-column: 1 / 3;
  grid-row: 1;
}
.hero-visual-cell img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.hero-visual-cell:hover img { transform: scale(1.04); }
.hero-visual-cell .cell-label {
  position: absolute;
  bottom: 16px; left: 16px;
  background: rgba(14,14,14,0.7);
  backdrop-filter: blur(8px);
  color: white;
  font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 6px 12px; border-radius: var(--r);
}

/* ─── Section chrome ─────────────────────────────────────────────────────────── */
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
}
.section-head-text {}
.section-label {
  display: block;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 400;
  letter-spacing: -1px;
  color: var(--ink);
  line-height: 1.1;
}
.section-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--teal);
  border-bottom: 1px solid var(--teal);
  padding-bottom: 2px;
  white-space: nowrap;
  transition: color var(--t), border-color var(--t);
}
.section-link:hover { color: var(--gold); border-color: var(--gold); }
.section-link svg { transition: transform var(--t); }
.section-link:hover svg { transform: translateX(3px); }

/* ─── Category section ───────────────────────────────────────────────────────── */
.cat-universe {
  padding: 96px 0;
  background: var(--white);
}
.cat-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  grid-template-rows: 480px;
  gap: 12px;
}
.cat-tile {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-md);
  cursor: pointer;
}
.cat-tile:nth-child(1) { grid-row: span 1; }
.cat-tile img, .cat-tile-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.cat-tile:hover img, .cat-tile:hover .cat-tile-bg { transform: scale(1.06); }
.cat-tile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,79,108,0.88) 0%, rgba(11,79,108,0.2) 40%, transparent 65%);
  transition: opacity 0.35s;
}
.cat-tile:hover .cat-tile-overlay { opacity: 0.95; }
.cat-tile-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px 28px 32px;
  transform: translateY(8px);
  transition: transform 0.35s var(--ease);
}
.cat-tile:hover .cat-tile-content { transform: none; }
.cat-tile-label {
  font-size: 9px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 8px;
  display: block;
}
.cat-tile-name {
  font-family: var(--font-display);
  font-size: 26px; font-weight: 400;
  color: white;
  line-height: 1.15;
  margin-bottom: 6px;
}
.cat-tile-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
  margin-bottom: 16px;
}
.cat-tile-cta {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 10px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: white;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.25s, transform 0.25s;
}
.cat-tile:hover .cat-tile-cta { opacity: 1; transform: none; }
.cat-tile-cta svg { width: 12px; height: 12px; }

/* Small cat tiles */
.cat-tiles-right {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
}
.cat-tile-sm { border-radius: var(--r-md); }
.cat-tile-sm .cat-tile-name { font-size: 20px; }

/* ─── Manifesto strip ────────────────────────────────────────────────────────── */
.manifesto-strip {
  background: var(--ink);
  padding: 80px 0;
  overflow: hidden;
  position: relative;
}
.manifesto-strip::before {
  content: '"';
  position: absolute;
  left: -40px; top: -80px;
  font-family: var(--font-display);
  font-size: 600px;
  color: rgba(255,255,255,0.03);
  line-height: 1;
  pointer-events: none;
}
.manifesto-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.manifesto-quote {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 46px);
  font-style: italic;
  font-weight: 400;
  color: white;
  line-height: 1.35;
  margin-bottom: 28px;
  letter-spacing: -0.5px;
}
.manifesto-source {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
}

/* ─── Product grid ───────────────────────────────────────────────────────────── */
.products-section { padding: 96px 0; }
.products-section.bg-alt { background: var(--paper-alt); }
.products-section.bg-white { background: var(--white); }

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--border);
}

/* Product card */
.p-card {
  background: var(--white);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: z-index 0s;
}
.p-card:hover { z-index: 4; }

.p-img-wrap {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--cream);
  position: relative;
  flex-shrink: 0;
}
.p-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.65s var(--ease);
}
.p-card:hover .p-img-wrap img { transform: scale(1.06); }

/* Card badges */
.p-badge {
  position: absolute;
  top: 14px; left: 14px;
  font-size: 9px; font-weight: 800;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 2px;
  line-height: 1;
  z-index: 2;
}
.p-badge.sale { background: var(--teal); color: white; }
.p-badge.new  { background: var(--gold); color: white; }
.p-badge.hot  { background: var(--ink); color: white; }

/* Quick-add overlay */
.p-quick-add {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(14,14,14,0.9);
  backdrop-filter: blur(4px);
  color: white;
  font-size: 10.5px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 14px;
  text-align: center;
  transform: translateY(100%);
  transition: transform 0.3s var(--ease);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.p-quick-add svg { width: 14px; height: 14px; }
.p-card:hover .p-quick-add { transform: none; }
.p-quick-add:hover { background: var(--teal); }

/* Wishlist */
.p-wish {
  position: absolute;
  top: 12px; right: 12px;
  width: 36px; height: 36px;
  background: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  box-shadow: var(--shadow-sm);
  opacity: 0;
  transform: scale(0.8) translateY(-4px);
  transition: opacity 0.25s, transform 0.25s var(--ease-spring);
  z-index: 3;
}
.p-card:hover .p-wish { opacity: 1; transform: scale(1) translateY(0); }
.p-wish:hover { background: #FEF2F2; color: #B91C1C; }

.p-body {
  padding: 20px 22px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.p-cat {
  font-size: 9.5px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.p-name {
  font-family: var(--font-serif);
  font-size: 16px; font-weight: 700;
  line-height: 1.4;
  color: var(--ink);
  margin-bottom: 12px;
  flex: 1;
}
.p-name a { color: inherit; transition: color var(--t); }
.p-name a:hover { color: var(--teal); }

.p-meta {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 16px;
}
.p-stars { color: var(--gold-lt); font-size: 11.5px; letter-spacing: 1px; }
.p-review-count { font-size: 11px; color: var(--ink-faint); margin-left: 5px; }

.p-price-row { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.p-price-current {
  font-family: var(--font-serif);
  font-size: 20px; font-weight: 700;
  color: var(--teal);
}
.p-price-original {
  font-size: 12.5px;
  color: var(--ink-faint);
  text-decoration: line-through;
}
.p-price-save {
  font-size: 10px; font-weight: 700;
  color: var(--green);
  background: rgba(21,128,61,0.08);
  padding: 2px 6px;
  border-radius: 2px;
}

.p-footer {
  display: flex; align-items: center; gap: 10px;
}
.btn-add {
  flex: 1;
  background: var(--ink); color: white;
  padding: 11px 14px;
  font-size: 10.5px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: var(--r);
  text-align: center;
  transition: background var(--t), transform var(--t);
}
.btn-add:hover { background: var(--teal); color: white; transform: translateY(-1px); }
.p-cod {
  font-size: 10px; font-weight: 700;
  color: var(--green);
  white-space: nowrap;
  display: flex; align-items: center; gap: 3px;
}

/* ─── Editorial feature ──────────────────────────────────────────────────────── */
.editorial-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
  overflow: hidden;
}
.ef-visual {
  position: relative;
  overflow: hidden;
}
.ef-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.editorial-feature:hover .ef-visual img { transform: scale(1.03); }
.ef-visual-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(11,79,108,0.15) 0%, transparent 50%);
}
.ef-copy {
  background: var(--teal);
  display: flex; flex-direction: column; justify-content: center;
  padding: 72px 64px;
  position: relative;
  overflow: hidden;
}
.ef-copy::after {
  content: '';
  position: absolute;
  bottom: -60px; right: -60px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  pointer-events: none;
}
.ef-copy::before {
  content: '';
  position: absolute;
  top: -40px; left: -40px;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  pointer-events: none;
}
.ef-label {
  font-size: 9.5px; font-weight: 700;
  letter-spacing: 3.5px; text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 20px;
  position: relative; z-index: 1;
}
.ef-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.5vw, 50px);
  font-weight: 400;
  line-height: 1.1;
  color: white;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
  position: relative; z-index: 1;
}
.ef-desc {
  font-size: 15px; line-height: 1.85;
  color: rgba(255,255,255,0.72);
  max-width: 380px;
  margin-bottom: 36px;
  position: relative; z-index: 1;
}
.btn-ef {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1.5px solid rgba(255,255,255,0.45);
  color: white;
  padding: 13px 28px;
  font-size: 10.5px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: var(--r);
  transition: all var(--t);
  width: fit-content;
  position: relative; z-index: 1;
}
.btn-ef:hover { background: white; color: var(--teal); border-color: white; }
.btn-ef svg { transition: transform var(--t); }
.btn-ef:hover svg { transform: translateX(3px); }

/* ─── Alternating editorial strip ────────────────────────────────────────────── */
.editorial-feature.reverse { direction: rtl; }
.editorial-feature.reverse > * { direction: ltr; }
.editorial-feature.reverse .ef-copy { background: var(--cream); }
.editorial-feature.reverse .ef-label { color: var(--gold); }
.editorial-feature.reverse .ef-title { color: var(--ink); }
.editorial-feature.reverse .ef-desc { color: var(--ink-soft); }
.editorial-feature.reverse .btn-ef {
  border-color: var(--ink);
  color: var(--ink);
}
.editorial-feature.reverse .btn-ef:hover { background: var(--ink); color: white; }

/* ─── Split promo ────────────────────────────────────────────────────────────── */
.promo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--border);
}
.promo-card {
  padding: 56px 48px;
  position: relative;
  overflow: hidden;
  min-height: 300px;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.promo-card + .promo-card { border-left: 1px solid var(--border); }
.promo-card.dark { background: var(--ink); }
.promo-card.teal { background: linear-gradient(145deg, var(--teal) 0%, #0d5f80 100%); }
.promo-card.light { background: var(--cream); }
.promo-card.gold-tone { background: linear-gradient(145deg, #7a5a15 0%, #b8952a 100%); }

.promo-deco {
  position: absolute;
  top: 24px; right: 24px;
  font-family: var(--font-display);
  font-size: 100px;
  font-style: italic;
  line-height: 1;
  opacity: 0.08;
  color: currentColor;
  pointer-events: none;
}
.promo-eyebrow {
  font-size: 9px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  margin-bottom: 10px;
  opacity: 0.6;
}
.promo-card.dark .promo-eyebrow,
.promo-card.teal .promo-eyebrow,
.promo-card.gold-tone .promo-eyebrow { color: rgba(255,255,255,0.7); }
.promo-card.light .promo-eyebrow { color: var(--ink-soft); }

.promo-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 34px);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 10px;
}
.promo-card.dark .promo-title,
.promo-card.teal .promo-title,
.promo-card.gold-tone .promo-title { color: white; }
.promo-card.light .promo-title { color: var(--ink); }

.promo-sub {
  font-size: 13.5px; line-height: 1.6;
  margin-bottom: 22px; opacity: 0.7;
}
.promo-card.light .promo-sub { color: var(--ink-soft); }
.promo-card.dark .promo-sub,
.promo-card.teal .promo-sub,
.promo-card.gold-tone .promo-sub { color: rgba(255,255,255,0.7); }

.promo-cta {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px; width: fit-content;
  transition: opacity var(--t);
  opacity: 0.75;
}
.promo-cta:hover { opacity: 1; }
.promo-card.dark .promo-cta,
.promo-card.teal .promo-cta,
.promo-card.gold-tone .promo-cta { color: white; }
.promo-card.light .promo-cta { color: var(--ink); }

/* ─── Trust / values strip ───────────────────────────────────────────────────── */
.trust-strip {
  background: var(--ink);
  padding: 0;
}
.trust-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.trust-item {
  padding: 36px 32px;
  border-right: 1px solid rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  gap: 16px;
}
.trust-item:last-child { border-right: none; }
.trust-icon-wrap {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.trust-icon-wrap svg { width: 18px; height: 18px; color: var(--gold-lt); }
.trust-text strong {
  display: block;
  font-size: 13px; font-weight: 700;
  color: white; margin-bottom: 3px;
}
.trust-text span {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
}

/* ─── Newsletter ─────────────────────────────────────────────────────────────── */
.nl-section {
  background: var(--cream);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 0;
}
.nl-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: var(--max-narrow);
  margin: 0 auto;
  padding: 0 40px;
}
.nl-copy {}
.nl-eyebrow {
  display: block;
  font-size: 9.5px; font-weight: 700;
  letter-spacing: 3.5px; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.nl-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.5px;
  line-height: 1.1;
  margin-bottom: 14px;
}
.nl-desc {
  font-size: 15px; line-height: 1.75;
  color: var(--ink-soft);
}
.nl-form-wrap {}
.nl-perks {
  display: flex; flex-direction: column; gap: 8px;
  margin-bottom: 24px;
}
.nl-perk {
  display: flex; align-items: center; gap: 10px;
  font-size: 13.5px; color: var(--ink-soft);
}
.nl-perk svg { width: 14px; height: 14px; color: var(--gold); flex-shrink: 0; }
.nl-input-row {
  display: flex; gap: 0;
  border: 2px solid var(--ink);
  border-radius: var(--r);
  overflow: hidden;
  background: white;
}
.nl-input {
  flex: 1;
  border: none; outline: none;
  padding: 14px 18px;
  font-size: 14px;
  background: transparent;
  color: var(--ink);
}
.nl-input::placeholder { color: var(--ink-faint); }
.nl-submit {
  background: var(--ink); color: white;
  padding: 14px 24px;
  font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  white-space: nowrap;
  transition: background var(--t);
  border: none; cursor: pointer;
}
.nl-submit:hover { background: var(--teal); }
.nl-small { font-size: 11px; color: var(--ink-faint); margin-top: 10px; }

/* ─── Footer ─────────────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.55);
}
.footer-upper {
  max-width: var(--max);
  margin: 0 auto;
  padding: 72px 40px 56px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.3fr;
  gap: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.ft-brand .logo-wordmark { color: white; font-size: 30px; }
.ft-brand .logo-sub { color: rgba(255,255,255,0.3); }
.ft-tagline {
  font-size: 14px; line-height: 1.75;
  color: rgba(255,255,255,0.45);
  margin: 20px 0 28px;
  max-width: 280px;
}
.ft-social { display: flex; gap: 8px; }
.ft-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: border-color var(--t), color var(--t), background var(--t);
}
.ft-social a svg { width: 15px; height: 15px; }
.ft-social a:hover { border-color: var(--gold); color: var(--gold); background: rgba(184,149,42,0.1); }

.ft-col h5 {
  font-size: 9.5px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 22px;
}
.ft-col ul li { margin-bottom: 12px; }
.ft-col ul li a {
  font-size: 13.5px;
  color: rgba(255,255,255,0.45);
  transition: color var(--t);
}
.ft-col ul li a:hover { color: var(--gold-lt); }

.ft-contact-item {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 14px;
  line-height: 1.6;
}
.ft-contact-icon {
  width: 28px; height: 28px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.ft-contact-icon svg { width: 13px; height: 13px; color: var(--gold-lt); }

.footer-lower {
  max-width: var(--max);
  margin: 0 auto;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-lower p { font-size: 12px; color: rgba(255,255,255,0.25); }
.ft-payments { display: flex; gap: 6px; align-items: center; }
.ft-pay-chip {
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.4);
  font-size: 10.5px; font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--r);
  letter-spacing: 0.3px;
  transition: border-color var(--t), color var(--t);
}
.ft-pay-chip:hover { border-color: var(--gold); color: var(--gold-lt); }

/* ─── WooCommerce — shop archive ─────────────────────────────────────────────── */
.shop-header {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: 48px 0 40px;
  position: relative;
  overflow: hidden;
}
.shop-header::after {
  content: attr(data-title);
  position: absolute;
  right: -20px; top: -30px;
  font-family: var(--font-display);
  font-size: 180px; font-style: italic;
  color: rgba(11,79,108,0.05);
  white-space: nowrap;
  pointer-events: none;
  line-height: 1;
}
.shop-header-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 40px;
}
.shop-header h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -1.5px;
  line-height: 1;
  margin-bottom: 8px;
}
.shop-header .breadcrumb-nav {
  font-size: 12.5px;
  color: var(--ink-faint);
  margin-top: 10px;
}
.shop-header .breadcrumb-nav a { color: var(--teal); transition: color var(--t); }
.shop-header .breadcrumb-nav a:hover { color: var(--gold); }

.shop-toolbar {
  border-bottom: 1px solid var(--border);
  background: var(--white);
  padding: 14px 0;
}
.shop-toolbar-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 40px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.shop-result-count { font-size: 13px; color: var(--ink-soft); }

.woocommerce-ordering select {
  border: 1.5px solid var(--border) !important;
  border-radius: var(--r) !important;
  padding: 8px 14px !important;
  font-size: 13px !important;
  color: var(--ink) !important;
  background: white !important;
  outline: none !important;
}

/* Suppress WooCommerce's loop-area taxonomy description — shown in our header instead */
.bahria-shop .term-description { display: none; }

/* WC archive grid */
.woocommerce ul.products {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 0 !important;
  border: 1px solid var(--border) !important;
  border-radius: var(--r-md) !important;
  overflow: hidden !important;
  background: var(--border) !important;
}
.woocommerce ul.products::before,
.woocommerce ul.products::after { display: none !important; }
.woocommerce ul.products li.product {
  float: none !important; width: auto !important;
  background: var(--white) !important;
  border: none !important; border-radius: 0 !important;
  padding: 0 !important;
  transition: box-shadow 0.3s, z-index 0s;
  overflow: hidden;
  position: relative;
}
.woocommerce ul.products li.product:hover {
  box-shadow: var(--shadow-md);
  z-index: 3;
}
.woocommerce ul.products li.product a.woocommerce-loop-product__link {
  display: block;
  overflow: hidden;
}
.woocommerce ul.products li.product a img {
  aspect-ratio: 4/5 !important;
  width: 100% !important;
  object-fit: cover !important;
  transition: transform 0.65s var(--ease) !important;
  border-radius: 0 !important;
  margin: 0 !important;
}
.woocommerce ul.products li.product:hover a img { transform: scale(1.06) !important; }
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-family: var(--font-serif) !important;
  font-size: 16px !important; font-weight: 700 !important;
  padding: 18px 22px 4px !important;
  line-height: 1.35 !important;
  color: var(--ink) !important;
}
.woocommerce ul.products li.product .price {
  padding: 2px 22px 10px !important;
  font-family: var(--font-serif) !important;
}
.woocommerce ul.products li.product .price .woocommerce-Price-amount {
  color: var(--teal) !important;
  font-size: 19px !important; font-weight: 700 !important;
}
.woocommerce ul.products li.product .price del .woocommerce-Price-amount {
  color: var(--ink-faint) !important;
  font-size: 12px !important; font-weight: 400 !important;
}
.woocommerce ul.products li.product a.button {
  display: block !important;
  margin: 0 22px 22px !important;
  background: var(--ink) !important; color: white !important;
  border: none !important; border-radius: var(--r) !important;
  padding: 11px 16px !important;
  font-size: 10px !important; font-weight: 700 !important;
  letter-spacing: 1px !important; text-transform: uppercase !important;
  text-align: center !important;
  transition: background var(--t) !important;
}
.woocommerce ul.products li.product a.button:hover { background: var(--teal) !important; }
.woocommerce .woocommerce-result-count { font-size: 13px; color: var(--ink-soft); }
.woocommerce-products-header { display: none !important; }

/* WC pagination */
.woocommerce nav.woocommerce-pagination ul {
  border: none !important;
  display: flex !important; gap: 6px !important; flex-wrap: wrap !important;
}
.woocommerce nav.woocommerce-pagination ul li {
  border: none !important;
}
.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
  border: 1.5px solid var(--border) !important;
  border-radius: var(--r) !important;
  padding: 8px 14px !important;
  font-size: 13px !important; font-weight: 600 !important;
  color: var(--ink-soft) !important;
  transition: all var(--t) !important;
}
.woocommerce nav.woocommerce-pagination ul li a:hover {
  border-color: var(--teal) !important; color: var(--teal) !important;
  background: var(--teal-pale) !important;
}
.woocommerce nav.woocommerce-pagination ul li span.current {
  background: var(--teal) !important; color: white !important;
  border-color: var(--teal) !important;
}

/* ─── Product breadcrumb bar (single product pages) ─────────────────────────── */
.product-breadcrumb-bar {
  background: var(--paper-alt);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}

/* ─── Single product ─────────────────────────────────────────────────────────── */
.single-product-layout {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
}
.woocommerce div.product {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 0 !important;
  align-items: start !important;
}
.woocommerce div.product div.images {
  border-right: 1px solid var(--border);
}
.woocommerce div.product div.images img {
  border-radius: 0 !important;
}
.woocommerce div.product div.summary {
  padding: 40px !important;
}
.woocommerce div.product .product_title {
  font-family: var(--font-display) !important;
  font-size: 32px !important; font-weight: 400 !important;
  letter-spacing: -0.5px !important;
  line-height: 1.15 !important;
  color: var(--ink) !important;
  margin-bottom: 12px !important;
}
.woocommerce div.product p.price,
.woocommerce div.product span.price {
  font-family: var(--font-serif) !important;
  color: var(--teal) !important;
  font-size: 30px !important; font-weight: 700 !important;
  margin-bottom: 20px !important;
}
.woocommerce div.product p.price del {
  color: var(--ink-faint) !important;
  font-size: 16px !important;
  margin-right: 8px !important;
}
.woocommerce div.product .single_add_to_cart_button {
  background: var(--teal) !important; color: white !important;
  border: none !important;
  padding: 16px 40px !important;
  font-size: 11px !important; font-weight: 700 !important;
  letter-spacing: 1.5px !important; text-transform: uppercase !important;
  border-radius: var(--r) !important;
  transition: background var(--t), transform var(--t), box-shadow var(--t) !important;
}
.woocommerce div.product .single_add_to_cart_button:hover {
  background: #0a3d56 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 20px rgba(11,79,108,0.3) !important;
}
/* Tabs */
.woocommerce div.product .woocommerce-tabs {
  grid-column: 1 / -1;
  border-top: 1px solid var(--border);
  padding: 0 !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs {
  background: var(--paper-alt) !important;
  border-bottom: 1px solid var(--border) !important;
  padding: 0 40px !important;
  display: flex !important;
  gap: 0 !important;
  margin: 0 !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li {
  background: none !important; border: none !important; border-radius: 0 !important; margin: 0 !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li a {
  font-size: 11px !important; font-weight: 700 !important;
  letter-spacing: 0.8px !important; text-transform: uppercase !important;
  color: var(--ink-soft) !important;
  padding: 14px 20px !important;
  display: block !important;
  border-bottom: 2px solid transparent !important;
  transition: color var(--t) !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
  color: var(--teal) !important;
  border-bottom-color: var(--teal) !important;
}
.woocommerce div.product .woocommerce-tabs .panel {
  background: none !important; border: none !important;
  padding: 28px 40px !important;
}

/* ─── Cart ───────────────────────────────────────────────────────────────────── */
.woocommerce-cart .woocommerce-cart-form { overflow-x: auto; }
.woocommerce-cart table.cart th {
  background: var(--paper-alt) !important;
  font-size: 10px !important; font-weight: 700 !important;
  letter-spacing: 1.5px !important; text-transform: uppercase !important;
  color: var(--ink-soft) !important;
  border-bottom: 1px solid var(--border) !important;
  padding: 14px 16px !important;
}
.woocommerce-cart table.cart td { padding: 16px !important; vertical-align: middle !important; }
.woocommerce-cart table.cart img { border-radius: var(--r) !important; }
.woocommerce .cart_totals h2 {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 400;
  margin-bottom: 20px; letter-spacing: -0.3px;
}
.woocommerce .cart_totals table { border: 1px solid var(--border) !important; border-radius: var(--r-md) !important; overflow: hidden; }
.woocommerce .cart_totals table th, .woocommerce .cart_totals table td { padding: 14px 20px !important; }
.woocommerce .proceed-to-checkout a {
  background: var(--teal) !important;
  font-size: 12px !important; font-weight: 700 !important;
  letter-spacing: 1px !important; text-transform: uppercase !important;
  border-radius: var(--r) !important;
  padding: 16px !important;
  transition: background var(--t), transform var(--t) !important;
}
.woocommerce .proceed-to-checkout a:hover { background: #0a3d56 !important; transform: translateY(-1px) !important; }

/* ─── Checkout ───────────────────────────────────────────────────────────────── */
.woocommerce form .form-row label { font-size: 11.5px !important; font-weight: 700 !important; letter-spacing: 0.3px !important; color: var(--ink) !important; margin-bottom: 6px !important; }
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
  border: 1.5px solid var(--border) !important;
  border-radius: var(--r) !important;
  padding: 12px 14px !important;
  font-size: 14px !important;
  transition: border-color var(--t) !important;
  background: white !important;
}
.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus,
.woocommerce form .form-row select:focus {
  border-color: var(--teal) !important;
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(11,79,108,0.08) !important;
}
.woocommerce-checkout .woocommerce-checkout-payment {
  background: var(--cream) !important;
  border: 1px solid var(--border) !important;
  border-radius: var(--r-md) !important;
  padding: 24px !important;
}
.woocommerce-checkout #payment #place_order {
  background: var(--teal) !important;
  font-size: 13px !important; font-weight: 700 !important;
  letter-spacing: 0.8px !important; text-transform: uppercase !important;
  border-radius: var(--r) !important;
  padding: 17px !important;
  transition: background var(--t) !important;
}
.woocommerce-checkout #payment #place_order:hover { background: #0a3d56 !important; }
.woocommerce h3#order_review_heading {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 400; letter-spacing: -0.3px;
  margin-bottom: 16px;
}

/* WC buttons + notices */
.woocommerce #respond input#submit, .woocommerce a.button,
.woocommerce button.button, .woocommerce input.button {
  background: var(--teal) !important; color: white !important;
  border-radius: var(--r) !important; font-weight: 700 !important;
  transition: background var(--t) !important;
}
.woocommerce #respond input#submit:hover, .woocommerce a.button:hover,
.woocommerce button.button:hover, .woocommerce input.button:hover {
  background: #0a3d56 !important; color: white !important;
}
.woocommerce-message {
  border-top: 3px solid var(--teal) !important;
  background: var(--teal-pale) !important;
  border-radius: var(--r) !important;
}
.woocommerce-error { border-top: 3px solid var(--error) !important; border-radius: var(--r) !important; }
.woocommerce-info { border-top: 3px solid var(--gold) !important; background: var(--gold-pale) !important; border-radius: var(--r) !important; }
.woocommerce .star-rating span::before,
.woocommerce-page .star-rating span::before { color: var(--gold-lt) !important; }

/* ─── Page / content layout ──────────────────────────────────────────────────── */
#page { display: flex; flex-direction: column; min-height: 100vh; }
#main { flex: 1; }

.page-hero {
  background: var(--cream);
  padding: 56px 0 44px;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 40px,
    rgba(184,149,42,0.025) 40px,
    rgba(184,149,42,0.025) 41px
  );
  pointer-events: none;
}
.page-hero .wrap { position: relative; z-index: 1; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -1px;
  line-height: 1.05;
  margin-bottom: 10px;
}
.page-hero .woocommerce-breadcrumb,
.page-hero .breadcrumb {
  font-size: 12.5px; color: var(--ink-faint);
  margin-top: 8px;
}
.page-hero .woocommerce-breadcrumb a,
.page-hero .breadcrumb a { color: var(--teal); transition: color var(--t); }
.page-hero .woocommerce-breadcrumb a:hover,
.page-hero .breadcrumb a:hover { color: var(--gold); }

.content-area {
  padding: 56px 0;
}
.entry-content {
  max-width: 760px;
}
.entry-content p { font-size: 15.5px; line-height: 1.9; color: #4A4A4A; margin-bottom: 22px; }
.entry-content h2 { font-family: var(--font-display); font-size: 28px; font-weight: 400; margin: 36px 0 14px; color: var(--ink); letter-spacing: -0.3px; }
.entry-content h3 { font-family: var(--font-serif); font-size: 20px; font-weight: 700; margin: 28px 0 12px; color: var(--ink); }
.entry-content ul { padding-left: 0; margin-bottom: 22px; }
.entry-content ul li { padding-left: 22px; position: relative; margin-bottom: 10px; line-height: 1.75; font-size: 15.5px; color: #4A4A4A; }
.entry-content ul li::before { content: '—'; position: absolute; left: 0; color: var(--gold); font-weight: 700; }
.entry-content ol { padding-left: 24px; margin-bottom: 22px; list-style: decimal; }
.entry-content ol li { margin-bottom: 10px; line-height: 1.75; font-size: 15.5px; color: #4A4A4A; }
.entry-content a { color: var(--teal); border-bottom: 1px solid rgba(11,79,108,0.3); transition: color var(--t); }
.entry-content a:hover { color: var(--gold); }
.entry-content blockquote {
  border-left: 3px solid var(--gold);
  padding: 8px 24px;
  margin: 28px 0;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 18px;
  color: var(--ink-soft);
  line-height: 1.7;
}

/* ─── Back to top button ─────────────────────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 44px; height: 44px;
  background: var(--teal);
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0; pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.3s, transform 0.3s, background var(--t);
  z-index: 800;
  border: none; cursor: pointer;
}
.back-to-top.visible { opacity: 1; pointer-events: auto; transform: none; }
.back-to-top:hover { background: var(--ink); }
.back-to-top svg { width: 18px; height: 18px; }

/* ─── Responsive ─────────────────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .hero-section { grid-template-columns: 1fr; min-height: auto; }
  .hero-visual { min-height: 380px; grid-template-rows: 1fr; grid-template-columns: repeat(3, 1fr); }
  .hero-visual-cell:first-child { grid-column: auto; }
  .hero-text { padding: 64px 40px; }
  .hero-text::before { font-size: 260px; }
  .cat-grid { grid-template-rows: auto; grid-template-columns: 1fr 1fr; }
  .cat-grid-wide { grid-column: span 2; }
  .woocommerce ul.products { grid-template-columns: repeat(2, 1fr) !important; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .promo-grid { grid-template-columns: 1fr 1fr; }
  .footer-upper { grid-template-columns: 1fr 1fr; gap: 40px; }
  .trust-inner { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: none; }
  .editorial-feature { grid-template-columns: 1fr; }
  .ef-visual { min-height: 340px; }
  .nl-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .wrap, .wrap-narrow { padding: 0 24px; }
  .header-inner { padding: 14px 24px; grid-template-columns: auto 1fr; }
  .header-nav-center { display: none; }
  .hero-text { padding: 48px 24px; }
  .hero-text::before { display: none; }
  .cat-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .cat-grid-wide { grid-column: auto; }
  .cat-tile, .cat-tile-sm { min-height: 260px; }
  .product-grid { grid-template-columns: 1fr 1fr; }
  .woocommerce ul.products { grid-template-columns: repeat(2, 1fr) !important; }
  .trust-inner { grid-template-columns: 1fr 1fr; }
  .promo-grid { grid-template-columns: 1fr; }
  .promo-card + .promo-card { border-left: none; border-top: 1px solid var(--border); }
  .footer-upper { grid-template-columns: 1fr; gap: 32px; }
  .footer-lower { flex-direction: column; text-align: center; padding: 20px 24px; }
  .nl-grid { gap: 32px; }
  .manifesto-quote { font-size: 22px; }
  .woocommerce div.product { grid-template-columns: 1fr !important; }
  .search-wrap { padding: 14px 24px; }
}

@media (max-width: 520px) {
  .logo-wordmark { font-size: 24px; }
  .product-grid { grid-template-columns: 1fr 1fr; gap: 0; }
  .woocommerce ul.products { grid-template-columns: repeat(2, 1fr) !important; }
  .hero-stats { gap: 24px; }
  .hero-stat-num { font-size: 26px; }
  .trust-inner { grid-template-columns: 1fr; }
  .trust-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .trust-item:last-child { border-bottom: none; }
  .h-icon:not(.cart-icon-btn) { display: none; }
}
