/* ====== XSEER PERFUME CATALOG ====== */
:root {
  --bg: #0a0a0a;
  --surface: #141414;
  --surface-hover: #1e1e1e;
  --text: #f0f0f0;
  --text-muted: #888;
  --accent: #c9a96e;
  --accent-hover: #d4b87a;
  --border: #2a2a2a;
  --shadow: rgba(0,0,0,0.6);
  --gold-gradient: linear-gradient(135deg, #c9a96e 0%, #e8d5a3 50%, #c9a96e 100%);
}

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

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background:
    radial-gradient(circle at 88% 8%, rgba(201,169,110,0.055), transparent 26rem),
    radial-gradient(circle at 12% 58%, rgba(201,169,110,0.035), transparent 30rem),
    linear-gradient(180deg, #0b0b0c 0%, var(--bg) 45%, #080808 100%);
  background-attachment: fixed;
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ====== HEADER ====== */
header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
}

.logo span { color: var(--text); font-weight: 300; }

/* ====== NAVIGATION ====== */
nav { display: flex; gap: 0.3rem; flex-wrap: wrap; }

nav a {
  color: var(--text-muted);
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.2s;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1px;
}

nav a:hover, nav a.active {
  color: var(--accent);
  background: var(--bg);
}

/* ====== SIDE NAVIGATION ====== */
.sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  width: 270px;
  background: linear-gradient(180deg, #171512 0%, #0d0d0d 55%, #080808 100%);
  border-right: 1px solid var(--border);
  z-index: 300;
  overflow-y: auto;
  box-shadow: 12px 0 40px rgba(0,0,0,0.28);
}

.sidebar-inner {
  min-height: 100%;
  padding: 2.25rem 1.4rem;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.sidebar .logo {
  display: block;
  text-align: center;
  padding: 0.8rem 0 2.2rem;
}

.sidebar nav {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.sidebar nav a {
  width: 100%;
  padding: 0.78rem 1rem;
  border-radius: 8px;
}

.sidebar nav a:hover,
.sidebar nav a.active {
  border-left: 3px solid var(--accent);
  background: rgba(201,169,110,0.08);
}

.sidebar-cart-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: 0.8rem;
  padding: 0.78rem 1rem;
  border: 1px solid rgba(201,169,110,0.35);
  border-radius: 8px;
  color: var(--accent);
  background: rgba(201,169,110,0.08);
  font: inherit;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
}

.sidebar-cart-button strong {
  min-width: 24px;
  padding: 0.08rem 0.35rem;
  border-radius: 999px;
  color: #171007;
  background: var(--accent);
  text-align: center;
}

.sidebar .search-box {
  margin-top: 1.6rem;
}

.menu-toggle,
.sidebar-close,
.sidebar-overlay {
  display: none;
}

main,
footer {
  margin-left: 270px;
}

/* ====== SEARCH ====== */
.search-box {
  position: relative;
  width: 100%;
  max-width: 400px;
}

.search-box input {
  width: 100%;
  padding: 0.7rem 1rem 0.7rem 2.5rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
}

.search-box input:focus { border-color: var(--accent); }

.search-box::before {
  content: "🔍";
  position: absolute;
  left: 0.8rem;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.5;
  font-size: 0.9rem;
}

/* ====== MAIN ====== */
main {
  max-width: none;
  margin: 0 0 0 270px;
  padding: 2rem;
}

/* ====== HERO (HOME) ====== */
.hero {
  text-align: center;
  padding: 6rem 2rem 5rem;
  margin: -2rem -2rem 3rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(10,10,10,0.92) 0%, rgba(20,15,10,0.85) 50%, rgba(10,10,10,0.92) 100%),
              radial-gradient(ellipse at 30% 20%, rgba(201,169,110,0.15) 0%, transparent 50%),
              radial-gradient(ellipse at 70% 80%, rgba(201,169,110,0.1) 0%, transparent 50%);
  border-bottom: 1px solid var(--border);
}

.home-cover {
  min-height: 540px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-image:
    linear-gradient(90deg, rgba(5,5,5,0.8), rgba(5,5,5,0.55), rgba(5,5,5,0.8)),
    url("../images/banners/home-cover.webp");
  background-size: cover;
  background-position: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a96e' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 1;
  z-index: 0;
}

.hero > * {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: 12px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero .tagline {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto 2rem;
  font-style: italic;
  line-height: 1.8;
}

.hero .cta {
  display: inline-block;
  padding: 0.9rem 2.5rem;
  background: var(--accent);
  color: #000;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  transition: all 0.3s;
  margin: 0.3rem;
}

.hero .cta:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201,169,110,0.3);
}

