/* ═══════════════════════════════════════════════════════════
   maskincare.be — Shop-specific Styles
   Cart sidebar, add/preorder buttons, badges, order form
═══════════════════════════════════════════════════════════ */

/* ── BRAND SECTION COLLAPSE (Option A) ── */
/* Hide products beyond BRAND_LIMIT when section is collapsed */
.brand-section.s-collapsed .product-grid > article:nth-child(n+5) {
  display: none;
}

/* Expand button */
.btn-brand-expand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 28px auto 0;
  background: none;
  border: 1px solid var(--pebble);
  border-radius: var(--r-pill);
  padding: 11px 28px;
  font-family: var(--font-body);
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--slate-mid);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.btn-brand-expand:hover {
  border-color: var(--rose);
  color: var(--rose-text);
  background: rgba(201,169,154,0.06);
}
.btn-brand-expand svg {
  width: 13px; height: 13px;
  stroke: currentColor; fill: none;
  flex-shrink: 0;
}

/* ── CART ICON IN HEADER ── */
.cart-btn {
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 8px;
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--slate-mid);
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: color 0.2s, background 0.2s;
}
.cart-btn:hover { color: var(--rose); background: var(--rose-light); }
.cart-btn svg { width: 18px; height: 18px; stroke: currentColor; fill: none; flex-shrink: 0; }
.cart-badge {
  position: absolute;
  top: -4px; right: -2px;
  background: var(--rose);
  color: var(--white);
  font-size: 9px;
  font-weight: 500;
  font-style: normal;
  min-width: 16px;
  height: 16px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.2s, transform 0.2s;
  pointer-events: none;
}
.cart-badge.visible {
  opacity: 1;
  transform: scale(1);
}
.cart-badge.bump {
  animation: badgeBump 0.3s ease;
}
@keyframes badgeBump {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.4); }
  100% { transform: scale(1); }
}

/* ── SALE BADGE & PRICING ── */
.sale-badge {
  position: absolute;
  top: 10px; right: 10px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #fff;
  background: var(--sale);
  padding: 3px 8px;
  border-radius: var(--r-pill);
}
.product-price.sale { color: var(--sale); font-weight: 500; }
.product-price-original {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 300;
  color: var(--slate-mid);
  text-decoration: line-through;
  margin-left: 6px;
}

/* Admin table sale price */
.table-sale-price { color: var(--sale); font-weight: 500; }
.table-original-price { color: var(--slate-mid); font-size: 11px; }

/* ── ADD / PREORDER BUTTONS ── */
.product-actions {
  padding-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* In-stock: filled rose */
.btn-add {
  width: 100%;
  background: var(--rose);
  color: var(--white);
  border: 1.5px solid var(--rose);
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 10px 16px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.btn-add:hover {
  background: var(--rose-text);
  border-color: var(--rose-text);
  transform: translateY(-1px);
}
.btn-add:active { transform: translateY(0); }
.btn-add svg { width: 12px; height: 12px; stroke: currentColor; fill: none; flex-shrink: 0; }

/* Preorder: outlined sage */
.btn-preorder {
  width: 100%;
  background: transparent;
  color: var(--sage-text);
  border: 1.5px solid var(--sage);
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 10px 16px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.btn-preorder:hover {
  background: var(--sage-light);
  transform: translateY(-1px);
}
.btn-preorder:active { transform: translateY(0); }
.btn-preorder svg { width: 12px; height: 12px; stroke: currentColor; fill: none; flex-shrink: 0; }

/* Preorder badge on card image — amber */
.preorder-badge {
  position: absolute;
  top: 10px; left: 10px;
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #7a5200;
  background: #FFF3CC;
  border: 1px solid #E8C84A;
  padding: 3px 8px;
  border-radius: 10px;
}

/* In-cart preorder label — amber */
.cart-preorder-label {
  font-size: 9px;
  color: #7a5200;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ── CART SIDEBAR OVERLAY ── */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(44,44,44,0.3);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  z-index: 300;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.cart-overlay.open { opacity: 1; pointer-events: auto; }

/* ── CART SIDEBAR ── */
.cart-sidebar {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(420px, 92vw);
  background: var(--ivory);
  z-index: 310;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.32, 0, 0.15, 1);
  box-shadow: -8px 0 48px rgba(44,44,44,0.12);
}
.cart-sidebar.open { transform: translateX(0); }

/* ── MOBILE ADD-TO-CART TOAST ── */
.cart-toast {
  position: fixed;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  opacity: 0;
  z-index: 400;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--slate);
  color: var(--white);
  padding: 12px 16px 12px 14px;
  border-radius: 40px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  white-space: nowrap;
  max-width: calc(100vw - 32px);
  box-shadow: 0 8px 32px rgba(44,44,44,0.25);
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
}
.cart-toast.visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.cart-toast svg {
  width: 16px; height: 16px;
  stroke: var(--sage);
  fill: none;
  flex-shrink: 0;
}
.cart-toast-name {
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 180px;
}
.cart-toast-view {
  background: var(--rose);
  color: var(--white);
  border: none;
  border-radius: 20px;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
  cursor: pointer;
  flex-shrink: 0;
  margin-left: 4px;
}

/* Cart header */
.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px 16px;
  border-bottom: 1px solid var(--pebble);
  background: rgba(250,250,247,0.95);
  backdrop-filter: blur(12px);
  flex-shrink: 0;
}
.cart-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  font-style: italic;
  color: var(--slate);
}
.cart-close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--slate-mid);
  padding: 4px;
  border-radius: 2px;
  display: flex;
  align-items: center;
  transition: color 0.2s;
}
.cart-close:hover { color: var(--slate); }
.cart-close svg { width: 20px; height: 20px; stroke: currentColor; fill: none; }

