*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --pink: #e8315a;
  --teal: #4aacaa;
  --beige: #e8c99a;
  --dark: #0a0a0a;
  --darker: #050505;
  --offwhite: #f5f0e8;
  --muted: #6b6560;
  --pink-glow: rgba(232, 49, 90, 0.35);
  --teal-glow: rgba(74, 172, 170, 0.3);
}

html {
  scroll-behavior: smooth;
}
body {
  font-family: "Syne", sans-serif;
  background: var(--dark);
  color: var(--offwhite);
  overflow-x: hidden;
}
body.menu-open {
  overflow: hidden;
}

/* ─── LOGIN MODAL ─── */
#loginRequiredModal,
#provinceSelectionModal,
#coverageInfoModal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  align-items: center;
  justify-content: center;
}
#loginRequiredModal.open,
#provinceSelectionModal.open,
#coverageInfoModal.open {
  display: flex;
}
.lrm-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(6px);
  cursor: pointer;
}
.lrm-box {
  position: relative;
  z-index: 1;
  background: #111;
  border: 1px solid rgba(232, 49, 90, 0.35);
  border-radius: 4px;
  padding: 48px 40px 40px;
  max-width: 380px;
  width: 90%;
  text-align: center;
  animation: lrmIn 0.25s ease;
}
@keyframes lrmIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.lrm-icon {
  font-size: 38px;
  margin-bottom: 16px;
  display: block;
}
.lrm-title {
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-size: 26px;
  color: var(--offwhite);
  margin-bottom: 10px;
}
.lrm-text {
  font-size: 13px;
  color: rgba(245, 240, 232, 0.6);
  line-height: 1.6;
  margin-bottom: 28px;
}
.lrm-btn-login {
  display: inline-block;
  width: 100%;
  padding: 14px 0;
  background: var(--pink);
  color: #fff;
  font-family: "Syne", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.lrm-btn-login:hover {
  background: #c9264a;
}
.lrm-btn-cancel {
  display: inline-block;
  margin-top: 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.4);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
}
.lrm-btn-cancel:hover {
  color: var(--offwhite);
}

/* ─── PROVINCE SELECTION MODAL ─── */
#provinceSelectionModal .lrm-box {
  padding: 0;
  max-width: 440px;
  border-color: rgba(74, 172, 170, 0.3);
  border-top: 2px solid #4aacaa;
  overflow: hidden;
}
.psm-header {
  padding: 36px 40px 28px;
  background: linear-gradient(160deg, #0d1b1a 0%, #0a0a0a 100%);
  border-bottom: 1px solid rgba(74, 172, 170, 0.1);
  text-align: center;
}
.psm-body {
  padding: 28px 40px 36px;
  background: #0a0a0a;
}
.psm-icon-wrap {
  width: 52px;
  height: 52px;
  margin: 0 auto 18px;
  background: rgba(74, 172, 170, 0.08);
  border: 1px solid rgba(74, 172, 170, 0.28);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}
.psm-label {
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #4aacaa;
  margin-bottom: 10px;
}
.psm-select-wrap {
  position: relative;
  margin-bottom: 16px;
}
.psm-select {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(245, 240, 232, 0.12);
  border-radius: 2px;
  color: #f5f0e8;
  font-family: "Syne", sans-serif;
  font-size: 13px;
  font-weight: 500;
  padding: 14px 40px 14px 16px;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  transition: border-color 0.2s;
}
.psm-select:focus {
  outline: none;
  border-color: #4aacaa;
  box-shadow: 0 0 0 3px rgba(74, 172, 170, 0.1);
}
.psm-select option {
  background: #111;
  color: #f5f0e8;
}
.psm-select-arrow {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: rgba(245, 240, 232, 0.35);
}

/* ─── NOISE OVERLAY ─── */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1000;
  opacity: 0.032;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 48px;
  transition:
    background 0.4s,
    backdrop-filter 0.4s;
}
nav.scrolled {
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
}
.nav-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.nav-logo img {
  height: 60px;
  width: auto;
  display: block;
}
.nav-logo span {
  display: none;
}
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.6);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--offwhite);
}
/* ─── NAV SEARCH ─── */
.nav-search {
  display: flex;
  align-items: center;
  border: 1px solid rgba(245, 240, 232, 0.2);
  background: rgba(245, 240, 232, 0.04);
  height: 40px;
  transition:
    border-color 0.2s,
    background 0.2s;
  overflow: hidden;
}
.nav-search:focus-within {
  border-color: var(--teal);
  background: rgba(74, 172, 170, 0.06);
}
.nav-search-select {
  background: transparent;
  border: none;
  outline: none;
  color: rgba(245, 240, 232, 0.55);
  font-family: "Syne", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0 10px;
  height: 100%;
  border-right: 1px solid rgba(245, 240, 232, 0.12);
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  max-width: 130px;
}
.nav-search-select option {
  background: #111;
  color: var(--offwhite);
}
.nav-search-input {
  background: transparent;
  border: none;
  outline: none;
  color: var(--offwhite);
  font-family: "DM Mono", monospace;
  font-size: 12px;
  padding: 0 10px;
  height: 100%;
  width: 160px;
}
.nav-search-input::placeholder {
  color: rgba(245, 240, 232, 0.3);
}
.nav-search-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  height: 100%;
  background: transparent;
  border: none;
  border-left: 1px solid rgba(245, 240, 232, 0.12);
  color: rgba(245, 240, 232, 0.5);
  cursor: pointer;
  transition:
    color 0.2s,
    background 0.2s;
}
.nav-search-btn:hover {
  color: var(--teal);
  background: rgba(74, 172, 170, 0.08);
}
@media (max-width: 900px) {
  .nav-search {
    display: none;
  }
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav-cart {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--offwhite);
  text-decoration: none;
  padding: 10px 20px;
  border: 1px solid rgba(245, 240, 232, 0.2);
  background: transparent;
  cursor: pointer;
  transition:
    border-color 0.2s,
    background 0.2s;
}
.nav-cart:hover {
  border-color: var(--pink);
  background: rgba(232, 49, 90, 0.08);
}
.cart-dot {
  width: 18px;
  height: 18px;
  background: var(--pink);
  border-radius: 50%;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* ─── USER DROPDOWN ─── */
.nav-user {
  position: relative;
}
.nav-user-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(245, 240, 232, 0.2);
  background: transparent;
  cursor: pointer;
  color: var(--offwhite);
  border-radius: 50%;
  transition:
    border-color 0.2s,
    background 0.2s;
}
.nav-user-btn:hover {
  border-color: var(--pink);
  background: rgba(232, 49, 90, 0.08);
}
.nav-user-menu {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 190px;
  background: #111;
  border: 1px solid rgba(245, 240, 232, 0.12);
  list-style: none;
  padding: 6px 0;
  z-index: 600;
}
.nav-user.open .nav-user-menu {
  display: block;
  animation: lrmIn 0.18s ease;
}
.nav-user-name {
  padding: 8px 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.4);
  cursor: default;
}
.nav-user-divider {
  border: none;
  border-top: 1px solid rgba(245, 240, 232, 0.1);
  margin: 4px 0;
}
.nav-user-link {
  display: block;
  padding: 9px 16px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--offwhite);
  text-decoration: none;
  transition:
    background 0.15s,
    color 0.15s;
}
.nav-user-link:hover {
  background: rgba(232, 49, 90, 0.12);
  color: var(--pink);
}
.nav-user-link--role {
  color: #4aacaa;
  border-bottom: 1px solid rgba(74, 172, 170, 0.1);
  margin-bottom: 2px;
}
.nav-user-link--role:hover {
  background: rgba(74, 172, 170, 0.1);
  color: #4aacaa;
}
/* ── CART PANEL ───────────────────────────────── */
.cart-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(3px);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
  z-index: 900;
}
.cart-backdrop.open {
  opacity: 1;
  visibility: visible;
}
.cart-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: min(92vw, 420px);
  height: 100vh;
  background: #0b0b0b;
  border-left: 1px solid rgba(245, 240, 232, 0.08);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 910;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.cart-panel.open {
  transform: translateX(0);
}
.cart-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 20px 16px;
  border-bottom: 1px solid rgba(245, 240, 232, 0.08);
  flex-shrink: 0;
}
.cart-panel-title {
  font-family: "DM Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.55);
  margin: 0;
}
.cart-panel-badge {
  width: 20px;
  height: 20px;
  background: var(--pink);
  border-radius: 50%;
  font-size: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 8px;
  color: #fff;
}
.cart-panel-close {
  border: 1px solid rgba(245, 240, 232, 0.2);
  background: transparent;
  color: var(--offwhite);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s;
}
.cart-panel-close:hover {
  border-color: var(--pink);
}
.cart-panel-body {
  flex: 1;
  overflow-y: auto;
  padding: 12px 0;
  scrollbar-width: thin;
  scrollbar-color: rgba(245, 240, 232, 0.15) transparent;
}
.cart-panel-body::-webkit-scrollbar {
  width: 4px;
}
.cart-panel-body::-webkit-scrollbar-thumb {
  background: rgba(245, 240, 232, 0.15);
  border-radius: 2px;
}
.cart-empty {
  text-align: center;
  color: rgba(245, 240, 232, 0.35);
  padding: 48px 20px;
  font-size: 13px;
}
/* cart item rows */
.cp-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(245, 240, 232, 0.06);
}
.cp-thumb {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
  background: rgba(245, 240, 232, 0.06);
}
.cp-info {
  flex: 1;
  min-width: 0;
}
.cp-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--offwhite);
  display: block;
  margin-bottom: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-decoration: none;
}
.cp-name:hover {
  color: var(--pink);
}
.cp-price {
  font-size: 12px;
  color: rgba(245, 240, 232, 0.45);
  display: block;
  margin-bottom: 8px;
}
.cp-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.cp-qty {
  display: flex;
  align-items: center;
  gap: 2px;
  border: 1px solid rgba(245, 240, 232, 0.12);
  border-radius: 999px;
  padding: 2px 6px;
  background: rgba(245, 240, 232, 0.04);
}
.cp-qty-btn {
  border: none;
  background: none;
  color: var(--offwhite);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}
