/* ============================================================
   ASRA GLOBAL — Main Stylesheet
   Colors: Navy #1F3B57 | Gold #B8862E | Cream #F4F1EC | Charcoal #222222
   ============================================================ */

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

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:   #1F3B57;
  --navy-dark: #162c42;
  --gold:   #B8862E;
  --gold-light: #d4a44f;
  --cream:  #F4F1EC;
  --cream-dark: #ede9e1;
  --charcoal: #222222;
  --mid-grey: #666666;
  --light-grey: #e8e4dc;
  --white:  #ffffff;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;
  --transition: 0.25s ease;
  --shadow: 0 4px 24px rgba(31,59,87,0.10);
  --radius: 4px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--charcoal);
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a  { color: var(--navy); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }

/* ── Typography ── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  line-height: 1.25;
  color: var(--navy);
  margin-bottom: 0.6em;
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }
p  { margin-bottom: 1.2em; color: var(--mid-grey); }
p:last-child { margin-bottom: 0; }

.lead {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--charcoal);
}

/* ── Layout ── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.section {
  padding: 80px 0;
}
.section--cream { background: var(--cream); }
.section--white { background: var(--white); }
.section--navy  { background: var(--navy); }

.gold-rule {
  display: block;
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 16px 0 28px;
}
.gold-rule--center { margin-left: auto; margin-right: auto; }

.section-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}
.section-header { margin-bottom: 48px; }
.section-header--center { text-align: center; }
.section-header--center .gold-rule { margin-left: auto; margin-right: auto; }

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  border-radius: var(--radius);
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-align: center;
  text-decoration: none;
}
.btn-primary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-primary:hover {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
  color: var(--white);
}
.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: #a0741e;
  border-color: #a0741e;
  color: var(--white);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--navy);
}
.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  border-color: #25D366;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.btn-whatsapp:hover {
  background: #1ebe5a;
  border-color: #1ebe5a;
  color: var(--white);
}

/* ── Navigation ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--light-grey);
  box-shadow: 0 2px 12px rgba(31,59,87,0.07);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav-logo .logo-name {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.02em;
}
.nav-logo .logo-tagline {
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: var(--radius);
  color: var(--charcoal);
  transition: all var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--navy); background: var(--cream); }
.nav-links .nav-cta a {
  background: var(--navy);
  color: var(--white);
  padding: 8px 18px;
}
.nav-links .nav-cta a:hover {
  background: var(--gold);
  color: var(--white);
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  transition: all var(--transition);
}

/* ── Hero ── */
.hero {
  background: var(--navy);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(184,134,46,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 760px;
}
.hero .section-label { color: var(--gold-light); margin-bottom: 12px; display: block; }
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero h1 em { color: var(--gold-light); font-style: normal; }
.hero .lead { color: rgba(255,255,255,0.78); margin-bottom: 36px; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

/* ── Trust Strip ── */
.trust-strip {
  background: var(--cream-dark);
  border-top: 2px solid var(--gold);
  border-bottom: 1px solid var(--light-grey);
  padding: 14px 0;
}
.trust-strip-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  justify-content: center;
  align-items: center;
}
.trust-item {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 6px;
}
.trust-item::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.6rem;
}

/* ── Product Category Grid ── */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}
.category-card {
  display: block;
  color: inherit;
  text-decoration: none;
  background: var(--white);
  border: 1px solid var(--light-grey);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}
.category-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.category-card--live:hover h4 { color: var(--gold); }
.category-card__media {
  aspect-ratio: 1.45;
  background: var(--cream);
  overflow: hidden;
}
.category-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}
.category-card--live:hover .category-card__media img { transform: scale(1.04); }
.category-card__content { padding: 22px 24px 24px; }
.category-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  line-height: 1;
}
.category-card h4 { font-size: 1rem; margin-bottom: 6px; }
.category-card p { font-size: 0.85rem; color: var(--mid-grey); margin: 0; }
.category-card a { color: inherit; }
.category-card a:hover h4 { color: var(--gold); }

