/* ============================================================
   Orthodox Embroidery — Custom Styles
   Brand palette: deep gold (#b5882a), ivory, dark charcoal
   ============================================================ */

:root {
  --gold: #b5882a;
  --gold-light: #d4a847;
  --gold-dark: #8a6515;
  --ivory: #faf8f3;
  --charcoal: #2c2c2c;
  --text-muted: #6b6b6b;
}

/* Typography */
body {
  font-family: 'Lato', sans-serif;
  color: var(--charcoal);
  background: #fff;
}

/* Global link style — override Bootstrap blue */
a {
  color: var(--gold-dark);
  text-decoration: none;
}
a:hover {
  color: var(--gold);
  text-decoration: underline;
}

/* Breadcrumb */
.breadcrumb-item a {
  color: var(--gold-dark);
  text-decoration: none;
}
.breadcrumb-item a:hover {
  color: var(--gold);
  text-decoration: underline;
}
.breadcrumb-item.active {
  color: var(--text-muted);
}

h1, h2, h3, h4, h5, .hero-title, .section-title, .brand-name {
  font-family: 'Playfair Display', serif;
}

/* Announcement bar */
.announcement-bar {
  background: var(--charcoal);
  color: #e8d9b3;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
}

/* Navbar */
.navbar-brand {
  text-decoration: none;
}
.brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold-dark);
  line-height: 1.1;
}
.brand-sub {
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  margin-top: 1px;
}
.navbar .nav-link {
  font-size: 0.9rem;
  color: var(--charcoal) !important;
  font-weight: 500;
  letter-spacing: 0.03em;
}
.navbar .nav-link:hover {
  color: var(--gold) !important;
}
.dropdown-menu-columns {
  columns: 2;
  min-width: 340px;
}
.dropdown-item {
  font-size: 0.85rem;
  break-inside: avoid;
}

/* Buttons */
.btn-gold {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: #fff;
}

/* Hero */
.hero-section {
  background: linear-gradient(135deg, var(--ivory) 60%, #ede7d4 100%);
  border-bottom: 1px solid #e8dfc9;
}
.hero-eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.hero-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--charcoal);
  line-height: 1.2;
}
.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 500px;
}
.min-vh-60 { min-height: 60vh; }
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.badge-item {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.badge-item i { color: var(--gold); }

/* Section titles */
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--charcoal);
  position: relative;
}
.section-title::after {
  content: '';
  display: block;
  width: 50px;
  height: 2px;
  background: var(--gold);
  margin: 0.5rem auto 0;
}

/* Category cards */
.category-card {
  display: block;
  text-decoration: none;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #e5e0d5;
  transition: box-shadow 0.2s, transform 0.2s;
}
.category-card:hover {
  box-shadow: 0 4px 16px rgba(181,136,42,0.15);
  transform: translateY(-2px);
}
.category-img {
  height: 130px;
  background-size: cover;
  background-position: center;
  background-color: #f0ebe0;
}
.category-img-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ccc;
  font-size: 2rem;
}
.category-label {
  background: #fff;
  color: var(--charcoal);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.5rem 0.75rem;
  text-align: center;
  border-top: 1px solid #eee;
}

/* Product cards */
.product-card {
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
  background: #fff;
}
.product-card:hover {
  box-shadow: 0 4px 18px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}
