*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold: #b8973a;
  --gold-light: #d4af5a;
  --gold-pale: #f5edd6;
  --dark: #1a1612;
  --dark2: #2c2418;
  --gray: #7a7068;
  --light: #faf8f4;
  --white: #fff;
  --border: #e8e0d0;
  --radius: 16px;
  --shadow: 0 4px 32px rgba(0,0,0,.08);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--white);
  color: var(--dark);
  -webkit-font-smoothing: antialiased;
}

/* ── NAVBAR ── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.90);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 56px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  font-size: 20px;
  color: var(--dark);
  text-decoration: none;
  flex-shrink: 0;
  letter-spacing: .04em;
}
.logo-icon { font-size: 20px; }
.nav-links {
  display: flex;
  list-style: none;
  gap: 28px;
  flex: 1;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--dark);
  text-decoration: none;
  opacity: .75;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: opacity .2s;
}
.nav-links a:hover { opacity: 1; }
.cart-btn {
  margin-left: auto;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--dark);
  position: relative;
  display: flex;
  align-items: center;
  padding: 4px;
}
.cart-count {
  position: absolute;
  top: -4px;
  right: -6px;
  background: var(--gold);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* ── TICKER ── */
.ticker-wrap {
  background: var(--dark);
  overflow: hidden;
  height: 38px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.ticker-inner {
  display: flex;
  width: max-content;
  animation: ticker 40s linear infinite;
  will-change: transform;
}
.ticker-wrap:hover .ticker-inner { animation-play-state: paused; }
.ticker-track {
  display: flex;
  align-items: center;
  height: 38px;
  white-space: nowrap;
  flex-shrink: 0;
}
.ticker-item {
  font-size: 12px;
  font-weight: 500;
  color: #d4c9b0;
  padding: 0 24px;
  flex-shrink: 0;
  letter-spacing: .04em;
}
.ticker-sep {
  color: var(--gold);
  font-size: 14px;
  flex-shrink: 0;
}
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── HERO ── */
.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px 60px;
  display: flex;
  align-items: center;
  gap: 64px;
  min-height: 520px;
}
.hero-content { flex: 1; }
.hero-eyebrow {
  font-size: 12px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.hero h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(52px, 6vw, 80px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -.01em;
  color: var(--dark);
  margin-bottom: 24px;
  font-style: italic;
}
.hero-sub {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 400px;
}
.hero-img {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-perfume-display {
  position: relative;
  width: 280px;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-bottle {
  font-size: 180px;
  line-height: 1;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 20px 60px rgba(184,151,58,.25));
  animation: floatBottle 4s ease-in-out infinite;
}
.hero-bottle-glow {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 60px;
  background: radial-gradient(ellipse, rgba(184,151,58,.2) 0%, transparent 70%);
  border-radius: 50%;
}
@keyframes floatBottle {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--dark);
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 14px 32px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: background .2s, transform .15s;
  font-family: inherit;
}
.btn-primary:hover { background: var(--dark2); transform: scale(1.02); }
.btn-primary.full { width: 100%; border-radius: 8px; padding: 16px; font-size: 14px; }

/* ── PRODUCTOS ── */
.productos {
  background: var(--light);
  padding: 80px 24px;
}
.section-title {
  text-align: center;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  font-style: italic;
  letter-spacing: -.01em;
  color: var(--dark);
}
.section-sub {
  text-align: center;
  color: var(--gray);
  font-size: 14px;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-top: 10px;
  margin-bottom: 52px;
}
.productos-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 28px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform .3s, box-shadow .3s;
  border: 1px solid var(--border);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 56px rgba(0,0,0,.12);
}
.product-img {
  background: var(--light);
  height: 280px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
  transition: transform .4s ease;
}
.product-card:hover .product-img img {
  transform: scale(1.06) translateY(-4px);
}