.hero .cta-outline {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.hero .cta-outline:hover {
  background: var(--accent);
  color: #000;
}

/* ====== SECTION HEADERS ====== */
.section-title {
  text-align: center;
  margin: 3rem 0 2rem;
}

.section-title h2 {
  font-size: 1.8rem;
  font-weight: 300;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.section-title p {
  color: var(--text-muted);
  font-size: 1rem;
}

/* ====== DISCOVER SECTION ====== */
.discover-section {
  text-align: center;
  padding: 3rem 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.discover-section h2 {
  font-size: 1.6rem;
  font-weight: 300;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: var(--accent);
}

.discover-section p {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.9;
}

/* ====== HOME SEARCH CENTERED ====== */
.home-search-wrap {
  max-width: 1100px;
  margin: 0 auto 3rem;
  padding: 0 2rem;
  scroll-margin-top: 1.5rem;
}

.home-search-wrap .search-box { margin: 0; }
.home-catalog-toolbar { margin-bottom: 0; }
.home-result-breakdown { margin-bottom: 1.5rem; color: var(--text-muted); font-size: 0.86rem; text-align: center; }

/* ====== COLLECTIONS SECTION WITH BACKGROUND ====== */
.collections-section {
  background: linear-gradient(180deg, rgba(201,169,110,0.03) 0%, transparent 60%);
  padding: 2rem 0 3rem;
  margin: 0 -2rem;
  position: relative;
}

.collections-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.collections-section::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.collections-section > * {
  position: relative;
  z-index: 1;
}

/* ====== CATEGORY CARDS ====== */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 2rem;
}

.category-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  text-decoration: none;
  color: var(--text);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: var(--gold-gradient);
  opacity: 0;
  transition: opacity 0.3s;
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px var(--shadow);
  border-color: var(--accent);
}

.category-card:hover::before { opacity: 1; }

.category-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.category-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ====== BEST SELLERS ====== */
.best-seller-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.best-seller-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  text-align: center;
  transition: all 0.3s;
}

.best-seller-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px var(--shadow);
  border-color: var(--accent);
}

/* ====== PRODUCT STANDARD & TRUST ====== */
.product-standard {
  max-width: 1100px;
  margin: 4.5rem auto 0;
  padding: 2.2rem 2.4rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  align-items: center;
  gap: 2.5rem;
  border: 1px solid rgba(201,169,110,0.32);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(201,169,110,0.12), rgba(20,20,20,0.9));
}

.section-kicker {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.product-standard h2 { margin-bottom: 0.45rem; font-size: 1.65rem; }
.product-standard p { color: #c6c6c6; }
.product-standard .product-safety {
  padding-left: 2rem;
  border-left: 1px solid rgba(201,169,110,0.32);
  color: var(--text-muted);
  font-size: 0.8rem;
}

.trust-section { margin-top: 4.5rem; }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.trust-card {
  min-height: 205px;
  padding: 1.45rem;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface);
}

.trust-card > span { color: var(--accent); font-size: 0.68rem; font-weight: 800; letter-spacing: 2px; }
.trust-card h3 { margin: 1rem 0 0.55rem; font-size: 1rem; line-height: 1.35; }
.trust-card p { color: var(--text-muted); font-size: 0.8rem; line-height: 1.55; }

.best-seller-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}

.best-seller-card .bs-body {
  padding: 1rem;
}