.cp-qty-btn:hover {
  background: rgba(245, 240, 232, 0.1);
}
.cp-qty-btn:disabled {
  opacity: 0.3;
  cursor: default;
}
.cp-qty-val {
  min-width: 20px;
  text-align: center;
  font-size: 12px;
  color: var(--offwhite);
}
.cp-del {
  border: none;
  background: none;
  color: #e74c3c;
  font-size: 15px;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  transition: opacity 0.15s;
}
.cp-del:hover {
  opacity: 1;
}
.cp-subtotal {
  font-size: 13px;
  font-weight: 700;
  color: var(--pink);
}
.cart-panel-foot {
  padding: 16px 20px;
  border-top: 1px solid rgba(245, 240, 232, 0.08);
  flex-shrink: 0;
}
.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  font-size: 14px;
  color: var(--offwhite);
}
.cart-total-amount {
  font-size: 18px;
  font-weight: 700;
  color: var(--pink);
}
.cart-checkout-btn {
  display: block;
  width: 100%;
  background: var(--pink);
  color: #fff;
  border: none;
  padding: 14px 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s;
}
.cart-checkout-btn:hover {
  background: #c4233f;
}
/* vaciar btn */
.cart-clear-btn {
  background: none;
  border: 1px solid rgba(245, 240, 232, 0.12);
  color: rgba(245, 240, 232, 0.35);
  font-size: 11px;
  padding: 6px 12px;
  cursor: pointer;
  margin-top: 8px;
  width: 100%;
  transition:
    color 0.2s,
    border-color 0.2s;
}
.cart-clear-btn:hover {
  color: #e74c3c;
  border-color: #e74c3c;
}
/* toast */
.cart-toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(16px);
  background: #1a1a1a;
  border: 1px solid rgba(245, 240, 232, 0.12);
  color: var(--offwhite);
  font-size: 12px;
  padding: 10px 18px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.25s,
    transform 0.25s,
    visibility 0.25s;
  z-index: 950;
  white-space: nowrap;
}
.cart-toast.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.cart-toast.toast-error {
  border-color: rgba(231, 76, 60, 0.5);
  color: #e74c3c;
}

