/*
Theme Name: Sole Shoes
Theme URI: https://soleshoes.ro
Author: Sole Shoes SRL
Description: Tema custom pentru magazinul online Sole Shoes.
Version: 4.3.0
Text Domain: soleshoes
*/

@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;1,400&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600&display=swap");

/* ============================================================
   TOKENS
   ============================================================ */
:root {
  --ivory:      #FFFAFB;
  --sand:       #F7ECEF;
  --sand-dk:    #EBD4DB;
  --border:     #EADDE0;
  --text:       #231A1E;
  --muted:      #8D737C;
  --accent:     #A43C61;
  --accent-dk:  #752342;
  --gold:       #C5A365;
  --blush:      #F4CAD4;
  --petal:      #FBEFF2;
  --mauve:      #C99AAA;
  --sage:       #DDE9E0;
  --champagne:  #F4E4C9;
  --plum:       #442033;
  --black:      #111111;
  --white:      #FFFFFF;
  --success:    #2D7D52;
  --danger:     #C0392B;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, -apple-system, sans-serif;

  --container:    1300px;
  --header-h:     124px; /* announcement + nav */
  --section-py:   80px;
  --transition:   0.28s ease;
  --shadow:       0 18px 48px rgba(68,32,51,.14);
  --shadow-sm:    0 8px 24px rgba(68,32,51,.08);
  --r:            8px;
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 15px;
  color: var(--text);
  background: var(--ivory);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul, ol { list-style: none; }
input, select, textarea { font: inherit; }
.no-scroll { overflow: hidden; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0;
}
h1 { font-size: clamp(38px, 6vw, 72px); }
h2 { font-size: clamp(26px, 3.8vw, 44px); }
h3 { font-size: clamp(18px, 2.4vw, 24px); }

p { line-height: 1.72; }

.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}
.section { padding: var(--section-py) 0; }
.section-sand { background: var(--sand); }
.section-dark { background: var(--text); }

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 20px;
}
.section-head > div .eyebrow { margin-bottom: 8px; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  padding: 15px 38px;
  transition: background var(--transition), color var(--transition),
              transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
  border-radius: var(--r);
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--accent-dk);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139,26,62,.28);
}
.btn-dark {
  background: var(--text);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--black);
  transform: translateY(-2px);
}
.btn-secondary {
  background: var(--sand-dk);
  color: var(--text);
}
.btn-secondary:hover {
  background: var(--border);
}
.btn-light {
  background: var(--white);
  color: var(--text);
}
.btn-light:hover {
  background: var(--sand);
}
.btn-outline {
  background: transparent;
  border: 1px solid var(--text);
  color: var(--text);
}
.btn-outline:hover {
  background: var(--text);
  color: var(--white);
}
.btn-outline-white {
  background: transparent;
  border: 1px solid rgba(255,255,255,.70);
  color: var(--white);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--text);
}
.btn-sm { padding: 10px 22px; font-size: 10.5px; }
.btn-lg { padding: 18px 52px; font-size: 12.5px; }
.btn-block { width: 100%; text-align: center; }
.btn + .btn { margin-top: 10px; }

.text-link {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: color var(--transition);
  white-space: nowrap;
}
.text-link:hover { color: var(--accent); border-color: var(--accent); }

/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */
.top-strip {
  background: var(--text);
  color: rgba(255,255,255,.82);
  text-align: center;
  padding: 10px 16px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.04em;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.top-strip a {
  color: var(--white);
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,.40);
  padding-bottom: 1px;
}
.top-strip a:hover { border-color: var(--white); }
.close-bar {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,.50);
  font-size: 16px;
  line-height: 1;
  transition: color var(--transition);
  padding: 4px;
}
.close-bar:hover { color: var(--white); }

/* ============================================================
   HEADER
   ============================================================ */
#site-header {
  position: sticky;
  top: 0;
  z-index: 800;
  background: var(--ivory);
  transition: box-shadow var(--transition);
}
#site-header.scrolled {
  box-shadow: 0 2px 20px rgba(26,24,20,.09);
}

.header-main {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  height: 68px;
  gap: 32px;
  border-bottom: 1px solid var(--border);
}

/* Logo */
.brand-logo img {
  height: 40px;
  width: auto;
  display: block;
}

/* Search */
.header-search {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border);
  padding: 0 14px;
  height: 38px;
  transition: border-color var(--transition);
}
.header-search:focus-within { border-color: var(--text); }
.search-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  box-shadow: 0 12px 36px rgba(0,0,0,.12);
  max-height: 380px;
  overflow-y: auto;
  z-index: 900;
}
.search-dropdown.open { display: block; }
.search-dropdown-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 16px;
  text-decoration: none;
  color: var(--text);
  transition: background var(--transition);
}
.search-dropdown-item:hover {
  background: var(--bg-warm, #fbf5f7);
}
.search-dropdown-item img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}
.search-dropdown-item-info {
  flex: 1;
  min-width: 0;
}
.search-dropdown-item-info strong {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.search-dropdown-item-info span {
  font-size: 12px;
  color: var(--muted);
}
.search-dropdown-item-price {
  font-weight: 700;
  font-size: 13.5px;
  color: var(--accent);
  white-space: nowrap;
}
.search-dropdown-empty {
  padding: 20px 16px;
  text-align: center;
  font-size: 13px;
  color: var(--muted);
}
.search-dropdown-all {
  display: block;
  text-align: center;
  padding: 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  border-top: 1px solid var(--border);
  text-decoration: none;
  transition: background var(--transition);
}
.search-dropdown-all:hover {
  background: var(--bg-warm, #fbf5f7);
}
.search-icon-btn {
  color: var(--muted);
  flex-shrink: 0;
}
.search-icon-btn svg {
  width: 17px; height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  display: block;
}
#productSearch {
  border: none;
  background: transparent;
  outline: none;
  width: 100%;
  font-size: 13px;
  color: var(--text);
}
#productSearch::placeholder { color: var(--muted); }

/* Header icons */
.header-actions {
  display: flex;
  align-items: center;
  gap: 4px;
}
.header-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  color: var(--text);
  position: relative;
  border-radius: 50%;
  transition: background var(--transition), color var(--transition);
}
.header-icon:hover {
  background: var(--sand);
  color: var(--accent);
}
.header-icon svg {
  width: 19px; height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  display: block;
}
.badge-count {
  position: absolute;
  top: 3px; right: 3px;
  min-width: 15px; height: 15px;
  background: var(--accent);
  color: var(--white);
  font-size: 9.5px;
  font-weight: 700;
  border-radius: 99px;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
  line-height: 1;
}
.badge-count.visible { display: flex; }

/* Mobile hamburger */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 40px; height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background var(--transition);
}
.mobile-menu-btn:hover { background: var(--sand); }
.mobile-menu-btn span {
  display: block;
  width: 20px; height: 1.5px;
  background: var(--text);
  transition: all var(--transition);
}
.mobile-menu-btn.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.mobile-menu-btn.open span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Category nav strip */
.category-nav {
  border-bottom: 1px solid var(--border);
  background: var(--ivory);
}
.category-nav-scroll {
  display: flex;
  align-items: center;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.category-nav-scroll::-webkit-scrollbar { display: none; }
.category-nav-scroll a {
  display: block;
  padding: 12px 18px;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}
.category-nav-scroll a:hover,
.category-nav-scroll a.active {
  color: var(--text);
  border-bottom-color: var(--accent);
}

/* ============================================================
   MOBILE NAV OVERLAY
   ============================================================ */
#mobileNav {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: auto;
  width: 70%;
  max-width: 340px;
  background: var(--ivory);
  z-index: 900;
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow-y: auto;
  overflow-x: hidden;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  box-shadow: -4px 0 20px rgba(0,0,0,0.15);
}
#mobileNav.open { transform: translateX(0); }
.mobile-nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 899;
}
.mobile-nav-backdrop.open { display: block; }
.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.mobile-nav-title {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--text);
}
.mobile-nav-close {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  transition: background var(--transition);
}
.mobile-nav-close:hover { background: var(--sand); }
.mobile-nav-close svg {
  width: 20px;
  height: 20px;
}
.mobile-nav-search {
  display: flex;
  margin: 16px 24px;
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  background: var(--white);
  flex-shrink: 0;
}
.mobile-nav-search input {
  flex: 1;
  border: none;
  padding: 12px 14px;
  font-size: 14px;
  outline: none;
  background: transparent;
  color: var(--text);
}
.mobile-nav-search input::placeholder { color: var(--muted); }
.mobile-nav-search button {
  width: 44px;
  background: var(--petal);
  display: grid;
  place-items: center;
  color: var(--accent);
}
.mobile-nav-search svg {
  width: 18px;
  height: 18px;
}
.mobile-nav-section {
  padding: 0 24px;
}
.mobile-nav-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 16px 0 6px;
}
.mobile-nav-section a {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}
.mobile-nav-section a:hover { color: var(--accent); }
.mobile-nav-footer {
  padding: 24px;
  margin-top: auto;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 20px;
  flex-shrink: 0;
}
.mobile-nav-footer a {
  font-size: 13px;
  color: var(--accent);
  font-weight: 700;
}

/* ============================================================
   HERO
   ============================================================ */
.home-hero {
  position: relative;
  height: calc(100vh - var(--header-h));
  min-height: 580px;
  max-height: 920px;
  overflow: hidden;
}
.home-hero-media {
  position: absolute;
  inset: 0;
}
.home-hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
/* Gradient overlay — left-to-right for text readability */
.home-hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(26,24,20,.68) 0%,
    rgba(26,24,20,.42) 45%,
    rgba(26,24,20,.12) 100%
  );
}
.home-hero-content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
}
.hero-copy {
  max-width: 560px;
  color: var(--white);
}
.hero-brand-mark {
  position: absolute;
  right: 6%;
  top: 36%;
  transform: translateY(-50%);
  z-index: 1;
  width: 300px;
  height: auto;
  pointer-events: none;
  opacity: .40;
  filter: invert(1);
  mix-blend-mode: screen;
}
.hero-brand-mark img {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 900px) {
  .hero-brand-mark {
    width: 180px;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: .12;
  }
}
.hero-copy .eyebrow {
  color: rgba(255,255,255,.6);
  margin-bottom: 18px;
  letter-spacing: 0.18em;
}
.hero-copy h1 {
  color: var(--white);
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1.08;
  margin-bottom: 22px;
  font-weight: 300;
  letter-spacing: -0.01em;
}
.hero-copy h1 em {
  font-style: italic;
  font-weight: 300;
  color: rgba(255,255,255,.75);
}
.hero-copy > p {
  font-size: 16px;
  color: rgba(255,255,255,.72);
  max-width: 440px;
  margin-bottom: 36px;
  line-height: 1.7;
  font-weight: 300;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  background: var(--sand);
  border-bottom: 1px solid var(--border);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 28px;
  border-right: 1px solid var(--border);
}
.trust-item:last-child { border-right: none; }
.trust-icon {
  flex-shrink: 0;
  color: var(--accent);
}
.trust-icon svg {
  width: 22px; height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  display: block;
}
.trust-item strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
}
.trust-item span {
  font-size: 12px;
  color: var(--muted);
}