.best-seller-card .bs-label {
  color: var(--accent);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.best-seller-card .bs-name {
  font-size: 1rem;
  font-weight: 600;
}

.best-seller-card .bs-inspired {
  margin-bottom: 0.25rem;
  color: var(--accent);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.best-seller-card[role="button"] {
  cursor: pointer;
}

.best-seller-card:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.best-seller-missing {
  color: inherit;
  text-decoration: none;
}

.best-seller-placeholder {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 40%, rgba(201,169,110,0.16), transparent 35%),
    linear-gradient(135deg, #1c1914, #0d0d0d);
  border-bottom: 1px solid var(--border);
}

.best-seller-placeholder span {
  padding: 0.45rem 0.75rem;
  border: 1px solid rgba(201,169,110,0.4);
  border-radius: 20px;
  color: var(--accent);
  font-size: 0.7rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ====== CATALOG PAGE BANNER ====== */
.catalog-banner {
  text-align: center;
  padding: 4rem 2rem 3rem;
  margin: -2rem -2rem 2rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(10,10,10,0.95) 0%, rgba(25,20,15,0.9) 50%, rgba(10,10,10,0.95) 100%),
              radial-gradient(ellipse at 50% 30%, rgba(201,169,110,0.12) 0%, transparent 60%);
  border-bottom: 1px solid var(--border);
}

.catalog-banner {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-size: cover;
}

.men-banner {
  background-image:
    linear-gradient(90deg, rgba(4,8,13,0.48), rgba(4,8,13,0.72), rgba(4,8,13,0.42)),
    url("../images/banners/men-banner.webp");
  background-position: center;
}

.women-banner {
  background-image:
    linear-gradient(90deg, rgba(45,12,16,0.5), rgba(45,12,16,0.68), rgba(45,12,16,0.38)),
    url("../images/banners/women-banner.webp");
  background-position: center;
}

.unisex-banner {
  background-image:
    linear-gradient(90deg, rgba(15,13,10,0.35), rgba(15,13,10,0.58), rgba(15,13,10,0.32)),
    url("../images/banners/unisex-banner.webp");
  background-position: center;
}

.catalog-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a96e' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  z-index: 0;
}

.catalog-banner > * {
  position: relative;
  z-index: 1;
}

.catalog-banner h1 {
  font-size: 2.5rem;
  font-weight: 300;
  letter-spacing: 6px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.catalog-banner p {
  color: var(--text-muted);
  font-size: 1.1rem;
  font-style: italic;
}

/* ====== PRICING BANNER ====== */
.pricing-banner {
  background: linear-gradient(135deg, rgba(24,22,19,0.98), rgba(17,17,17,0.98));
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.5rem 2rem;
  margin: 0 0 2rem;
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  text-align: center;
}

/* ====== CATALOGUE SEARCH, FILTERS & SORTING ====== */
.catalog-toolbar {
  display: grid;
  grid-template-columns: minmax(260px, 1.5fr) minmax(175px, 0.75fr) minmax(190px, 0.8fr) max-content;
  align-items: end;
  gap: 1rem;
  margin: 0 0 1.5rem;
  padding: 1.2rem;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(20,20,20,0.98), rgba(13,13,13,0.98));
  box-shadow: 0 12px 35px rgba(0,0,0,0.18);
}

.catalog-search { max-width: none; }

.catalog-filter-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.catalog-filter-group label {
  color: var(--text-muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.catalog-filter-group select {
  width: 100%;
  height: 44px;
  padding: 0.55rem 0.7rem;
  border: 1px solid var(--border);
  border-radius: 9px;
  color: var(--text);
  background: var(--bg);
  font: inherit;
}

.catalog-filter-group select:focus,
.checkout-details input:focus,
.checkout-details textarea:focus {
  border-color: var(--accent);
  outline: 2px solid rgba(201,169,110,0.18);
  outline-offset: 1px;
}

.catalog-result-summary {
  min-width: 105px;
  padding: 0 0 0.65rem;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  text-align: right;
  white-space: nowrap;
}

.price-item {
  padding: 0 1rem;
}

.price-item .price-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.3rem;
}

.price-item .price-value {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent);
}

/* ====== GRID (CATALOG) ====== */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
  cursor: pointer;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px var(--shadow);
  border-color: var(--accent);
}

.card:focus-visible,
nav a:focus-visible,
.whatsapp-float:focus-visible,
.cart-float:focus-visible,
.lightbox-close:focus-visible,
.lightbox-order:focus-visible,
.add-to-cart:focus-visible,
.cart-checkout:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.card-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
  background: #1a1a1a;
}