.product-info {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-badge {
  display: inline-block;
  background: var(--gold-pale);
  color: var(--gold);
  font-size: 10px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.product-brand {
  font-size: 11px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.product-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 20px;
  font-weight: 600;
  font-style: italic;
  color: var(--dark);
  margin-bottom: 4px;
  line-height: 1.2;
}
.product-storage {
  font-size: 12px;
  color: var(--gray);
  margin-bottom: 12px;
  letter-spacing: .02em;
}
.color-swatches {
  display: flex;
  gap: 7px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.swatch {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  padding: 0;
  transition: transform .15s, border-color .15s;
  box-shadow: 0 0 0 1px rgba(0,0,0,.15);
}
.swatch:hover { transform: scale(1.2); }
.swatch.active {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px rgba(0,0,0,.1), 0 0 0 3px rgba(184,151,58,.3);
}
.product-notes {
  font-size: 11px;
  color: var(--gray);
  margin-bottom: 14px;
  line-height: 1.5;
  font-style: italic;
}
.product-price {
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
  margin-top: auto;
}
.product-price span {
  font-size: 12px;
  font-weight: 400;
  color: var(--gray);
}
.add-btn {
  width: 100%;
  background: var(--dark);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  font-family: inherit;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: background .2s, transform .15s;
}
.add-btn:hover { background: var(--dark2); transform: scale(1.02); }
.add-btn.added { background: #5a8a5a; }

/* ── NOSOTROS ── */
.nosotros { padding: 80px 24px; }
.nosotros-inner {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}
.nosotros h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  font-style: italic;
  letter-spacing: -.01em;
  margin-bottom: 52px;
}
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}
.feature {
  background: var(--light);
  border-radius: var(--radius);
  padding: 36px 28px;
  border: 1px solid var(--border);
}
.feature-icon { font-size: 36px; margin-bottom: 16px; }
.feature h3 { font-size: 17px; font-weight: 600; margin-bottom: 10px; }
.feature p { font-size: 14px; color: var(--gray); line-height: 1.7; }

/* ── FOOTER ── */
.footer {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,.06);
  font-size: 13px;
  color: #9a9080;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 52px 24px 36px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-col h4 {
  font-size: 11px;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 16px;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.footer-col p { line-height: 1.8; font-size: 13px; }
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  margin-bottom: 14px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: .04em;
}
.footer-desc { font-size: 13px; line-height: 1.8; max-width: 240px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  text-align: center;
  padding: 20px 24px;
  font-size: 12px;
  color: #5a5048;
}
@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
}

/* ── CART SIDEBAR ── */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.4);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.cart-overlay.active { opacity: 1; pointer-events: all; }

.cart-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: 400px;
  max-width: 100vw;
  height: 100%;
  background: var(--white);
  z-index: 201;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  box-shadow: -8px 0 40px rgba(0,0,0,.12);
}
.cart-sidebar.open { transform: translateX(0); }

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  border-bottom: 1px solid var(--border);
}
.cart-header h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 22px;
  font-weight: 600;
  font-style: italic;
}
.close-btn {
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: var(--gray);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background .2s;
}
.close-btn:hover { background: var(--light); }

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px;
}
.cart-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.cart-item-img {
  width: 64px;
  height: 64px;
  background: var(--light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid var(--border);
  overflow: hidden;
}
.cart-item-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6px;
}
.cart-item-info { flex: 1; }
.cart-item-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 16px;
  font-weight: 600;
  font-style: italic;
}
.cart-item-storage { font-size: 12px; color: var(--gray); margin-top: 2px; }
.cart-item-price { font-size: 14px; font-weight: 600; color: var(--gold); margin-top: 4px; }
.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 8px;
}
.qty-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: none;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}
.qty-btn:hover { background: var(--light); }
.qty-num { font-size: 14px; font-weight: 600; min-width: 20px; text-align: center; }

.cart-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--border);
}
.cart-total {
  display: flex;
  justify-content: space-between;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
}
.cart-empty {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--gray);
  font-size: 15px;
}

/* ── MODAL ── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.modal-overlay.active { display: flex; }

.modal {
  background: var(--white);
  border-radius: 20px;
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px;
  position: relative;
  box-shadow: 0 24px 80px rgba(0,0,0,.2);
  animation: modalIn .3s cubic-bezier(.4,0,.2,1);
  margin: auto;
}
@keyframes modalIn {
  from { opacity: 0; transform: scale(.95) translateY(16px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.modal h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 26px;
  font-weight: 600;
  font-style: italic;
  margin-bottom: 24px;
  letter-spacing: -.01em;
}
.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--light);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  transition: background .2s;
}
.modal-close:hover { background: var(--border); }

.btn-back {
  background: none;
  border: none;
  color: var(--gold);
  font-size: 14px;
  cursor: pointer;
  font-family: inherit;
  padding: 0;
  margin-bottom: 16px;
  display: block;
}

/* ── FORMS ── */
.form-group { margin-bottom: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 6px;
  letter-spacing: .06em;
  text-transform: uppercase;
}
input[type="text"],
input[type="email"],
input[type="tel"] {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  color: var(--dark);
  background: var(--white);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,151,58,.15);
}
input.error { border-color: #c0392b; }

/* ── PAYMENT TABS ── */
.payment-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.pay-tab {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  background: none;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  font-family: inherit;
  color: var(--gray);
  transition: all .2s;
}
.pay-tab.active {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-pale);
}