.product-card-link {
  text-decoration: none;
  color: inherit;
}
.product-img-wrap {
  position: relative;
  overflow: hidden;
  background: #f5f2ec;
  aspect-ratio: 3/4;
}
.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.product-card:hover .product-img {
  transform: scale(1.04);
}
.product-img-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: #ccc;
  font-size: 2.5rem;
}
.product-ribbon {
  position: absolute;
  top: 8px;
  left: 8px;
  background: var(--gold);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.product-sale-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background: #dc3545;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 3px;
}
.product-name {
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 0.3rem;
  color: var(--charcoal);
}
.product-price { font-size: 0.9rem; }
.price-current { font-weight: 700; color: var(--gold-dark); }
.price-original { font-size: 0.8rem; color: #999; text-decoration: line-through; margin-left: 4px; }

/* Product detail */
.product-detail-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  line-height: 1.25;
}
.price-large { font-size: 1.7rem; font-weight: 700; color: var(--gold-dark); }
.price-strikethrough { font-size: 1.1rem; color: #999; text-decoration: line-through; margin-left: 8px; }
.badge-ribbon { background: var(--gold); color: #fff; font-size: 0.75rem; }

/* Gallery */
.gallery-main-img {
  width: 100%;
  max-height: 520px;
  object-fit: contain;
  background: #f5f2ec;
  border-radius: 8px;
}
.gallery-thumb {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 4px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color 0.2s;
}
.gallery-thumb.active,
.gallery-thumb:hover {
  border-color: var(--gold);
}

/* Value props */
.value-prop { padding: 1.5rem 1rem; }
.value-icon {
  font-size: 2.5rem;
  color: var(--gold);
  display: block;
  margin-bottom: 0.75rem;
}

/* Sidebar */
.sidebar-heading {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.sidebar-links a {
  display: block;
  color: var(--charcoal);
  text-decoration: none;
  font-size: 0.85rem;
  padding: 0.25rem 0;
  border-bottom: 1px solid #f0f0f0;
  transition: color 0.15s;
}
.sidebar-links a:hover, .sidebar-links a.active {
  color: var(--gold);
  font-weight: 600;
}

/* Contact icons */
.contact-icon-wrap {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

/* Footer */
.footer {
  background: var(--charcoal);
  color: #ccc;
}
/* Bootstrap's .text-muted is too dim on the dark footer; override to a lighter shade. */
.footer .text-muted { color: #b0b0b0 !important; }
.footer-top { border-top: 3px solid var(--gold); }
.footer-brand {
  font-family: 'Playfair Display', serif;
  color: #e8d9b3;
  font-size: 1.1rem;
}
.footer-heading {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-light);
  margin-bottom: 0.75rem;
}
.footer-links a {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 0.85rem;
  display: block;
  margin-bottom: 0.25rem;
}
.footer-links a:hover { color: var(--gold-light); }
.footer-bottom { background: #1a1a1a; }

/* Description HTML */
.description-text p { margin-bottom: 0.5rem; font-size: 0.95rem; }
.description-text ul { padding-left: 1.2rem; }
.description-text li { font-size: 0.9rem; margin-bottom: 0.25rem; }

/* ════════════════════════════════════════════════════════
   CART NAV BUTTON
   ════════════════════════════════════════════════════════ */
.cart-nav-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  color: var(--charcoal);
  font-size: 1.3rem;
  text-decoration: none;
  flex-shrink: 0;
}
.cart-nav-btn:hover { color: var(--gold); }
.cart-badge {
  position: absolute;
  top: 2px;
  right: 2px;
  background: var(--gold);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  min-width: 16px;
  height: 16px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
  line-height: 1;
}

/* ════════════════════════════════════════════════════════
   QTY CONTROL (shared: cart + product detail)
   ════════════════════════════════════════════════════════ */
.qty-control {
  display: inline-flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 6px;
  overflow: hidden;
}
.qty-btn {
  background: #f5f5f5;
  border: none;
  width: 32px;
  height: 36px;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}
.qty-btn:hover { background: #e8e8e8; }
.qty-input {
  width: 44px;
  height: 36px;
  border: none;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
  outline: none;
}
.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button { -webkit-appearance: none; }

/* ════════════════════════════════════════════════════════
   CART PAGE
   ════════════════════════════════════════════════════════ */
.cart-items-wrap {
  border: 1px solid #eee;
  border-radius: 10px;
  overflow: hidden;
}
.cart-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid #f0f0f0;
}
.cart-item:last-child { border-bottom: none; }
.cart-item-img-wrap {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  border-radius: 6px;
  overflow: hidden;
  background: #f5f2ec;
}
.cart-item-img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-img-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: #ccc;
  font-size: 1.5rem;
}
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--charcoal);
  text-decoration: none;
  display: block;
  margin-bottom: 0.2rem;
}
.cart-item-name:hover { color: var(--gold); }
.cart-item-options { display: flex; flex-wrap: wrap; gap: 0.3rem; margin-bottom: 0.3rem; }
.cart-option-chip {
  font-size: 0.72rem;
  background: #f0ebe0;
  color: var(--charcoal);
  padding: 1px 7px;
  border-radius: 100px;
}
.cart-item-price { font-size: 0.85rem; color: var(--text-muted); }
.cart-item-controls {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
  flex-shrink: 0;
}
.cart-item-line-total { font-weight: 700; color: var(--gold-dark); font-size: 0.95rem; }
.cart-remove-btn {
  background: none;
  border: none;
  color: #bbb;
  cursor: pointer;
  font-size: 0.95rem;
  padding: 2px 4px;
  transition: color 0.15s;
}
.cart-remove-btn:hover { color: #dc3545; }

/* Cart summary box */
.cart-summary {
  background: var(--ivory);
  border: 1px solid #e5ddc8;
  border-radius: 10px;
  padding: 1.5rem;
}
.cart-summary-title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  margin-bottom: 1rem;
}
.cart-summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  padding: 0.4rem 0;
}
.cart-summary-divider {
  border-top: 1px solid #e5ddc8;
  margin: 0.5rem 0;
}
.cart-summary-total {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--charcoal);
}
.cart-secure-note {
  text-align: center;
  font-size: 0.78rem;
  color: #aaa;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}
.payment-badge {
  font-size: 0.72rem;
  background: #f0f0f0;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 2px 7px;
  color: #555;
}
.cart-custom-note {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  background: rgba(181,136,42,0.07);
  border: 1px solid rgba(181,136,42,0.2);
  border-radius: 8px;
  padding: 0.85rem 1rem;
  font-size: 0.85rem;
}

/* Add to cart feedback */
.cart-feedback {
  padding: 0.65rem 1rem;
  border-radius: 6px;
  font-size: 0.88rem;
  margin-top: 0.75rem;
}
.cart-feedback-success {
  background: #d1fae5;
  color: #065f46;
  border: 1px solid #6ee7b7;
}
.cart-feedback-success a { color: #065f46; font-weight: 600; }
.cart-feedback-error {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fca5a5;
}

/* ════════════════════════════════════════════════════════
   CHECKOUT & PAYMENT
   ════════════════════════════════════════════════════════ */
.checkout-steps {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
}
.step {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: #bbb;
  font-weight: 500;
}
.step.active { color: var(--charcoal); font-weight: 700; }
.step.done { color: var(--gold); }
.step-num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #eee;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}
.step.active .step-num { background: var(--gold); color: #fff; }
.step.done .step-num { background: var(--gold); color: #fff; }
.step-arrow { color: #ccc; font-size: 1rem; }

.checkout-section {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 1.5rem;
  margin-bottom: 1.25rem;
}
.checkout-section-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.78rem;
}
.checkout-section input,
.checkout-section select,
.checkout-section textarea {
  border-color: #ddd;
  font-size: 0.9rem;
  width: 100%;
  padding: 0.55rem 0.85rem;
  border: 1px solid #ddd;
  border-radius: 6px;
  outline: none;
  transition: border-color 0.15s;
  font-family: 'Lato', sans-serif;
}
.checkout-section input:focus,
.checkout-section select:focus,
.checkout-section textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(181,136,42,0.1);
}
.checkout-section input.is-invalid,
.checkout-section select.is-invalid,
.checkout-section textarea.is-invalid {
  border-color: #dc3545;
}
.checkout-account-box {
  background: #fafaf7;
  border-color: #e5ddc8;
}

/* Checkout order summary sidebar */
.checkout-summary {
  background: var(--ivory);
  border: 1px solid #e5ddc8;
  border-radius: 10px;
  padding: 1.5rem;
  position: sticky;
  top: 80px;
}
.checkout-summary-title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  border-bottom: 1px solid #e5ddc8;
  padding-bottom: 0.75rem;
  margin-bottom: 1rem;
}
.checkout-summary-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}
.checkout-summary-img-wrap {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 6px;
  overflow: hidden;
  background: #f0ebe0;
  flex-shrink: 0;
}
.checkout-summary-img { width: 100%; height: 100%; object-fit: cover; }
.checkout-summary-qty {
  position: absolute;
  top: -6px;
  right: -6px;
  background: #555;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.checkout-summary-info { flex: 1; min-width: 0; }
.checkout-summary-name { font-size: 0.82rem; font-weight: 600; line-height: 1.3; }
.checkout-summary-price { font-size: 0.88rem; font-weight: 600; white-space: nowrap; }
.checkout-summary-divider { border-top: 1px solid #e5ddc8; margin: 0.75rem 0; }
.checkout-summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  padding: 0.25rem 0;
}
.checkout-summary-total { font-weight: 700; font-size: 1rem; }

/* Square card container */
.square-card-container {
  min-height: 90px;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 4px;
  background: #fff;
}

/* Payment status message */
.payment-status-msg { padding: 0.65rem 1rem; border-radius: 6px; font-size: 0.88rem; margin-top: 0.5rem; }
.payment-status-error { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; }

/* Shipping recap on payment page */
.payment-recap { background: #fafaf7; border-color: #e5ddc8; }

/* ════════════════════════════════════════════════════════
   ORDER CONFIRMATION
   ════════════════════════════════════════════════════════ */
.confirmation-wrap { max-width: 560px; margin: 0 auto 2rem; }
.confirmation-icon {
  font-size: 4rem;
  color: #22c55e;
  line-height: 1;
  margin-bottom: 1rem;
}
.confirmation-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--charcoal);
}
.confirmation-sub { color: var(--text-muted); font-size: 1rem; }

.order-detail-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
}
.order-detail-heading {
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  border-bottom: 1px solid #f0f0f0;
  padding-bottom: 0.65rem;
  margin-bottom: 1rem;
}
.order-detail-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.4rem 0;
  font-size: 0.9rem;
  gap: 1rem;
}
.order-detail-right { display: flex; align-items: baseline; flex-shrink: 0; }
.order-detail-divider { border-top: 1px solid #eee; margin: 0.5rem 0; }
.order-detail-total { font-weight: 700; font-size: 1rem; }

.order-next-steps {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
}
.next-step {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 0.85rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.next-step-num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(181,136,42,0.12);
  color: var(--gold-dark);
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── Background utilities ───────────────────────────────── */
.bg-ivory { background: var(--ivory); }

/* ── Shared eyebrow label ───────────────────────────────── */
.section-eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  font-weight: 700;
}
.section-title-left {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  color: var(--charcoal);
  margin-bottom: 0;
}

/* ════════════════════════════════════════════════════════
   HERO V2
   ════════════════════════════════════════════════════════ */
.hero-v2 {
  background: linear-gradient(130deg, var(--ivory) 55%, #ede5cd 100%);
  padding: 4rem 0 3rem;
  overflow: hidden;
}
.hero-v2-text { padding-right: 2rem; }

.hero-v2-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  line-height: 1.15;
  color: var(--charcoal);
  margin: 0.5rem 0 1rem;
}
.hero-price-highlight {
  color: var(--gold-dark);
  display: inline-block;
  position: relative;
}
.hero-price-highlight::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 2px;
  height: 3px;
  background: var(--gold-light);
  opacity: 0.5;
  border-radius: 2px;
}