/* ── Why Us Bullets ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.why-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--cream-dark);
  border: 1px solid var(--light-grey);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.why-item h4 { font-size: 0.95rem; margin-bottom: 4px; }
.why-item p  { font-size: 0.85rem; margin: 0; }

/* ── Regions Strip ── */
.regions-strip {
  background: var(--navy);
  padding: 32px 0;
  text-align: center;
}
.regions-strip p {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  margin-bottom: 8px;
}
.regions-strip .regions-list {
  color: var(--gold-light);
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 400;
  font-style: italic;
}
.regions-strip a { color: var(--gold-light); text-decoration: underline; text-underline-offset: 3px; }

/* ── Founder Teaser ── */
.founder-teaser {
  display: flex;
  align-items: center;
  gap: 40px;
  background: var(--white);
  border: 1px solid var(--light-grey);
  border-left: 4px solid var(--gold);
  padding: 40px;
  border-radius: var(--radius);
}
.founder-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  flex-shrink: 0;
  border: 3px solid var(--gold);
}
.founder-teaser h3 { margin-bottom: 4px; }
.founder-teaser .founder-title {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 12px;
  display: block;
}
.founder-teaser p { font-size: 1rem; font-style: italic; color: var(--charcoal); margin-bottom: 16px; }

/* ── CTA Banner ── */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  padding: 72px 0;
  text-align: center;
}
.cta-banner h2 { color: var(--white); margin-bottom: 12px; }
.cta-banner p  { color: rgba(255,255,255,0.75); margin-bottom: 32px; }
.cta-banner .btn { margin: 0 8px 8px; }

/* ── Page Hero ── */
.page-hero {
  background: var(--navy);
  padding: 64px 0 48px;
}
.page-hero .section-label { color: var(--gold-light); margin-bottom: 8px; display: block; }
.page-hero h1 { color: var(--white); margin-bottom: 12px; }
.page-hero .lead { color: rgba(255,255,255,0.75); max-width: 640px; }

/* ── About Page ── */
.about-founder-row {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 56px;
  align-items: start;
}
.about-photo-wrap { position: relative; }
.about-photo {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.about-photo-caption {
  background: var(--navy);
  color: var(--white);
  padding: 16px 20px;
  border-radius: 0 0 var(--radius) var(--radius);
}
.about-photo-caption strong { display: block; font-family: var(--font-serif); font-size: 1.1rem; }
.about-photo-caption span   { font-size: 0.82rem; color: var(--gold-light); }

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--light-grey);
  border: 1px solid var(--light-grey);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 48px;
}
.stat-item {
  background: var(--white);
  padding: 32px 24px;
  text-align: center;
}
.stat-number {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label { font-size: 0.8rem; color: var(--mid-grey); text-transform: uppercase; letter-spacing: 0.06em; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}
.value-card {
  border: 1px solid var(--light-grey);
  border-top: 3px solid var(--navy);
  padding: 28px 24px;
  background: var(--white);
  border-radius: var(--radius);
}
.value-card h4 { color: var(--navy); margin-bottom: 8px; }
.value-card p  { font-size: 0.88rem; margin: 0; }

/* ── Products Page ── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--light-grey);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition), transform var(--transition);
}
.product-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.product-img-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #e8e4de;
  border-bottom: 1px solid var(--light-grey);
}
.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}
.product-card:hover .product-img { transform: scale(1.04); }
.product-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.product-card-icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
}
.product-card h3 { font-size: 1.15rem; margin-bottom: 4px; }
.product-region {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}
.product-card p { font-size: 0.88rem; margin-bottom: 12px; }
.product-items {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.product-items li {
  font-size: 0.75rem;
  background: var(--cream-dark);
  color: var(--navy);
  padding: 3px 10px;
  border-radius: 20px;
  font-weight: 500;
}

/* ── Regions Page ── */
.regions-table-wrap {
  overflow-x: auto;
}
.regions-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.regions-table th {
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 18px;
  text-align: left;
}
.regions-table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--light-grey);
  vertical-align: top;
}
.regions-table tr:nth-child(even) td { background: var(--cream-dark); }
.regions-table tr:hover td { background: rgba(184,134,46,0.07); }
.regions-table .region-name { font-weight: 600; color: var(--navy); }
.regions-table .region-cat  { color: var(--gold); font-weight: 500; }