/* Cart body - scrollable */
.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 0;
  scrollbar-width: thin;
  scrollbar-color: var(--pebble) transparent;
}
.cart-body::-webkit-scrollbar { width: 4px; }
.cart-body::-webkit-scrollbar-thumb { background: var(--pebble); border-radius: 2px; }

/* Empty cart state */
.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 64px 24px;
  gap: 12px;
  color: var(--slate-mid);
  text-align: center;
}
.cart-empty svg { width: 40px; height: 40px; stroke: var(--pebble); fill: none; }
.cart-empty-text {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 300;
  font-style: italic;
}
.cart-empty-sub { font-size: 11px; letter-spacing: 0.08em; color: var(--pebble); }

/* Cart item list */
.cart-items { padding: 8px 0; }
.cart-item {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 14px 24px;
  border-bottom: 1px solid rgba(232,228,223,0.6);
  animation: fadeIn 0.2s ease;
}
.cart-item-img {
  width: 64px; height: 64px;
  border-radius: 4px;
  background: var(--white);
  overflow: hidden;
  flex-shrink: 0;
}
.cart-item-img img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 6px;
}
.cart-item-info { overflow: hidden; }
.cart-item-brand {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose-text);
  margin-bottom: 2px;
}
.cart-item-name {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
  color: var(--slate);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cart-item-size {
  font-size: 10px;
  color: var(--slate-mid);
  margin-top: 2px;
}
.cart-item-price {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 400;
  color: var(--slate);
  white-space: nowrap;
}
.cart-item-controls {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}
.qty-row {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--pebble);
  border-radius: 2px;
  overflow: hidden;
}
.qty-btn {
  width: 28px; height: 28px;
  background: var(--white);
  border: none;
  cursor: pointer;
  font-size: 14px;
  color: var(--slate-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, color 0.15s;
  flex-shrink: 0;
}
.qty-btn:hover { background: var(--pebble); color: var(--slate); }
.qty-num {
  width: 28px; height: 28px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 500;
  color: var(--slate);
  border-left: 1px solid var(--pebble);
  border-right: 1px solid var(--pebble);
}
.cart-remove {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pebble);
  padding: 0;
  transition: color 0.2s;
}
.cart-remove:hover { color: var(--rose-text); }