/* ============================================================
   CATEGORY SHOWCASE
   ============================================================ */
.category-showcase {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
}
.category-card {
  position: relative;
  display: block;
  aspect-ratio: 3/4;
  overflow: hidden;
  cursor: pointer;
}
.category-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.65s cubic-bezier(.25,.46,.45,.94);
  display: block;
}
.category-card:hover img { transform: scale(1.06); }

/* Gradient overlay */
.category-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(26,24,20,.72) 0%,
    rgba(26,24,20,.28) 45%,
    transparent 75%
  );
  z-index: 1;
  transition: background var(--transition);
}
.category-card:hover::before {
  background: linear-gradient(
    to top,
    rgba(26,24,20,.80) 0%,
    rgba(26,24,20,.35) 45%,
    rgba(26,24,20,.05) 75%
  );
}

.category-card strong,
.category-card span {
  position: absolute;
  left: 0; right: 0;
  z-index: 2;
  padding: 0 20px;
  color: var(--white);
}
.category-card strong {
  bottom: 18px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  display: block;
}
.category-card span {
  bottom: 44px;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  display: block;
}

/* ============================================================
   PRODUCTS GRID
   ============================================================ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px 20px;
}

/* ============================================================
   PRODUCT CARD
   ============================================================ */
.product-card {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  position: relative;
}

/* Image area */
.product-media {
  position: relative;
  aspect-ratio: 3/4;
  background: var(--sand);
  overflow: hidden;
  margin-bottom: 16px;
}
.product-media > img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: opacity 0.4s ease, transform 0.6s ease;
  display: block;
  filter: brightness(1.08);
}
.product-media > img:first-child { z-index: 1; opacity: 1; }
.product-hover-img { z-index: 2; opacity: 0; }
.product-card:hover .product-media > img:first-child { opacity: 0; }
.product-card:hover .product-hover-img { opacity: 1; }
.product-card:not(:hover) .product-media > img:first-child { transform: scale(1); }
.product-card:hover .product-media > img:first-child { transform: scale(1.04); }

/* Badge */
.product-badge {
  position: absolute;
  top: 12px; left: 12px;
  z-index: 3;
  font-family: var(--font-body);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 8px;
  color: var(--white);
  background: var(--text);
}
.product-badge.sale,
.product-badge.reducere { background: var(--accent); }
.product-badge.nou,
.product-badge.new { background: var(--text); }

/* Hover actions overlay */
.product-actions {
  position: absolute;
  top: 12px; right: 12px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 6px;
  opacity: 0;
  transform: translateX(6px);
  transition: opacity var(--transition), transform var(--transition);
}
.product-card:hover .product-actions {
  opacity: 1;
  transform: translateX(0);
}
.round-btn {
  width: 36px; height: 36px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
  box-shadow: 0 2px 8px rgba(26,24,20,.12);
}
.round-btn:hover { background: var(--accent); color: var(--white); }
.round-btn svg {
  width: 15px; height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  display: block;
}
.round-btn.fav-toggle.active svg { fill: var(--accent); stroke: var(--accent); }
.round-btn.fav-toggle.active:hover svg { fill: var(--white); stroke: var(--white); }

/* Add to cart — slides up from bottom */
.product-add {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 3;
  background: rgba(26,24,20,.92);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  padding: 13px;
  transform: translateY(100%);
  transition: transform 0.28s ease;
  cursor: pointer;
}
.product-card:hover .product-add { transform: translateY(0); }
.product-add:hover { background: var(--accent); }

/* Info block */
.product-info { flex: 1; display: flex; flex-direction: column; }
.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 5px;
}
.product-meta > span {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.stars {
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 1px;
}
.product-card h3 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 400;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.product-price strong {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
}
.product-price del {
  font-size: 13px;
  font-weight: 400;
  color: var(--muted);
  text-decoration: line-through;
}
.product-price.large strong { font-size: 22px; }
.product-price.large del { font-size: 15px; }

/* ============================================================
   LOOKBOOK
   ============================================================ */
.lookbook {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}
.lookbook-copy {
  background: var(--text);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 72px;
}
.lookbook-copy .eyebrow { color: rgba(255,255,255,.50); }
.lookbook-copy h2 { color: var(--white); margin: 10px 0 22px; }
.lookbook-copy p {
  color: rgba(255,255,255,.68);
  font-size: 15px;
  line-height: 1.80;
  max-width: 380px;
  margin-bottom: 36px;
}
.lookbook-media {
  position: relative;
  overflow: hidden;
}
.lookbook-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.85s ease;
  display: block;
}
.lookbook:hover .lookbook-media img { transform: scale(1.04); }

/* ============================================================
   FEATURE SPLIT ("De ce Sole Shoes")
   ============================================================ */
.split-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.split-feature > div:first-child p {
  font-size: 15px;
  color: var(--muted);
  margin-top: 16px;
  max-width: 360px;
  line-height: 1.75;
}
.feature-list {
  display: flex;
  flex-direction: column;
}
.feature-list article {
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.feature-list article:first-child { border-top: 1px solid var(--border); }
.feature-list article strong {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.feature-list article p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.68;
}

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter-band {
  background: var(--accent);
  padding: 68px 0;
}
.newsletter-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.newsletter-grid .eyebrow { color: rgba(255,255,255,.60); }
.newsletter-grid h2 {
  color: var(--white);
  font-size: clamp(22px, 2.8vw, 34px);
  margin: 10px 0 12px;
}
.newsletter-grid > div > p { color: rgba(255,255,255,.72); font-size: 15px; }

.newsletter-form {
  display: flex;
}
.newsletter-form input {
  flex: 1;
  padding: 16px 20px;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.30);
  border-right: none;
  color: var(--white);
  font-size: 14px;
  outline: none;
  transition: background var(--transition);
}
.newsletter-form input::placeholder { color: rgba(255,255,255,.50); }
.newsletter-form input:focus { background: rgba(255,255,255,.25); }
.newsletter-form .btn {
  background: var(--white);
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
  border-radius: 0;
}
.newsletter-form .btn:hover { background: var(--ivory); transform: none; box-shadow: none; }

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer {
  background: var(--text);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
  padding-top: 64px;
  padding-bottom: 48px;
}
.footer-brand p {
  font-size: 13px;
  line-height: 1.75;
  color: rgba(255,255,255,.52);
  max-width: 260px;
  margin: 16px 0 24px;
}
.footer-logo img {
  height: 62px;
  width: auto;
  background: var(--white);
  border-radius: 10px;
  padding: 8px 14px;
  object-fit: contain;
}
.footer-grid > div h4 {
  font-family: var(--font-body);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-grid > div a {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,.52);
  margin-bottom: 10px;
  transition: color var(--transition);
}
.footer-grid > div a:hover { color: var(--white); }
.footer-grid > div p {
  font-size: 13px;
  color: rgba(255,255,255,.52);
  line-height: 1.65;
  margin-top: 12px;
}
.footer-bottom {
  display: none;
}

/* ============================================================
   CART DRAWER
   ============================================================ */
.cart-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26,24,20,.45);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
}
.cart-drawer-overlay.open { opacity: 1; visibility: visible; }

.cart-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 420px;
  max-width: 100vw;
  background: var(--ivory);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.25,.46,.45,.94);
  border-left: 1px solid var(--border);
}
.cart-drawer.open { transform: translateX(0); }

.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}
.cart-drawer-header h2 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
}
.cart-drawer-header .eyebrow { margin-bottom: 2px; }

.icon-close {
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  cursor: pointer;
  border-radius: 50%;
  transition: background var(--transition), color var(--transition);
}
.icon-close:hover { background: var(--sand); color: var(--text); }
.icon-close svg {
  width: 18px; height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  display: block;
}

.cart-drawer-items {
  flex: 1;
  overflow-y: auto;
  padding: 0;
}

.cart-item {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 14px;
  padding: 18px 24px;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.cart-item > img {
  width: 88px;
  aspect-ratio: 3/4;
  object-fit: cover;
  background: var(--sand);
  display: block;
  filter: brightness(1.08);
}
.cart-item > div > strong {
  display: block;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 3px;
  line-height: 1.3;
}
.cart-item > div > span {
  display: block;
  font-size: 11.5px;
  color: var(--muted);
  margin-bottom: 10px;
}
.cart-item-bottom {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.cart-item-bottom > span {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}
.qty-control {
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
}
.qty-control button {
  width: 30px; height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--text);
  transition: background var(--transition);
}
.qty-control button:hover { background: var(--sand); }
.qty-control b {
  width: 30px;
  text-align: center;
  font-size: 13px;
  font-weight: 500;
}
.remove-item {
  font-size: 11px;
  font-weight: 500;
  color: var(--muted);
  cursor: pointer;
  letter-spacing: 0.04em;
  transition: color var(--transition);
  background: none;
  border: none;
}
.remove-item:hover { color: var(--accent); }

.cart-drawer-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--border);
}
.summary-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 16px;
}
.summary-line.strong {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
}
.cart-drawer-footer > p {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  margin-top: 12px;
}

/* ============================================================
   QUICK VIEW MODAL
   ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26,24,20,.60);
  z-index: 1200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--ivory);
  max-width: 840px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}
.quick-view-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.quick-view-grid > img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
  filter: brightness(1.08);
}
.quick-view-grid > div {
  padding: 40px;
}
.quick-view-grid h2 {
  font-size: clamp(20px, 2.5vw, 26px);
  margin: 8px 0 16px;
}
.quick-view-grid > div > p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.72;
  margin-bottom: 24px;
}
.modal-close {
  position: absolute;
  top: 14px; right: 14px;
  z-index: 1;
}

.filter-title {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 20px 0 10px;
}
.size-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 24px;
}
.size-option {
  width: 44px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  transition: all var(--transition);
  background: var(--white);
}
.size-option:hover, .size-option.selected {
  border-color: var(--text);
  background: var(--text);
  color: var(--white);
}

/* ============================================================
   TOAST
   ============================================================ */
