/* =============================================================
   Lopou Hair Care — Stylesheet
   Palette: Ivory / Black / Charcoal / Gold (colors sampled from the real logo)
   ============================================================= */

:root {
  --color-ivory: #faf6ef;
  --color-ivory-alt: #f2ead9;
  --color-black: #1a1a18;
  --color-black-soft: #2c2b27;
  --color-charcoal: #262319;
  --color-charcoal-dark: #100e0a;
  --color-charcoal-light: #3d372a;
  --color-gold: #e8a028;
  --color-gold-dark: #c2841e;
  --color-gold-light: #f6c15a;
  --color-white: #ffffff;
  --color-border: #e3d9c4;

  --font-heading: 'Afacad', 'Poppins', 'Segoe UI', Arial, sans-serif;
  --font-body: 'Poppins', 'Segoe UI', Arial, sans-serif;

  --max-width: 1180px;
  --radius: 6px;
  --shadow-soft: 0 10px 30px rgba(26, 26, 24, 0.08);
  --transition: 0.25s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--color-black-soft);
  background: var(--color-ivory);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--color-black);
  font-weight: 600;
  line-height: 1.2;
}

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

section { padding: 88px 0; }

.section-alt { background: var(--color-ivory-alt); }
.section-dark {
  background: var(--color-charcoal-dark);
  color: var(--color-ivory);
}
.section-dark h2, .section-dark h3 { color: var(--color-white); }

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-gold);
  font-weight: 600;
  margin-bottom: 14px;
}

.section-head h2 {
  font-size: 40px;
  margin-bottom: 14px;
}

.section-head p {
  color: #5a584f;
  font-size: 16px;
}

.section-dark .section-head p { color: #d6d2c6; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 15px 34px;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all var(--transition);
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--color-charcoal);
  color: var(--color-white);
}
.btn-primary:hover { background: var(--color-charcoal-dark); }

.btn-gold {
  background: var(--color-gold);
  color: var(--color-black);
}
.btn-gold:hover { background: var(--color-gold-light); }

.btn-outline {
  background: transparent;
  border-color: var(--color-white);
  color: var(--color-white);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); }

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

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(250, 246, 239, 0.96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--color-border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.logo {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--color-black);
  letter-spacing: 0.5px;
  display: inline-block;
}
.logo span { color: var(--color-gold); }
.logo img { height: 84px; width: auto; display: block; }
.footer-col .logo img { height: 96px; }

.nav-links {
  display: flex;
  gap: 34px;
  align-items: center;
}

.nav-links a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--color-black-soft);
  position: relative;
  padding-bottom: 4px;
  transition: color var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--color-charcoal); }
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: var(--color-gold);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  margin-left: 8px;
  padding: 10px 22px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-black);
  background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold));
  border-radius: 30px;
  box-shadow: 0 4px 14px rgba(200,162,74,0.35);
  transition: transform var(--transition), box-shadow var(--transition);
}
.nav-cta:hover {
  color: var(--color-black);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(200,162,74,0.5);
}

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

.cart-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  font-size: 18px;
  border-radius: 50%;
  transition: background var(--transition);
}
.cart-link:hover,
.cart-link.active { background: var(--color-ivory-alt); }
.cart-count {
  position: absolute;
  top: -2px;
  right: -2px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 10px;
  background: var(--color-gold);
  color: var(--color-black);
  font-size: 11px;
  font-weight: 700;
  display: none;
  align-items: center;
  justify-content: center;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 26px; height: 2px;
  background: var(--color-black);
  display: block;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--color-charcoal-dark) 0%, var(--color-charcoal) 55%, var(--color-black-soft) 100%);
  color: var(--color-white);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(200,162,74,0.18), transparent 40%),
    radial-gradient(circle at 85% 75%, rgba(200,162,74,0.15), transparent 45%);
}