/* Cart footer - sticky */
.cart-footer {
  flex-shrink: 0;
  padding: 20px 24px;
  border-top: 1px solid var(--pebble);
  background: var(--ivory);
}
.cart-total-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 16px;
}
.cart-total-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--slate-mid);
}
.cart-total-amount {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  color: var(--slate);
  transition: color 0.2s;
}
.btn-checkout {
  width: 100%;
  background: var(--slate);
  color: var(--ivory);
  border: none;
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 14px 20px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.btn-checkout:hover:not(:disabled) { background: #1a1a1a; transform: translateY(-1px); }
.btn-checkout:active:not(:disabled) { transform: translateY(0); }
.btn-checkout:disabled,
.btn-checkout.disabled {
  background: var(--pebble);
  color: var(--slate-mid);
  cursor: not-allowed;
  transform: none;
}

/* ── ORDER FORM (slides up in cart body) ── */
.order-form-section {
  padding: 24px 24px 0;
  animation: fadeUp 0.3s ease;
}
.order-form-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  font-style: italic;
  color: var(--slate);
  margin-bottom: 4px;
}
.order-form-sub {
  font-size: 11px;
  color: var(--slate-mid);
  line-height: 1.6;
  margin-bottom: 20px;
}
.order-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.form-group label {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--slate-mid);
}
.form-group input,
.form-group textarea {
  background: var(--white);
  border: 1px solid var(--pebble);
  border-radius: 2px;
  padding: 10px 12px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  color: var(--slate);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  width: 100%;
}
.form-group textarea { resize: vertical; min-height: 60px; }
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(201,169,154,0.15);
}
.form-group input.error { border-color: #d97171; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--pebble); }

.btn-wa-order {
  width: 100%;
  background: #25D366;
  color: #fff;
  border: none;
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 14px 20px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 4px;
}
.btn-wa-order:hover { background: #1ebe5a; transform: translateY(-1px); }
.btn-wa-order svg { width: 16px; height: 16px; fill: #fff; flex-shrink: 0; }

.btn-back-to-cart {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--slate-mid);
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s;
}
.btn-back-to-cart:hover { color: var(--slate); }

/* Cart view states */
.cart-view { display: flex; flex-direction: column; flex: 1; min-height: 0; }
.cart-view.hidden { display: none; }

/* Loading skeleton */
.product-card.loading {
  pointer-events: none;
}
.skeleton {
  background: linear-gradient(90deg, var(--pebble) 25%, var(--ivory) 50%, var(--pebble) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 4px;
}
@keyframes shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ── RESPONSIVE CART ── */
@media (max-width: 480px) {
  .cart-sidebar { width: 92vw; }
  .cart-header  { padding: 16px 16px 12px; }
  .cart-item    { padding: 12px 16px; gap: 10px; }
  .cart-footer  { padding: 16px; }
  .order-form-section { padding: 16px 16px 0; }
}

/* ── REAL-TIME FORM VALIDATION ── */
.form-group input.valid {
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(168,181,162,0.15);
}

/* ── SHOP SEARCH BAR (compact in sticky filter-bar) ── */
.shop-search-wrap {
  position: relative;
  flex-shrink: 0;
  width: 220px;
}
.shop-search-wrap .search-icon {
  position: absolute;
  left: 12px; top: 50%;
  transform: translateY(-50%);
  width: 14px; height: 14px;
  stroke: var(--slate-mid);
  fill: none;
  pointer-events: none;
}
#shop-search {
  width: 100%;
  background: var(--white);
  border: 1px solid var(--pebble);
  border-radius: 20px;
  padding: 7px 32px 7px 34px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 300;
  color: var(--slate);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
#shop-search::placeholder { color: var(--pebble); }
#shop-search:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(201,169,154,0.12);
}
#shop-search-clear {
  position: absolute;
  right: 10px; top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: var(--slate-mid);
  padding: 4px;
  display: none;
  line-height: 1;
  font-size: 14px;
}
#shop-search-clear.visible { display: flex; align-items: center; }
#shop-search-clear:hover { color: var(--slate); }

/* ── SUGGEST CTA ── */
.suggest-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate-mid);
  background: none;
  border: 1px solid var(--pebble);
  border-radius: var(--r-pill);
  padding: 6px 14px;
  cursor: pointer;
  white-space: nowrap;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  margin-left: auto;
}
.suggest-cta:hover { border-color: var(--rose); color: var(--rose-text); background: var(--rose-light); }
.suggest-cta svg { width: 12px; height: 12px; }

/* ── SUGGEST MODAL ── */
.suggest-modal {
  border: 1px solid var(--pebble);
  border-radius: var(--r-lg);
  padding: 0;
  max-width: 440px;
  width: calc(100% - 32px);
  background: var(--white);
  box-shadow: 0 20px 60px rgba(44,44,44,0.15);
}
.suggest-modal::backdrop { background: rgba(44,44,44,0.4); }
.suggest-modal-inner { padding: 32px; }
.suggest-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 10px;
}
.suggest-modal-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 300;
  color: var(--slate);
}
.suggest-modal-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: var(--slate-mid);
  transition: color 0.2s;
}
.suggest-modal-close:hover { color: var(--slate); }
.suggest-modal-close svg { width: 18px; height: 18px; display: block; }
.suggest-modal-sub {
  font-size: 13px;
  color: var(--slate-mid);
  line-height: 1.6;
  margin-bottom: 24px;
}
.suggest-form { display: flex; flex-direction: column; gap: 16px; }
.suggest-field { display: flex; flex-direction: column; gap: 6px; }
.suggest-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate-mid);
}
.suggest-input {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  color: var(--slate);
  background: var(--ivory);
  border: 1px solid var(--pebble);
  border-radius: var(--r-md);
  padding: 10px 14px;
  outline: none;
  transition: border-color 0.2s;
}
.suggest-input:focus { border-color: var(--rose); }
.suggest-feedback { font-size: 12px; }
.suggest-error { color: var(--danger); }
.suggest-success {
  font-size: 14px;
  color: var(--success);
  text-align: center;
  padding: 16px 0;
}
.suggest-submit-btn {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--slate);
  border: none;
  border-radius: var(--r-pill);
  padding: 12px 24px;
  cursor: pointer;
  transition: background 0.2s;
  align-self: flex-end;
}
.suggest-submit-btn:hover { background: var(--rose); }
.suggest-submit-btn:disabled { opacity: 0.5; cursor: not-allowed; }
@media (max-width: 768px) {
  .suggest-cta { font-size: 9px; padding: 5px 10px; }
  .suggest-modal {
    position: fixed;
    bottom: 0;
    top: auto;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    border-radius: var(--r-lg) var(--r-lg) 0 0;
    margin: 0;
  }
  .suggest-modal-inner { padding: 24px 20px; }
  .suggest-submit-btn { align-self: stretch; }
}