.hero-v2-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 480px;
  line-height: 1.7;
}

/* Trust chips */
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(181,136,42,0.1);
  border: 1px solid rgba(181,136,42,0.25);
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
}
.trust-chip i { font-size: 0.85rem; }
.hero-ships-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0;
}
.hero-ships-note i { color: var(--gold); }

/* Product collage */
.hero-v2-visual {
  position: relative;
  padding-left: 2rem;
}
.hero-collage {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  height: 480px;
}
.collage-main {
  flex: 1.2;
  position: relative;
  height: 100%;
}
.collage-img-main {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}
.collage-secondary {
  flex: 0.8;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
}
.collage-sm-wrap {
  flex: 1;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
.collage-img-sm {
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
.collage-price-tag {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: rgba(255,255,255,0.95);
  color: var(--gold-dark);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.collage-price-tag strong { font-size: 1.1rem; }
.collage-price-tag-sm {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(255,255,255,0.95);
  color: var(--gold-dark);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.2rem 0.65rem;
  border-radius: 100px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

/* ════════════════════════════════════════════════════════
   PRICE ANCHOR BAR
   ════════════════════════════════════════════════════════ */
.price-bar {
  background: var(--charcoal);
  padding: 0.75rem 0;
}
.price-bar-inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.price-bar-label {
  color: #aaa;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
  margin-right: 0.5rem;
}
.price-chip {
  display: inline-block;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: #ddd;
  font-size: 0.8rem;
  padding: 0.25rem 0.85rem;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.price-chip:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}
.price-chip-all {
  color: var(--gold-light);
  border-color: rgba(181,136,42,0.4);
  font-weight: 600;
}
.price-chip-all:hover {
  background: var(--gold);
  color: #fff;
}

/* ════════════════════════════════════════════════════════
   WHY AFFORDABLE SECTION
   ════════════════════════════════════════════════════════ */
.why-section { background: #fff; }

.why-list { display: flex; flex-direction: column; gap: 1.25rem; }
.why-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.why-icon {
  width: 40px;
  height: 40px;
  background: rgba(181,136,42,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Compare card */
.compare-card {
  background: var(--ivory);
  border: 1px solid #e5ddc8;
  border-radius: 12px;
  padding: 1.75rem;
}
.compare-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--charcoal);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #e5ddc8;
}
.compare-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.65rem 0;
  border-bottom: 1px solid #ede8dd;
  gap: 1rem;
  font-size: 0.88rem;
  color: var(--charcoal);
}
.compare-prices {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.compare-elsewhere {
  font-size: 0.82rem;
  color: #aaa;
  text-decoration: line-through;
}
.compare-ours {
  font-weight: 700;
  color: var(--gold-dark);
  font-size: 0.95rem;
}
.compare-note {
  margin-top: 0.85rem;
  font-size: 0.75rem;
  color: #aaa;
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
}
.compare-note i { margin-top: 2px; flex-shrink: 0; }

/* ════════════════════════════════════════════════════════
   CTA SECTION
   ════════════════════════════════════════════════════════ */
.cta-section {
  background: var(--charcoal);
}
.cta-inner { max-width: 680px; margin: 0 auto; }
.cta-section .section-eyebrow { color: var(--gold-light); }
.cta-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  color: #f5edd6;
  margin-top: 0.25rem;
}
.cta-sub {
  color: #aaa;
  font-size: 1rem;
  line-height: 1.7;
}
.cta-section .btn-outline-light {
  border-color: rgba(255,255,255,0.25);
  color: #ccc;
}
.cta-section .btn-outline-light:hover {
  background: rgba(255,255,255,0.08);
  color: #fff;
}

/* Stats row */
.cta-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
}
.cta-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 2rem;
}
.cta-stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}
.cta-stat-label {
  font-size: 0.75rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.25rem;
}
.cta-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.1);
}