.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}
.toast {
  background: var(--text);
  color: var(--white);
  padding: 14px 20px;
  font-size: 13px;
  font-weight: 500;
  min-width: 280px;
  max-width: 360px;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateX(16px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: auto;
  line-height: 1.4;
}
.toast.visible { opacity: 1; transform: translateX(0); }
.toast-success { border-left: 3px solid #4ade80; }
.toast-error   { border-left: 3px solid #f87171; }

/* ============================================================
   EMPTY STATES
   ============================================================ */
.empty-state {
  text-align: center;
  padding: 80px 24px;
  color: var(--muted);
}
.empty-state h2, .empty-state h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--text);
}
.empty-state p { font-size: 14px; margin-bottom: 28px; }
.grid-empty {
  grid-column: 1 / -1;
}

/* ============================================================
   SHOP PAGE (page-produse.php)
   ============================================================ */
.shop-hero {
  background: var(--sand);
  padding: 48px 0 40px;
  border-bottom: 1px solid var(--border);
}
.shop-hero h1 { font-size: clamp(26px, 3.5vw, 40px); }
.shop-hero p {
  margin-top: 10px;
  font-size: 14px;
  color: var(--muted);
}

.shop-layout {
  display: grid;
  grid-template-columns: 256px 1fr;
  gap: 48px;
  padding: 48px 0 80px;
  align-items: start;
}

.filters-sidebar { position: sticky; top: calc(var(--header-h) + 20px); }

.filter-section-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 20px;
}
.filter-group {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}
.filter-group:last-child { border-bottom: none; margin-bottom: 0; }
.filter-group-title {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}

/* Category filter tabs */
.cat-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 32px;
}
.cat-filter {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 7px 16px;
  border: 1px solid var(--border);
  background: var(--ivory);
  color: var(--muted);
  cursor: pointer;
  transition: all var(--transition);
}
.cat-filter:hover { border-color: var(--text); color: var(--text); }
.cat-filter.active { border-color: var(--accent); background: var(--accent); color: var(--white); }

/* Size filter buttons */
.filter-size-btn {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  width: 40px; height: 36px;
  border: 1px solid var(--border);
  background: var(--ivory);
  color: var(--muted);
  cursor: pointer;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 4px 4px 0;
}
.filter-size-btn:hover { border-color: var(--text); color: var(--text); }
.filter-size-btn.active { border-color: var(--accent); color: var(--accent); }

/* Badge/other filter buttons */
.badge-filter, .color-filter, .material-filter {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 12px;
  border: 1px solid var(--border);
  background: var(--ivory);
  color: var(--muted);
  cursor: pointer;
  transition: all var(--transition);
  margin: 0 4px 4px 0;
  display: inline-block;
}
.badge-filter:hover, .color-filter:hover, .material-filter:hover { border-color: var(--text); color: var(--text); }
.badge-filter.active, .color-filter.active, .material-filter.active {
  border-color: var(--accent); color: var(--accent);
}

/* Price slider */
.price-slider-wrap { padding: 4px 0 8px; }
#priceRange {
  -webkit-appearance: none;
  width: 100%;
  height: 2px;
  background: var(--border);
  outline: none;
  margin: 16px 0 10px;
}
#priceRange::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 16px; height: 16px;
  background: var(--accent);
  border-radius: 50%;
  cursor: pointer;
}
#priceRange::-moz-range-thumb {
  width: 16px; height: 16px;
  background: var(--accent);
  border-radius: 50%;
  cursor: pointer;
  border: none;
}
.price-display-labels {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--muted);
}

/* Shop toolbar */
.products-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
  gap: 12px;
}
#productsCount {
  font-size: 13px;
  color: var(--muted);
}
.sort-wrap select, #sortSelect {
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text);
  border: 1px solid var(--border);
  padding: 9px 16px;
  background: var(--white);
  cursor: pointer;
  outline: none;
  appearance: none;
}
#filterToggle {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 9px 18px;
  border: 1px solid var(--border);
  background: var(--ivory);
  color: var(--text);
  cursor: pointer;
  display: none;
}

/* ============================================================
   CART PAGE
   ============================================================ */
.cart-page-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  padding: 48px 0 80px;
  align-items: start;
}
.cart-page-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.cart-page-link {
  display: block;
}
.cart-page-item img,
.cart-page-link img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  background: var(--sand);
  display: block;
  border-radius: 4px;
}
.cart-page-item h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 4px;
}
.cart-page-item h3 a {
  color: inherit;
  text-decoration: none;
}
.cart-page-item h3 a:hover {
  color: var(--accent);
}
.cart-page-item span {
  display: block;
  font-size: 12.5px;
  color: var(--muted);
  margin-bottom: 14px;
}
.cart-page-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.cart-page-actions > strong { font-size: 15px; font-weight: 600; }

.cart-summary-card {
  border: 1px solid var(--border);
  padding: 28px;
  position: sticky;
  top: calc(var(--header-h) + 20px);
  background: var(--ivory);
}
.cart-summary-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 13.5px;
  color: var(--muted);
  margin-bottom: 12px;
}
.summary-row.total {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  padding-top: 16px;
  border-top: 1px solid var(--border);
  margin-top: 8px;
}
.free-shipping-note {
  font-size: 12px;
  color: var(--accent);
  margin-bottom: 16px;
  font-weight: 500;
}

/* ============================================================
   CHECKOUT PAGE
   ============================================================ */
.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 56px;
  padding: 48px 0 80px;
  align-items: start;
}
.checkout-steps {
  display: flex;
  gap: 0;
  margin-bottom: 36px;
  border-bottom: 2px solid var(--border);
}
.checkout-step {
  padding: 0 0 14px;
  margin-right: 32px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: all var(--transition);
}
.checkout-step.active { color: var(--text); border-bottom-color: var(--text); }
.checkout-step.done { color: var(--accent); border-bottom-color: var(--accent); }

.checkout-form-section { display: none; }
.checkout-form-section.active { display: block; }

.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 7px;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--border);
  background: var(--white);
  font-size: 14px;
  color: var(--text);
  outline: none;
  transition: border-color var(--transition);
}
.form-group input:focus, .form-group select:focus { border-color: var(--text); }
.form-group input.field-error { border-color: var(--danger); }

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

.method-card {
  border: 2px solid var(--border);
  border-radius: var(--r);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  margin-bottom: 10px;
  transition: border-color .2s, box-shadow .2s;
}
.method-card.selected { border-color: var(--accent); background: #fdf5f7; box-shadow: 0 0 0 3px rgba(244,202,212,.30); }
.method-card input[type="radio"] { width: 20px; height: 20px; min-width: 20px; accent-color: var(--accent); margin: 0; cursor: pointer; }

.checkout-order-line {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 12px;
  align-items: start;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}
.checkout-order-line > img {
  width: 60px;
  aspect-ratio: 3/4;
  object-fit: cover;
  background: var(--sand);
  filter: brightness(1.08);
}
.checkout-order-line strong { display: block; font-weight: 500; margin-bottom: 2px; }
.checkout-order-line span { color: var(--muted); font-size: 12px; }

.checkout-summary-item {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  align-items: center;
  font-size: 13px;
}
.checkout-summary-item img {
  width: 72px;
  aspect-ratio: 3/4;
  object-fit: cover;
  background: var(--sand);
  display: block;
  filter: brightness(1.08);
}
.checkout-summary-item strong { display: block; font-size: 13px; font-weight: 500; }
.checkout-summary-item span { display: block; font-size: 11.5px; color: var(--muted); margin-top: 2px; }
.checkout-summary-item b { font-size: 14px; font-weight: 600; white-space: nowrap; }
.secure-note {
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  padding: 12px 0;
}

#orderSuccess { display: none; text-align: center; padding: 80px 40px; }
#orderSuccess h2 { font-size: 32px; margin-bottom: 16px; }
#orderSuccess p { font-size: 15px; color: var(--muted); }
#orderNumber { font-size: 13px; color: var(--muted); margin: 12px 0 28px; }

/* ============================================================
   FAVORITES PAGE
   ============================================================ */
.favorites-layout { padding: 48px 0 80px; }

/* ============================================================
   PAGE TITLE (generic)
   ============================================================ */
.page-title-section {
  background: var(--sand);
  padding: 48px 0 40px;
  border-bottom: 1px solid var(--border);
}
.page-title-section h1 { font-size: clamp(26px, 3.5vw, 40px); }
.page-title-section p {
  margin-top: 10px;
  font-size: 14px;
  color: var(--muted);
}

/* ============================================================
   UTILITIES
   ============================================================ */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}
.text-muted { color: var(--muted); }
.text-accent { color: var(--accent); }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mb-0  { margin-bottom: 0; }
.gap-8 { gap: 8px; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid   { grid-template-columns: 1fr 1fr; gap: 40px; }
  .shop-layout   { grid-template-columns: 220px 1fr; gap: 32px; }
  .cart-page-layout  { grid-template-columns: 1fr 300px; gap: 32px; }
  .checkout-layout   { grid-template-columns: 1fr 300px; gap: 40px; }
}