/* ── NO RESULTS ── */
.no-results {
  padding: 80px 24px;
  text-align: center;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 300;
  font-style: italic;
  color: var(--slate-mid);
}

/* ── LOAD ERROR STATE ── */
.load-error {
  padding: 80px 24px;
  text-align: center;
}
.load-error p {
  font-size: 13px;
  color: var(--slate-mid);
  margin-bottom: 20px;
}
.btn-retry {
  background: var(--slate);
  color: var(--ivory);
  border: none;
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 12px 24px;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-retry:hover { background: #1a1a1a; }

/* ── EXPAND DESCRIPTION BUTTON ── */
.product-desc-wrap {
  overflow: hidden;
  transition: max-height 0.3s ease;
  max-height: 200px;
}
.product-desc-wrap.collapsed {
  max-height: 0;
}
.btn-expand-desc {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--rose-text);
  padding: 6px 0;
  margin-top: 2px;
  transition: color 0.2s;
}
.btn-expand-desc:hover { color: var(--rose); }
.btn-expand-desc svg {
  width: 12px; height: 12px;
  stroke: currentColor; fill: none;
  flex-shrink: 0;
  transition: transform 0.3s;
}
.btn-expand-desc[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

/* ── ROUTINES SECTION ── */
.routines-wrapper {
  padding: 64px 48px;
  background: var(--ivory);
  border-top: 1px solid var(--pebble);
}
.routines-header {
  text-align: center;
  margin-bottom: 40px;
}
.routines-eyebrow {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--rose-text);
  margin-bottom: 12px;
}
.routines-title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 300;
  color: var(--slate);
  margin-bottom: 12px;
}
.routines-sub {
  font-size: 13px;
  color: var(--slate-mid);
  max-width: 420px;
  margin: 0 auto;
  line-height: 1.8;
}
#routines-section {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
}
.routine-card {
  background: var(--white);
  border: 1px solid var(--pebble);
  border-radius: 4px;
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.2s, transform 0.2s;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.routine-card:hover {
  box-shadow: 0 8px 32px rgba(44,44,44,0.1);
  transform: translateY(-3px);
  border-color: var(--rose-light);
}
.routine-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  font-style: italic;
  color: var(--slate);
}
.routine-desc {
  font-size: 12px;
  color: var(--slate-mid);
  line-height: 1.7;
}
.routine-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  counter-reset: step;
}
.routine-steps li {
  counter-increment: step;
  font-size: 11px;
  color: var(--slate-mid);
  padding-left: 20px;
  position: relative;
}
.routine-steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  width: 16px; height: 16px;
  background: var(--rose-light);
  color: var(--rose-text);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 600;
  top: 1px;
}
.routine-link-btn {
  margin-top: auto;
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose-text);
  padding-top: 4px;
  transition: letter-spacing 0.2s;
}
.routine-card:hover .routine-link-btn {
  letter-spacing: 0.22em;
}

/* ── GDPR CONSENT BANNER ── */
.gdpr-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 200;
  background: var(--slate);
  color: var(--ivory);
  padding: 16px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 12px;
  line-height: 1.6;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.32, 0, 0.15, 1);
}
.gdpr-banner.visible { transform: translateY(0); }
.gdpr-banner a { color: var(--rose-light); text-decoration: underline; }
.gdpr-banner p { flex: 1; }
.gdpr-actions { display: flex; gap: 8px; flex-shrink: 0; }
.btn-gdpr-accept {
  background: var(--rose);
  color: var(--white);
  border: none;
  border-radius: 2px;
  padding: 9px 20px;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}
.btn-gdpr-accept:hover { background: var(--rose-text); }
.btn-gdpr-decline {
  background: transparent;
  color: rgba(250,250,247,0.6);
  border: 1px solid rgba(250,250,247,0.25);
  border-radius: 2px;
  padding: 9px 16px;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.2s, border-color 0.2s;
}
.btn-gdpr-decline:hover { color: var(--ivory); border-color: rgba(250,250,247,0.5); }

@media (max-width: 768px) {
  .gdpr-banner { flex-direction: column; padding: 20px 24px; align-items: flex-start; }
  .routines-wrapper { padding: 48px 24px; }
  #routines-section { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  #routines-section { grid-template-columns: 1fr; }
  .shop-search-wrap { margin: 0 16px 20px; max-width: none; }
}