/* ════════════════════════════════════════════════════════
   Shop Dropdown — grouped columns
   ════════════════════════════════════════════════════════ */
.dropdown-menu-wide {
  min-width: 580px;
  padding: 0.5rem 0;
  border: 1px solid #e8e8e8;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  border-radius: 10px;
}
.dropdown-all-products {
  padding: 0.25rem 0.5rem 0;
}
.dropdown-groups {
  display: flex;
  gap: 0;
  padding: 0.75rem 0.5rem 0.75rem;
}
.dropdown-group {
  flex: 1;
  padding: 0 0.75rem;
  border-right: 1px solid #f0f0f0;
}
.dropdown-group:last-child {
  border-right: none;
}
.dropdown-group-title {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-dark);
  background: #faf8f3;
  margin: 0 -0.5rem 0.5rem;
  padding: 0.4rem 0.75rem;
  border-top: 1px solid #efe9dc;
  border-bottom: 1px solid #efe9dc;
}
.dropdown-group .dropdown-item {
  font-size: 0.84rem;
  padding: 0.3rem 0.5rem;
  border-radius: 5px;
  color: #333;
}
.dropdown-group .dropdown-item:hover {
  background: #f4f1eb;
  color: var(--gold-dark);
}

/* ════════════════════════════════════════════════════════
   Category Sidebar
   ════════════════════════════════════════════════════════ */