@media (max-width: 900px) {
  :root {
    --section-py: 56px;
    --header-h: 100px;
  }

  .header-nav { display: none; }
  .mobile-menu-btn { display: flex; }
  .header-main { grid-template-columns: auto 1fr auto; }

  .home-hero { height: 70vh; min-height: 500px; }
  .home-hero-content { padding-bottom: 52px; }

  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item { border-right: none; border-bottom: 1px solid var(--border); }
  .trust-item:nth-child(odd) { border-right: 1px solid var(--border); }
  .trust-item:nth-last-child(-n+2) { border-bottom: none; }

  .category-showcase { grid-template-columns: repeat(2, 1fr); }

  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 16px 12px; }

  .lookbook { grid-template-columns: 1fr; min-height: auto; }
  .lookbook-copy { order: 2; padding: 48px 32px; }
  .lookbook-media { order: 1; min-height: 340px; }

  .split-feature { grid-template-columns: 1fr; gap: 40px; }

  .newsletter-grid { grid-template-columns: 1fr; gap: 28px; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form input { border-right: 1px solid rgba(255,255,255,.30); }
  .newsletter-form .btn { width: 100%; }

  .shop-layout { grid-template-columns: 1fr; }
  .filters-sidebar { position: static; display: none; }
  .filters-sidebar.mobile-open { display: block; }
  #filterToggle { display: flex; }
  .cat-tabs { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 4px; }
  .cat-filter { white-space: nowrap; }

  .cart-page-layout { grid-template-columns: 1fr; }
  .cart-summary-card { position: static; }
  .checkout-layout { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  :root { --section-py: 44px; }
  .container { padding: 0 20px; }

  .top-strip { gap: 16px; flex-wrap: wrap; }
  .top-strip span:not(:first-child) { display: none; }

  .header-main { height: 60px; gap: 16px; }
  .brand-logo img { height: 44px; }

  .home-hero { height: 78vh; }
  .hero-copy h1 { font-size: 32px; font-weight: 300; }
  .hero-copy > p { display: none; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; text-align: center; }

  .category-showcase { grid-template-columns: repeat(2, 1fr); gap: 2px; }
  .category-card strong { font-size: 17px; }

  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px 8px; }

  .footer-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0;
    padding: 28px 20px 20px;
  }
  .footer-brand { order: 0; }
  .footer-brand .footer-logo { display: none; }
  .footer-brand p { display: none; }
  .footer-brand .footer-socials { justify-content: center; margin-top: 0; }
  .footer-grid > div:nth-child(2),
  .footer-grid > div:nth-child(3) { display: none; }
  .footer-grid > div:nth-child(4) { order: 1; margin-top: 16px; }
  .footer-grid > div:nth-child(4) h4 { display: none; }
  .footer-grid > div:nth-child(4) a {
    display: inline;
    font-size: 12.5px;
    margin: 0 6px;
  }
  .footer-company {
    font-size: 10.5px !important;
    margin-top: 14px !important;
    line-height: 1.6 !important;
  }
  .footer-trust {
    flex-direction: column;
    align-items: center;
    padding: 16px 0;
    gap: 12px;
  }
  .footer-trust-inner { justify-content: center; gap: 8px; }
  .footer-trust-inner img { height: 30px; padding: 3px 6px; }
  .footer-trust-cards { height: 24px !important; }
  .footer-newsletter { max-width: 100%; width: 100%; min-width: 0; }
  .footer-newsletter input { padding: 9px 12px; font-size: 12px; }
  .footer-newsletter button { padding: 9px 14px; font-size: 12px; }
  .footer-end { padding: 10px 0; }
  .footer-end-inner span:first-child::after { display: none; }
  .footer-end-inner { flex-direction: column; gap: 2px; }
  .footer-end-inner span { font-size: 10.5px; }

  .cart-drawer { width: 100vw; border-left: none; }

  .quick-view-grid { grid-template-columns: 1fr; }
  .quick-view-grid > img { aspect-ratio: 16/9; }
  .quick-view-grid > div { padding: 24px; }

  .section-head { flex-direction: column; align-items: flex-start; gap: 12px; }

  .form-row-2 { grid-template-columns: 1fr; }
  .checkout-steps { gap: 0; }
  .checkout-step { margin-right: 16px; font-size: 10.5px; }
}

/* ============================================================
   CONVERSION DESIGN REFRESH
   ============================================================ */
body {
  background:
    linear-gradient(180deg, var(--ivory) 0%, #fffdfb 36%, #fbf5f1 100%);
  overflow-x: hidden;
}

h1 { font-size: 4.5rem; }
h2 { font-size: 2.75rem; }
h3 { font-size: 1.35rem; }
h1, h2, h3, h4,
.eyebrow,
.btn,
.text-link,
.category-nav-scroll a,
.product-meta > span,
.product-badge,
.product-add,
.filter-title,
.footer-grid > div h4,
.checkout-step,
.cat-filter,
.badge-filter,
.color-filter,
.material-filter {
  letter-spacing: 0;
}

::selection {
  background: var(--blush);
  color: var(--plum);
}

.section-sand,
.section-muted {
  background:
    linear-gradient(135deg, rgba(244,202,212,.55), rgba(221,233,224,.50)),
    var(--petal);
}

.btn {
  border-radius: var(--r);
  min-height: 46px;
  box-shadow: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--plum));
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--accent-dk), var(--plum));
  box-shadow: 0 14px 30px rgba(164,60,97,.28);
}
.btn-secondary {
  background: var(--sage);
  color: var(--plum);
}
.btn-secondary:hover {
  background: #cfe0d5;
}
.btn-light {
  color: var(--plum);
  box-shadow: 0 10px 28px rgba(35,26,30,.12);
  backdrop-filter: blur(4px);
}
.btn-outline-white {
  border-color: rgba(255,255,255,.5);
  backdrop-filter: blur(4px);
  background: rgba(255,255,255,.08);
}
.text-link {
  color: var(--accent);
  border-bottom-color: rgba(164,60,97,.42);
}

.top-strip {
  background: linear-gradient(90deg, var(--plum), var(--accent), #bd6a85);
  color: rgba(255,255,255,.90);
  font-weight: 600;
}
.top-strip a {
  border-bottom-color: rgba(255,255,255,.55);
}

#site-header {
  background: rgba(255,250,251,.94);
  backdrop-filter: blur(18px);
}
.header-main {
  height: 82px;
  border-bottom-color: rgba(234,221,224,.85);
}
.brand-logo img {
  height: 56px;
  border-radius: 4px;
}
.header-search {
  height: 44px;
  border-radius: var(--r);
  background: var(--white);
  border-color: rgba(234,221,224,.95);
  box-shadow: var(--shadow-sm);
}
.header-search:focus-within {
  border-color: var(--mauve);
  box-shadow: 0 0 0 4px rgba(244,202,212,.35);
}
.header-icon {
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.header-icon:hover {
  background: var(--petal);
}
.badge-count {
  background: var(--accent);
}
.category-nav {
  background: rgba(255,250,251,.96);
}
.category-nav-scroll a {
  padding: 13px 18px;
  font-weight: 700;
  color: #785c66;
}
.category-nav-scroll a:hover,
.category-nav-scroll a.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.home-hero {
  min-height: 620px;
}
.home-hero-media::after {
  background:
    linear-gradient(105deg, rgba(58,28,44,.82) 0%, rgba(58,28,44,.48) 45%, rgba(58,28,44,.08) 100%),
    linear-gradient(0deg, rgba(30,20,25,.5), transparent 40%);
}
.home-hero-content {
  align-items: center;
  padding-top: 76px;
  padding-bottom: 76px;
}
.hero-copy {
  max-width: 580px;
}
.hero-copy h1 {
  font-size: clamp(44px, 5.5vw, 68px);
  line-height: 1.08;
  margin-bottom: 24px;
  font-weight: 300;
}
.hero-copy > p {
  display: block;
  font-size: 1rem;
  max-width: 460px;
  color: rgba(255,255,255,.78);
}
.hero-mini-proof,
.hero-proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}
.hero-mini-proof span,
.hero-proof-row span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.16);
  color: rgba(255,255,255,.90);
  font-size: 12px;
  font-weight: 700;
  border: 1px solid rgba(255,255,255,.20);
}
.hero-proof-row {
  margin-top: 24px;
}
.page-hero .hero-proof-row span {
  background: var(--white);
  color: var(--accent);
  border-color: var(--border);
}

.trust-strip {
  background: var(--white);
}
.trust-grid {
  box-shadow: 0 14px 40px rgba(68,32,51,.08);
}
.trust-item {
  background: linear-gradient(180deg, var(--white), #fff8f9);
}
.trust-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--petal);
  color: var(--accent);
}

.page-hero {
  padding: 72px 0;
  background:
    linear-gradient(135deg, rgba(251,239,242,.94), rgba(221,233,224,.72)),
    var(--petal);
  border-bottom: 1px solid var(--border);
}
.page-hero.compact {
  padding: 58px 0;
}
.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, .55fr);
  gap: 52px;
  align-items: end;
}
.page-hero h1 {
  font-size: 3.8rem;
  line-height: 1;
}
.page-hero p {
  color: #6f5962;
  font-size: 1rem;
  max-width: 520px;
}
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 18px;
}
.breadcrumb a {
  color: var(--accent);
  font-weight: 700;
}

.category-showcase {
  gap: 14px;
}
.category-card {
  border-radius: var(--r);
  box-shadow: var(--shadow-sm);
  background: var(--sand);
}
.category-card::before {
  background:
    linear-gradient(to top, rgba(68,32,51,.78) 0%, rgba(68,32,51,.34) 52%, rgba(68,32,51,.04) 100%);
}
.category-card strong {
  font-size: 1.55rem;
}

.products-grid {
  gap: 30px 22px;
}
.products-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
.product-card {
  background: var(--white);
  border: 1px solid rgba(234,221,224,.86);
  border-radius: var(--r);
  padding: 10px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.product-card:hover {
  transform: translateY(-5px);
  border-color: rgba(164,60,97,.35);
  box-shadow: var(--shadow);
}
.product-media {
  border-radius: 6px;
  background:
    linear-gradient(135deg, var(--petal), var(--sage));
  margin-bottom: 14px;
}
.product-badge {
  top: 10px;
  left: 10px;
  border-radius: 999px;
  padding: 6px 10px;
  background: var(--plum);
}
.product-badge.sale,
.product-badge.reducere {
  background: var(--accent);
}
.round-btn {
  box-shadow: 0 8px 20px rgba(68,32,51,.16);
}
.product-add {
  bottom: 10px;
  left: 10px;
  right: 10px;
  border-radius: var(--r);
  background: rgba(68,32,51,.94);
}
.product-info {
  padding: 0 4px 4px;
}
.product-meta {
  gap: 10px;
}
.product-meta > span:last-child {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--gold);
  white-space: nowrap;
}
.product-meta em {
  color: var(--muted);
  font-size: 11px;
  font-style: normal;
}
.product-card-link {
  display: block;
}
.product-info-link {
  display: block;
  color: inherit;
}
.product-info-link:hover h3 {
  color: var(--accent);
}
.product-card h3 {
  font-size: 1.05rem;
  font-weight: 500;
  transition: color var(--transition);
}
.product-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 12px;
}
.swatches {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 18px;
}
.swatches span {
  display: inline-block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--swatch);
  border: 1px solid rgba(35,26,30,.16);
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.45);
}
.swatches-lg span {
  width: 22px;
  height: 22px;
}