/* ── How We Work ── */
.process-steps {
  position: relative;
  padding-left: 40px;
}
.process-steps::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold) 0%, var(--light-grey) 100%);
}
.process-step {
  position: relative;
  margin-bottom: 40px;
  padding-bottom: 8px;
}
.process-step:last-child { margin-bottom: 0; }
.step-number {
  position: absolute;
  left: -40px;
  width: 38px;
  height: 38px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1rem;
  border: 2px solid var(--gold);
}
.process-step h3 { font-size: 1.1rem; margin-bottom: 6px; }
.process-step p  { font-size: 0.9rem; margin: 0; }

.terms-block {
  background: var(--white);
  border: 1px solid var(--light-grey);
  border-left: 4px solid var(--gold);
  padding: 36px;
  border-radius: var(--radius);
}
.terms-block h3 { margin-bottom: 20px; }
.terms-list { list-style: none; }
.terms-list li {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--light-grey);
  font-size: 0.9rem;
}
.terms-list li:last-child { border-bottom: none; }
.terms-list .term-label {
  font-weight: 600;
  color: var(--navy);
  min-width: 160px;
  flex-shrink: 0;
}

/* ── FAQ ── */
.faq-list { max-width: 760px; }
.faq-item {
  border-bottom: 1px solid var(--light-grey);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  padding: 22px 0;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--navy);
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--gold); }
.faq-toggle {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border: 1px solid var(--light-grey);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--gold);
  font-weight: 300;
  transition: all var(--transition);
}
.faq-item.open .faq-toggle {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
  transform: rotate(45deg);
}
.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease;
}
.faq-answer-inner {
  padding: 0 0 24px;
  font-size: 0.95rem;
  color: var(--mid-grey);
  line-height: 1.8;
}

/* ── Contact Page ── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 56px;
  align-items: start;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
  letter-spacing: 0.03em;
}
.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--light-grey);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--charcoal);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
}
.form-control:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(31,59,87,0.1);
}
textarea.form-control { resize: vertical; min-height: 120px; }
select.form-control { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%231F3B57' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-notice {
  font-size: 0.8rem;
  color: var(--mid-grey);
  margin-top: 8px;
}
.form-required { color: #c0392b; }

.contact-sidebar .contact-block {
  background: var(--white);
  border: 1px solid var(--light-grey);
  padding: 28px;
  border-radius: var(--radius);
  margin-bottom: 16px;
}
.contact-block h4 { font-size: 0.95rem; margin-bottom: 12px; }
.contact-detail {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 0.88rem;
}
.contact-detail:last-child { margin-bottom: 0; }
.contact-detail-icon { font-size: 1rem; flex-shrink: 0; margin-top: 2px; }
.contact-detail-text { color: var(--mid-grey); }
.contact-detail-text strong { color: var(--charcoal); display: block; }

.response-badge {
  background: var(--cream-dark);
  border: 1px solid var(--light-grey);
  border-left: 3px solid var(--gold);
  padding: 14px 16px;
  border-radius: var(--radius);
  font-size: 0.85rem;
  color: var(--navy);
  font-weight: 500;
}

/* ── Form Feedback ── */
.form-alert {
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  margin-bottom: 20px;
  display: none;
}
.form-alert.success {
  background: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;
}
.form-alert.error {
  background: #f8d7da;
  border: 1px solid #f5c6cb;
  color: #721c24;
}

/* ── Footer ── */
.footer {
  background: var(--navy-dark);
  padding: 60px 0 0;
  color: rgba(255,255,255,0.7);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-brand .logo-name {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--white);
  font-weight: 700;
  display: block;
  margin-bottom: 6px;
}
.footer-brand .logo-tagline {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  display: block;
  margin-bottom: 20px;
}
.footer-brand p { font-size: 0.88rem; line-height: 1.7; color: rgba(255,255,255,0.6); }
.footer-nap {
  margin-top: 20px;
  font-size: 0.82rem;
  line-height: 1.9;
  color: rgba(255,255,255,0.55);
}
.footer-nap strong { color: rgba(255,255,255,0.85); display: block; }
.footer-col h5 {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--gold-light); }
.footer-contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.6);
  align-items: flex-start;
}
.footer-contact-item .icon { font-size: 0.9rem; margin-top: 2px; flex-shrink: 0; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom-inner p, .footer-bottom-inner a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
}
.footer-bottom-inner a:hover { color: var(--gold-light); }
.footer-legal-links { display: flex; gap: 16px; }
.footer-reg {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  font-family: var(--font-sans);
}