.cat-sidebar {
  position: sticky;
  top: 80px;
}
.cat-sidebar-title {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #999;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #e8e8e8;
}
.cat-sidebar-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cat-sidebar-list li {
  margin: 0;
}
.cat-sidebar-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.45rem 0.6rem;
  font-size: 0.85rem;
  color: #444;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
  line-height: 1.3;
}
.cat-sidebar-link:hover {
  background: #f4f1eb;
  color: var(--charcoal);
}
.cat-sidebar-link.active {
  background: var(--gold, #b8960c);
  color: #fff;
  font-weight: 600;
}
.cat-sidebar-link.active:hover {
  background: #a07c0a;
  color: #fff;
}
.cat-sidebar-count {
  font-size: 0.72rem;
  background: rgba(255,255,255,0.3);
  border-radius: 100px;
  padding: 0.1rem 0.4rem;
  margin-left: 0.3rem;
  white-space: nowrap;
}

/* ════════════════════════════════════════════════════════
   Quick Category Strip
   ════════════════════════════════════════════════════════ */
.quick-cats-section {
  padding: 2rem 0 1.5rem;
  background: #fff;
}
.quick-cats-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 1rem;
}
.quick-cat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--charcoal);
  transition: transform 0.2s;
}
.quick-cat-item:hover {
  transform: translateY(-3px);
  color: var(--gold);
}
.quick-cat-img-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 10px;
  overflow: hidden;
  background: #f4f1eb;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.quick-cat-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.quick-cat-item:hover .quick-cat-img {
  transform: scale(1.06);
}
.quick-cat-img-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ccc;
  font-size: 1.5rem;
}
.quick-cat-label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-align: center;
  line-height: 1.2;
}