/* ═══════════════════════════════════════════════════════════
   EDITORIAL HOMEPAGE — new component styles
   Hero · Featured · Routines Strip · Reviews Grid · Modals
═══════════════════════════════════════════════════════════ */

/* ── NAV LINKS ── */
.nav-shop-link, .nav-home-link {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--slate-mid);
  text-decoration: none;
  padding: 4px 8px;
  border-radius: 2px;
  transition: color 0.2s, background 0.2s;
}
.nav-shop-link:hover, .nav-home-link:hover { color: var(--rose); background: var(--rose-light); }

/* ── HERO (split-screen) ── */
.hero {
  display: grid;
  grid-template-columns: 5fr 7fr;
  min-height: 60vh;
  max-height: 680px;
  overflow: hidden;
  margin-top: 41px; /* offset for fixed lang-bar */
}
.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px 48px 64px 64px;
  background: var(--ivory);
}
.hero-eyebrow {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--rose-text);
  margin-bottom: 12px;
}
.hero-social-proof {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--slate-mid);
  margin-bottom: 24px;
}
.hero-stars { color: var(--rose); margin-right: 4px; }
.hero-logo {
  font-family: 'Great Vibes', cursive;
  font-size: clamp(44px, 6.5vw, 92px);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: 0;
  color: #2D4A2D;
}
.hero-logo .hero-tld {
  color: #8FAF8F;
  font-size: 0.55em;
  vertical-align: super;
  margin-left: 2px;
}
.hero-tagline {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--slate-mid);
  max-width: 320px;
  margin-bottom: 36px;
}
.hero-cta {
  display: inline-block;
  background: var(--slate);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 14px 28px;
  text-decoration: none;
  align-self: flex-start;
  transition: background 0.2s;
}
.hero-cta:hover { background: var(--rose-text); color: var(--white); }
.hero-image {
  background-image: url('https://images.unsplash.com/photo-1713768704571-6aeb0d0e5105?w=1200&auto=format&fit=crop&q=80');
  background-size: cover;
  background-position: center 50%;
}
@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: 240px auto;
    min-height: auto;
    max-height: none;
  }
  .hero-image { order: -1; }
  .hero-content { padding: 40px 24px 52px; }
  .hero-tagline { max-width: 100%; }
}

/* ── FEATURED PRODUCTS (homepage) ── */
.featured-section {
  padding: 72px 48px;
  background: var(--white);
}
.featured-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 36px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--pebble);
}
.featured-eyebrow {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--rose-text);
  margin-bottom: 6px;
}
.featured-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 3.5vw, 38px);
  font-weight: 300;
  color: var(--slate);
}
.featured-see-all {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--slate-mid);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: transparent;
  white-space: nowrap;
  transition: color 0.2s, text-decoration-color 0.2s;
}
.featured-see-all:hover { color: var(--rose-text); text-decoration-color: rgba(140,94,84,0.4); }
#featured-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
/* Featured card */
.feat-card { position: relative; }
.feat-card-image {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--pebble);
  position: relative;
  margin-bottom: 14px;
}
.feat-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.feat-card:hover .feat-card-image img { transform: scale(1.04); }
.feat-card-sale {
  position: absolute;
  top: 10px; left: 10px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--sale);
  color: #fff;
  padding: 3px 8px;
}
.feat-card-brand {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--slate-mid);
  margin-bottom: 4px;
}
.feat-card-name {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 400;
  color: var(--slate);
  line-height: 1.3;
  margin-bottom: 14px;
}
.feat-card-footer {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.feat-card-price {
  font-size: 13px;
  font-weight: 400;
  color: var(--slate);
}
.feat-card-price.sale { color: var(--sale); }
.feat-card-add {
  background: var(--slate);
  color: var(--white);
  border: none;
  padding: 9px 16px;
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  width: 100%;
  transition: background 0.2s;
}
.feat-card-add:hover { background: var(--rose-text); }
@media (max-width: 900px) { #featured-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { #featured-grid { gap: 12px; } }
@media (max-width: 768px) { .featured-section { padding: 48px 20px; } }

/* ── ROUTINES STRIP (compact, homepage) ── */
.routines-strip-wrapper {
  padding: 72px 48px;
  background: var(--ivory);
  border-top: 1px solid var(--pebble);
}
.routines-strip-header { margin-bottom: 36px; }
.routines-strip-eyebrow {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--rose-text);
  margin-bottom: 6px;
}
.routines-strip-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 3.5vw, 38px);
  font-weight: 300;
}
#routines-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.routine-strip-card {
  text-decoration: none;
  color: var(--slate);
  display: block;
}
.routine-strip-thumb {
  aspect-ratio: 3/2;
  margin-bottom: 14px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
}
.routine-strip-label {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.03em;
  margin-bottom: 5px;
}
.routine-strip-desc {
  font-size: 12px;
  color: var(--slate-mid);
  line-height: 1.6;
  margin-bottom: 10px;
  font-weight: 300;
}
.routine-strip-arrow {
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--slate-mid);
  text-transform: uppercase;
  font-weight: 500;
  transition: color 0.2s, letter-spacing 0.2s;
}
.routine-strip-card:hover .routine-strip-arrow { color: var(--rose); letter-spacing: 0.18em; }
@media (max-width: 768px) {
  #routines-strip { grid-template-columns: repeat(2, 1fr); }
  .routines-strip-wrapper { padding: 48px 20px; }
}