/* ── Legal Pages ── */
.legal-content {
  max-width: 760px;
}
.legal-content h2 { font-size: 1.4rem; margin-top: 40px; margin-bottom: 12px; }
.legal-content h3 { font-size: 1.1rem; margin-top: 28px; margin-bottom: 8px; }
.legal-content p  { font-size: 0.95rem; }
.legal-content ul { margin: 0 0 1.2em 1.4em; }
.legal-content li { font-size: 0.95rem; margin-bottom: 6px; color: var(--mid-grey); }

/* ── Breadcrumb ── */
.breadcrumb {
  padding: 14px 0;
  font-size: 0.8rem;
  color: var(--mid-grey);
  border-bottom: 1px solid var(--light-grey);
}
.breadcrumb a { color: var(--navy); }
.breadcrumb span { margin: 0 6px; }

/* ── Spinner ── */
.btn-spinner {
  display: none;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  margin-left: 8px;
  vertical-align: middle;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Utility ── */
.text-gold   { color: var(--gold); }
.text-navy   { color: var(--navy); }
.text-center { text-align: center; }
.mt-12 { margin-top: 12px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.mt-48 { margin-top: 48px; }
.mb-8  { margin-bottom: 8px; }

/* ── Trust Items (textiles page) ── */
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--cream);
  border: 1px solid var(--light-grey);
  border-radius: var(--radius);
  padding: 8px 14px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--navy);
}
.trust-item span { font-size: 1rem; }

/* ── Textile Category Nav ── */
.textile-cat-nav {
  background: var(--navy);
  position: sticky;
  top: 64px;
  z-index: 90;
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
}
.textile-cat-nav ul {
  display: flex;
  list-style: none;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.textile-cat-nav ul::-webkit-scrollbar { display: none; }
.textile-cat-nav a {
  display: block;
  padding: 14px 22px;
  color: rgba(255,255,255,.75);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: color var(--transition), background var(--transition);
  border-bottom: 3px solid transparent;
}
.textile-cat-nav a:hover {
  color: var(--white);
  background: rgba(255,255,255,.07);
  border-bottom-color: var(--gold);
}

/* ── Textile Section ── */
.textile-section { padding-top: 64px; padding-bottom: 64px; }
.textile-section-header {
  max-width: 760px;
  margin-bottom: 40px;
}
.textile-section-header h2 {
  margin-bottom: 12px;
}

/* ── Subcategory Accordion ── */
.textile-subcat {
  border: 1px solid var(--light-grey);
  border-radius: var(--radius);
  margin-bottom: 16px;
  background: var(--white);
  overflow: hidden;
}
.textile-subcat-hd {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 28px;
  cursor: pointer;
  user-select: none;
  transition: background var(--transition);
}
.textile-subcat-hd:hover { background: var(--cream); }
.textile-subcat-hd h3 {
  font-size: 1.05rem;
  margin: 0;
  color: var(--navy);
}
.subcat-toggle {
  font-size: 1.4rem;
  color: var(--gold);
  font-weight: 400;
  line-height: 1;
  transition: transform 0.25s ease;
  flex-shrink: 0;
}
.textile-subcat.open .subcat-toggle { transform: rotate(45deg); }
.textile-subcat-body {
  display: none;
  padding: 0 28px 28px;
  border-top: 1px solid var(--light-grey);
}
.textile-subcat.open .textile-subcat-body { display: block; }
.textile-subcat-body > p {
  padding-top: 20px;
  margin-bottom: 24px;
  color: var(--charcoal);
  font-size: 0.92rem;
}

/* ── Subcat Product Grid ── */
.subcat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}
.subcat-item {
  background: var(--cream);
  border: 1px solid var(--light-grey);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 20px;
}
.subcat-item h4 {
  font-size: 0.95rem;
  color: var(--navy);
  margin-bottom: 8px;
}
.subcat-item p {
  font-size: 0.84rem;
  color: var(--charcoal);
  margin-bottom: 10px;
}
.subcat-item ul {
  padding-left: 16px;
  margin: 0;
}
.subcat-item li {
  font-size: 0.82rem;
  color: var(--charcoal);
  margin-bottom: 3px;
}

