:root {
  --bg: #0a0f1e;
  --surface: #111a30;
  --surface-2: #18233f;
  --line: #1f2c4a;
  --line-2: #2e3e63;
  --text: #eef2fb;
  --text-2: #9fabc7;
  --text-3: #64708f;
  --blue: #2456c9;
  --green: #1aa64b;
  --gold: #e8b62c;
  --accent: #e8b62c;
  --accent-2: #2ab35a;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

::selection { background: var(--accent); color: var(--bg); }

/* ANNOUNCE BAR */
.announce {
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 8px 16px;
  position: relative;
  z-index: 60;
}
.announce-arrow {
  color: var(--text-2);
  font-size: 18px;
  line-height: 1;
  padding: 4px 8px;
  transition: color 0.2s ease;
}
.announce-arrow:hover { color: var(--text); }
.announce-track {
  font-size: 12.5px;
  letter-spacing: 0.04em;
  color: var(--text);
  text-align: center;
  flex: 1;
  max-width: 420px;
  position: relative;
  height: 18px;
  overflow: hidden;
}
.announce-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.announce-slide.active { opacity: 1; }

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(12, 11, 10, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: 1480px;
  margin: 0 auto;
  padding: 18px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav-logo {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}
.nav-logo img {
  height: 30px;
  width: auto;
  display: block;
}
.nav-menu {
  display: flex;
  gap: 26px;
  font-size: 13.5px;
}
.nav-menu a {
  color: var(--text-2);
  transition: color 0.2s ease;
}
.nav-menu a:hover { color: var(--text); }
.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
}
.nav-icon {
  position: relative;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  transition: color 0.2s ease;
}
.nav-icon:hover { color: var(--accent-2); }
.cart-count {
  position: absolute;
  top: 2px;
  right: 0;
  background: var(--accent);
  color: var(--bg);
  font-size: 9px;
  font-weight: 600;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 6px;
}
.menu-toggle span {
  width: 20px;
  height: 1.5px;
  background: var(--text);
  display: block;
}

.mobile-menu {
  position: fixed;
  inset: 60px 0 0 0;
  background: var(--bg);
  z-index: 40;
  display: none;
  flex-direction: column;
  padding: 32px;
  gap: 24px;
  font-size: 22px;
  border-top: 1px solid var(--line);
}
.mobile-menu.open { display: flex; }
.mobile-menu a { color: var(--text); }

/* SEARCH OVERLAY */
.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(6, 9, 18, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: none;
  padding: 84px 20px 20px;
}
.search-overlay.open { display: block; }
.search-box {
  max-width: 680px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  animation: searchIn 0.25s ease;
}
@keyframes searchIn {
  from { opacity: 0; transform: translateY(-12px); }
  to { opacity: 1; transform: translateY(0); }
}
.search-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
}
.search-head svg { color: var(--text-2); flex: none; }
#searchInput {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: var(--text);
  font-size: 16px;
  font-family: inherit;
}
#searchInput::placeholder { color: var(--text-3); }
#searchClose {
  color: var(--text-2);
  font-size: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  flex: none;
  transition: background 0.2s ease, color 0.2s ease;
}
#searchClose:hover { color: var(--text); background: var(--surface-2); }
.search-results {
  max-height: 62vh;
  overflow-y: auto;
  padding: 8px;
}
.search-hint {
  color: var(--text-3);
  padding: 28px 24px;
  text-align: center;
  font-size: 14px;
}
.search-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px;
  border-radius: 6px;
  transition: background 0.15s ease;
}
.search-item:hover { background: var(--surface-2); }
.search-thumb {
  width: 54px;
  height: 54px;
  border-radius: 4px;
  background-color: #f0eee8;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  flex: none;
}
.search-meta { display: flex; flex-direction: column; gap: 3px; flex: 1; min-width: 0; }
.search-name { color: var(--text); font-size: 14px; }
.search-cat { color: var(--text-3); font-size: 12px; }
.search-price { color: var(--accent-2); font-size: 13px; font-weight: 500; }