/* ─── FLASH TOASTS (top-right, below nav) ─── */
.flash-stack {
  position: fixed;
  top: 68px;
  right: 16px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 320px;
  pointer-events: none;
}
.flash-toast {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 13px 14px;
  background: #181818;
  border-left: 3px solid rgba(245, 240, 232, 0.2);
  border-top: 1px solid rgba(245, 240, 232, 0.1);
  border-right: 1px solid rgba(245, 240, 232, 0.1);
  border-bottom: 1px solid rgba(245, 240, 232, 0.1);
  color: var(--offwhite);
  font-size: 13px;
  line-height: 1.45;
  pointer-events: all;
  animation: flashSlideIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes flashSlideIn {
  from {
    opacity: 0;
    transform: translateX(28px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.flash-toast.flash-out {
  animation: flashSlideOut 0.28s ease forwards;
}
@keyframes flashSlideOut {
  to {
    opacity: 0;
    transform: translateX(28px);
  }
}
.flash-toast.flash-success {
  border-left-color: #4ad482;
}
.flash-toast.flash-success .flash-icon {
  color: #4ad482;
}
.flash-toast.flash-error,
.flash-toast.flash-danger {
  border-left-color: var(--pink);
}
.flash-toast.flash-error .flash-icon,
.flash-toast.flash-danger .flash-icon {
  color: var(--pink);
}
.flash-toast.flash-warning {
  border-left-color: #ffb432;
}
.flash-toast.flash-warning .flash-icon {
  color: #ffb432;
}
.flash-toast.flash-info {
  border-left-color: var(--teal);
}
.flash-toast.flash-info .flash-icon {
  color: var(--teal);
}
.flash-icon {
  font-size: 15px;
  flex-shrink: 0;
  margin-top: 1px;
}
.flash-msg {
  flex: 1;
}
.flash-close {
  flex-shrink: 0;
  background: none;
  border: none;
  color: rgba(245, 240, 232, 0.3);
  font-size: 17px;
  line-height: 1;
  cursor: pointer;
  padding: 0 2px;
  margin-top: -1px;
  transition: color 0.15s;
}
.flash-close:hover {
  color: var(--offwhite);
}
.nav-menu-btn {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(245, 240, 232, 0.2);
  background: transparent;
  padding: 10px 9px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.nav-menu-btn span {
  width: 100%;
  height: 1.5px;
  background: var(--offwhite);
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}
.nav-menu-btn.active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-menu-btn.active span:nth-child(2) {
  opacity: 0;
}
.nav-menu-btn.active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.offcanvas-backdrop,
.offcanvas-menu {
  display: none;
}
.offcanvas-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(2px);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease;
  z-index: 820;
}
.offcanvas-backdrop.open {
  opacity: 1;
  visibility: visible;
}
.offcanvas-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: min(86vw, 340px);
  height: 100vh;
  background: #0b0b0b;
  border-left: 1px solid rgba(245, 240, 232, 0.08);
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 830;
  padding: 22px 18px 24px;
}
.offcanvas-menu.open {
  transform: translateX(0);
}
.offcanvas-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.offcanvas-title {
  font-family: "DM Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.55);
}
.offcanvas-close {
  border: 1px solid rgba(245, 240, 232, 0.2);
  background: transparent;
  color: var(--offwhite);
  width: 36px;
  height: 36px;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}
.offcanvas-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.offcanvas-links a {
  display: block;
  width: 100%;
  text-decoration: none;
  color: var(--offwhite);
  border: 1px solid rgba(245, 240, 232, 0.14);
  background: rgba(245, 240, 232, 0.02);
  padding: 13px 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
/* ─── OFFCANVAS SEARCH ─── */
.offcanvas-search {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(245, 240, 232, 0.08);
  padding-bottom: 20px;
}
.offcanvas-search-row {
  display: flex;
  gap: 0;
  border: 1px solid rgba(245, 240, 232, 0.18);
  background: rgba(245, 240, 232, 0.03);
  overflow: hidden;
}
.offcanvas-search-row:focus-within {
  border-color: var(--teal);
}
.offcanvas-search-select {
  background: transparent;
  border: none;
  outline: none;
  color: rgba(245, 240, 232, 0.55);
  font-family: "Syne", sans-serif;
  padding: 10px 8px;
  flex: 1;
  appearance: none;
  -webkit-appearance: none;
  border-right: 1px solid rgba(245, 240, 232, 0.12);
}
.offcanvas-search-select option {
  background: #111;
  color: var(--offwhite);
}
.offcanvas-search-input {
  background: transparent;
  border: none;
  outline: none;
  color: var(--offwhite);
  font-family: "DM Mono", monospace;
  font-size: 12px;
  padding: 10px 10px;
  flex: 1;
  min-width: 0;
}
.offcanvas-search-input::placeholder {
  color: rgba(245, 240, 232, 0.3);
}
.offcanvas-search-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  border-left: 1px solid rgba(245, 240, 232, 0.18);
  color: var(--offwhite);
  cursor: pointer;
  transition:
    color 0.2s,
    background 0.2s;
}
.offcanvas-search-btn:hover {
  color: var(--teal);
  background: rgba(74, 172, 170, 0.08);
}
.offcanvas-links a:hover {
  border-color: var(--pink);
}

/* ─── SECTION: HERO SPLINE ─── */
/* ─── SECTION: HERO GEOMETRIC ─── */
#hero.hero-geo {
  position: relative;
  min-height: 100svh;
  background: #030303;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-geo-bg-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 80% 60% at 20% 40%,
      rgba(99, 102, 241, 0.05) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 80% 60% at 80% 60%,
      rgba(255, 63, 122, 0.05) 0%,
      transparent 60%
    );
  filter: blur(40px);
  pointer-events: none;
  z-index: 2;
}
.hero-geo-slides {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero-geo-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  animation: heroBgCycle 16s ease-in-out infinite;
}
.hero-geo-slide-overlay {
  position: absolute;
  inset: 0;
  background: rgba(3, 3, 3, 0.6);
  z-index: 2;
  pointer-events: none;
}
.slide-1 {
  animation-name: heroBgCycle1;
}
.slide-2 {
  animation-delay: 7.2s;
}
/* slide-1 starts VISIBLE — Lighthouse registers it as the LCP element */
@keyframes heroBgCycle1 {
  0% {
    opacity: 1;
  }
  45% {
    opacity: 1;
  }
  55% {
    opacity: 0;
  }
  90% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* slide-2 fades in when slide-1 fades out */
@keyframes heroBgCycle {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  45% {
    opacity: 1;
  }
  55% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.hero-geo-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}
.hero-shape {
  position: absolute;
  border-radius: 9999px;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 32px rgba(255, 255, 255, 0.08);
  opacity: 0;
  animation:
    heroShapeIn 2.4s cubic-bezier(0.23, 0.86, 0.39, 0.96) var(--delay, 0s) both,
    heroShapeFloat 12s ease-in-out calc(var(--delay, 0s) + 2.4s) infinite;
}
@keyframes heroShapeIn {
  from {
    opacity: 0;
    transform: translateY(-150px) rotate(calc(var(--rot, 0deg) - 15deg));
  }
  to {
    opacity: 1;
    transform: translateY(0) rotate(var(--rot, 0deg));
  }
}
@keyframes heroShapeFloat {
  0%,
  100% {
    transform: translateY(0) rotate(var(--rot, 0deg));
  }
  50% {
    transform: translateY(15px) rotate(var(--rot, 0deg));
  }
}
.shape-1 {
  --rot: 12deg;
  --delay: 0.3s;
  width: 600px;
  height: 140px;
  left: -5%;
  top: 20%;
  background: linear-gradient(to right, rgba(255, 63, 122, 0.15), transparent);
}
.shape-2 {
  --rot: -15deg;
  --delay: 0.5s;
  width: 500px;
  height: 120px;
  right: 0%;
  top: 75%;
  background: linear-gradient(to right, rgba(74, 172, 170, 0.15), transparent);
}
.shape-3 {
  --rot: -8deg;
  --delay: 0.4s;
  width: 300px;
  height: 80px;
  left: 10%;
  bottom: 10%;
  background: linear-gradient(to right, rgba(139, 92, 246, 0.15), transparent);
}
.shape-4 {
  --rot: 20deg;
  --delay: 0.6s;
  width: 200px;
  height: 60px;
  right: 20%;
  top: 15%;
  background: linear-gradient(to right, rgba(245, 158, 11, 0.15), transparent);
}
.shape-5 {
  --rot: -25deg;
  --delay: 0.7s;
  width: 150px;
  height: 40px;
  left: 25%;
  top: 10%;
  background: linear-gradient(to right, rgba(6, 182, 212, 0.15), transparent);
}
.hero-geo-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 120px 24px 100px;
  max-width: 920px;
  width: 100%;
}
.hero-geo-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 44px;
  opacity: 0;
  animation: heroFadeUp 1s ease 0.5s forwards;
}
.hero-geo-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 63, 122, 0.8);
  flex-shrink: 0;
}
.hero-geo-badge span:last-child {
  font-family: "DM Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.hero-geo-title {
  font-family: "Antonio", sans-serif;
  font-weight: 700;
  font-size: clamp(44px, 8vw, 100px);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
  opacity: 0;
  animation: heroFadeUp 1s ease 0.7s forwards;
}
.hero-geo-title-line1 {
  display: block;
  background: linear-gradient(to bottom, #ffffff, rgba(255, 255, 255, 0.8));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-geo-title-line2 {
  display: block;
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(
    to right,
    #a5b4fc,
    rgba(255, 255, 255, 0.9),
    #ff3f7a
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-geo-subtitle {
  font-family: "DM Mono", monospace;
  font-size: clamp(13px, 1.5vw, 16px);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.4);
  max-width: 480px;
  margin-bottom: 44px;
  opacity: 0;
  animation: heroFadeUp 1s ease 0.9s forwards;
}
.hero-cta {
  display: inline-block;
  padding: 16px 32px;
  background: var(--pink);
  color: white;
  font-family: "Antonio", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s;
  opacity: 0;
  animation: heroFadeUp 1s ease 1.1s forwards;
}
.hero-cta:hover {
  transform: scale(1.04);
}
.hero-geo-vignette {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, #030303 0%, transparent 15%),
    linear-gradient(to top, #030303 0%, transparent 15%);
  pointer-events: none;
  z-index: 5;
}
@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 768px) {
  .shape-1 {
    width: 320px;
    height: 80px;
  }
  .shape-2 {
    width: 270px;
    height: 68px;
  }
  .shape-3 {
    display: none;
  }
  .shape-4 {
    width: 130px;
    height: 40px;
  }
  .shape-5 {
    display: none;
  }
  .hero-geo-content {
    padding: 110px 20px 80px;
  }
}

/* ─── MARQUEE ─── */
.marquee-bar {
  background: var(--pink);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  z-index: 10;
}
.marquee-track {
  display: inline-flex;
  animation: marquee 16s linear infinite;
}
.m-item {
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-size: 16px;
  color: white;
  padding: 0 36px;
}
.m-dot {
  color: rgba(255, 255, 255, 0.5);
  font-style: normal;
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ─── SECTION: CATEGORIAS HORIZONTAL SCROLL ─── */
#categories {
  position: relative;
  height: calc(11 * 700px + 40vh); /* overridden by JS based on card count */
}
.cat-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.cat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 88px 64px 24px;
  flex-shrink: 0;
}
.cat-header-left .cat-label {
  font-family: "DM Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 10px;
}
.cat-header-left .cat-title {
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-size: clamp(32px, 3.2vw, 48px);
  line-height: 1;
  letter-spacing: -1px;
  color: var(--offwhite);
  margin: 0;
}
.cat-header-left .cat-title span {
  color: var(--pink);
}
.cat-header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.cat-counter {
  font-family: "DM Mono", monospace;
  font-size: 13px;
  color: rgba(245, 240, 232, 0.5);
  letter-spacing: 0.08em;
  white-space: nowrap;
}
.cat-counter em {
  color: var(--offwhite);
  font-style: normal;
}
.cat-progress-bar {
  width: 120px;
  height: 2px;
  background: rgba(245, 240, 232, 0.1);
  position: relative;
  overflow: hidden;
}
.cat-progress-fill {
  height: 100%;
  width: 0%;
  background: var(--pink);
  transition: none;
}
.cat-track-wrap {
  flex: 1;
  overflow: visible;
  position: relative;
}
.cat-track {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  padding: 16px 64px 28px;
  gap: 70px;
  height: 80%;
  will-change: transform;
  transition: none;
}
.cat-card {
  width: calc((100vw - 192px) / 5);
  aspect-ratio: 9 / 16;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(245, 240, 232, 0.06);
  cursor: pointer;
}
.cat-card:hover {
  border-color: rgba(245, 240, 232, 0.15);
}
.cat-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--pink);
  transition: width 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.cat-card.in-view::after {
  width: 100%;
}
.cat-card-bg {
  position: absolute;
  inset: 0;
}
.cat-card-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.5;
}
.cat-card-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.cat-card-num {
  position: absolute;
  top: 18px;
  left: 18px;
  font-family: "DM Mono", monospace;
  font-size: 11px;
  color: rgba(245, 240, 232, 0.25);
  letter-spacing: 0.1em;
  z-index: 2;
}
.cat-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 24px 24px;
  background: linear-gradient(
    to top,
    rgba(5, 5, 5, 0.95) 0%,
    rgba(5, 5, 5, 0.7) 50%,
    transparent 100%
  );
  z-index: 3;
}
.cat-card-tag {
  font-family: "DM Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.35);
  margin-bottom: 6px;
}
.cat-card-name {
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-size: clamp(28px, 2.4vw, 40px);
  line-height: 1;
  letter-spacing: -0.8px;
  color: var(--offwhite);
  margin-bottom: 6px;
}
.cat-card-sub {
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.35);
  margin-bottom: 14px;
}
.cat-card-link {
  font-family: "DM Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pink);
  text-decoration: none;
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
  display: inline-block;
}
.cat-card:hover .cat-card-link {
  opacity: 1;
  transform: translateY(0);
}