/* ── Section alternate bg ── */
.section--white { background: var(--white); }

/* ── Textile Product Cards ── */
.textile-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}
.textile-product-card {
  background: var(--white);
  border: 1px solid var(--light-grey);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition), transform var(--transition);
}
.textile-product-card:hover {
  box-shadow: 0 8px 24px rgba(31,59,87,.12);
  transform: translateY(-3px);
}
.textile-product-img-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #e8e4de;
  border-bottom: 1px solid var(--light-grey);
}
.textile-product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.textile-product-card:hover .textile-product-img { transform: scale(1.04); }
.textile-product-body {
  padding: 22px 24px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.textile-product-body h3 {
  font-size: 1.05rem;
  color: var(--navy);
  margin: 0;
}
.textile-product-body p {
  font-size: 0.86rem;
  color: var(--charcoal);
  margin: 0;
  line-height: 1.6;
}
.textile-detail-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}
.textile-detail-list li {
  font-size: 0.78rem;
  color: var(--charcoal);
  padding: 3px 0 3px 14px;
  position: relative;
  border-bottom: 1px solid var(--light-grey);
}
.textile-detail-list li:last-child { border-bottom: none; }
.textile-detail-list li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}
.btn-enquire {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: .04em;
  text-transform: uppercase;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 2px;
  transition: color var(--transition);
  align-self: flex-start;
}
.btn-enquire:hover { color: var(--gold); }

/* ── Textiles Category Grid ─────────────────────────────── */
.tex-cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 24px;
}
.tex-cat-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--light-grey);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: box-shadow var(--transition), transform var(--transition);
}
.tex-cat-card:hover {
  box-shadow: 0 10px 30px rgba(31,59,87,.13);
  transform: translateY(-4px);
}
.tex-cat-live { border-color: var(--gold); }
.tex-cat-live:hover { box-shadow: 0 10px 30px rgba(197,161,90,.25); }
.tex-cat-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #e8e4de;
}
.tex-cat-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.tex-cat-card:hover .tex-cat-img-wrap img { transform: scale(1.05); }
.tex-cat-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
}
.tex-cat-badge--soon {
  background: rgba(255,255,255,.85);
  color: var(--charcoal);
}
.tex-cat-body {
  padding: 18px 20px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.tex-cat-body h3 {
  font-size: 1rem;
  color: var(--navy);
  margin: 0;
}
.tex-cat-body p {
  font-size: 0.82rem;
  color: var(--charcoal);
  margin: 0;
  line-height: 1.55;
  flex: 1;
}
.tex-cat-count {
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* ── Bedsheets Filter Strip ─────────────────────────────── */
.bs-filter-strip {
  background: var(--navy);
  padding: 14px 0;
  position: sticky;
  top: 64px;
  z-index: 90;
  border-bottom: 2px solid var(--gold);
}
.bs-filter-strip .container {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.bs-filter-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-right: 4px;
}
.bs-filter {
  background: transparent;
  border: 1px solid rgba(255,255,255,.25);
  color: rgba(255,255,255,.8);
  font-size: 0.74rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font-body);
}
.bs-filter:hover { border-color: var(--gold); color: var(--gold); }
.bs-filter.active { background: var(--gold); border-color: var(--gold); color: var(--navy); }

/* ── Bedsheet Product Grid ───────────────────────────────── */
.bs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}
.bs-card {
  background: var(--white);
  border: 1px solid var(--light-grey);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition), transform var(--transition);
}
.bs-card:hover {
  box-shadow: 0 8px 28px rgba(31,59,87,.13);
  transform: translateY(-3px);
}