.style-edit {
  padding: 80px 0;
  background: var(--white);
}
.style-edit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.style-edit article {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  border-radius: var(--r);
  background: var(--plum);
}
.style-edit img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  opacity: .82;
  transition: transform .7s ease;
}
.style-edit article:hover img {
  transform: scale(1.04);
}
.style-edit article::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(68,32,51,.76), rgba(68,32,51,.12));
}
.style-edit article > div {
  position: absolute;
  left: 32px;
  right: 32px;
  bottom: 32px;
  z-index: 1;
  color: var(--white);
}
.style-edit .eyebrow,
.style-edit .text-link {
  color: rgba(255,255,255,.82);
  border-color: rgba(255,255,255,.45);
}
.style-edit h2 {
  max-width: 420px;
  margin-bottom: 18px;
}

.lookbook-copy {
  background:
    linear-gradient(135deg, var(--plum), #6d2947 58%, var(--accent));
}
.lookbook-copy p {
  color: rgba(255,255,255,.76);
}

.testimonials-band {
  padding: 70px 0;
  background: var(--sage);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.testimonials-grid article {
  background: var(--white);
  border: 1px solid rgba(234,221,224,.85);
  border-radius: var(--r);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.testimonials-grid span {
  color: var(--gold);
  display: block;
  margin-bottom: 14px;
}
.testimonials-grid p {
  color: #604b54;
  margin-bottom: 18px;
}
.testimonials-grid strong {
  color: var(--plum);
}

.newsletter-band {
  background:
    linear-gradient(135deg, var(--accent), var(--plum));
}
.newsletter-form input,
.footer-mini-form input {
  border-radius: var(--r) 0 0 var(--r);
}
.newsletter-form .btn {
  border-radius: 0 var(--r) var(--r) 0;
}

.shop-tabs {
  position: sticky;
  top: 0;
  z-index: 700;
  background: rgba(255,250,251,.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(14px);
}
.admin-bar .shop-tabs {
  top: 32px;
}
.shop-tabs-scroll {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-top: 13px;
  padding-bottom: 13px;
  scrollbar-width: none;
}
.shop-tabs-scroll::-webkit-scrollbar {
  display: none;
}
.chip,
.filter-row {
  min-height: 38px;
  border-radius: 999px;
}
.products-page-layout {
  display: grid;
  grid-template-columns: 290px minmax(0, 1fr);
  gap: 42px;
  align-items: start;
}
.filters-sidebar {
  position: sticky;
  top: 138px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 22px;
  box-shadow: var(--shadow-sm);
}
.filters-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--border);
}
.filters-head h2 {
  font-size: 1.45rem;
}
.filters-head-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.filters-head button {
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
}
.filters-close-btn {
  display: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--sand);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
@media (max-width: 900px) {
  .filters-close-btn { display: flex; }
}
.filter-section {
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}
.filter-section:first-of-type {
  padding-top: 0;
}
.filter-section:last-of-type {
  border-bottom: none;
}
.filter-row,
.badge-filter,
.color-filter,
.material-filter {
  border-radius: 999px;
  margin: 0 6px 7px 0;
  background: #fffafb;
}
.cat-filter.active,
.filter-row.active,
.badge-filter.active,
.color-filter.active,
.material-filter.active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}
.filter-size-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.size-btn,
.filter-size-btn {
  width: 100%;
  height: 40px;
  border-radius: var(--r);
  background: var(--white);
}
.filter-size-btn.active {
  background: var(--plum);
  color: var(--white);
  border-color: var(--plum);
}
.price-range-display {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 12px;
  margin-bottom: 10px;
}
.range-input {
  width: 100%;
  accent-color: var(--accent);
}
.filter-promise,
.wishlist-note,
.policy-cta,
.contact-care {
  background:
    linear-gradient(135deg, rgba(251,239,242,.95), rgba(244,228,201,.72));
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 18px;
  margin-top: 20px;
}
.filter-promise strong,
.wishlist-note strong,
.contact-care strong {
  color: var(--plum);
}
.filter-promise p,
.wishlist-note p,
.contact-care p {
  color: var(--muted);
  font-size: 13px;
  margin-top: 6px;
}
.shop-results {
  min-width: 0;
}
.products-toolbar {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 14px 16px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}
.products-toolbar label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
}
.sort-select,
#sortSelect {
  border-radius: var(--r);
}

.cart-page-layout,
.checkout-layout,
.contact-layout,
.about-story,
.editorial-grid,
.faq-grid {
  display: grid;
  gap: 42px;
}
.cart-page-layout {
  grid-template-columns: minmax(0, 1fr) 380px;
  padding-top: 0;
}
.cart-heading,
.utility-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}
.cart-heading h2 {
  font-size: 2rem;
}
.cart-heading a,
.utility-bar button {
  color: var(--accent);
  font-weight: 700;
}
.order-summary-card {
  position: sticky;
  top: 138px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 28px;
  box-shadow: var(--shadow);
}
.order-summary-card h2 {
  font-size: 1.7rem;
  margin-bottom: 20px;
}
.coupon-wrap,
.remove-coupon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(164,60,97,0.12);
  border: 1px solid rgba(164,60,97,0.35);
  color: var(--accent);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  padding: 2px 7px;
  border-radius: 20px;
  line-height: 1;
  margin-left: 4px;
  min-width: 28px;
  min-height: 24px;
  vertical-align: middle;
}
.remove-coupon-btn:hover { background: var(--accent); color: var(--white); }
.coupon-row {
  display: flex;
  gap: 8px;
  margin-bottom: 22px;
}
.coupon-wrap input,
.coupon-row input {
  min-width: 0;
  flex: 1;
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 12px 14px;
  outline: none;
}
.coupon-row .btn {
  white-space: nowrap;
  padding: 10px 16px;
  font-size: .85rem;
}
.summary-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  margin: 8px 0 16px;
  border-top: 1px solid var(--border);
  color: var(--plum);
}
.summary-total strong {
  font-size: 1.35rem;
}
.shipping-note {
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 16px;
}
.summary-benefits {
  margin-top: 18px;
  display: grid;
  gap: 8px;
}
.summary-benefits li {
  color: var(--muted);
  font-size: 13px;
}
.summary-benefits li::before,
.quick-benefits li::before {
  content: '✓';
  color: var(--success);
  font-weight: 700;
  margin-right: 8px;
}

.checkout-top {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.checkout-top-inner {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.small-logo img {
  height: 38px;
}
.checkout-top-inner span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}
.checkout-intro {
  max-width: 720px;
  margin-bottom: 30px;
}
.checkout-intro h1 {
  font-size: 3.25rem;
}
.checkout-intro p {
  color: var(--muted);
  margin-top: 10px;
}
.checkout-layout {
  grid-template-columns: minmax(0, 1fr) 390px;
  padding-top: 0;
}
.checkout-steps {
  align-items: center;
  border-bottom: none;
  margin-bottom: 30px;
}
.checkout-step {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-right: 0;
  padding: 0;
  border: none;
  color: var(--muted);
}
.checkout-step span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--muted);
}
.checkout-step.active span,
.checkout-step.done span {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}
.checkout-line {
  height: 1px;
  flex: 1;
  background: var(--border);
  margin: 0 14px;
}
.checkout-form-section {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 30px;
  box-shadow: var(--shadow-sm);
}
.checkout-form-section h2,
.contact-form-card h2 {
  font-size: 2rem;
  margin-bottom: 22px;
}
.checkout-form-section label,
.contact-form-card label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 16px;
}
.checkout-form-section input,
.checkout-form-section select,
.contact-form-card input,
.contact-form-card select,
.contact-form-card textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 13px 14px;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.checkout-form-section input:focus,
.checkout-form-section select:focus,
.contact-form-card input:focus,
.contact-form-card select:focus,
.contact-form-card textarea:focus {
  border-color: var(--mauve);
  box-shadow: 0 0 0 4px rgba(244,202,212,.30);
}
.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.check-row {
  display: flex !important;
  grid-template-columns: none !important;
  align-items: flex-start;
  gap: 8px !important;
}
.check-row input[type="checkbox"] {
  flex: none !important;
  width: auto !important;
  margin-top: 3px;
  accent-color: var(--accent);
}
.check-row > span {
  flex: 1;
  min-width: 0;
  line-height: 1.5;
}
.newsletter-input-row button,
.newsletter-input-row .btn {
  width: auto !important;
  flex-shrink: 0;
}
.req { color: var(--accent); font-weight: 700; }
.field-error {
  border-color: var(--danger) !important;
  box-shadow: 0 0 0 4px rgba(192,57,43,.12) !important;
}
.method-list,
.payment-methods {
  display: grid;
  gap: 12px;
  margin: 22px 0;
}
.payment-methods .method-card {
  border-radius: var(--r);
  background: var(--white);
  margin-bottom: 0;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  border: 2px solid var(--border);
  transition: border-color .2s, box-shadow .2s;
}
.payment-methods .method-card input[type="radio"] {
  width: 20px;
  height: 20px;
  min-width: 20px;
  accent-color: var(--accent);
  margin: 0;
  cursor: pointer;
}
.payment-methods .method-card.selected {
  border-color: var(--accent);
  background: #fdf5f7;
  box-shadow: 0 0 0 3px rgba(244,202,212,.30);
}
.payment-methods .method-card span {
  display: grid;
  gap: 3px;
  flex: 1;
}
.payment-methods .method-card strong {
  font-size: .95rem;
}
.payment-methods .method-card small {
  color: var(--muted);
  font-size: .82rem;
}
.step-actions {
  display: flex;
  gap: 12px;
  justify-content: space-between;
}
.success-message {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  box-shadow: var(--shadow);
}
.success-icon {
  width: 62px;
  height: 62px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--sage);
  color: var(--success);
  font-size: 2rem;
  font-weight: 800;
}
.success-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.contact-layout {
  grid-template-columns: .95fr 1.05fr;
  align-items: start;
}
.contact-info-panel,
.contact-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.contact-info-panel article {
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}
.contact-info-panel article:first-child {
  padding-top: 0;
}
.contact-info-panel article span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
}
.contact-info-panel article strong {
  display: block;
  font-size: 1.05rem;
  margin: 5px 0;
}
.contact-info-panel article p {
  color: var(--muted);
  font-size: 13px;
}
.map-container {
  overflow: hidden;
  border-radius: var(--r);
  border: 1px solid var(--border);
  margin-top: 20px;
}
.map-container iframe {
  width: 100%;
  height: 300px;
  border: 0;
  display: block;
}
.faq-grid {
  grid-template-columns: .65fr 1fr;
}
details {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 18px 20px;
  margin-bottom: 12px;
}
summary {
  cursor: pointer;
  color: var(--plum);
  font-weight: 800;
}
details p {
  color: var(--muted);
  margin-top: 10px;
}