/* ─── SECTION: PRODUCTOS — FAN STACK ─── */
#products {
  position: relative;
  background: #e8c99a;
  height: calc(6 * 480px + 100vh);
}
#products::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(245, 240, 232, 0.08),
    transparent
  );
}
.prod-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 60px 50px;
  background: #e8c99a;
}
.prod-bg-title {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -52%);
  width: 100%;
  text-align: end;
  font-family: "Antonio", sans-serif;
  font-weight: 700;
  font-size: clamp(90px, 16vw, 230px);
  line-height: 1;
  letter-spacing: -2px;
  text-transform: uppercase;
  color: rgba(10, 10, 10, 0.5);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  z-index: 0;
}
.prod-bg-title span {
  color: rgba(232, 49, 90, 0.5);
}
.prod-header {
  position: absolute;
  top: 48px;
  left: 60px;
  right: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 2;
}
.prod-header-label {
  font-family: "DM Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(10, 10, 10, 0.45);
}
.prod-header-counter {
  font-family: "DM Mono", monospace;
  font-size: 12px;
  color: rgba(10, 10, 10, 0.3);
  letter-spacing: 0.1em;
}
.prod-header-counter strong {
  font-family: "Antonio", sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: #0a0a0a;
  transition: all 0.3s ease;
}
.prod-view-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Syne", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(10, 10, 10, 0.4);
  text-decoration: none;
  transition: color 0.2s;
}
.prod-view-all:hover {
  color: #0a0a0a;
}
.prod-view-all svg {
  transition: transform 0.3s;
}
.prod-view-all:hover svg {
  transform: translateX(4px);
}
.prod-fan-area {
  position: relative;
  height: 80vh;
  z-index: 1;
}
.pfc {
  position: absolute;
  width: 370px;
  height: 680px;
  border-radius: 28px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform: translateY(130%) rotate(0deg);
  transform-origin: bottom center;
  opacity: 0;
  transition:
    transform 0.75s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.5s ease;
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.3),
    0 0 0 2px rgba(255, 255, 255, 0.08);
}
.pfc[data-pos="0"] {
  left: calc(50% - 620px);
  --rot: -18deg;
  --tx: 52px;
  z-index: 1;
}
.pfc[data-pos="1"] {
  left: calc(50% - 430px);
  --rot: -9.5deg;
  --tx: 22px;
  z-index: 2;
}
.pfc[data-pos="2"] {
  left: calc(50% - 230px);
  --rot: -2.5deg;
  --tx: 6px;
  z-index: 3;
}
.pfc[data-pos="3"] {
  left: calc(50% - 30px);
  --rot: 2deg;
  --tx: 8px;
  z-index: 4;
}
.pfc[data-pos="4"] {
  left: calc(50% + 195px);
  --rot: 6deg;
  --tx: 24px;
  z-index: 3;
}
.pfc[data-pos="5"] {
  left: calc(50% + 430px);
  --rot: 10deg;
  --tx: 48px;
  z-index: 2;
}
.pfc.landed {
  transform: translateY(var(--tx, 0px)) rotate(var(--rot, 0deg));
  opacity: 1;
}
.pfc.landed:hover {
  transform: translateY(calc(var(--tx, 0px) - 28px)) rotate(var(--rot, 0deg))
    scale(1.04);
  z-index: 10;
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.4),
    0 0 0 2px rgba(255, 255, 255, 0.15);
  transition:
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.35s ease,
    opacity 0.5s ease;
}
.pfc-img {
  flex: 1;
  position: relative;
  overflow: hidden;
}
.pfc-img-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.pfc.landed:hover .pfc-img-bg {
  transform: scale(1.06);
}
.pfc-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 10, 10, 0.9) 0%,
    transparent 55%
  );
}
.pfc-emoji {
  position: absolute;
  right: 14px;
  top: 14px;
  font-size: 52px;
  line-height: 1;
  opacity: 0.28;
  transform: rotate(-8deg);
  pointer-events: none;
  z-index: 1;
}
.pfc-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  padding: 4px 10px;
  font-family: "DM Mono", monospace;
  font-size: 8px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--pink);
  color: white;
}
.pfc-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 14px 16px;
  z-index: 2;
}
.pfc-cat {
  font-family: "DM Mono", monospace;
  font-size: 7px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.4);
  margin-bottom: 4px;
}
.pfc-name {
  font-family: "Antonio", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 17px;
  color: var(--offwhite);
  line-height: 1;
  margin-bottom: 10px;
}
.pfc-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: var(--darker);
  flex-shrink: 0;
  border-radius: 0 0 28px 28px;
}
.pfc-price {
  font-family: "Antonio", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--pink);
}
.pfc-price-old {
  font-size: 10px;
  color: rgba(245, 240, 232, 0.25);
  text-decoration: line-through;
  margin-left: 5px;
}
.pfc-add {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--offwhite);
  border: none;
  border-radius: 50%;
  transition: background 0.2s;
  flex-shrink: 0;
}
.pfc-add:hover {
  background: var(--pink);
}
.pfc-add:hover svg path {
  stroke: white;
}
.pcb-1 {
  background: linear-gradient(145deg, #1a0808, #4a1010, #8b2020);
}
.pcb-2 {
  background: linear-gradient(145deg, #081a10, #10401a, #204a30);
}
.pcb-3 {
  background: linear-gradient(145deg, #0d0a02, #3a2a05, #6a4a10);
}
.pcb-4 {
  background: linear-gradient(145deg, #080810, #141430, #282860);
}
.pcb-5 {
  background: linear-gradient(145deg, #0a0e14, #0a2030, #103050);
}
.pcb-6 {
  background: linear-gradient(145deg, #100810, #281028, #4a1848);
}

/* ─── SECTION: MANIFIESTO ─── */
#manifesto {
  padding: 160px 48px;
  position: relative;
  overflow: hidden;
  background: var(--darker);
  text-align: center;
}
.manifesto-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at 30% 50%,
      rgba(232, 49, 90, 0.12) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse at 70% 50%,
      rgba(74, 172, 170, 0.1) 0%,
      transparent 50%
    );
}
.manifesto-label {
  font-family: "DM Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 24px;
}
.manifesto-title {
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-size: clamp(52px, 7vw, 100px);
  line-height: 0.95;
  letter-spacing: -3px;
  color: var(--offwhite);
  margin-bottom: 32px;
  position: relative;
}
.manifesto-title .word-pink {
  color: var(--pink);
}
.manifesto-title .word-teal {
  color: var(--teal);
}
.manifesto-body {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.8;
  color: rgba(245, 240, 232, 0.5);
  max-width: 560px;
  margin: 0 auto 56px;
}
.manifesto-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.btn-primary-dark {
  padding: 16px 40px;
  background: var(--pink);
  color: white;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s;
  display: inline-block;
}
.btn-primary-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #ff6b8a, var(--pink));
  transform: translateX(-101%);
  transition: transform 0.4s cubic-bezier(0.77, 0, 0.18, 1);
}
.btn-primary-dark:hover::before {
  transform: translateX(0);
}
.btn-primary-dark span {
  position: relative;
  z-index: 1;
}

.btn-outline-dark {
  padding: 16px 40px;
  background: transparent;
  color: var(--offwhite);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid rgba(245, 240, 232, 0.2);
  cursor: pointer;
  text-decoration: none;
  transition:
    border-color 0.2s,
    background 0.2s;
  display: inline-block;
}
.btn-outline-dark:hover {
  border-color: var(--teal);
  background: rgba(74, 172, 170, 0.08);
}

/* ─── STATS ROW ─── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(245, 240, 232, 0.06);
  border-bottom: 1px solid rgba(245, 240, 232, 0.06);
}
.stat-block {
  padding: 60px 48px;
  border-right: 1px solid rgba(245, 240, 232, 0.06);
  text-align: center;
}
.stat-block:last-child {
  border-right: none;
}
.stat-num {
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-size: clamp(48px, 5vw, 72px);
  color: var(--offwhite);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-num em {
  color: var(--pink);
  font-style: normal;
}
.stat-label {
  font-size: 13px;
  font-weight: 400;
  color: rgba(245, 240, 232, 0.4);
}

/* ─── FAQ ─── */
#faq {
  background: var(--darker);
  padding: 120px 48px 140px;
  position: relative;
  overflow: hidden;
}
#faq::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at 80% 20%,
      rgba(74, 172, 170, 0.07) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse at 20% 80%,
      rgba(232, 49, 90, 0.06) 0%,
      transparent 50%
    );
  pointer-events: none;
}
.faq-inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}
.faq-header {
  margin-bottom: 80px;
}
.faq-label {
  font-family: "DM Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 20px;
}
.faq-title {
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-size: clamp(44px, 6vw, 80px);
  line-height: 0.95;
  letter-spacing: -2px;
  color: var(--offwhite);
}
.faq-list {
  border-top: 1px solid rgba(245, 240, 232, 0.08);
}
.faq-item {
  border-bottom: 1px solid rgba(245, 240, 232, 0.08);
}
.faq-trigger {
  display: flex;
  align-items: flex-start;
  gap: 1.75rem;
  width: 100%;
  background: none;
  border: none;
  padding: 28px 0;
  cursor: pointer;
  text-align: left;
  color: rgba(245, 240, 232, 0.22);
  transition: color 0.25s ease;
}
.faq-trigger:hover {
  color: rgba(245, 240, 232, 0.55);
}
.faq-item[data-open] .faq-trigger {
  color: var(--offwhite);
}
.faq-num {
  font-family: "DM Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--teal);
  flex-shrink: 0;
  margin-top: 6px;
  opacity: 0.7;
  transition: opacity 0.25s;
}
.faq-item[data-open] .faq-num {
  opacity: 1;
}
.faq-question {
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-size: clamp(22px, 3.2vw, 38px);
  line-height: 1.1;
  letter-spacing: -0.5px;
  flex: 1;
  transition: color 0.25s ease;
  text-transform: uppercase;
}
.faq-item[data-open] .faq-question {
  color: var(--pink);
}
.faq-icon {
  font-family: "Syne", sans-serif;
  font-size: 22px;
  font-weight: 300;
  flex-shrink: 0;
  margin-top: 4px;
  color: rgba(245, 240, 232, 0.35);
  transition:
    transform 0.35s cubic-bezier(0.77, 0, 0.18, 1),
    color 0.25s;
  display: inline-block;
}
.faq-item[data-open] .faq-icon {
  transform: rotate(45deg);
  color: var(--pink);
}
/* Grid-row height trick — smooth with no max-height hack */
.faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.38s cubic-bezier(0.77, 0, 0.18, 1);
}
.faq-item[data-open] .faq-content {
  grid-template-rows: 1fr;
}
.faq-content-inner {
  overflow: hidden;
}
.faq-answer {
  padding: 0 0 28px 3.5rem;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.85;
  color: rgba(245, 240, 232, 0.5);
  max-width: 640px;
}
@media (max-width: 768px) {
  #faq {
    padding: 80px 24px 100px;
  }
  .faq-header {
    margin-bottom: 48px;
  }
  .faq-trigger {
    gap: 1rem;
  }
  .faq-answer {
    padding: 0 0 24px 2rem;
  }
}