/* ════════════════════════════════════════════════════════
   OUR ATELIER
   ════════════════════════════════════════════════════════ */
.atelier-body-center {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0.75rem auto 0;
  line-height: 1.7;
}
.atelier-card {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  background: #f0ebe0;
}
.atelier-card--tall  { aspect-ratio: 3/4; }
.atelier-card--wide  { aspect-ratio: 16/7; }
.atelier-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.atelier-card:hover .atelier-card-img { transform: scale(1.03); }
.atelier-card-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.55));
  color: rgba(255,255,255,0.9);
  font-size: 0.75rem;
  padding: 1.5rem 1rem 0.7rem;
  letter-spacing: 0.02em;
}

/* ════════════════════════════════════════════════════════
   TESTIMONIALS
   ════════════════════════════════════════════════════════ */
.testimonials-section {
  background: var(--ivory);
}
.testimonial-card {
  background: #fff;
  border: 1px solid #e8e1d4;
  border-radius: 14px;
  padding: 1.75rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: box-shadow 0.2s, transform 0.2s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 28px rgba(181,136,42,0.12);
  transform: translateY(-3px);
}
.testimonial-card--featured {
  border-color: var(--gold);
  border-width: 2px;
  box-shadow: 0 4px 20px rgba(181,136,42,0.1);
}
.testimonial-stars {
  color: #f4a800;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
}
.testimonial-text {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.7;
  flex: 1;
  margin: 0;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(181,136,42,0.12);
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0.02em;
}
.testimonial-name {
  display: block;
  font-size: 0.9rem;
  color: var(--charcoal);
}
.testimonial-product {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
}
.testimonial-etsy-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  color: #f56400;
  text-decoration: none;
  font-weight: 600;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.testimonial-etsy-badge:hover { opacity: 1; color: #f56400; }

/* ════════════════════════════════════════════════════════
   Responsive
   ════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .hero-v2 { padding: 2.5rem 0 2rem; }
  .hero-v2-text { padding-right: 0; }
  .price-bar-inner { justify-content: center; }
  .price-bar-label { display: none; }          /* save vertical space on mobile */
  .compare-row { flex-direction: column; align-items: flex-start; gap: 0.3rem; }
  .cta-stat { padding: 0 1rem; }
  .cta-stat-number { font-size: 1.5rem; }
  .quick-cats-grid { grid-template-columns: repeat(4, 1fr); gap: 0.75rem; }
}
@media (max-width: 576px) {
  .hero-title { font-size: 1.6rem; }
  .dropdown-menu-columns { columns: 1; min-width: 200px; }
  .cta-stats { gap: 1rem; }
  .cta-stat-divider { display: none; }
  .quick-cats-grid { grid-template-columns: repeat(4, 1fr); gap: 0.5rem; }
  .quick-cat-label { font-size: 0.62rem; }
  /* Trust chips: smaller text on very small screens */
  .trust-chip { font-size: 0.7rem; padding: 0.25rem 0.55rem; }
  .hero-ships-note { font-size: 0.78rem; }
  /* Testimonials: reduce padding */
  .testimonial-card { padding: 1.25rem; }
  /* Price chips: smaller on mobile */
  .price-chip { font-size: 0.72rem; padding: 0.2rem 0.65rem; }
}