.card-body {
  padding: 1.2rem;
}

.card-brand {
  color: var(--accent);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.3rem;
}

.card-name {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.card-notes {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.4;
}

.card-inspired {
  display: inline-block;
  margin-top: 0.6rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-style: italic;
}

.card-gender {
  display: inline-block;
  margin-top: 0.8rem;
  padding: 0.25rem 0.7rem;
  border-radius: 20px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.gender-men { background: #1a3a5c; color: #7ec8e3; }
.gender-women { background: #5c1a3a; color: #e37ec8; }
.gender-unisex { background: #3a3a1a; color: #c8e37e; }

/* ====== NO RESULTS ====== */
.no-results {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--text-muted);
  grid-column: 1 / -1;
}

.no-results h3 {
  color: var(--text);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.no-results-whatsapp {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.7rem 1.25rem;
  border-radius: 24px;
  background: #25D366;
  color: #071b0d;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.78rem;
}

.no-results-whatsapp:hover,
.no-results-whatsapp:focus-visible {
  background: #39e176;
  outline: 2px solid #fff;
  outline-offset: 3px;
}

/* ====== LIGHTBOX ====== */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 200;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 2rem;
}

.lightbox.active { display: flex; }

.lightbox-img {
  max-width: min(58vw, 720px);
  max-height: 80vh;
  object-fit: contain;
  border-radius: 8px;
}

.lightbox-info {
  position: relative;
  width: min(370px, 90vw);
  max-height: 88vh;
  overflow-y: auto;
  text-align: center;
  background: var(--surface);
  padding: 1rem 2rem;
  border-radius: 12px;
  border: 1px solid var(--border);
}

.product-choice {
  display: grid;
  grid-template-columns: 1fr 82px;
  gap: 0.45rem 0.65rem;
  margin-top: 1rem;
  text-align: left;
}

.lightbox-composition {
  margin-top: 0.7rem;
  color: var(--text-muted);
  font-size: 0.72rem;
}

.product-choice label {
  align-self: end;
  color: var(--text-muted);
  font-size: 0.72rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.product-choice label[for="cart-option"] { grid-column: 1; }
.product-choice label[for="cart-quantity"] { grid-column: 2; grid-row: 1; }

.product-choice select,
.product-choice input {
  min-width: 0;
  height: 44px;
  padding: 0.55rem 0.65rem;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
}

.add-to-cart {
  grid-column: 1 / -1;
  margin-top: 0.35rem;
  padding: 0.75rem 1rem;
  border: 0;
  border-radius: 24px;
  color: #171007;
  background: var(--gold-gradient);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.lightbox-order {
  display: inline-block;
  margin-top: 0.8rem;
  padding: 0.55rem 1rem;
  border-radius: 24px;
  background: #25D366;
  color: #071b0d;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-size: 2rem;
  color: var(--text);
  cursor: pointer;
  background: none;
  border: none;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.lightbox-close:hover { opacity: 1; }

/* ====== SHOPPING CART ====== */
.cart-float {
  position: fixed;
  right: 2rem;
  bottom: 6.7rem;
  z-index: 150;
  width: 60px;
  height: 60px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  color: #171007;
  background: var(--gold-gradient);
  box-shadow: 0 5px 18px rgba(201,169,110,0.35);
  font-size: 1.55rem;
  cursor: pointer;
  transition: transform 0.2s;
}

.cart-float:hover { transform: scale(1.08); }

.cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  min-width: 24px;
  height: 24px;
  padding: 0 6px;
  border: 2px solid var(--bg);
  border-radius: 999px;
  color: white;
  background: #b3261e;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 20px;
}

.cart-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 390;
  background: rgba(0,0,0,0.68);
}

.cart-overlay.active { display: block; }

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: auto;
  z-index: 400;
  display: flex;
  flex-direction: column;
  width: min(460px, 100vw);
  height: auto;
  max-height: 100vh;
  max-height: 100dvh;
  overflow: hidden;
  background: #101010;
  border-left: 1px solid var(--border);
  box-shadow: -20px 0 60px rgba(0,0,0,0.55);
  transform: translateX(105%);
  transition: transform 0.28s ease;
}

.cart-drawer.open { transform: translateX(0); }
body.cart-open { overflow: hidden; }

.cart-header {
  display: flex;
  flex: 0 0 auto;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.cart-header h2 { font-size: 1.35rem; }
.cart-eyebrow { color: var(--accent); font-size: 0.68rem; letter-spacing: 2px; text-transform: uppercase; }
.cart-close { border: 0; color: var(--text); background: transparent; font-size: 2rem; cursor: pointer; }

.cart-scroll-area {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
}

.cart-items {
  padding: 0.5rem 1.5rem;
}

.cart-empty {
  min-height: 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  color: var(--text-muted);
  text-align: center;
}

.cart-empty strong { color: var(--text); }

.cart-item {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr) max-content;
  gap: 0.85rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.cart-item img { width: 96px; height: 96px; border-radius: 10px; object-fit: cover; }
.cart-item-brand { color: var(--accent); font-size: 0.64rem; letter-spacing: 1px; text-transform: uppercase; }
.cart-item-name { font-size: 0.88rem; font-weight: 700; line-height: 1.3; }
.cart-item-option { margin-top: 0.25rem; color: var(--text-muted); font-size: 0.7rem; }
.cart-line-total { font-size: 0.78rem; font-weight: 800; white-space: nowrap; }

.cart-quantity-controls { display: flex; align-items: center; gap: 0.45rem; margin-top: 0.6rem; }
.cart-quantity-controls button {
  min-width: 27px;
  height: 27px;
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text);
  background: var(--surface);
  cursor: pointer;
}
.cart-quantity-controls .cart-remove { width: auto; padding: 0 0.35rem; color: #d8a09a; border: 0; background: transparent; font-size: 0.7rem; }

.cart-delivery-panel { padding: 0 1.5rem 1rem; }
.cart-delivery-panel > p { margin: 0.65rem 0 1rem; color: var(--text-muted); font-size: 0.75rem; line-height: 1.5; }
.cart-summary {
  flex: 0 0 auto;
  position: relative;
  z-index: 2;
  max-height: 46vh;
  max-height: 46dvh;
  overflow-y: auto;
  padding: 1rem 1.5rem 1.1rem;
  padding-bottom: max(1.1rem, env(safe-area-inset-bottom));
  border-top: 1px solid var(--border);
  background: #0b0b0b;
  box-shadow: 0 -12px 30px rgba(0,0,0,0.38);
}
.cart-subtotal-row { display: flex; justify-content: space-between; gap: 1rem; font-size: 1rem; }
.cart-subtotal-row + .cart-subtotal-row { margin-top: 0.35rem; }
.cart-subtotal-row strong { color: var(--accent); }
.cart-total-row { margin-top: 0.7rem !important; padding-top: 0.65rem; border-top: 1px solid var(--border); font-weight: 800; }
.cart-delivery-panel .cart-policy { margin-top: -0.45rem; }
.cart-delivery-panel .cart-policy a { color: var(--accent); }
.checkout-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem 0.7rem;
  margin: 0.9rem 0 1rem;
  padding: 0.9rem;
  border: 1px solid rgba(201,169,110,0.25);
  border-radius: 12px;
  background: rgba(201,169,110,0.045);
}

.checkout-details h3,
.checkout-details label[for="checkout-address"],
.checkout-details textarea,
.checkout-details label[for="checkout-landmark"],
.checkout-details #checkout-landmark,
.checkout-error {
  grid-column: 1 / -1;
}

.checkout-details h3 {
  margin-bottom: 0.15rem;
  color: var(--accent);
  font-size: 0.82rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.checkout-details label {
  color: var(--text-muted);
  font-size: 0.68rem;
  font-weight: 700;
}

.checkout-details input,
.checkout-details textarea {
  width: 100%;
  min-width: 0;
  padding: 0.55rem 0.65rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  background: #090909;
  font: inherit;
  font-size: 0.82rem;
  resize: vertical;
}

.checkout-error {
  min-height: 1.1rem;
  margin: 0 !important;
  color: #f0aaa3 !important;
  font-size: 0.7rem !important;
}
.cart-checkout {
  display: block;
  width: 100%;
  min-height: 48px;
  margin-top: 0.85rem;
  padding: 0.85rem 1rem;
  border: 0;
  border-radius: 24px;
  color: #071b0d;
  background: #25D366;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}
.cart-checkout:disabled { opacity: 0.4; cursor: not-allowed; }
.cart-clear { display: block; margin: 0.55rem auto 0; border: 0; color: var(--text-muted); background: transparent; font: inherit; font-size: 0.75rem; cursor: pointer; text-decoration: underline; }

/* ====== ABOUT PAGE ====== */
.about-hero {
  text-align: center;
  padding: 4rem 2rem;
  background: linear-gradient(180deg, rgba(201,169,110,0.05) 0%, transparent 100%);
  border-bottom: 1px solid var(--border);
  margin: -2rem -2rem 3rem;
}

.about-banner {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-image:
    linear-gradient(90deg, rgba(16,9,4,0.52), rgba(16,9,4,0.72), rgba(16,9,4,0.5)),
    url("../images/banners/about-banner.webp");
  background-size: cover;
  background-position: center;
}

.about-hero h1 {
  font-size: 2.5rem;
  font-weight: 300;
  letter-spacing: 6px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-hero p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto;
  font-style: italic;
  line-height: 1.8;
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.about-block {
  margin-bottom: 3rem;
}

.about-block h2 {
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: var(--accent);
}

.about-block p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.9;
  margin-bottom: 1rem;
}

.about-block strong {
  color: var(--text);
  font-weight: 600;
}

.tagline-big {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 300;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin: 4rem 0;
  color: var(--accent);
}

/* ====== CONTACT PAGE ====== */
.page-banner {
  min-height: 330px;
  margin: -2rem -2rem 3rem;
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid var(--border);
}

.page-banner h1 {
  font-size: 2.3rem;
  font-weight: 300;
  letter-spacing: 5px;
  text-transform: uppercase;
  margin-bottom: 0.65rem;
  color: #f4dfb4;
  text-shadow: 0 2px 14px rgba(0,0,0,0.9);
}

.page-banner p {
  color: #ddd2bf;
  font-size: 1rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.95);
}

.contact-banner {
  background-image:
    linear-gradient(90deg, rgba(5,5,5,0.5), rgba(5,5,5,0.7), rgba(5,5,5,0.36)),
    url("../images/banners/contact-banner.webp");
}

.privacy-banner {
  background-image:
    linear-gradient(90deg, rgba(5,5,5,0.42), rgba(5,5,5,0.7), rgba(5,5,5,0.42)),
    url("../images/banners/privacy-banner.webp");
}

.terms-banner {
  background-image:
    linear-gradient(90deg, rgba(5,5,5,0.45), rgba(5,5,5,0.72), rgba(5,5,5,0.45)),
    url("../images/banners/terms-banner.webp");
}

.contact-simple {
  padding: 4rem 2rem;
  max-width: 1080px;
  margin: 0 auto;
}

.contact-simple .contact-intro {
  max-width: 720px;
  margin: 0 auto 2.4rem;
  text-align: center;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.contact-card {
  min-width: 0;
  padding: 1.6rem;
  text-align: left;
  border: 1px solid rgba(201,169,110,0.3);
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(23,23,23,0.95), rgba(11,11,11,0.95));
}

.contact-label,
.section-kicker {
  display: block;
  margin-bottom: 0.65rem;
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.contact-card > a {
  color: var(--text);
  font-size: clamp(1rem, 2vw, 1.22rem);
  font-weight: 600;
  overflow-wrap: anywhere;
  text-decoration: none;
}

.contact-card > a:hover { color: var(--accent); }

.contact-simple p,
.contact-order li {
  color: var(--text-muted);
  line-height: 1.75;
}

.contact-card p {
  margin: 0.75rem 0 0;
  font-size: 0.86rem;
}

.contact-order {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2.5rem;
  align-items: center;
  margin-top: 1.25rem;
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(12,12,12,0.72);
}

.contact-order h2 {
  margin-bottom: 1rem;
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 400;
  letter-spacing: 1px;
}

.contact-order ol { padding-left: 1.2rem; }
.contact-order li + li { margin-top: 0.45rem; }

.contact-order-actions {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  min-width: 190px;
}

.contact-order-actions a,
.contact-order-actions button {
  width: 100%;
  padding: 0.75rem 1.2rem;
  border: 1px solid var(--accent);
  border-radius: 24px;
  color: var(--accent);
  background: transparent;
  font: inherit;
  text-decoration: none;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
}

.contact-order-actions .contact-primary { color: #111; background: var(--accent); }
.contact-order-actions a:hover,
.contact-order-actions button:hover { color: #111; background: var(--accent-hover); }

.contact-delivery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 1.25rem;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--border);
}

.contact-delivery > div {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.2rem 1.4rem;
  background: #101010;
}

.contact-delivery strong { color: var(--accent); font-size: 0.78rem; letter-spacing: 0.8px; text-transform: uppercase; }
.contact-delivery span { color: var(--text-muted); font-size: 0.88rem; line-height: 1.5; }
.contact-simple .contact-policy { margin: 1rem 0 0; text-align: center; font-size: 0.78rem; }
.contact-policy a { color: var(--accent); }

/* ====== PRIVACY / TERMS PAGES ====== */
.legal-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}

.legal-content h1 {
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  text-align: center;
}

.legal-content .effective-date {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 3rem;
  font-size: 0.9rem;
}

.legal-section {
  margin-bottom: 2.5rem;
}

.legal-section h2 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.legal-section p,
.legal-section li {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 0.8rem;
}

.legal-section ul {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-section li {
  margin-bottom: 0.4rem;
}

/* ====== WHATSAPP FLOATING BUTTON ====== */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 150;
  transition: transform 0.3s, box-shadow 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: white;
}

.back-to-top {
  position: fixed;
  right: 2rem;
  bottom: 11.2rem;
  z-index: 145;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(201,169,110,0.45);
  border-radius: 50%;
  color: var(--accent);
  background: rgba(15,15,15,0.94);
  box-shadow: 0 5px 18px rgba(0,0,0,0.35);
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.2s, transform 0.2s;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* ====== FOOTER ====== */
footer {
  padding: 3.5rem 2.5rem 2rem;
  color: var(--text-muted);
  font-size: 0.85rem;
  border-top: 1px solid var(--border);
  margin-top: 3rem;
  background: linear-gradient(180deg, #111 0%, #080808 100%);
}

.footer-inner {
  max-width: 1050px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, 1.7fr) 1fr 1.25fr;
  gap: 3rem;
  text-align: left;
}

.footer-logo {
  color: var(--accent);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.footer-logo span {
  color: var(--text);
  font-weight: 300;
}

.footer-tagline {
  margin-top: 0.6rem;
  font-size: 0.9rem;
  color: var(--accent);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.footer-brand p {
  max-width: 360px;
  margin-top: 1rem;
  line-height: 1.7;
}

.footer-column h2 {
  margin-bottom: 0.9rem;
  color: var(--text);
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.footer-column a {
  display: block;
  margin: 0 0 0.55rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-column a:hover {
  color: var(--accent);
}

.footer-bottom {
  max-width: 1050px;
  margin: 2.5rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: max-content 1fr;
  align-items: start;
  gap: 2rem;
}

.footer-disclaimer {
  max-width: none;
  margin: 0;
  color: #999;
  font-size: 0.78rem;
  line-height: 1.6;
}

/* ====== RESPONSIVE ====== */
@media (max-width: 768px) {
  body { background-attachment: scroll; }
  main,
  footer {
    margin-left: 0;
  }

  main { padding: 4.75rem 1rem 1rem; }

  .menu-toggle {
    position: fixed;
    top: 0.75rem;
    left: 0.75rem;
    z-index: 250;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.65rem 0.85rem;
    color: var(--accent);
    background: rgba(15,15,15,0.94);
    border: 1px solid var(--border);
    border-radius: 9px;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
    backdrop-filter: blur(10px);
  }

  .sidebar {
    width: min(84vw, 310px);
    transform: translateX(-105%);
    transition: transform 0.28s ease;
  }

  .sidebar.open {
    transform: translateX(0);
  }

  .sidebar-close {
    position: absolute;
    top: 0.8rem;
    right: 0.9rem;
    display: block;
    border: 0;
    background: transparent;
    color: var(--text);
    font-size: 2rem;
    cursor: pointer;
  }

  .sidebar-overlay {
    position: fixed;
    inset: 0;
    z-index: 290;
    background: rgba(0,0,0,0.7);
  }

  .sidebar-overlay.active {
    display: block;
  }

  body.sidebar-open {
    overflow: hidden;
  }

  .search-box { max-width: 100%; }
  .grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 1rem; }
  .page-title h1 { font-size: 1.4rem; }
  .hero,
  .catalog-banner,
  .about-hero,
  .page-banner {
    margin-top: 0;
    margin-left: -1rem;
    margin-right: -1rem;
  }
  .collections-section { margin-left: -1rem; margin-right: -1rem; }
  .hero h1 { font-size: 2rem; letter-spacing: 4px; }
  .home-cover { min-height: 500px; background-position: center; }
  .hero .tagline { font-size: 1rem; }
  .category-grid { grid-template-columns: 1fr; }
  .about-hero h1 { font-size: 1.8rem; }
  .tagline-big { font-size: 1.3rem; }
  .pricing-banner { flex-direction: column; gap: 1rem; }
  .catalog-toolbar { grid-template-columns: 1fr; align-items: stretch; padding: 1rem; }
  .catalog-result-summary { padding: 0; text-align: left; }
  .catalog-banner h1 { font-size: 1.6rem; }
  .catalog-banner, .about-banner, .page-banner { min-height: 260px; }
  .men-banner, .women-banner { background-position: 68% center; }
  .unisex-banner { background-position: center; }
  .page-banner h1 { font-size: 1.55rem; letter-spacing: 3px; }
  .best-seller-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); }
  .product-standard { grid-template-columns: 1fr; gap: 1.2rem; padding: 1.5rem; }
  .product-standard .product-safety { padding: 1.2rem 0 0; border-left: 0; border-top: 1px solid rgba(201,169,110,0.32); }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-card { min-height: 0; }
  .lightbox {
    flex-direction: column;
    gap: 0.8rem;
    padding: 3.7rem 1rem 1rem;
    overflow-y: auto;
  }
  .lightbox-img { max-width: 82vw; max-height: 38vh; }
  .lightbox-info { width: min(100%, 390px); max-height: none; }
  .lightbox-close { position: fixed; top: 0.8rem; right: 1rem; }
  .cart-float,
  .whatsapp-float { right: 1rem; width: 54px; height: 54px; }
  .cart-float { bottom: 5.4rem; }
  .whatsapp-float { bottom: 1rem; }
  .back-to-top { right: 1.25rem; bottom: 9.4rem; width: 42px; height: 42px; }
  .cart-item { grid-template-columns: 82px minmax(0, 1fr); }
  .cart-item img { width: 82px; height: 82px; }
  .cart-line-total { grid-column: 2; }
  .cart-items { min-height: 120px; }
  .cart-empty { min-height: 120px; }
  .cart-header { padding: 1rem 1.25rem; }
  .cart-items { padding: 0.4rem 1.25rem; }
  .cart-delivery-panel { padding: 0 1.25rem 0.8rem; }
  .cart-drawer {
    width: 100vw;
    max-height: 100vh;
    max-height: 100svh;
  }
  .cart-summary {
    max-height: 50vh;
    max-height: 50svh;
    padding: 0.85rem 1.25rem max(0.9rem, env(safe-area-inset-bottom));
  }
  .checkout-details { grid-template-columns: 1fr; }
  .checkout-details > * { grid-column: 1 !important; }
  .contact-simple { padding: 2.5rem 0.25rem; }
  .contact-grid,
  .contact-delivery { grid-template-columns: 1fr; }
  .contact-order { grid-template-columns: 1fr; gap: 1.5rem; padding: 1.4rem; }
  .contact-order-actions { width: 100%; min-width: 0; }
  .footer-inner,
  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-inner,
  .footer-bottom {
    text-align: center;
  }
  .footer-brand p {
    margin-left: auto;
    margin-right: auto;
  }
}