/* ── CARD PREVIEW ── */
.card-preview {
  background: linear-gradient(135deg, #1a1612 0%, #2c2418 100%);
  border-radius: 14px;
  padding: 24px;
  color: #fff;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.card-preview::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(184,151,58,.12);
}
.card-preview-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}
.card-chip {
  width: 40px;
  height: 30px;
  background: linear-gradient(135deg, #b8973a, #d4af5a);
  border-radius: 6px;
}
.card-brand { display: flex; align-items: center; }
.card-number-display {
  font-size: 18px;
  letter-spacing: .15em;
  font-weight: 500;
  margin-bottom: 16px;
}
.card-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.card-label {
  font-size: 10px;
  opacity: .6;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 4px;
}
.card-holder-display, .card-exp-display {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .05em;
}

/* ── TRANSFER ── */
.transfer-info {
  background: var(--light);
  border-radius: 12px;
  padding: 18px;
  margin-bottom: 20px;
  border: 1px solid var(--border);
}
.transfer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  gap: 12px;
}
.transfer-row:last-child { border-bottom: none; }
.total-row { padding-top: 14px; }
.transfer-label { font-size: 12px; color: var(--gray); flex-shrink: 0; letter-spacing: .04em; }
.transfer-val { font-size: 14px; font-weight: 500; text-align: right; }
.copy-btn {
  background: none;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 2px 8px;
  font-size: 11px;
  cursor: pointer;
  margin-left: 8px;
  font-family: inherit;
  color: var(--gold);
  transition: background .2s;
}
.copy-btn:hover { background: var(--gold-pale); }
.transfer-note {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 20px;
  background: #fdf8ec;
  border-left: 3px solid var(--gold);
  padding: 12px 14px;
  border-radius: 0 8px 8px 0;
}

/* ── SUCCESS ── */
.success-icon {
  width: 72px;
  height: 72px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: #fff;
  margin: 0 auto 24px;
}
.success-msg {
  text-align: center;
  color: var(--gray);
  font-size: 16px;
  margin-bottom: 24px;
  line-height: 1.6;
}
.order-summary {
  background: var(--light);
  border-radius: 12px;
  padding: 20px;
  font-size: 14px;
  line-height: 1.9;
  border: 1px solid var(--border);
}
.order-summary strong { color: var(--dark); }

/* ── LOADING ── */
.loading-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 500;
  display: none;
  align-items: center;
  justify-content: center;
}
.loading-overlay.active { display: flex; }
.loading-spinner {
  width: 52px;
  height: 52px;
  border: 3px solid rgba(255,255,255,.3);
  border-top-color: var(--gold-light);
  border-radius: 50%;
  animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── UPLOAD AREA ── */
.upload-area {
  border: 2px dashed var(--border);
  border-radius: 12px;
  padding: 32px 20px;
  text-align: center;
  cursor: pointer;
  transition: border-color .2s, background .2s;
  background: #fafaf8;
}
.upload-area:hover, .upload-area.drag-over {
  border-color: var(--gold);
  background: var(--gold-pale);
}
.upload-placeholder p { color: #888; font-size: 14px; margin-top: 10px; }
.upload-link { color: var(--gold); cursor: pointer; }
.upload-preview {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 14px;
  color: var(--dark);
}
.upload-remove {
  background: none;
  border: none;
  color: #aaa;
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
  padding: 2px 6px;
  border-radius: 50%;
  transition: background .15s;
}
.upload-remove:hover { background: #f0f0f0; color: #555; }

/* ── PAYMENT TOTAL BAR ── */
.payment-total-bar {
  background: var(--light);
  border-radius: 10px;
  padding: 14px 18px;
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--border);
}
.payment-total-bar .ptb-label { font-size: 12px; color: var(--gray); letter-spacing: .04em; }
.payment-total-bar .ptb-ars { font-size: 20px; font-weight: 700; color: var(--dark); }
.payment-total-bar .ptb-usdt { font-size: 14px; font-weight: 600; color: #2a7a4a; margin-top: 2px; }

/* ── CRIPTO ── */
.cripto-networks {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 4px;
}
.cripto-net {
  background: var(--light);
  border-radius: 10px;
  padding: 14px 16px;
  border: 1px solid var(--border);
}
.cripto-net-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.cripto-badge {
  font-size: 10px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 20px;
  letter-spacing: .06em;
}
.cripto-badge.usdt {
  background: #e6f4ec;
  color: #2a7a4a;
}
.cripto-net-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
}
.cripto-address-row {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 12px;
}
.cripto-address {
  font-size: 11px;
  font-family: 'Courier New', monospace;
  color: var(--dark);
  flex: 1;
  word-break: break-all;
  line-height: 1.4;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hero { flex-direction: column; padding: 48px 20px 40px; min-height: auto; gap: 32px; }
  .hero-img { width: 100%; }
  .hero-perfume-display { width: 200px; height: 260px; }
  .hero-bottle { font-size: 120px; }
  .form-row { grid-template-columns: 1fr; }
  .modal { padding: 28px 20px; }
  .cart-sidebar { width: 100%; }
}