/* ─── FOOTER ─── */
footer {
  background: var(--darker);
  padding: 80px 48px 40px;
  border-top: 1px solid rgba(245, 240, 232, 0.05);
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}
.footer-brand-name {
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-size: 32px;
  color: var(--offwhite);
  text-decoration: none;
  display: block;
  margin-bottom: 16px;
}
.footer-brand-name span {
  color: var(--pink);
}
.footer-tagline {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(245, 240, 232, 0.35);
  max-width: 220px;
}
.footer-col h4 {
  font-family: "DM Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.25);
  margin-bottom: 20px;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: rgba(245, 240, 232, 0.5);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.2s;
}
.footer-col a:hover {
  color: var(--offwhite);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(245, 240, 232, 0.05);
  padding-top: 32px;
}
.footer-copy {
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  color: rgba(245, 240, 232, 0.2);
}
.footer-socials {
  display: flex;
  gap: 24px;
}
.footer-socials a {
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.3);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-socials a:hover {
  color: var(--pink);
}

/* === #promesa section === */
#promesa {
  position: relative;
  background: #050505;
  padding: 120px 0 140px;
}
#promesa::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(245, 240, 232, 0.08),
    transparent
  );
}
.promesa-label {
  text-align: center;
  font-family: "DM Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.3);
  margin-bottom: 56px;
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.promesa-label.revealed {
  opacity: 1;
  transform: translateY(0);
}
.promesa-bands {
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow-x: clip;
  padding: 8px 0;
}
.banda {
  display: flex;
  align-items: center;
  padding: 20px 40px;
  position: relative;
  overflow: hidden;
  opacity: 0;
  will-change: transform, opacity;
  box-sizing: border-box;
}
.banda:nth-child(1) {
  transform: translateX(-110%) rotate(-2.5deg);
  transition:
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0s,
    opacity 0.5s ease 0s;
  align-self: center;
  width: 78%;
}
.banda:nth-child(2) {
  transform: translateX(110%) rotate(2deg);
  transition:
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.12s,
    opacity 0.5s ease 0.12s;
  align-self: center;
  width: 86%;
}
.banda:nth-child(3) {
  transform: translateX(-110%) rotate(-1.5deg);
  transition:
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.24s,
    opacity 0.5s ease 0.24s;
  align-self: center;
  width: 92%;
}
.banda:nth-child(4) {
  transform: translateX(110%) rotate(2.5deg);
  transition:
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.36s,
    opacity 0.5s ease 0.36s;
  align-self: center;
  width: 68%;
  margin-left: 4%;
}
.banda:nth-child(1).revealed {
  transform: translateX(0) rotate(-2.5deg);
  opacity: 1;
}
.banda:nth-child(2).revealed {
  transform: translateX(0) rotate(2deg);
  opacity: 1;
}
.banda:nth-child(3).revealed {
  transform: translateX(0) rotate(-1.5deg);
  opacity: 1;
}
.banda:nth-child(4).revealed {
  transform: translateX(0) rotate(2.5deg);
  opacity: 1;
}
.banda:nth-child(1):hover {
  transform: translateX(4px) rotate(-2.5deg) !important;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}
.banda:nth-child(2):hover {
  transform: translateX(-4px) rotate(2deg) !important;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}
.banda:nth-child(3):hover {
  transform: translateX(4px) rotate(-1.5deg) !important;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}
.banda:nth-child(4):hover {
  transform: translateX(-4px) rotate(2.5deg) !important;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}
.banda-1 {
  background: #e8315a;
}
.banda-2 {
  background: #f5f0e8;
}
.banda-3 {
  background: #4aacaa;
}
.banda-4 {
  background: #e8c99a;
}
.banda-text {
  font-family: "Syne", sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 4vw, 76px);
  letter-spacing: -1px;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
  flex-shrink: 1;
  min-width: 0;
}
.banda-1 .banda-text {
  color: #ffffff;
}
.banda-2 .banda-text {
  color: #0a0a0a;
}
.banda-3 .banda-text {
  color: #0a0a0a;
}
.banda-4 .banda-text {
  color: #0a0a0a;
}
.banda-icon {
  margin-left: auto;
  font-size: clamp(28px, 3.5vw, 48px);
  flex-shrink: 0;
  padding-left: 32px;
  opacity: 0.75;
}
.banda::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ── MD range: show 3 cards instead of 4-5 so it doesn't look cramped ── */
@media (min-width: 769px) and (max-width: 1100px) {
  .cat-track {
    gap: 40px;
  }
  .cat-card {
    width: calc((100vw - 248px) / 3);
  }
}