/* CART DRAWER */
.cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 110;
  background: rgba(6, 9, 18, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.cart-overlay.open { opacity: 1; visibility: visible; }
.cart-drawer {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 400px;
  max-width: 90vw;
  background: var(--surface);
  border-left: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.4);
}
.cart-overlay.open .cart-drawer { transform: translateX(0); }
.cart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
#cartClose {
  color: var(--text-2);
  font-size: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  transition: background 0.2s ease, color 0.2s ease;
}
#cartClose:hover { color: var(--text); background: var(--surface-2); }
.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 10px 14px;
}
.cart-empty {
  color: var(--text-3);
  text-align: center;
  padding: 60px 24px;
  font-size: 14px;
}
.cart-row {
  display: flex;
  gap: 12px;
  padding: 14px 8px;
  border-bottom: 1px solid var(--line);
}
.cart-thumb {
  width: 70px;
  height: 70px;
  border-radius: 5px;
  background-color: #f0eee8;
  background-size: cover;
  background-position: center;
  flex: none;
}
.cart-info { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 4px; }
.cart-name { font-size: 13.5px; color: var(--text); line-height: 1.3; }
.cart-size { font-size: 12px; color: var(--text-3); }
.cart-row-bottom { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.cart-qty { display: inline-flex; align-items: center; border: 1px solid var(--line-2); border-radius: 4px; }
.cart-qty button {
  width: 28px; height: 28px; color: var(--text); font-size: 15px;
  display: flex; align-items: center; justify-content: center;
}
.cart-qty button:hover { background: var(--surface-2); }
.cart-qty span { min-width: 26px; text-align: center; font-size: 13px; font-variant-numeric: tabular-nums; }
.cart-line-price { font-size: 13.5px; color: var(--text); font-weight: 500; }
.cart-remove {
  font-size: 11px; color: var(--text-3); text-decoration: underline;
  align-self: flex-start; transition: color 0.2s ease;
}
.cart-remove:hover { color: #d57777; }
.cart-foot { border-top: 1px solid var(--line); padding: 18px 22px 22px; }
.cart-wholesale {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 10px 12px;
  margin-bottom: 14px;
}
.cart-ws-now {
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: 13px; color: var(--text-2);
}
.cart-ws-now strong { color: var(--accent); font-size: 14px; }
.cart-ws-next { font-size: 12px; color: var(--text-2); margin-top: 6px; }
.cart-ws-next strong { color: var(--accent-2); }
.cart-ws-next a { color: var(--green); text-decoration: underline; }
.cart-tiers { margin-bottom: 14px; }
.cart-tiers summary {
  list-style: none; cursor: pointer; font-size: 12.5px; color: var(--text-2);
  padding: 4px 0; display: flex; align-items: center; gap: 6px;
}
.cart-tiers summary::-webkit-details-marker { display: none; }
.cart-tiers summary::before { content: '+'; color: var(--text-3); font-size: 15px; }
.cart-tiers[open] summary::before { content: '−'; }
.cart-tiers ul { list-style: none; margin: 6px 0 0; padding: 0; }
.cart-tiers li {
  display: flex; justify-content: space-between;
  font-size: 12.5px; color: var(--text-2); padding: 4px 2px;
  border-bottom: 1px solid var(--line);
}
.cart-tiers li span:last-child { color: var(--text); font-variant-numeric: tabular-nums; }
.cart-subtotal {
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: 16px; font-weight: 600; margin-bottom: 8px;
}
.cart-subtotal span:last-child { color: var(--text); font-variant-numeric: tabular-nums; }
.cart-note { font-size: 11.5px; color: var(--text-3); margin-bottom: 16px; }
.cart-checkout {
  width: 100%; padding: 15px; background: var(--green); color: #fff;
  font-size: 13px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  border-radius: 4px; transition: background 0.2s ease; margin-bottom: 10px;
}
.cart-checkout:hover { background: var(--blue); }
.cart-checkout:disabled { background: var(--surface-2); color: var(--text-3); cursor: not-allowed; }
.cart-missing {
  width: 100%;
  min-height: 42px;
  padding: 11px 14px;
  border: 1px solid var(--line-2);
  color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 4px;
  margin-bottom: 10px;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}
.cart-missing:hover {
  background: var(--surface-2);
  border-color: var(--accent-2);
  color: var(--accent-2);
}
.cart-continue {
  width: 100%; padding: 12px; background: none; color: var(--text-2);
  font-size: 13px; transition: color 0.2s ease;
}
.cart-continue:hover { color: var(--text); }
.cart-clear {
  width: 100%; padding: 6px; background: none; color: var(--text-3);
  font-size: 12px; transition: color 0.2s ease;
}
.cart-clear:hover { color: #d57777; }

@media (max-width: 480px) {
  .cart-drawer { width: 100%; max-width: 100%; }
}

/* HERO CAROUSEL */
.hero-carousel {
  position: relative;
  width: 100%;
  aspect-ratio: 11 / 5;
  max-height: 560px;
  overflow: hidden;
  background: #0a0f1e;
  border-bottom: 1px solid var(--line);
}
.carousel-track {
  position: absolute;
  inset: 0;
}
.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.7s ease;
  display: block;
}
.carousel-slide.active {
  opacity: 1;
  visibility: visible;
}
.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.slide-varal img { object-position: center top; }
.slide-favoritas img { object-position: left center; }
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(10, 15, 30, 0.55);
  border: 1px solid var(--line-2);
  color: #fff;
  font-size: 26px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background 0.2s ease, border-color 0.2s ease;
}
.carousel-arrow:hover { background: var(--green); border-color: var(--green); }
.carousel-prev { left: 20px; }
.carousel-next { right: 20px; }
.carousel-dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}
.carousel-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.carousel-dot:hover { background: rgba(255, 255, 255, 0.6); }
.carousel-dot.active {
  background: var(--gold);
  transform: scale(1.25);
}