/* ── REVIEWS GRID (homepage, 3 cards, no form) ── */
.reviews-grid-wrapper {
  padding: 72px 48px;
  background: var(--white);
  border-top: 1px solid var(--pebble);
}
.reviews-grid-header { margin-bottom: 40px; }
.reviews-grid-eyebrow {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--rose-text);
  margin-bottom: 6px;
}
.reviews-grid-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 3.5vw, 38px);
  font-weight: 300;
  margin-bottom: 14px;
}
.reviews-grid-stats { font-size: 13px; color: var(--slate-mid); }
.reviews-grid-stars-icon { color: var(--rose); margin-right: 4px; }
/* ── REVIEWS CAROUSEL ── */
.reviews-carousel {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.reviews-carousel-track-wrap {
  flex: 1;
  overflow: hidden;
}
#reviews-grid {
  display: flex;
  transition: transform 0.4s ease;
}
.review-grid-card {
  flex: 0 0 100%;
  border: 1px solid var(--pebble);
  padding: 28px 28px 24px;
  box-sizing: border-box;
}
.reviews-carousel-btn {
  background: none;
  border: 1px solid var(--pebble);
  color: var(--slate-mid);
  width: 36px;
  height: 36px;
  cursor: pointer;
  font-size: 16px;
  flex-shrink: 0;
  transition: border-color 0.2s, color 0.2s;
}
.reviews-carousel-btn:hover { border-color: var(--slate); color: var(--slate); }
.reviews-carousel-btn:disabled { opacity: 0.25; cursor: default; }
.reviews-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 36px;
}
.reviews-carousel-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pebble);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s;
}
.reviews-carousel-dot.active { background: var(--rose); }
.review-grid-stars { color: var(--rose); font-size: 14px; margin-bottom: 14px; letter-spacing: 1px; }
.review-grid-comment {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.65;
  color: var(--slate);
  margin-bottom: 18px;
}
.review-grid-name {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--slate-mid);
}
.reviews-grid-cta { text-align: center; }
.btn-leave-review {
  background: none;
  border: 1px solid var(--slate);
  color: var(--slate);
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 13px 32px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.btn-leave-review:hover { background: var(--slate); color: var(--white); }
@media (max-width: 768px) {
  .reviews-carousel-btn { display: none; }
  .reviews-grid-wrapper { padding: 48px 20px; }
}

/* ── REVIEW MODAL (dialog) ── */
.review-modal {
  border: none;
  padding: 0;
  width: min(520px, 94vw);
  border-radius: 0;
  box-shadow: 0 8px 64px rgba(44,44,44,0.18);
  margin: auto;
}
.review-modal::backdrop {
  background: rgba(44,44,44,0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.review-modal-inner { padding: 40px; }
.review-modal-hd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.review-modal-title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
}
.review-modal-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: var(--slate-mid);
  transition: color 0.2s;
}
.review-modal-close:hover { color: var(--slate); }
.review-modal-close svg { width: 20px; height: 20px; stroke: currentColor; fill: none; display: block; }
@media (max-width: 768px) {
  .review-modal {
    position: fixed;
    bottom: 0; top: auto; left: 0; right: 0;
    width: 100%; max-width: 100%; margin: 0;
    border-radius: 8px 8px 0 0;
  }
  .review-modal-inner { padding: 28px 24px 40px; }
}

/* ── SHOP.HTML — Brand-Row Catalog ── */
body.shop-page { padding-top: 41px; }
body.shop-page .brand-nav { top: 41px; }
body.shop-page .filter-bar { top: 89px; }

.catalog-header {
  padding: 48px 48px 28px;
  background: var(--ivory);
  border-bottom: 1px solid var(--pebble);
}
.catalog-heading {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 56px);
  font-weight: 300;
  margin-bottom: 4px;
}
.catalog-sub {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--slate-mid);
}
.brand-row {
  padding: 40px 48px;
  border-bottom: 1px solid var(--pebble);
}
.brand-row-label {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  border-bottom: 1px solid var(--pebble);
  padding-bottom: 12px;
  margin-bottom: 24px;
}
.brand-row-name {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--slate);
}
.brand-row-see-all {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate-mid);
  text-decoration: none;
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font-body);
  transition: color 0.2s;
  padding: 0;
}
.brand-row-see-all:hover { color: var(--rose); }
.brand-row-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 768px) {
  .brand-row { padding: 28px 16px; }
  .brand-row-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .catalog-header { padding: 28px 16px 20px; }
}