.about-hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.about-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(68,32,51,.78), rgba(68,32,51,.12));
}
.about-hero-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  padding-bottom: 72px;
}
.about-hero-content .eyebrow,
.about-hero-content p {
  color: rgba(255,255,255,.78);
}
.about-hero-content h1 {
  max-width: 850px;
  font-size: 4rem;
}
.about-hero-content p {
  max-width: 560px;
  margin-top: 18px;
}
.about-story {
  grid-template-columns: .9fr 1.1fr;
}
.about-story p {
  color: var(--muted);
  margin-bottom: 16px;
}
.story-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.stats-band {
  background: var(--plum);
  color: var(--white);
  padding: 42px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.stats-grid div {
  padding: 20px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--r);
}
.stats-grid strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.35rem;
  font-weight: 400;
}
.stats-grid span {
  color: rgba(255,255,255,.70);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.values-grid article {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.values-grid article span {
  color: var(--accent);
  font-weight: 800;
}
.values-grid h3 {
  margin: 14px 0 10px;
}
.values-grid p,
.editorial-grid p {
  color: var(--muted);
}
.editorial-grid {
  grid-template-columns: .9fr 1fr;
  align-items: center;
}
.editorial-grid img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--r);
  box-shadow: var(--shadow);
}

.policy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.policy-grid article {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 26px;
  box-shadow: var(--shadow-sm);
}
.policy-grid article span {
  display: block;
  width: 42px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--gold));
  border-radius: 999px;
  margin-bottom: 22px;
}
.policy-grid h2,
.policy-cta h2 {
  font-size: 1.55rem;
}
.policy-grid p,
.policy-cta p,
.content-page p {
  color: var(--muted);
}
.policy-cta {
  margin-top: 22px;
}
.policy-cta .btn {
  margin-top: 18px;
}

.not-found {
  min-height: 68vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(251,239,242,.95), rgba(221,233,224,.80));
}
.not-found p {
  color: var(--muted);
  max-width: 520px;
  margin: 18px 0 26px;
}

.footer-promise {
  background: var(--plum);
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer-promise-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding-top: 16px;
  padding-bottom: 16px;
  color: rgba(255,255,255,.82);
  font-size: 13px;
  font-weight: 700;
}
#site-footer {
  background:
    linear-gradient(145deg, #231a1e, var(--plum));
}
.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.footer-socials a {
  width: 38px;
  height: 38px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 50%;
  margin: 0 !important;
  color: rgba(255,255,255,.6) !important;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.footer-socials a:hover {
  background: rgba(255,255,255,.12);
  color: var(--white) !important;
  border-color: rgba(255,255,255,.4);
}
.footer-socials svg {
  width: 18px;
  height: 18px;
}
.footer-company {
  margin-top: 18px !important;
  font-size: 12px !important;
  line-height: 1.7 !important;
  color: rgba(255,255,255,.40) !important;
}

.footer-trust {
  border-top: 1px solid rgba(255,255,255,.10);
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-trust-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-trust-inner a {
  display: block;
  transition: opacity var(--transition);
}
.footer-trust-inner a:hover {
  opacity: .8;
}
.footer-trust-inner img {
  height: 42px;
  width: auto;
  background: var(--white);
  border-radius: 6px;
  padding: 5px 10px;
  object-fit: contain;
}
.footer-trust-cards {
  height: 34px !important;
  padding: 4px 8px !important;
}
.footer-newsletter {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 340px;
}
.newsletter-input-row {
  display: flex;
}
.newsletter-consent {
  color: rgba(255,255,255,0.7);
  font-size: 12px;
}
.newsletter-consent a { color: var(--white); text-decoration: underline; }
.footer-newsletter input {
  min-width: 0;
  flex: 1;
  border: 1px solid rgba(255,255,255,.20);
  background: rgba(255,255,255,.08);
  color: var(--white);
  padding: 11px 14px;
  border-radius: var(--r) 0 0 var(--r);
  font-size: 13px;
}
.footer-newsletter input::placeholder {
  color: rgba(255,255,255,.45);
}
.footer-newsletter button {
  padding: 11px 20px;
  border-radius: 0 var(--r) var(--r) 0;
  background: var(--accent);
  color: var(--white);
  font-weight: 700;
  font-size: 13px;
  border: none;
  cursor: pointer;
  transition: background var(--transition);
}
.footer-newsletter button:hover {
  background: var(--accent-dark, #8e3354);
}
.footer-end {
  background: rgba(0,0,0,.15);
  padding: 18px 0;
}
.footer-end-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  text-align: center;
}
.footer-end-inner span {
  font-size: 12.5px;
  color: rgba(255,255,255,.45);
}
.footer-end-inner span:first-child::after {
  content: "·";
  margin-left: 12px;
  color: rgba(255,255,255,.25);
}
.footer-credit a {
  color: rgba(255,255,255,.65);
  font-weight: 600;
  transition: color var(--transition);
}
.footer-credit a:hover {
  color: var(--white);
}

.quick-rating {
  display: flex;
  gap: 8px;
  align-items: center;
  margin: -4px 0 16px;
  color: var(--gold);
}
.quick-rating span {
  color: var(--muted);
  font-size: 13px;
}
.quick-benefits {
  display: grid;
  gap: 7px;
  margin: 18px 0;
  color: var(--muted);
  font-size: 13px;
}
.modal {
  border-radius: var(--r);
  box-shadow: var(--shadow);
}

@media (max-width: 1100px) {
  h1 { font-size: 3.8rem; }
  h2 { font-size: 2.35rem; }
  .page-hero h1,
  .checkout-intro h1,
  .about-hero-content h1 {
    font-size: 3.1rem;
  }
  .products-page-layout,
  .cart-page-layout,
  .checkout-layout {
    grid-template-columns: 1fr;
  }
  .filters-sidebar,
  .order-summary-card {
    position: static;
  }
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  h1 { font-size: 3.1rem; }
  h2 { font-size: 2.05rem; }
  .page-hero-grid,
  .contact-layout,
  .about-story,
  .editorial-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .page-hero h1,
  .hero-copy h1,
  .checkout-intro h1,
  .about-hero-content h1 {
    font-size: 3rem;
  }
  .home-hero-content {
    align-items: flex-end;
  }
  .products-grid,
  .products-grid-3,
  .category-showcase,
  .style-edit-grid,
  .testimonials-grid,
  .values-grid,
  .policy-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .footer-promise-grid,
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .filters-sidebar {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 999;
    background: var(--white);
    overflow-y: auto;
    padding: 20px 20px 100px;
    animation: slideUpFilters 0.3s ease;
  }
  @keyframes slideUpFilters {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
  }
  .filters-sidebar.mobile-open {
    display: block;
  }
  .filters-sidebar .filters-head {
    position: sticky;
    top: 0;
    background: var(--white);
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 16px;
    z-index: 2;
  }
  .filters-sidebar .filter-section {
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
  }
  .filters-sidebar .filter-size-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }
  .filters-sidebar .filter-promise {
    margin-top: 16px;
  }
  #filterToggle {
    display: inline-flex;
  }
  .product-actions {
    opacity: 1;
    transform: none;
  }
  .product-add {
    transform: none;
  }
}

@media (max-width: 720px) {
  .page-hero,
  .page-hero.compact {
    padding: 42px 0;
  }
  .hero-copy > p {
    display: block;
  }
  .hero-actions,
  .step-actions,
  .success-actions {
    flex-direction: column;
  }
  .hero-actions .btn,
  .step-actions .btn,
  .success-actions .btn {
    width: 100%;
  }
  .form-row,
  .style-edit-grid,
  .values-grid,
  .policy-grid {
    grid-template-columns: 1fr;
  }
  .products-grid,
  .products-grid-3,
  .category-showcase,
  .testimonials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 8px;
  }
  .trust-grid,
  .footer-promise-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .trust-item,
  .trust-item:nth-child(odd),
  .trust-item:nth-last-child(-n+2) {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .trust-item:last-child {
    border-bottom: none;
  }
  .checkout-steps {
    align-items: flex-start;
  }
  .checkout-line {
    display: none;
  }
  .checkout-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .coupon-wrap,
  .newsletter-form,
  .footer-mini-form {
    flex-direction: column;
  }
  .products-toolbar {
    flex-wrap: wrap;
  }
  .products-toolbar label {
    width: 100%;
    justify-content: space-between;
    min-width: 0;
  }
  .sort-select,
  #sortSelect {
    max-width: 190px;
  }
  .newsletter-form input,
  .newsletter-form .btn,
  .footer-mini-form input,
  .footer-mini-form button {
    width: 100%;
    border-radius: var(--r);
  }
}