@media (max-width: 640px) {
  .carousel-arrow { width: 38px; height: 38px; font-size: 22px; }
  .carousel-prev { left: 10px; }
  .carousel-next { right: 10px; }
  .carousel-dots { bottom: 10px; }
}

/* HERO */
.hero {
  position: relative;
  min-height: 600px;
  height: calc(100vh - 110px);
  max-height: 820px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    radial-gradient(circle at 20% 20%, rgba(36, 86, 201, 0.35), transparent 45%),
    radial-gradient(circle at 80% 75%, rgba(26, 166, 75, 0.30), transparent 50%),
    linear-gradient(160deg, #0a0f1e 0%, #0c1733 55%, #0a0f1e 100%);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(46, 62, 99, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46, 62, 99, 0.18) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(circle at center, #000 30%, transparent 75%);
  mask-image: radial-gradient(circle at center, #000 30%, transparent 75%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 40px 32px;
}
.hero-logo {
  width: min(440px, 78vw);
  margin: 0 auto 28px;
  filter: drop-shadow(0 18px 50px rgba(0,0,0,0.55));
}
.hero-eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(40px, 7vw, 76px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 0.96;
  margin-bottom: 20px;
  color: #fff;
  text-shadow: 0 4px 30px rgba(0,0,0,0.4);
}
.hero h1 em {
  font-style: normal;
  color: var(--green);
}
.hero-sub {
  font-size: clamp(15px, 1.8vw, 18px);
  color: var(--text-2);
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.6;
}
.hero-cta {
  display: inline-flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
.btn-outline-hero {
  display: inline-block;
  padding: 16px 34px;
  border: 1.5px solid var(--line-2);
  color: var(--text);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  background: transparent;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.btn-outline-hero:hover {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
}
.btn-fill-hero {
  display: inline-block;
  padding: 16px 34px;
  background: var(--green);
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  transition: background 0.25s ease, transform 0.2s ease;
}
.btn-fill-hero:hover {
  background: var(--blue);
  transform: translateY(-2px);
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 13px 26px;
  background: var(--green);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.2s ease, color 0.2s ease;
}
.btn:hover {
  background: var(--blue);
  color: #fff;
}

.link-arrow {
  display: inline-block;
  font-size: 14px;
  border-bottom: 1px solid var(--line-2);
  padding-bottom: 2px;
  color: var(--text);
  transition: border-color 0.2s ease, color 0.2s ease;
}
.link-arrow:hover {
  color: var(--accent-2);
  border-bottom-color: var(--accent-2);
}

/* SECTIONS */
.section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 88px 32px;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 36px;
  flex-wrap: wrap;
  gap: 16px;
}
.section-head h2 {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.section-link {
  font-size: 14px;
  color: var(--text-2);
  transition: color 0.2s ease;
}
.section-link:hover { color: var(--accent-2); }

.section-intro {
  color: var(--text-2);
  font-size: 15px;
  line-height: 1.6;
  max-width: 560px;
  margin: -16px 0 24px;
}

.filters {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.filter {
  font-size: 14px;
  color: var(--text-3);
  padding: 4px 0;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.filter:hover { color: var(--text-2); }
.filter.active {
  color: var(--text);
  border-bottom-color: var(--accent);
}
.catalog-request {
  width: fit-content;
  min-height: 44px;
  padding: 11px 18px;
  margin: 18px 0 34px;
  border: 1px solid var(--line-2);
  color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  border-radius: 4px;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.catalog-request:hover {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}

/* PRODUCTS */
.products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px 20px;
}
.products-grid { gap: 48px 20px; }
.product { display: block; }
.product.hide { display: none; }

.product-link { display: block; }
.product-img {
  position: relative;
  aspect-ratio: 1 / 1;
  background: #f0eee8;
  overflow: hidden;
  margin-bottom: 12px;
  border-radius: 4px;
}
.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.98);
  transition: transform 0.6s ease, filter 0.4s ease;
}
.product:hover .product-img img {
  transform: scale(1.04);
  filter: brightness(1);
}

.product-img-flat {
  background: radial-gradient(circle at 50% 45%, #1a1815 0%, #0c0b0a 100%);
}
.product-img-flat::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 60%, rgba(255,255,255,0.04), transparent 60%);
  pointer-events: none;
  z-index: 1;
}
.product-img-flat img {
  object-fit: contain;
  padding: 8%;
  filter: drop-shadow(0 20px 30px rgba(0,0,0,0.5));
}
.product:hover .product-img-flat img {
  transform: scale(1.06);
}

/* Split front/back display */
.product-img-split { overflow: hidden; }
.product-img-split .pi-front,
.product-img-split .pi-back {
  position: absolute;
  inset: 0;
  background-size: 200% 100%;
  background-repeat: no-repeat;
  filter: drop-shadow(0 16px 24px rgba(0,0,0,0.4));
  transition: opacity 0.5s ease, transform 0.7s ease;
  z-index: 0;
}
.product-img-split .pi-front {
  background-position: left center;
  opacity: 1;
}
.product-img-split .pi-back {
  background-position: right center;
  opacity: 0;
}
.product:hover .product-img-split .pi-front { opacity: 0; }
.product:hover .product-img-split .pi-back { opacity: 1; }
.product:hover .product-img-split .pi-front,
.product:hover .product-img-split .pi-back {
  transform: scale(1.04);
}
.product-img-split .badge { z-index: 2; }

/* ============================================
   PRODUCT PAGE
   ============================================ */
.breadcrumb {
  max-width: 1480px;
  margin: 0 auto;
  padding: 24px 36px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: var(--text-3);
}
.breadcrumb a {
  color: var(--text-2);
  transition: color 0.2s;
}
.breadcrumb a:hover { color: var(--accent-2); }
.breadcrumb span:not([id]) { color: var(--text-3); }

.product-page {
  max-width: 1480px;
  margin: 0 auto;
  padding: 32px 36px 80px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: flex-start;
}

.pp-gallery {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 16px;
  position: sticky;
  top: 110px;
}
.pp-thumbs {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pp-thumb {
  width: 76px;
  height: 96px;
  padding: 0;
  border: 1px solid var(--line);
  background: var(--surface);
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s ease;
}
.pp-thumb:hover { border-color: var(--line-2); }
.pp-thumb.active { border-color: var(--accent); }
.pp-thumb-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.pp-main-img {
  background: #f0eee8;
  aspect-ratio: 1 / 1;
  position: relative;
  overflow: hidden;
  border-radius: 6px;
}
.pp-zoom-wrap {
  position: absolute;
  inset: 0;
}
.pp-image-view {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.6s ease;
}
.pp-main-img:hover .pp-image-view { transform: scale(1.04); }

/* Info */
.pp-info {
  padding: 8px 0;
}
.pp-tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 16px;
}
.pp-name {
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 8px;
}
.pp-color {
  font-size: 14px;
  color: var(--text-2);
  margin-bottom: 24px;
}
.pp-price-row {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.pp-price {
  font-size: 26px;
  font-weight: 500;
  color: var(--text);
  font-variant-numeric: tabular-nums;
}
.pp-installment {
  font-size: 13px;
  color: var(--text-2);
}

.pp-section {
  margin-bottom: 24px;
}
.pp-section-head {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  margin-bottom: 12px;
}
.pp-section-head span:first-child {
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-2);
  font-weight: 500;
}
.pp-link {
  font-size: 12px;
  color: var(--text-2);
  border-bottom: 1px solid var(--line-2);
  padding-bottom: 1px;
  transition: color 0.2s;
}
.pp-link:hover { color: var(--accent-2); }

.pp-sizes {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.pp-size {
  min-width: 52px;
  height: 44px;
  padding: 0 14px;
  border: 1px solid var(--line);
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  background: transparent;
  transition: all 0.2s ease;
}
.pp-size:hover { border-color: var(--text-2); }
.pp-size.active {
  border-color: var(--text);
  background: var(--text);
  color: var(--bg);
}
.pp-error {
  font-size: 12px;
  color: #d57777;
  margin-top: 8px;
  height: 0;
  opacity: 0;
  transition: opacity 0.2s, height 0.2s;
}
.pp-error.show {
  opacity: 1;
  height: 16px;
}

.pp-qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  width: fit-content;
}
.pp-qty-btn {
  width: 44px;
  height: 44px;
  font-size: 18px;
  color: var(--text);
  transition: background 0.2s;
}
.pp-qty-btn:hover { background: var(--surface); }
.pp-qty span {
  min-width: 36px;
  text-align: center;
  font-size: 15px;
  font-variant-numeric: tabular-nums;
}

.pp-add,
.pp-buy {
  width: 100%;
  padding: 16px;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 10px;
  transition: all 0.2s ease;
  border: 1px solid var(--text);
}
.pp-add {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}
.pp-add:hover {
  background: var(--blue);
  border-color: var(--blue);
}
.pp-buy {
  background: transparent;
  color: var(--text);
  margin-bottom: 28px;
}
.pp-buy:hover {
  background: var(--text);
  color: var(--bg);
}
.pp-missing {
  width: 100%;
  min-height: 48px;
  padding: 14px 16px;
  border: 1px solid var(--line-2);
  color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 28px;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.pp-missing:hover {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}

.pp-desc {
  color: var(--text-2);
  font-size: 14.5px;
  line-height: 1.7;
  margin: 24px 0;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.pp-accordion details {
  border-bottom: 1px solid var(--line);
}
.pp-accordion summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 0;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.pp-accordion summary::-webkit-details-marker { display: none; }
.pp-accordion summary::after {
  content: '+';
  font-size: 20px;
  color: var(--text-2);
  font-weight: 300;
  transition: transform 0.25s ease;
}
.pp-accordion details[open] summary::after { content: '−'; }
.pp-accordion p {
  padding: 0 0 20px;
  color: var(--text-2);
  font-size: 14px;
  line-height: 1.7;
}

/* Toast */
.toast {
  position: fixed;
  top: 90px;
  right: 24px;
  background: var(--text);
  color: var(--bg);
  padding: 14px 20px;
  font-size: 13px;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 12px 36px rgba(0,0,0,0.4);
  z-index: 90;
  transform: translateY(-20px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.toast.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 960px) {
  .product-page {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 24px 24px 60px;
  }
  .pp-gallery {
    position: static;
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .pp-thumbs {
    flex-direction: row;
    order: 2;
  }
  .pp-main-img { order: 1; }
  .breadcrumb { padding: 20px 24px 0; }
}

@media (max-width: 640px) {
  .pp-name { font-size: 26px; }
  .pp-price { font-size: 22px; }
  .pp-thumb { width: 64px; height: 80px; }
  .toast { right: 16px; left: 16px; top: 80px; }
}
.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--gold);
  color: #14120a;
  padding: 3px 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 2px;
}

.product-info h4 {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 4px;
  color: var(--text);
}
.price {
  font-size: 14px;
  color: var(--text-2);
  font-variant-numeric: tabular-nums;
}

/* CATEGORIES */
.collections-head {
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 32px 28px;
}
.collections-head h2 {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.collections-head p {
  color: var(--text-2);
  font-size: 14px;
  margin-top: 8px;
}
.categories {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px 88px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.cat {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 16px;
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
  border: 1px solid var(--line);
  background: linear-gradient(160deg, #14213f 0%, #0a0f1e 100%);
  transition: border-color 0.3s ease;
}
.cat:hover { border-color: var(--green); }
.cat-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.6s ease;
}
.cat:hover .cat-img { transform: scale(1.05); }
.cat::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(10,15,30,0.92));
}
.cat span { position: relative; z-index: 1; }

/* ABOUT */
.about {
  max-width: 720px;
  margin: 0 auto;
  padding: 88px 32px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.about h2 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 24px;
}
.about p {
  color: var(--text-2);
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.7;
}
.about .link-arrow {
  margin-top: 12px;
}

/* NEWSLETTER */
.newsletter {
  padding: 72px 32px;
  background: var(--surface);
}
.news-inner {
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
}
.news-inner h3 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 8px;
}
.news-inner p {
  font-size: 14px;
  color: var(--text-2);
  margin-bottom: 24px;
}
.news-form {
  display: flex;
  border-bottom: 1px solid var(--line-2);
  transition: border-color 0.2s ease;
}
.news-form:focus-within { border-color: var(--accent); }
.news-form input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  padding: 10px 4px;
  font-family: inherit;
  font-size: 14px;
  color: var(--text);
}
.news-form input::placeholder { color: var(--text-3); }
.news-form button {
  font-size: 13px;
  font-weight: 500;
  padding: 10px 4px;
  color: var(--text);
  transition: color 0.2s ease;
}
.news-form button:hover { color: var(--accent-2); }

/* FOOTER */
.footer {
  background: var(--surface);
  padding: 72px 32px 32px;
  border-top: 1px solid var(--line);
}
.footer-top {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
}
.footer-brand img {
  height: 20px;
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.6;
}
.footer-col h5 {
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 14px;
  color: var(--text);
}
.footer-col a {
  display: block;
  font-size: 13px;
  color: var(--text-2);
  margin-bottom: 8px;
  transition: color 0.2s ease;
}
.footer-col a:hover { color: var(--accent-2); }
.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-3);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom div { display: flex; gap: 16px; }
.footer-bottom a { transition: color 0.2s ease; }
.footer-bottom a:hover { color: var(--text); }

/* WHATSAPP FLOAT */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.35), 0 0 0 0 rgba(37, 211, 102, 0.5);
  z-index: 80;
  animation: wa-pulse 2.4s ease-in-out infinite;
  transition: transform 0.25s ease;
}
.wa-float:hover { transform: scale(1.08); }
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(0,0,0,0.35), 0 0 0 0 rgba(37, 211, 102, 0.5); }
  50% { box-shadow: 0 8px 24px rgba(0,0,0,0.35), 0 0 0 14px rgba(37, 211, 102, 0); }
}