/* ════════════════════════════════════════════
   REVIEWS SECTION
════════════════════════════════════════════ */
.reviews-section {
  padding: 80px 48px;
  background: var(--ivory);
}
.reviews-inner { max-width: 1100px; margin: 0 auto; }
.reviews-header { text-align: center; margin-bottom: 48px; }
.reviews-eyebrow {
  font-size: 10px; font-weight: 500; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--rose-text); margin-bottom: 12px;
}
.reviews-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 300; font-style: italic; color: var(--slate); margin-bottom: 12px;
}
.reviews-avg-wrap {
  font-size: 12px; color: var(--slate-mid); letter-spacing: 0.06em;
}
.reviews-avg-stars { color: var(--amber); font-size: 14px; }

/* ── Reviews carousel ── */
.reviews-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}
.rc-viewport {
  flex: 1;
  overflow-x: scroll;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
}
.rc-viewport::-webkit-scrollbar { display: none; }
.rc-track {
  display: flex;
  gap: 20px;
}
.rc-slide {
  flex: 0 0 calc((100% - 40px) / 3);
  scroll-snap-align: start;
  min-width: 0;
}
.rc-arrow {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--pebble);
  background: var(--white);
  font-size: 22px; line-height: 1;
  cursor: pointer; color: var(--slate);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}
.rc-arrow:hover { background: var(--ivory); border-color: var(--sage); }
.rc-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-bottom: 48px;
}
.rc-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--pebble);
  border: none; cursor: pointer; padding: 0;
  transition: background 0.3s, transform 0.2s;
}
.rc-dot.active { background: var(--sage-text); transform: scale(1.4); }
@media (max-width: 900px) {
  .rc-slide { flex: 0 0 calc((100% - 20px) / 2); }
}
@media (max-width: 580px) {
  .rc-slide { flex: 0 0 85%; }
  .rc-arrow { display: none; }
}
.review-card {
  background: var(--white);
  border: 1px solid var(--pebble);
  border-radius: var(--r-md);
  padding: 24px;
  display: flex; flex-direction: column; gap: 10px;
}
.review-stars { color: var(--amber); font-size: 16px; letter-spacing: 2px; }
.star-d { opacity: 0.2; }
.star-d.on { opacity: 1; }
.review-comment {
  font-size: 14px; font-weight: 300; color: var(--slate); line-height: 1.7;
  font-style: italic;
}
.review-product {
  font-size: 10px; font-weight: 500; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--rose-text);
}
.review-meta {
  font-size: 11px; color: var(--slate-mid); margin-top: auto; letter-spacing: 0.04em;
}
.review-meta strong { color: var(--slate); }

/* Review form */
.review-form-wrap {
  max-width: 600px; margin: 0 auto;
  padding: 40px;
  background: var(--white);
  border: 1px solid var(--pebble);
  border-radius: var(--r-md);
}
.review-form-title {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 400; font-style: italic;
  color: var(--slate); margin-bottom: 24px; text-align: center;
}
.review-form { display: flex; flex-direction: column; gap: 16px; }
.review-form-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.rf-field { display: flex; flex-direction: column; gap: 6px; }
.rf-field-full { grid-column: 1 / -1; }
.rf-label {
  font-size: 10px; font-weight: 500; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--slate-mid);
}
.rf-input, .rf-textarea {
  background: var(--ivory);
  border: 1px solid var(--pebble);
  border-radius: var(--r-sm);
  padding: 10px 14px;
  font-family: var(--font-body);
  font-size: 13px; font-weight: 300; color: var(--slate);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.rf-input:focus, .rf-textarea:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(201,169,154,0.12);
}
.rf-textarea { resize: vertical; min-height: 100px; }

/* Star rating input */
.star-input { display: flex; gap: 4px; }
.star-btn {
  background: none; border: none; cursor: pointer;
  font-size: 28px; color: var(--pebble);
  transition: color 0.15s, transform 0.1s;
  line-height: 1; padding: 0 2px;
}
.star-btn.active, .star-btn.hover { color: var(--amber); }
.star-btn:hover { transform: scale(1.2); }

/* Feedback */
.review-feedback {
  font-size: 12px; padding: 10px 14px; border-radius: var(--r-sm);
  display: none;
}
.review-feedback.visible { display: block; }
.review-feedback.success { background: rgba(74,124,89,0.08); color: var(--success); }
.review-feedback.error   { background: rgba(184,84,80,0.08);  color: var(--sale); }