/* ════════════════════════════════════════════════════════
   About Page
   ════════════════════════════════════════════════════════ */

/* Hero */
.about-hero {
  background: #2a2118;
  color: #fff;
  padding: 5rem 0 4rem;
}
.about-hero-inner { max-width: 720px; }
.about-hero-title {
  font-family: 'Cinzel', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1rem;
}
.about-hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

/* Stats row */
.about-stats {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.about-stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 2rem 0 0;
}
.about-stat-n {
  font-family: 'Cinzel', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.about-stat-l {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.25rem;
}
.about-stat-div {
  width: 1px;
  height: 2.5rem;
  background: rgba(255,255,255,0.2);
  margin: 0 2rem 0 0;
}

/* Story photo */
.about-photo-wrap {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}
.about-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Team cards */
.team-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  height: 100%;
}
.team-photo-wrap {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.team-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.team-card:hover .team-photo { transform: scale(1.04); }
.team-info { padding: 1.5rem; }
.team-name {
  font-family: 'Cinzel', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #2a2118;
  margin-bottom: 0.25rem;
}
.team-role {
  font-size: 0.82rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 0.75rem;
}
.team-bio {
  font-size: 0.93rem;
  color: #666;
  line-height: 1.65;
  margin: 0;
}

/* Craft cards */
.craft-card {
  background: #fff;
  border-radius: 12px;
  padding: 2rem 1.75rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  height: 100%;
}
.craft-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #fdf6e9;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.4rem;
  color: var(--gold);
}
.craft-title {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  font-weight: 700;
  color: #2a2118;
  margin-bottom: 0.6rem;
}
.craft-body {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.65;
  margin: 0;
}

/* Process steps */
.process-step {
  background: #fff;
  border-radius: 12px;
  padding: 1.75rem 1.5rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  text-align: center;
  height: 100%;
}
.process-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.process-title {
  font-family: 'Cinzel', serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: #2a2118;
  margin-bottom: 0.5rem;
}
.process-body {
  font-size: 0.87rem;
  color: #777;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .about-hero { padding: 3.5rem 0 3rem; }
  .about-hero-title { font-size: 2rem; }
  .about-stat-n { font-size: 1.6rem; }
  .about-stat { padding-right: 1.25rem; }
  .about-stat-div { margin-right: 1.25rem; }
}
@media (max-width: 576px) {
  .about-hero-title { font-size: 1.7rem; }
  .about-stats { gap: 0.5rem 0; }
  .about-stat-div { height: 2rem; }
}