/* RESPONSIVE */
@media (max-width: 1180px) {
  .nav-menu { display: none; }
  .menu-toggle { display: flex; }
}

@media (max-width: 960px) {
  .products { grid-template-columns: repeat(3, 1fr); }
  .categories { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hero-v { width: 520px; right: -120px; opacity: 0.05; }
  .hero-content { padding: 0 36px; }
}

@media (max-width: 640px) {
  .announce { gap: 12px; padding: 7px 12px; }
  .announce-track { font-size: 11.5px; }
  .nav-inner { padding: 14px 20px; }
  .section { padding: 60px 20px; }
  .categories { padding: 0 20px 60px; grid-template-columns: 1fr 1fr; }
  .collections-head { padding: 56px 20px 20px; }
  .products, .products-grid { grid-template-columns: 1fr 1fr; gap: 28px 14px; }
  .hero { height: calc(100vh - 100px); min-height: 460px; }
  .hero-content { padding: 0 24px; }
  .hero h1 { margin-bottom: 28px; }
  .btn-outline-hero { padding: 14px 28px; font-size: 12px; letter-spacing: 0.12em; }
  .hero-v { width: 380px; right: -160px; opacity: 0.04; }
  .about { padding: 60px 20px; }
  .newsletter { padding: 56px 20px; }
  .footer { padding: 56px 20px 24px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; padding-bottom: 32px; }
  .footer-bottom { flex-direction: column; }
  .section-head { flex-direction: column; align-items: flex-start; }
  .filters { gap: 16px; }
  .catalog-request {
    width: 100%;
    margin: 20px 0 34px;
  }
  .wa-float { width: 50px; height: 50px; bottom: 18px; right: 18px; }
  .wa-float svg { width: 24px; height: 24px; }
}