@media (max-width: 768px) {
  body {
    cursor: auto;
  }
  #cur,
  #cur-ring {
    display: none;
  }

  nav {
    padding: 14px 18px;
  }
  .nav-logo {
    font-size: 22px;
  }
  .nav-links {
    display: none;
  }
  .nav-menu-btn {
    display: inline-flex;
  }
  .nav-right {
    gap: 10px;
  }
  .nav-cart {
    font-size: 10px;
    letter-spacing: 0.06em;
    padding: 8px 12px;
  }
  .cart-dot {
    width: 16px;
    height: 16px;
    font-size: 9px;
  }
  .offcanvas-backdrop,
  .offcanvas-menu {
    display: block;
  }

  .hero-block-a {
    left: 20px;
    right: 20px;
    bottom: 110px;
  }
  .hero-title {
    font-size: clamp(34px, 8.5vw, 52px);
  }
  .hero-subtitle {
    font-size: 14px;
    max-width: 100%;
    line-height: 1.5;
  }
  .hero-block-b {
    left: 20px;
    right: auto;
    bottom: 56px;
  }
  .hero-cta {
    padding: 12px 20px;
    font-size: 11px;
  }
  #categories {
    height: auto;
    padding-bottom: 28px;
  }
  .cat-sticky {
    position: relative;
    height: auto;
    overflow: visible;
  }
  .cat-header {
    padding: 72px 20px 18px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .cat-header-right {
    width: 100%;
    justify-content: space-between;
  }
  .cat-progress-bar {
    width: 96px;
  }
  .cat-track-wrap {
    flex: none;
  }
  .cat-track {
    flex-wrap: wrap;
    justify-content: flex-start;
    padding: 10px 16px 0;
    gap: 10px;
    height: auto;
    transform: none !important;
  }
  .cat-card {
    width: 100%;
    height: 130px;
    min-height: unset;
  }
  .cat-card-content {
    padding: 14px 16px 12px;
  }
  .cat-card-name {
    font-size: clamp(17px, 4.2vw, 22px);
    margin-bottom: 2px;
  }
  .cat-card-sub {
    font-size: 9px;
    margin-bottom: 0;
  }
  .cat-card-link {
    display: none;
  }

  #promesa {
    padding: 88px 0 94px;
  }
  .promesa-label {
    margin-bottom: 34px;
    padding: 0 18px;
  }
  .banda {
    width: 94% !important;
    margin-left: 0 !important;
    padding: 16px 18px;
  }
  .banda-text {
    font-size: clamp(22px, 5.2vw, 36px);
    white-space: normal;
    line-height: 1.05;
  }

  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-block {
    padding: 34px 20px;
  }
  .stat-num {
    font-size: clamp(34px, 8vw, 52px);
  }

  #products {
    height: calc(6 * 360px + 100vh);
  }
  .prod-sticky {
    padding: 0 18px 30px;
    justify-content: center;
  }
  .prod-bg-title {
    top: 18%;
    font-size: clamp(52px, 15vw, 110px);
    text-align: center;
    white-space: normal;
  }
  .prod-header {
    top: 72px;
    left: 18px;
    right: 18px;
  }
  .prod-view-all {
    display: none;
  }
  .prod-fan-area {
    height: 68vh;
    margin-top: 42px;
  }
  .pfc {
    width: min(76vw, 340px);
    height: 60vh;
    min-height: 430px;
    max-height: 560px;
    left: 50% !important;
    top: 50%;
    transform: translate(-50%, 150%) scale(0.96);
    --rot: 0deg;
    --tx: 0px;
    transition:
      transform 1.15s cubic-bezier(0.16, 1, 0.3, 1),
      opacity 0.8s ease;
  }
  .pfc[data-pos="0"] {
    --m-offset: 30px;
    z-index: 1;
  }
  .pfc[data-pos="1"] {
    --m-offset: 20px;
    z-index: 2;
  }
  .pfc[data-pos="2"] {
    --m-offset: 10px;
    z-index: 3;
  }
  .pfc[data-pos="3"] {
    --m-offset: 0px;
    z-index: 4;
  }
  .pfc[data-pos="4"] {
    --m-offset: -10px;
    z-index: 5;
  }
  .pfc[data-pos="5"] {
    --m-offset: -20px;
    z-index: 6;
  }
  .pfc.landed {
    transform: translate(-50%, calc(-50% + var(--m-offset, 0px))) scale(1);
  }
  .pfc.landed:hover {
    transform: translate(-50%, calc(-50% + var(--m-offset, 0px))) scale(1);
    box-shadow:
      0 24px 60px rgba(0, 0, 0, 0.3),
      0 0 0 2px rgba(255, 255, 255, 0.08);
  }

  #manifesto {
    padding: 108px 20px;
  }
  .manifesto-title {
    font-size: clamp(42px, 12vw, 70px);
    letter-spacing: -1.6px;
  }
  .manifesto-body {
    font-size: 15px;
    line-height: 1.65;
    margin-bottom: 38px;
  }

  footer {
    padding: 64px 20px 28px;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-bottom: 40px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .footer-socials {
    flex-wrap: wrap;
    gap: 14px;
  }
}