@media (max-width: 520px) {
  .container {
    padding: 0 18px;
  }
  h1,
  .page-hero h1,
  .hero-copy h1,
  .checkout-intro h1,
  .about-hero-content h1 {
    font-size: 2.45rem;
  }
  h2 {
    font-size: 1.75rem;
  }
  .home-hero {
    min-height: 560px;
    height: auto;
  }
  .hero-mini-proof span,
  .hero-proof-row span {
    width: 100%;
    justify-content: center;
  }
  .style-edit article,
  .style-edit img {
    min-height: 360px;
  }
  .checkout-form-section,
  .contact-form-card,
  .contact-info-panel,
  .order-summary-card {
    padding: 22px;
  }
  .cart-page-item {
    grid-template-columns: 82px 1fr;
  }
  .quick-view-grid > div {
    padding: 22px;
  }

  /* --- Page hero compact on mobile --- */
  .page-hero,
  .page-hero.compact {
    padding: 22px 0;
  }
  .page-hero h1 {
    font-size: 1.55rem;
    line-height: 1.12;
  }
  .page-hero p {
    font-size: 0.82rem;
    margin-top: 4px;
    line-height: 1.5;
  }
  .page-hero .eyebrow {
    margin-bottom: 4px;
    font-size: 9.5px;
  }
  .breadcrumb {
    margin-bottom: 6px;
    font-size: 10.5px;
  }
  .page-hero-grid {
    gap: 10px;
  }
  :root {
    --section-py: 28px;
  }
  .cart-page-layout,
  .checkout-layout {
    gap: 24px;
  }

  /* --- Product cards compact on mobile --- */
  .product-card {
    padding: 6px;
  }
  .product-media {
    margin-bottom: 8px;
  }
  .product-badge {
    padding: 3px 7px;
    font-size: 9px;
    top: 6px;
    left: 6px;
  }
  .product-card h3 {
    font-size: 0.82rem;
  }
  .product-info {
    padding: 0 2px 2px;
  }
  .product-meta {
    gap: 4px;
    font-size: 12px;
  }
  .product-card-foot {
    margin-top: 6px;
    font-size: 10.5px;
  }
  .swatches span {
    width: 12px;
    height: 12px;
  }
  .product-add {
    bottom: 6px;
    left: 6px;
    right: 6px;
    padding: 8px;
    font-size: 11px;
  }
  .round-btn {
    width: 32px;
    height: 32px;
  }
  .round-btn svg {
    width: 14px;
    height: 14px;
  }

  /* --- Cart page compact --- */
  .cart-heading h2 {
    font-size: 1.2rem;
  }
  .cart-heading {
    margin-bottom: 12px;
    padding-bottom: 10px;
  }
  .cart-heading .eyebrow {
    margin-bottom: 4px;
    font-size: 9.5px;
  }
  .order-summary-card h2 {
    font-size: 1.15rem;
    margin-bottom: 12px;
  }
  .order-summary-card {
    padding: 20px;
  }

  /* --- Checkout compact --- */
  .checkout-intro {
    margin-bottom: 14px;
  }
  .checkout-intro .eyebrow {
    margin-bottom: 4px;
    font-size: 9.5px;
  }
  .checkout-intro h1 {
    font-size: 1.55rem;
  }
  .checkout-intro p {
    font-size: 0.82rem;
    margin-top: 4px;
  }
  .checkout-form-section h2,
  .contact-form-card h2 {
    font-size: 1.35rem;
    margin-bottom: 14px;
  }
  .checkout-form-section label,
  .contact-form-card label {
    margin-bottom: 10px;
    font-size: 11px;
  }
  .checkout-form-section input,
  .checkout-form-section select {
    padding: 10px 12px;
    font-size: 14px;
  }
  .checkout-step span {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }
  .method-card {
    padding: 14px;
  }
}

/* ============================================================
   COMMERCE, CONSENT & ACCOUNT EXTENSIONS
   ============================================================ */
.product-badge.promo {
  background: linear-gradient(135deg, var(--gold), #b36a7f);
  color: var(--white);
}

.reviews-list {
  display: grid;
  gap: 10px;
  margin: 18px 0;
}
.review-card {
  background: var(--petal);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 13px 14px;
}
.review-card-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 7px;
  flex-wrap: wrap;
}
.review-card div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 7px;
}
.review-card strong {
  color: var(--plum);
  font-size: 12px;
}
.review-verified {
  font-size: 11px;
  color: #2d8a4e;
  background: #e8f5e9;
  padding: 2px 8px;
  border-radius: 20px;
  font-weight: 600;
  margin-left: auto;
}
.review-card p {
  color: #6d535d;
  font-size: 13px;
  line-height: 1.55;
}
#showMoreReviews {
  margin-top: 12px;
}

.method-card.is-disabled {
  opacity: .62;
  cursor: not-allowed;
}
.method-card.is-disabled * {
  cursor: not-allowed;
}
.payment-note {
  display: grid;
  gap: 4px;
  background: linear-gradient(135deg, rgba(221,233,224,.85), rgba(251,239,242,.9));
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 15px 16px;
  color: var(--muted);
  margin: 18px 0;
}
.payment-note strong {
  color: var(--plum);
}
.check-row a {
  color: var(--accent);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1200;
  padding: 18px;
  background: linear-gradient(180deg, rgba(35,26,30,0), rgba(35,26,30,.32));
}
.cookie-banner[hidden] {
  display: none;
}
.cookie-panel {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(255,250,251,.98);
  border: 1px solid var(--border);
  border-radius: var(--r);
  box-shadow: var(--shadow);
  padding: 16px 24px;
}
.cookie-panel-main {
  flex: 1;
  min-width: 0;
}
.cookie-panel p {
  color: var(--text);
  font-size: 13px;
  margin: 0;
  line-height: 1.5;
}
.cookie-panel p a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.cookie-actions .btn {
  padding: 10px 18px;
  white-space: nowrap;
  font-size: 12.5px;
}
.cookie-policy-link {
  font-size: 11px;
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 2px;
  grid-column: 1 / -1;
  text-align: center;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  padding: 0;
  box-shadow: 0 14px 34px rgba(31,143,85,.32);
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
}
.whatsapp-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}
.floating-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(31,143,85,.38);
}
.floating-whatsapp span,
.floating-whatsapp strong {
  display: none;
}


.account-layout {
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr);
  gap: 36px;
  align-items: start;
}
.account-panel,
.account-login-card,
.account-order-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  box-shadow: var(--shadow-sm);
}
.account-panel,
.account-login-card {
  padding: 30px;
}
.account-panel h2,
.account-login-card h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}
.account-panel p,
.account-login-card p {
  color: var(--muted);
}
.account-actions {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}
.account-actions.inline {
  display: flex;
  flex-wrap: wrap;
}
.account-order-list {
  display: grid;
  gap: 12px;
}
.account-order-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
}
.account-order-card strong {
  color: var(--plum);
  display: block;
}
.account-order-card span,
.account-order-card p {
  color: var(--muted);
  font-size: 13px;
}
.compact-head {
  margin-bottom: 22px;
}
.auth-wrapper {
  grid-column: 1 / -1;
  max-width: 460px;
  margin: 0 auto;
  width: 100%;
}
.auth-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  box-shadow: var(--shadow-sm);
  padding: 36px;
}
.auth-card h2 {
  font-size: 2rem;
  margin-bottom: 8px;
}
.auth-card > p {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 24px;
}
.auth-card form {
  display: grid;
  gap: 16px;
}
.auth-card label {
  display: grid;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}
.auth-card input[type="email"],
.auth-card input[type="password"],
.auth-card input[type="text"],
.auth-card input[type="tel"] {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--r);
  font-size: 14px;
  color: var(--text);
  font-family: var(--font-body);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.auth-card input:focus {
  outline: none;
  border-color: var(--mauve);
  box-shadow: 0 0 0 4px rgba(244,202,212,.3);
}
.auth-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.auth-row .check-row {
  flex-direction: row;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  color: var(--text);
}
.auth-row .text-link {
  font-size: 13px;
  white-space: nowrap;
}
.auth-switch {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  color: var(--muted);
}
.auth-switch button {
  background: none;
  border: none;
  color: var(--accent);
  font-weight: 700;
  cursor: pointer;
  font-size: 14px;
  font-family: var(--font-body);
}
.auth-switch button:hover {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .cookie-panel {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  .account-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .cookie-banner {
    padding: 8px;
  }
  .cookie-panel {
    padding: 14px 16px;
    gap: 10px;
  }
  .cookie-panel p {
    font-size: 12px;
  }
  .cookie-actions .btn {
    padding: 9px 14px;
    font-size: 11.5px;
  }
  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    width: 50px;
    height: 50px;
  }
  .account-order-card {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* ============================================================
   SINGLE PRODUCT PAGE
   ============================================================ */
.single-product-section {
  padding-top: 32px;
}
.single-product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 16px 0 48px;
  align-items: start;
}
.sp-gallery {
  position: sticky;
  top: 100px;
}
.sp-carousel {
  position: relative;
  background: var(--petal);
  border-radius: var(--r);
  overflow: hidden;
  margin-bottom: 10px;
  max-height: 480px;
}
.sp-carousel-track {
  display: flex;
  flex-wrap: nowrap;
  height: 100%;
  transition: transform 0.4s cubic-bezier(.4,0,.2,1);
}
.sp-slide {
  width: 100%;
  min-width: 100%;
  flex-shrink: 0;
}
.sp-slide img {
  width: 100%;
  height: 480px;
  object-fit: contain;
  display: block;
  filter: brightness(1.08);
}
.sp-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.9);
  border: 1px solid var(--border);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transition: background var(--transition), box-shadow var(--transition);
  box-shadow: var(--shadow-sm);
  padding: 0;
}
.sp-arrow:hover {
  background: var(--white);
  box-shadow: var(--shadow);
}
.sp-arrow svg {
  width: 18px;
  height: 18px;
}
.sp-arrow-left { left: 10px; }
.sp-arrow-right { right: 10px; }
.sp-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 3;
}
.sp-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,.5);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.sp-dot.active {
  background: var(--white);
  transform: scale(1.3);
}
.sp-thumbs {
  display: flex;
  gap: 6px;
  overflow-x: auto;
}
.sp-thumb {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 4px;
  border: 2px solid transparent;
  cursor: pointer;
  opacity: .55;
  flex-shrink: 0;
  transition: opacity var(--transition), border-color var(--transition);
  filter: brightness(1.08);
}
.sp-thumb.active,
.sp-thumb:hover {
  opacity: 1;
  border-color: var(--accent);
}
.sp-details {
  padding-top: 0;
}
.sp-details h1 {
  font-size: 2.2rem;
  line-height: 1.15;
  margin: 6px 0 6px;
}
.sp-sku {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 10px;
  letter-spacing: 0.03em;
}
.sp-sku strong {
  color: var(--text);
  font-weight: 600;
}
.sp-description {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.7;
  margin: 12px 0 20px;
  max-width: 480px;
}
.sp-details .size-grid {
  margin-bottom: 20px;
}
.sp-details .quick-benefits {
  margin-top: 20px;
}
.sp-long-desc {
  margin-top: 20px;
  border-top: 1px solid var(--border);
}
.sp-long-desc-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  user-select: none;
}
.sp-long-desc-toggle svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.sp-long-desc-toggle.open svg {
  transform: rotate(180deg);
}
.sp-long-desc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease;
  opacity: 0;
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--muted);
}
.sp-long-desc-body.open {
  max-height: 1000px;
  opacity: 1;
  padding-bottom: 14px;
}
.sp-long-desc-body p {
  margin-bottom: 10px;
}

.sp-size-guide-link {
  font-size: .82rem;
  font-weight: 500;
  color: var(--accent);
  text-decoration: underline;
  margin-left: auto;
  cursor: pointer;
}
.filter-title { display: flex; align-items: center; }