.hero-inner {
  position: relative;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.hero-text .eyebrow { color: var(--color-gold-light); }

.hero-text h1 {
  font-size: 54px;
  color: var(--color-white);
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 17px;
  color: #d6d2c6;
  max-width: 480px;
  margin-bottom: 34px;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-visual {
  position: relative;
}

.page-hero {
  padding: 150px 0 70px;
  background: linear-gradient(135deg, var(--color-charcoal-dark), var(--color-charcoal));
  color: var(--color-white);
  text-align: center;
}
.page-hero .eyebrow { color: var(--color-gold-light); }
.page-hero h1 { color: var(--color-white); font-size: 44px; }
.page-hero p { color: #d6d2c6; max-width: 560px; margin: 14px auto 0; }

/* ---------- Placeholder image blocks ---------- */
.img-placeholder {
  position: relative;
  width: 100%;
  min-height: 220px;
  border-radius: var(--radius);
  background: repeating-linear-gradient(
    135deg,
    var(--color-ivory-alt),
    var(--color-ivory-alt) 14px,
    #ecdfc2 14px,
    #ecdfc2 28px
  );
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.img-placeholder::after {
  content: attr(data-label);
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--color-charcoal-dark);
  background: rgba(250,246,239,0.85);
  padding: 8px 16px;
  border-radius: 20px;
  text-align: center;
}
.img-placeholder.dark {
  background: repeating-linear-gradient(
    135deg,
    var(--color-charcoal),
    var(--color-charcoal) 14px,
    var(--color-charcoal-dark) 14px,
    var(--color-charcoal-dark) 28px
  );
  border-color: var(--color-charcoal-dark);
}
.img-placeholder.dark::after { color: var(--color-white); background: rgba(22,54,41,0.75); }

.hero-visual .img-placeholder { min-height: 420px; border-radius: 10px; border-color: rgba(255,255,255,0.25); }

/* ---------- Hero image slider ---------- */
.hero-slider {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.hero-slide {
  display: none;
}
.hero-slide.active {
  display: block;
  animation: heroFade 0.5s ease;
}
@keyframes heroFade {
  from { opacity: 0; }
  to { opacity: 1; }
}
.hero-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.35);
  background: rgba(22,54,41,0.55);
  color: var(--color-white);
  font-size: 22px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.hero-slider-arrow:hover {
  background: var(--color-gold);
  border-color: var(--color-gold);
}
.hero-slider-arrow.prev { left: 14px; }
.hero-slider-arrow.next { right: 14px; }
.hero-slider-dots {
  position: absolute;
  bottom: 16px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
}
.hero-slider-dots .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.25);
  padding: 0;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.hero-slider-dots .dot.active {
  background: var(--color-gold);
  border-color: var(--color-gold);
  transform: scale(1.15);
}

/* ---------- Grids / Cards ---------- */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.card {
  background: var(--color-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--color-border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(26,26,24,0.12); }

.card-body { padding: 26px 24px 28px; }

.card-body h3 { font-size: 20px; margin-bottom: 10px; }
.card-body p { font-size: 14.5px; color: #5a584f; margin-bottom: 16px; }

.card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-charcoal);
  background: #f4ead4;
  padding: 5px 12px;
  border-radius: 20px;
}

.price {
  font-family: var(--font-heading);
  font-size: 19px;
  color: var(--color-gold);
  font-weight: 700;
}

.link-arrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--color-charcoal);
  text-transform: uppercase;
}
.link-arrow::after { content: " \2192"; }