@media (max-width: 576px) {
  .m-item {
    font-size: 13px;
    padding: 0 18px;
  }

  .cat-header {
    padding: 66px 16px 14px;
  }
  .cat-track {
    flex-direction: column;
    flex-wrap: nowrap;
    padding: 10px 16px 0;
    gap: 12px;
    transform: none !important;
  }
  .cat-card {
    width: 100%;
    min-height: 280px;
  }
  .cat-card-content {
    padding: 22px 16px 16px;
  }
  .cat-card-name {
    font-size: clamp(19px, 6.2vw, 28px);
  }

  .promesa-bands {
    gap: 10px;
  }
  .banda {
    width: 100% !important;
    transform: translateX(0) rotate(0) !important;
  }
  .banda:nth-child(1).revealed,
  .banda:nth-child(2).revealed,
  .banda:nth-child(3).revealed,
  .banda:nth-child(4).revealed {
    transform: translateX(0) rotate(0) !important;
  }
  .banda:nth-child(1):hover,
  .banda:nth-child(2):hover,
  .banda:nth-child(3):hover,
  .banda:nth-child(4):hover {
    transform: translateX(0) rotate(0) !important;
  }

  #products {
    height: calc(6 * 340px + 100vh);
  }
  .prod-header {
    top: 66px;
    left: 16px;
    right: 16px;
  }
  .prod-header-label {
    font-size: 10px;
  }
  .prod-header-counter strong {
    font-size: 18px;
  }
  .pfc {
    width: min(84vw, 320px);
    min-height: 390px;
    height: 56vh;
  }

  .stats-row {
    grid-template-columns: 1fr;
  }
  .stat-block {
    border-right: none;
    border-bottom: 1px solid rgba(245, 240, 232, 0.06);
  }
  .stat-block:last-child {
    border-bottom: none;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }
  .footer-brand-name {
    font-size: 28px;
  }
}

/* ─── REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.rd1 {
  transition-delay: 0.1s;
}
.rd2 {
  transition-delay: 0.2s;
}
.rd3 {
  transition-delay: 0.3s;
}
.rd4 {
  transition-delay: 0.4s;
}

/* ─── LOADING ─── */
#loader {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    opacity 0.6s ease,
    visibility 0.6s ease;
}
#loader.gone {
  opacity: 0;
  visibility: hidden;
}
.loader-text {
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-size: 40px;
  color: var(--offwhite);
  animation: loaderPulse 1s ease infinite alternate;
}
.loader-text span {
  color: var(--pink);
}
@keyframes loaderPulse {
  from {
    opacity: 0.3;
  }
  to {
    opacity: 1;
  }
}
/* ── Cart Bootstrap-compat: resets within cart panel so refreshed cartHtml looks OK */
#cartPanelContent .d-flex {
  display: flex;
}
#cartPanelContent .flex-column {
  flex-direction: column;
}
#cartPanelContent .flex-grow-1 {
  flex: 1;
}
#cartPanelContent .align-items-center {
  align-items: center;
}
#cartPanelContent .justify-content-between {
  justify-content: space-between;
}
#cartPanelContent .justify-content-center {
  justify-content: center;
}
#cartPanelContent .gap-2 {
  gap: 8px;
}
#cartPanelContent .gap-3 {
  gap: 12px;
}
#cartPanelContent .mb-1 {
  margin-bottom: 4px;
}
#cartPanelContent .mb-2 {
  margin-bottom: 8px;
}
#cartPanelContent .mb-3 {
  margin-bottom: 12px;
}
#cartPanelContent .mt-1 {
  margin-top: 4px;
}
#cartPanelContent .mt-auto {
  margin-top: auto;
}
#cartPanelContent .px-2 {
  padding-left: 8px;
  padding-right: 8px;
}
#cartPanelContent .px-4 {
  padding-left: 16px;
  padding-right: 16px;
}
#cartPanelContent .py-5 {
  padding-top: 32px;
  padding-bottom: 32px;
}
#cartPanelContent .py-1 {
  padding: 4px;
}
#cartPanelContent .pt-3 {
  padding-top: 12px;
}
#cartPanelContent .pb-3 {
  padding-bottom: 12px;
}
#cartPanelContent .mx-1 {
  margin-left: 4px;
  margin-right: 4px;
}
#cartPanelContent .overflow-auto {
  overflow: auto;
}
#cartPanelContent .text-center {
  text-align: center;
}
#cartPanelContent .text-decoration-none {
  text-decoration: none;
}
#cartPanelContent .small {
  font-size: 11px;
}
#cartPanelContent .fw-semibold {
  font-weight: 600;
}
#cartPanelContent .fw-bold {
  font-weight: 700;
}
#cartPanelContent .fs-5 {
  font-size: 16px;
}
#cartPanelContent .fs-4 {
  font-size: 18px;
}
#cartPanelContent .w-100 {
  width: 100%;
}
#cartPanelContent .opacity-50 {
  opacity: 0.5;
}
#cartPanelContent .rounded-3,
.rounded-pill,
.rounded {
  border-radius: 8px;
}
#cartPanelContent .border {
  border: 1px solid rgba(245, 240, 232, 0.12);
}
#cartPanelContent .border-top {
  border-top: 1px solid rgba(245, 240, 232, 0.12);
}
#cartPanelContent .bg-light {
  background: rgba(245, 240, 232, 0.08);
}
#cartPanelContent .bg-white {
  background: #111;
}
#cartPanelContent .shadow-sm {
  box-shadow: none;
}
#cartPanelContent .text-dark {
  color: var(--offwhite);
}
#cartPanelContent .text-muted {
  color: rgba(245, 240, 232, 0.45);
}
#cartPanelContent .text-primary {
  color: var(--pink);
}
#cartPanelContent .text-success,
#cartPanelContent .text-success {
  color: var(--pink);
}
#cartPanelContent .cart-total-sticky {
  background: #111;
  border-top: 1px solid rgba(245, 240, 232, 0.08);
}
#cartPanelContent .btn {
  display: inline-block;
  padding: 8px 16px;
  font-size: 12px;
  cursor: pointer;
  text-align: center;
}
#cartPanelContent .btn-success {
  background: var(--pink);
  color: #fff;
  border: none;
}
#cartPanelContent .btn-success:hover {
  background: #c4233f;
}
#cartPanelContent .btn-lg {
  padding: 12px 20px;
  font-size: 13px;
}
#cartPanelContent .btn-link {
  background: none;
  border: none;
  color: var(--pink);
  cursor: pointer;
}
#cartPanelContent .badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 6px;
  border-radius: 999px;
  font-size: 10px;
}
#cartPanelContent .bg-success {
  background: var(--pink);
}
#cartPanelContent .cart-item-row {
  padding: 12px 16px;
  border-bottom: 1px solid rgba(245, 240, 232, 0.06);
}
#cartPanelContent .cart-item-divider {
}
#cartPanelContent .cart-thumb {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
}
#cartPanelContent .cart-qty-group {
  display: flex;
  align-items: center;
  gap: 2px;
  border: 1px solid rgba(245, 240, 232, 0.12);
  border-radius: 999px;
  padding: 2px 6px;
  background: rgba(245, 240, 232, 0.04);
}
#cartPanelContent .cart-qty-btn {
  border: none;
  background: none;
  color: var(--offwhite);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
}
#cartPanelContent .cart-qty-btn:disabled {
  opacity: 0.3;
}
#cartPanelContent .cart-delete-btn {
  color: #e74c3c;
  background: none;
  border: none;
  cursor: pointer;
  opacity: 0.75;
}