.size-guide-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s;
}
.size-guide-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.size-guide-modal {
  background: var(--white);
  border-radius: var(--r);
  padding: 28px 24px 24px;
  max-width: 520px;
  width: 92%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
  transform: translateY(20px);
  transition: transform .25s;
}
.size-guide-overlay.open .size-guide-modal {
  transform: translateY(0);
}
.size-guide-modal h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.size-guide-modal img {
  width: 100%;
  height: auto;
  border-radius: 6px;
}
.size-guide-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--text);
  line-height: 1;
}

.review-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 28px;
  max-width: 600px;
  box-shadow: var(--shadow-sm);
}
.review-form-card h3 {
  margin-bottom: 16px;
}
.review-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 16px;
}
.review-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 12px 14px;
  font-size: 14px;
  color: var(--text);
  outline: none;
  resize: vertical;
  transition: border-color var(--transition);
}
.review-form textarea:focus {
  border-color: var(--mauve);
  box-shadow: 0 0 0 4px rgba(244,202,212,.30);
}
.review-stars-input {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}
.review-star {
  font-size: 24px;
  cursor: pointer;
  color: var(--border);
  transition: color var(--transition);
}
.review-star.active {
  color: var(--gold);
}

@media (max-width: 900px) {
  .single-product-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .sp-gallery {
    position: static;
  }
  .sp-carousel {
    max-height: 400px;
  }
  .sp-slide img {
    height: 400px;
  }
  .sp-details h1 {
    font-size: 1.75rem;
  }
  .sp-arrow {
    width: 32px;
    height: 32px;
  }
  .sp-arrow svg {
    width: 15px;
    height: 15px;
  }
  .sp-arrow-left { left: 8px; }
  .sp-arrow-right { right: 8px; }
}
@media (max-width: 520px) {
  .sp-thumb {
    width: 56px;
    height: 72px;
  }
  .sp-details h1 {
    font-size: 1.75rem;
  }
}

/* MOBILE HEADER */
.mobile-search-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: var(--text);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.mobile-search-btn svg {
  width: 18px;
  height: 18px;
}

/* Mobile search results dropdown */
.mobile-search-results {
  background: var(--white);
  max-height: 50vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  margin: 0 24px;
  border: 1px solid var(--border);
  border-radius: var(--r);
  display: none;
  flex-shrink: 0;
}
.mobile-search-results.open { display: block; }
.mobile-search-results .search-dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 24px;
  text-decoration: none;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}
.mobile-search-results .search-dropdown-item:active {
  background: var(--sand);
}
.mobile-search-results .search-dropdown-item img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}
.mobile-search-results .search-dropdown-item-info {
  flex: 1;
  min-width: 0;
}
.mobile-search-results .search-dropdown-item-info strong {
  display: block;
  font-size: 13.5px;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mobile-search-results .search-dropdown-item-info span {
  font-size: 12px;
  color: var(--muted);
}
.mobile-search-results .search-dropdown-item-price {
  font-weight: 700;
  font-size: 13.5px;
  color: var(--accent);
  white-space: nowrap;
}
.mobile-search-results .search-dropdown-empty {
  padding: 24px 16px;
  text-align: center;
  font-size: 13px;
  color: var(--muted);
}
.mobile-search-results .search-dropdown-all {
  display: block;
  text-align: center;
  padding: 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  border-top: 1px solid var(--border);
}

@media (max-width: 720px) {
  .header-main {
    display: flex !important;
    grid-template-columns: none !important;
    align-items: center;
    height: 52px !important;
    gap: 0;
    padding: 0 14px;
  }
  .brand-logo {
    order: 0 !important;
    flex-shrink: 0;
    margin-right: auto;
  }
  .brand-logo img {
    height: 42px !important;
    border-radius: 4px;
  }
  .header-search {
    display: none !important;
  }
  .mobile-search-btn {
    display: flex !important;
    order: 1 !important;
  }
  .header-actions {
    order: 2 !important;
    gap: 2px;
  }
  .header-actions .header-icon[aria-label="Contul meu"] {
    display: none !important;
  }
  .mobile-menu-btn {
    order: 3 !important;
    flex-shrink: 0;
    margin-left: 2px;
  }
  .header-icon {
    width: 36px !important;
    height: 36px !important;
  }
  .header-icon svg {
    width: 18px !important;
    height: 18px !important;
  }
  .category-nav {
    display: none !important;
  }
  .top-strip {
    padding: 5px 0;
    font-size: 10px;
  }
  .top-strip span:not(:first-child) {
    display: none;
  }
}

/* ============================================================
   MOBILE GLOBAL FIX — RESPONSIVE OVERRIDES
   ============================================================ */

/* Prevent horizontal overflow from escaping body's overflow-x:hidden */
html {
  overflow-x: hidden;
  /* Prevent iOS from scaling text in landscape */
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

/* iOS Safari auto-zooms when a focused input has font-size < 16px.
   body is 15px, inputs inherit → zoom on tap. Force 16px on mobile. */
@media (max-width: 768px) {
  .form-group input,
  .form-group select,
  .form-group textarea,
  .checkout-form-section input,
  .checkout-form-section select,
  .newsletter-form input,
  .coupon-wrap input,
  .coupon-row input,
  .header-search input {
    font-size: 16px !important;
  }
  /* Mobile nav search: font-size 16px prevents iOS zoom, dar padding compact */
  .mobile-nav-search input {
    font-size: 16px !important;
    padding: 10px 12px !important;
  }

  /* Footer newsletter overrides its own min-width: 340px set later in the file,
     which can cause 5px horizontal overflow on 375px phones */
  .footer-newsletter {
    min-width: 0 !important;
    width: 100%;
  }
}

/* ============================================================
   QUICK VIEW MODAL — BOTTOM SHEET ON MOBILE
   ============================================================ */
@media (max-width: 640px) {
  /* Transform modal into a bottom sheet */
  .modal-overlay {
    padding: 0 !important;
    align-items: flex-end !important;
  }
  .modal {
    max-height: 88vh !important;
    width: 100% !important;
    border-radius: 16px 16px 0 0 !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
  }
  /* Add a visible drag handle at the top */
  .modal::before {
    content: '';
    display: block;
    width: 40px;
    height: 4px;
    background: var(--border);
    border-radius: 2px;
    margin: 12px auto 4px;
    flex-shrink: 0;
  }
  .quick-view-grid {
    grid-template-columns: 1fr !important;
  }
  .quick-view-grid > img {
    aspect-ratio: 3/2 !important;
    max-height: 220px;
    object-fit: cover;
  }
  .quick-view-grid > div {
    padding: 14px 18px 32px !important;
  }
  .quick-view-grid h2 {
    font-size: 1.15rem !important;
    margin: 4px 0 10px !important;
  }
  .modal-close {
    top: 10px !important;
    right: 12px !important;
  }
}

/* ============================================================
   CART DRAWER — COMPACT ON SMALL PHONES
   ============================================================ */
@media (max-width: 480px) {
  .cart-drawer-header {
    padding: 12px 16px;
  }
  .cart-drawer-header h2 {
    font-size: 16px;
  }
  .cart-item {
    padding: 12px 16px;
    gap: 10px;
    grid-template-columns: 72px 1fr;
  }
  .cart-item > img {
    width: 72px;
  }
  .cart-item > div > strong {
    font-size: 12.5px;
  }
  .cart-item > div > span {
    font-size: 11px;
  }
  .cart-drawer-footer {
    padding: 12px 16px;
  }
  .summary-line {
    font-size: 13px;
    margin-bottom: 10px;
  }
  .summary-line.strong {
    font-size: 14px;
  }
  .cart-drawer-footer .btn {
    padding: 13px 20px;
    font-size: 11px;
  }
}

/* ============================================================
   CHECKOUT — CÂMPURI VIZIBILE PE TELEFON
   ============================================================ */
@media (max-width: 480px) {
  .checkout-form-section {
    padding: 16px !important;
  }
  .form-group {
    margin-bottom: 12px;
  }
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 12px 12px !important;
    font-size: 16px !important;
  }
  .form-group label {
    font-size: 11px;
    margin-bottom: 5px;
  }
  .checkout-steps {
    gap: 0 !important;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 6px;
    -webkit-overflow-scrolling: touch;
  }
  .checkout-step {
    font-size: 10px !important;
    margin-right: 8px !important;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .checkout-step span {
    width: 24px !important;
    height: 24px !important;
    font-size: 11px !important;
  }
  .method-card {
    padding: 12px !important;
  }
  .checkout-intro h1 {
    font-size: 1.4rem !important;
  }
}

/* ============================================================
   PRODUCT CARDS — MICRO AJUSTĂRI PE TELEFOANE MICI
   ============================================================ */
@media (max-width: 400px) {
  .products-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 8px 5px !important;
  }
  .product-card h3 {
    font-size: 0.73rem !important;
    line-height: 1.3;
  }
  .product-meta {
    font-size: 11px !important;
    gap: 3px !important;
  }
  .product-add {
    font-size: 10px !important;
    padding: 7px !important;
  }
  .product-card {
    padding: 4px !important;
  }
  .product-badge {
    font-size: 8.5px !important;
    padding: 2px 5px !important;
  }
}

/* ============================================================
   MOBILE NAV — DIMENSIUNI CONFORTABILE + FIX OVERFLOW
   ============================================================ */
/* Toate elementele din nav nu depășesc lățimea viewport-ului */
#mobileNav > *,
.mobile-nav-header,
.mobile-nav-search,
.mobile-nav-section,
.mobile-nav-footer {
  max-width: 100%;
  box-sizing: border-box;
}
.mobile-nav-search {
  /* Calculat explicit ca să nu iasă din ecran */
  width: calc(100% - 48px);
}
.mobile-nav-section a {
  white-space: normal;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mobile-nav-label {
  white-space: normal;
  overflow-wrap: break-word;
}
.mobile-nav-footer {
  flex-wrap: wrap;
}

@media (max-width: 480px) {
  .mobile-nav-section a {
    font-size: 15px;
    padding: 11px 0;
  }
  .mobile-nav-title {
    font-size: 18px;
  }
  .mobile-nav-header {
    padding: 14px 18px;
  }
  .mobile-nav-section {
    padding: 0 18px;
  }
  .mobile-nav-footer {
    padding: 18px;
    gap: 14px;
  }
  .mobile-nav-search {
    margin: 12px 18px;
    width: calc(100% - 36px);
  }
}