/* ---------- Service category tabs ---------- */
.category-block { margin-bottom: 64px; }
.category-block:last-child { margin-bottom: 0; }
.category-title {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--color-gold);
}
.category-title h3 { font-size: 26px; }
.category-title span { font-size: 13px; color: #8a8778; text-transform: uppercase; letter-spacing: 1.5px; }

/* ---------- Stats strip ---------- */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stats-strip .stat h3 {
  font-size: 40px;
  color: var(--color-gold);
}
.stats-strip .stat p {
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #d6d2c6;
}

/* ---------- Testimonials ---------- */
.testimonial-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-soft);
}
.testimonial-card .stars { color: var(--color-gold); letter-spacing: 3px; margin-bottom: 14px; }
.testimonial-card p.quote { font-size: 15px; color: #4a4840; margin-bottom: 18px; font-style: italic; }
.testimonial-card .author { font-weight: 700; font-size: 14px; color: var(--color-black); }
.testimonial-card .author span { display: block; font-weight: 400; color: #8a8778; font-size: 12.5px; text-transform: uppercase; letter-spacing: 1px; margin-top: 2px; }

/* ---------- Team ---------- */
.team-card { text-align: center; }
.team-card .img-placeholder { min-height: 260px; border-radius: 50%; aspect-ratio: 1/1; min-height: 0; }
.team-card h3 { margin-top: 20px; font-size: 19px; }
.team-card p.role { color: var(--color-gold); font-size: 13px; text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: linear-gradient(120deg, var(--color-charcoal-dark), var(--color-charcoal));
  color: var(--color-white);
  text-align: center;
  padding: 70px 24px;
  border-radius: 10px;
}
.cta-banner h2 { color: var(--color-white); font-size: 34px; margin-bottom: 12px; }
.cta-banner p { color: #d6d2c6; margin-bottom: 30px; }
.cta-banner .container { padding: 0; }

/* ---------- Gallery ---------- */
.gallery-filter {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.gallery-filter button {
  background: transparent;
  border: 1px solid var(--color-border);
  padding: 10px 22px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
}
.gallery-filter button.active,
.gallery-filter button:hover {
  background: var(--color-charcoal);
  color: var(--color-white);
  border-color: var(--color-charcoal);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.gallery-grid .img-placeholder { min-height: 200px; }

/* ---------- Real photo utilities (replace .img-placeholder where real images exist) ---------- */
/* aspect-ratio: 3/4 matches the portrait shape of our source photos — a fixed
   pixel height on a wider column would force a landscape box and crop away
   most of the (portrait) photo. object-position keeps crops anchored to the
   top of the frame so hairstyles/faces don't get cut off. */
.real-photo { display: block; width: 100%; height: auto; aspect-ratio: 3 / 4; object-fit: cover; object-position: center top; }

.grid-2 .real-photo { border-radius: var(--radius); }

.hero-visual .real-photo {
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.25);
}

.gallery-grid .real-photo,
.service-gallery-strip .real-photo {
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
}

/* ---------- Service inner page ---------- */
.breadcrumb {
  margin-top: 16px;
  font-size: 13px;
  letter-spacing: 0.3px;
}
.breadcrumb a { color: var(--color-gold-light); }
.breadcrumb a:hover { color: var(--color-white); }
.breadcrumb span { margin: 0 8px; color: #8a8778; }
.breadcrumb span[aria-current] { margin: 0; color: #d6d2c6; }

.size-guide-card {
  max-width: 860px;
  margin: 0 auto;
  background: var(--color-ivory-alt);
  border: 1px solid var(--color-gold-light);
  border-radius: var(--radius);
  padding: 32px 36px;
}
.size-guide-head { text-align: center; margin-bottom: 26px; }
.size-guide-head h3 { font-size: 18px; letter-spacing: 1px; text-transform: uppercase; }
.size-guide-head p { font-size: 13px; color: #8a8778; margin-top: 6px; }

.size-guide-table-wrap { overflow-x: auto; }
.size-guide-table { width: 100%; border-collapse: collapse; min-width: 520px; }
.size-guide-table th {
  background: var(--color-charcoal-dark);
  color: var(--color-white);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 12px 14px;
  text-align: center;
}
.size-guide-table th:first-child { text-align: left; }
.size-guide-table td {
  padding: 14px;
  text-align: center;
  border-bottom: 1px solid var(--color-border);
  background: var(--color-white);
}
.size-guide-table td:first-child { text-align: left; }
.size-guide-table td strong { display: block; font-size: 14px; }
.size-guide-table td > span:not(.size-check):not(.size-addon) {
  display: block;
  font-size: 11.5px;
  color: #8a8778;
  margin-top: 2px;
}
.size-check,
.size-addon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  white-space: nowrap;
}
.size-check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-gold-light);
  color: var(--color-black);
  font-size: 13px;
}
.size-addon {
  padding: 5px 10px;
  border-radius: 14px;
  background: var(--color-charcoal);
  color: var(--color-white);
  font-size: 11.5px;
}
.size-guide-legend {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-top: 24px;
  flex-wrap: wrap;
  font-size: 12.5px;
  color: #5a584f;
}
.size-guide-legend .size-check.small,
.size-guide-legend .size-addon.small {
  width: auto;
  height: auto;
  padding: 2px 8px;
  margin-right: 6px;
}
.size-guide-footnote {
  text-align: center;
  font-size: 12px;
  color: #8a8778;
  font-style: italic;
  margin-top: 14px;
}

.pricing-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition), box-shadow var(--transition);
}
.pricing-card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(26,26,24,0.12); }
.pricing-card h3 { font-size: 20px; margin-bottom: 14px; }
.pricing-card-price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 14px; }
.pricing-card-price .price { font-size: 28px; }
.pricing-card-price span:last-child { font-size: 13px; color: #8a8778; }
.pricing-card .badge { margin-bottom: 20px; }
.pricing-card ul { list-style: none; margin-bottom: 20px; }
.pricing-card ul li { position: relative; padding-left: 20px; font-size: 14px; color: #5a584f; margin-bottom: 8px; }
.pricing-card ul li::before { content: "•"; position: absolute; left: 0; color: var(--color-gold); font-weight: 700; }
.pricing-card-note { font-size: 12.5px; color: #8a8778; margin-bottom: 22px; }
.pricing-card .btn { width: 100%; text-align: center; }

.service-gallery-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.service-gallery-strip .img-placeholder { min-height: 200px; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}
.info-list li {
  display: flex;
  gap: 16px;
  margin-bottom: 26px;
}
.info-icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--color-charcoal);
  color: var(--color-white);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.info-list h4 { font-size: 15px; margin-bottom: 4px; }
.info-list p, .info-list a { font-size: 14.5px; color: #5a584f; }

.social-row { display: flex; gap: 12px; margin-top: 30px; }
.social-row a {
  width: 40px; height: 40px;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  transition: all var(--transition);
}
.social-row a:hover { background: var(--color-charcoal); color: var(--color-white); border-color: var(--color-charcoal); }

.form-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-soft);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--color-black-soft);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 14px;
  background: var(--color-ivory);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 12.5px; color: #8a8778; margin-top: 10px; }

.map-placeholder {
  margin-top: 40px;
  min-height: 280px;
}

/* ---------- Policy / notice box ---------- */
.notice-box {
  background: #fbf3e0;
  border: 1px solid var(--color-gold-light);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin-top: 40px;
}
.notice-box h4 { margin-bottom: 8px; font-size: 15px; }
.notice-box p { font-size: 14px; color: #5a584f; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--color-black);
  color: #c9c8c0;
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid #37362f;
}
.footer-col .logo { color: var(--color-white); margin-bottom: 14px; }
.footer-col p { font-size: 14px; color: #a8a79c; margin-bottom: 18px; }
.footer-col h4 {
  color: var(--color-white);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 20px;
}
.footer-col li { margin-bottom: 12px; }
.footer-col a { font-size: 14px; color: #c9c8c0; transition: color var(--transition); }
.footer-col a:hover { color: var(--color-gold); }

.newsletter-form { display: flex; margin-top: 6px; }
.newsletter-form input {
  flex: 1;
  padding: 12px 14px;
  border: 1px solid #454338;
  background: #24231f;
  color: var(--color-white);
  border-radius: 4px 0 0 4px;
  font-size: 13px;
}
.newsletter-form button {
  background: var(--color-gold);
  color: var(--color-black);
  border: none;
  padding: 0 18px;
  border-radius: 0 4px 4px 0;
  font-weight: 700;
  cursor: pointer;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 26px 0;
  font-size: 13px;
  color: #83816f;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom .social-row a { border-color: #454338; color: #c9c8c0; }

/* ---------- Shop: Add to Cart / Qty stepper ---------- */
.qty-stepper {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  overflow: hidden;
}
.qty-stepper button {
  width: 30px;
  height: 32px;
  background: var(--color-ivory-alt);
  border: none;
  font-size: 16px;
  cursor: pointer;
  color: var(--color-black-soft);
}
.qty-stepper button:hover { background: var(--color-gold-light); }
.qty-stepper .qty-input {
  width: 40px;
  height: 32px;
  border: none;
  border-left: 1px solid var(--color-border);
  border-right: 1px solid var(--color-border);
  text-align: center;
  font-family: var(--font-body);
  font-size: 14px;
  -moz-appearance: textfield;
}
.qty-stepper .qty-input::-webkit-outer-spin-button,
.qty-stepper .qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.product-actions { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }

.btn-add-cart {
  flex: 1;
  background: var(--color-black);
  color: var(--color-white);
  border: none;
  padding: 9px 14px;
  border-radius: 4px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--transition);
}
.btn-add-cart:hover { background: var(--color-charcoal); }
.btn-add-cart.added { background: var(--color-gold); color: var(--color-black); }

/* ---------- Cart page ---------- */
#cart-content {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
}
.cart-empty {
  text-align: center;
  padding: 60px 20px;
}
.cart-empty p { color: #5a584f; margin-bottom: 24px; }

.cart-table-head {
  display: grid;
  grid-template-columns: 2.2fr 1fr 0.8fr 0.4fr;
  gap: 16px;
  padding: 0 20px 14px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #8a8778;
  border-bottom: 1px solid var(--color-border);
}
.cart-row {
  display: grid;
  grid-template-columns: 2.2fr 1fr 0.8fr 0.4fr;
  gap: 16px;
  align-items: center;
  padding: 20px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  margin-top: 14px;
}
.cart-row-product { display: flex; align-items: center; gap: 16px; }
.cart-thumb { width: 72px; height: 72px; min-height: 0; flex-shrink: 0; border-radius: 4px; }
.cart-thumb::after { font-size: 9px; padding: 4px 6px; }
.cart-row-product h4 { font-size: 15px; margin-bottom: 4px; }
.cart-unit-price { font-size: 12.5px; color: #8a8778; }
.cart-line-total { font-family: var(--font-heading); font-weight: 700; color: var(--color-black); }
.cart-remove {
  width: 30px; height: 30px;
  border: 1px solid var(--color-border);
  background: transparent;
  border-radius: 50%;
  cursor: pointer;
  color: #8a8778;
  transition: all var(--transition);
}
.cart-remove:hover { background: #f4d9d9; color: #a33; border-color: #e3b7b7; }

.cart-summary-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-soft);
  position: sticky;
  top: 110px;
}
.cart-summary-card h3 { font-size: 20px; margin-bottom: 20px; }
.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 14.5px;
  color: #5a584f;
  margin-bottom: 12px;
}
.summary-row.total {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-black);
  padding-top: 14px;
  margin-top: 6px;
  border-top: 1px solid var(--color-border);
}
.cart-summary-card .btn { width: 100%; text-align: center; margin-top: 16px; }
.checkout-note { font-size: 12px; color: #8a8778; margin-top: 14px; text-align: center; }

/* ---------- Checkout page ---------- */
.checkout-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  align-items: start;
}
.checkout-section { margin-bottom: 36px; }
.checkout-section h3 {
  font-size: 18px;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--color-gold);
}
.radio-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  margin-bottom: 10px;
  cursor: pointer;
  font-size: 14px;
}
.radio-option input { accent-color: var(--color-gold); }