/* ─── SECTION: OFFERS CAROUSEL ─── */
#offers-carousel {
  padding: 60px 0 72px;
  position: relative;
  z-index: 10;
}
.oc-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}
.oc-box {
  background: #111;
  border: 1px solid rgba(245, 240, 232, 0.1);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.45);
}
.oc-grid {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 40px;
  align-items: center;
}
/* Left offer panel */
.oc-offer-panel {
  display: flex;
  flex-direction: column;
}
.oc-offer-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.oc-offer-icon {
  width: 40px;
  height: 40px;
  background: rgba(232, 49, 90, 0.1);
  border: 1px solid rgba(232, 49, 90, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pink);
  flex-shrink: 0;
}
.oc-offer-icon svg {
  width: 18px;
  height: 18px;
}
.oc-offer-tag {
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.4);
  line-height: 1.5;
}
.oc-offer-title {
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-size: clamp(22px, 2.2vw, 34px);
  line-height: 1.08;
  letter-spacing: -0.5px;
  color: var(--pink);
  margin-bottom: 10px;
}
.oc-offer-subtitle {
  font-family: "DM Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: rgba(245, 240, 232, 0.4);
  line-height: 1.65;
  margin-bottom: 28px;
}
.oc-offer-btn {
  display: inline-block;
  padding: 11px 20px;
  border: 1px solid rgba(245, 240, 232, 0.2);
  background: transparent;
  color: var(--offwhite);
  font-family: "Syne", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border-radius: 6px;
  transition:
    background 0.2s,
    color 0.2s,
    border-color 0.2s;
  text-align: center;
}
.oc-offer-btn:hover {
  background: rgba(245, 240, 232, 0.06);
  border-color: rgba(245, 240, 232, 0.4);
}
/* Right carousel panel */
.oc-carousel-wrap {
  position: relative;
  min-width: 0;
}
.oc-track-wrap {
  overflow-x: auto;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  width: 100%;
}
.oc-track-wrap::-webkit-scrollbar {
  display: none;
}
.oc-track {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  gap: 16px;
  padding: 4px 2px 16px;
}
/* Cards — exactly 3 visible at desktop */
.oc-card {
  flex: 0 0 calc((100% - 32px) / 3);
  min-width: 0;
  background: #0d0d0d;
  border: 1px solid rgba(245, 240, 232, 0.08);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  transition:
    border-color 0.25s,
    transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.3s;
}
.oc-card:hover {
  border-color: rgba(232, 49, 90, 0.4);
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.5);
}
.oc-card-img-wrap {
  position: relative;
  height: 160px;
  overflow: hidden;
  background: rgba(245, 240, 232, 0.04);
  flex-shrink: 0;
}
.oc-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.oc-card:hover .oc-card-img {
  transform: scale(1.05);
}
.oc-card-body {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.oc-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 6px;
}
.oc-card-name {
  font-family: "Syne", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--offwhite);
  line-height: 1.35;
  flex: 1;
  min-width: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.oc-card-rating {
  display: flex;
  align-items: center;
  gap: 3px;
  background: rgba(74, 172, 170, 0.1);
  border: 1px solid rgba(74, 172, 170, 0.22);
  border-radius: 999px;
  padding: 3px 8px;
  flex-shrink: 0;
  font-family: "DM Mono", monospace;
  font-size: 10px;
  color: var(--teal);
  white-space: nowrap;
}
.oc-card-rating svg {
  width: 10px;
  height: 10px;
  fill: var(--teal);
}
.oc-card-sub {
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.3);
  margin-bottom: 12px;
  flex: 1;
}
.oc-card-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: auto;
}
.oc-card-price {
  font-family: "Antonio", sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--offwhite);
  letter-spacing: -0.3px;
}
.oc-add-btn {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--pink, #e8315a);
  border: none;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.15s;
}
.oc-add-btn:hover {
  background: #c42048;
  transform: scale(1.1);
}
/* Nav buttons */
.oc-nav-btn {
  position: absolute;
  top: calc(50% - 8px);
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #1a1a1a;
  border: 1px solid rgba(245, 240, 232, 0.18);
  color: var(--offwhite);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
  transition:
    border-color 0.2s,
    background 0.2s;
  opacity: 0;
  pointer-events: none;
}
.oc-nav-btn.visible {
  opacity: 1;
  pointer-events: auto;
}
.oc-nav-btn:hover {
  border-color: rgba(232, 49, 90, 0.6);
  background: rgba(232, 49, 90, 0.12);
}
.oc-nav-btn svg {
  width: 16px;
  height: 16px;
  pointer-events: none;
}
.oc-nav-prev {
  left: -18px;
}
.oc-nav-next {
  right: -18px;
}
/* Empty state */
.oc-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
  color: rgba(245, 240, 232, 0.2);
  font-family: "DM Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.1em;
}
/* Responsive */
@media (max-width: 1024px) {
  .oc-grid {
    grid-template-columns: 200px 1fr;
    gap: 28px;
  }
}
@media (max-width: 860px) {
  .oc-container {
    padding: 0 20px;
  }
  .oc-box {
    padding: 24px 20px;
    border-radius: 16px;
  }
  .oc-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .oc-offer-panel {
    text-align: center;
    align-items: center;
  }
  .oc-offer-btn {
    max-width: 220px;
  }
  /* 2 cards on tablet */
  .oc-card {
    flex: 0 0 calc((100% - 16px) / 2);
  }
  .oc-nav-btn {
    display: none;
  }
}
@media (max-width: 520px) {
  /* 1 card on mobile */
  .oc-card {
    flex: 0 0 calc(100% - 32px);
  }
  .oc-offer-title {
    font-size: 28px;
  }
}
#cartPanelContent .cart-delete-btn:hover {
  opacity: 1;
}
#cartPanelContent .cart-product-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--offwhite);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
#cartPanelContent .cart-product-name:hover {
  color: var(--pink);
}
#cartPanelContent .cart-unit-price {
  font-size: 12px;
  color: rgba(245, 240, 232, 0.45);
}
#cartPanelContent .cart-subtotal {
  font-size: 13px;
  font-weight: 700;
  color: var(--pink);
}
#cartPanelContent .position-relative {
  position: relative;
}
/* Total sticky stays at bottom */
#cartPanelContent .cart-total-sticky {
  position: sticky;
  bottom: 0;
}