/* Submit button */
.review-submit-btn {
  background: var(--rose);
  color: var(--white);
  border: none; border-radius: var(--r-sm);
  font-family: var(--font-body);
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 12px 24px; cursor: pointer;
  align-self: flex-start;
  transition: background 0.2s, transform 0.15s;
}
.review-submit-btn:hover { background: var(--rose-text); transform: translateY(-1px); }
.review-submit-btn:disabled { opacity: 0.5; cursor: default; transform: none; }

/* Admin badges */
.badge-approved {
  font-size: 9px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 3px 8px; border-radius: var(--r-pill);
  background: rgba(74,124,89,0.1); color: var(--success);
}
.badge-pending {
  font-size: 9px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 3px 8px; border-radius: var(--r-pill);
  background: rgba(196,148,90,0.12); color: var(--amber-text);
}
.reviews-pending-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--sale); color: white;
  font-size: 9px; font-weight: 600; margin-left: 6px;
}

@media (max-width: 768px) {
  .reviews-section { padding: 56px 24px; }
  .review-form-wrap { padding: 24px; }
  .review-form-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════
   SHOP LOCK — soft banner, hard overlay, locked toast
═══════════════════════════════════════════════════════════ */

/* Soft lock banner — fixed above the language bar */
.shop-lock-banner {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 101;
  background: var(--rose-text);
  color: var(--ivory);
  padding: 10px 24px;
  font-family: 'DM Sans', sans-serif;
  text-align: center;
}
body.shop-locked-soft .lang-bar {
  top: var(--shop-lock-banner-h, 44px);
}
body.shop-locked-soft {
  padding-top: var(--shop-lock-banner-h, 44px);
}
.shop-lock-banner-inner {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 920px;
}
.shop-lock-banner svg {
  width: 16px; height: 16px;
  flex-shrink: 0;
}
.shop-lock-banner-msg {
  font-size: 13px;
  letter-spacing: 0.02em;
  margin: 0;
}
.shop-lock-banner-eta {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.78;
  margin: 0;
  padding-left: 14px;
  border-left: 1px solid rgba(250,250,247,0.3);
}

/* Soft lock: visually disable add-to-cart, checkout, WhatsApp order */
body.shop-locked-soft .btn-add,
body.shop-locked-soft .btn-preorder,
body.shop-locked-soft .feat-card-add,
body.shop-locked-soft #btn-checkout,
body.shop-locked-soft #btn-wa-order {
  opacity: 0.45;
  cursor: not-allowed;
  filter: grayscale(0.4);
}

/* Hard lock: full-screen overlay */
.shop-lock-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(20, 24, 22, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: shopLockFadeIn 0.4s ease;
}
@keyframes shopLockFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.shop-lock-overlay-card {
  background: var(--ivory);
  max-width: 480px;
  width: 100%;
  padding: 56px 40px 44px;
  border-radius: 4px;
  text-align: center;
  box-shadow: 0 24px 60px rgba(0,0,0,0.25);
}
.shop-lock-overlay-icon {
  width: 36px; height: 36px;
  color: var(--rose-text);
  margin: 0 auto 18px;
  display: block;
}
.shop-lock-overlay-brand {
  font-family: 'Pinyon Script', 'Great Vibes', cursive;
  font-size: 32px;
  color: var(--rose-text);
  margin: 0 0 24px;
  letter-spacing: -0.01em;
}
.shop-lock-overlay-brand span {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 18px;
  color: var(--slate-mid);
  margin-left: 2px;
}
.shop-lock-overlay-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 1.4;
  color: var(--slate);
  margin: 0 0 16px;
}
.shop-lock-overlay-eta {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--slate-mid);
  margin: 0 0 28px;
}
.shop-lock-overlay-wa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  background: #25D366;
  color: white;
  border-radius: var(--r-pill, 999px);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.04em;
  font-weight: 500;
  transition: transform 0.15s, background 0.2s;
}
.shop-lock-overlay-wa:hover { transform: translateY(-1px); background: #1eb854; }
.shop-lock-overlay-wa svg { width: 16px; height: 16px; fill: currentColor; }

/* Locked toast — shown when a soft-locked CTA is clicked */
.shop-lock-toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%) translateY(20px);
  background: var(--slate);
  color: var(--ivory);
  padding: 12px 20px;
  border-radius: var(--r-pill, 999px);
  font-size: 13px;
  letter-spacing: 0.02em;
  z-index: 10000;
  opacity: 0;
  transition: opacity 0.25s, transform 0.25s;
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
  pointer-events: none;
}
.shop-lock-toast.visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

@media (max-width: 768px) {
  .shop-lock-banner { padding: 10px 16px; }
  .shop-lock-banner-eta { padding-left: 0; border-left: none; opacity: 1; }
  .shop-lock-overlay-card { padding: 44px 24px 32px; }
  .shop-lock-overlay-title { font-size: 19px; }
}