#shipping-fields { display: none; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 14px; }
#shipping-fields .form-group:first-child { grid-column: 1 / -1; }

.payment-placeholder {
  background: var(--color-ivory-alt);
  border: 1px dashed var(--color-gold);
  border-radius: var(--radius);
  padding: 22px;
}
.payment-placeholder p { font-size: 13.5px; color: #5a584f; }
.payment-placeholder .form-row { margin-top: 16px; }
.payment-placeholder input[disabled] { background: #ece5d4; cursor: not-allowed; }

.checkout-summary-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-soft);
  position: sticky;
  top: 110px;
}
.checkout-summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #5a584f;
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 1px solid var(--color-border);
}

/* ---------- Order confirmation ---------- */
.confirmation-box {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.confirmation-icon {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--color-gold);
  color: var(--color-black);
  font-size: 36px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
}
.confirmation-details {
  text-align: left;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 28px;
  margin-top: 34px;
  box-shadow: var(--shadow-soft);
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-text p { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .grid-3, .grid-4, .grid-2, .service-gallery-strip { grid-template-columns: repeat(2, 1fr); }
  .stats-strip { grid-template-columns: repeat(2, 1fr); gap: 34px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  #cart-content { grid-template-columns: 1fr; }
  .checkout-grid { grid-template-columns: 1fr; }
  .size-guide-card { padding: 26px 20px; }
}

@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--color-ivory);
    padding: 24px;
    gap: 18px;
    border-bottom: 1px solid var(--color-border);
  }
  .nav-cta { align-self: center; margin-left: 0; margin-top: 4px; }
  .hero-text h1 { font-size: 36px; }
  section { padding: 60px 0; }
  .grid-3, .grid-4, .grid-2, .gallery-grid, .service-gallery-strip { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .section-head h2 { font-size: 30px; }
  .page-hero h1 { font-size: 32px; }
  .cart-table-head { display: none; }
  .cart-row { grid-template-columns: 1fr; text-align: left; }
  .cart-row-product { flex-wrap: wrap; }
  .cart-line-total { text-align: left; }
  .cart-remove { justify-self: start; }
  .cart-summary-card { position: static; }
  .checkout-summary-card { position: static; }
}