/* ── Slider ─────────────────────────────────────────────── */
.bs-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #e8e4de;
}
.bs-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s ease;
}
.bs-slide.active { opacity: 1; visibility: visible; }
.bs-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.bs-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.82);
  border: none;
  font-size: 1.6rem;
  line-height: 1;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
  color: var(--navy);
}
.bs-arrow:hover { background: var(--gold); color: var(--navy); }
.bs-prev { left: 8px; }
.bs-next { right: 8px; }
.bs-dots {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
}
.bs-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,.5);
  cursor: pointer;
  transition: background var(--transition);
}
.bs-dot.active { background: var(--gold); }

/* ── Bedsheet Card Body ─────────────────────────────────── */
.bs-body {
  padding: 20px 22px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bs-body h3 {
  font-size: 0.96rem;
  color: var(--navy);
  margin: 0;
  line-height: 1.35;
}
.bs-desc {
  font-size: 0.82rem;
  color: var(--charcoal);
  line-height: 1.6;
  margin: 0;
}
.bs-specs {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.77rem;
  flex: 1;
}
.bs-specs tr { border-bottom: 1px solid var(--light-grey); }
.bs-specs tr:last-child { border-bottom: none; }
.bs-specs th {
  text-align: left;
  color: var(--charcoal);
  font-weight: 600;
  padding: 5px 8px 5px 0;
  width: 72px;
  vertical-align: top;
}
.bs-specs td {
  color: var(--navy);
  padding: 5px 0;
  vertical-align: top;
}

/* ── Includes Tags ───────────────────────────── */
.bs-includes {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 2px;
}
.bs-include-tag {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--navy);
  background: rgba(197,161,90,.15);
  border: 1px solid rgba(197,161,90,.4);
  padding: 3px 8px;
  border-radius: 20px;
}

/* ── Zoom Button on Slider ───────────────────── */
.bs-zoom-btn {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(255,255,255,.88);
  border: none;
  border-radius: 6px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 15;
  font-size: 1.1rem;
  color: var(--navy);
  transition: background var(--transition);
}
.bs-zoom-btn:hover { background: var(--gold); }

/* ── Category Tag on Slider ──────────────────── */
.bs-cat-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--navy);
  color: var(--gold);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 20px;
  z-index: 15;
}

/* ── Lightbox Overlay ────────────────────────── */
.lb-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,15,25,.94);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.lb-overlay.active { display: flex; }
.lb-img-wrap {
  position: relative;
  max-width: 92vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  overflow: hidden;
}
#lbImg {
  max-width: 88vw;
  max-height: 82vh;
  object-fit: contain;
  display: block;
  border-radius: 4px;
  cursor: zoom-in;
  transition: transform .2s ease;
  transform-origin: center center;
}
.lb-hint {
  color: rgba(255,255,255,.5);
  font-size: 0.72rem;
  text-align: center;
  margin: 0;
}
.lb-close {
  position: fixed;
  top: 18px;
  right: 22px;
  background: rgba(255,255,255,.12);
  border: none;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: background var(--transition);
}
.lb-close:hover { background: rgba(255,255,255,.25); }
.lb-arrow {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.12);
  border: none;
  color: #fff;
  font-size: 3rem;
  line-height: 1;
  width: 54px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10000;
  border-radius: 4px;
  transition: background var(--transition);
}
.lb-arrow:hover { background: rgba(255,255,255,.25); }
.lb-prev { left: 10px; }
.lb-next { right: 10px; }

/* ── Bedsheet card uses flex layout ─────────── */
.bs-card { display: flex; flex-direction: column; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .about-founder-row { grid-template-columns: 1fr; }
  .about-photo-wrap { max-width: 320px; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-sidebar { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
}
@media (max-width: 700px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--light-grey); padding: 16px 24px 24px; gap: 4px; box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 10px 0; font-size: 0.95rem; border-bottom: 1px solid var(--light-grey); }
  .nav-links .nav-cta a { border: none; background: var(--navy); color: var(--white); padding: 12px 16px; border-radius: var(--radius); text-align: center; }
  .nav-toggle { display: flex; }
  .nav { position: sticky; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .contact-sidebar { grid-template-columns: 1fr; }
  .hero { padding: 60px 0 50px; }
  .section { padding: 56px 0; }
  .founder-teaser { flex-direction: column; gap: 20px; }
}
@media (max-width: 480px) {
  .categories-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; text-align: center; }
}
