/* =========================================================
   El Señor de los Álbumes — Estilos generales
   Paleta sobria: papel cálido, tinta casi negra y un acento dorado
   discreto, inspirada en la bandera de Costa Rica.
   ========================================================= */

:root {
  --cr-blue: #14335c;
  --cr-blue-dark: #0a1f3d;
  --cr-red: #7a1128;
  --cr-red-dark: #56101f;
  --ink: #1c1a17;
  --ink-soft: #2a2723;
  --gold: #a9853a;
  --gold-bright: #cba653;
  --gold-deep: #7c611f;
  --bg: #f7f4ee;
  --surface: #ffffff;
  --text: #26221d;
  --text-muted: #756c5f;
  --border: #e5ddcd;
  --radius: 12px;
  --shadow: 0 4px 16px rgba(30, 24, 10, 0.06);
  --shadow-strong: 0 10px 28px rgba(30, 24, 10, 0.12);
  --whatsapp: #25d366;
  --whatsapp-dark: #1ebe57;
  --font-serif: "Georgia", "Iowan Old Style", "Palatino Linotype", "Times New Roman", serif;
  --font-sans: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
}

a {
  color: inherit;
  text-decoration: none;
}

.section {
  padding: 72px 0;
}

.section:nth-of-type(even) {
  background: var(--surface);
}

.section h2 {
  font-size: 27px;
  margin-bottom: 6px;
}

.section-subtitle {
  color: var(--text-muted);
  margin-top: 0;
  margin-bottom: 32px;
  font-size: 15.5px;
}

/* -------------------- Botones -------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 14.5px;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.btn-primary {
  background: var(--ink);
  color: #fdfbf6;
}
.btn-primary:hover {
  background: var(--ink-soft);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn-outline:hover {
  background: var(--ink);
  color: #fdfbf6;
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: #fff;
}
.btn-whatsapp:hover {
  background: var(--whatsapp-dark);
}

.btn-text {
  background: transparent;
  color: var(--text-muted);
  font-weight: 500;
}
.btn-text:hover {
  color: var(--cr-red);
}

.btn-block {
  width: 100%;
  margin-top: 10px;
}

.btn-add {
  background: var(--ink);
  color: #fdfbf6;
  border: 1px solid var(--ink);
}
.btn-add:hover {
  background: var(--ink-soft);
}
.btn-add.btn-added {
  background: var(--whatsapp);
  color: #fff;
  border-color: var(--whatsapp);
}

/* -------------------- Header -------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--ink);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  height: 44px;
  width: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.brand-name {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  color: #fdfbf6;
  line-height: 1.15;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.main-nav a {
  font-weight: 500;
  color: rgba(253, 251, 246, 0.75);
  font-size: 14px;
  white-space: nowrap;
  position: relative;
  padding-bottom: 4px;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--gold-bright);
  transition: right 0.2s ease;
}
.main-nav a:hover {
  color: #fdfbf6;
}
.main-nav a:hover::after {
  right: 0;
}

.lang-btn {
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  color: rgba(253, 251, 246, 0.85);
  border-radius: 999px;
  padding: 7px 18px;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
}
.lang-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fdfbf6;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.menu-toggle span {
  width: 24px;
  height: 2px;
  background: #fdfbf6;
  border-radius: 2px;
}

/* -------------------- Hero -------------------- */

.hero {
  background: var(--ink);
  color: #fff;
  padding: 96px 0;
  text-align: center;
}

.hero h1 {
  color: #fdfbf6;
  font-size: 42px;
  max-width: 760px;
  margin: 0 auto 18px;
}

.hero-subtitle {
  max-width: 600px;
  margin: 0 auto 34px;
  color: rgba(250, 246, 235, 0.72);
  font-size: 17.5px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

.hero .btn-outline {
  color: var(--gold-bright);
  border-color: var(--gold);
}
.hero .btn-outline:hover {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}

/* -------------------- Quienes somos -------------------- */

.about-inner {
  display: flex;
  align-items: center;
  gap: 56px;
}

.about-logo {
  width: 220px;
  height: 220px;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 12px 26px rgba(20, 14, 4, 0.18));
}

.about-content h2 {
  margin-bottom: 4px;
}

.about-subtitle {
  color: var(--gold-deep);
  font-weight: 700;
  font-style: italic;
  font-family: var(--font-serif);
  font-size: 17px;
  margin: 0 0 16px;
}

.about-text {
  color: var(--text);
  font-size: 15.5px;
  max-width: 640px;
  margin-bottom: 28px;
}

.about-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.about-point {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.about-point-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--ink);
}

.icon-svg {
  width: 20px;
  height: 20px;
  display: block;
}

.about-point h3 {
  font-size: 15px;
  margin: 0 0 4px;
}

.about-point p {
  font-size: 13.5px;
  color: var(--text-muted);
  margin: 0;
}

/* -------------------- Autenticidad -------------------- */

.authenticity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 20px;
}

.authenticity-point {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
}

.authenticity-icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
}

.authenticity-icon .icon-svg {
  width: 24px;
  height: 24px;
}

.authenticity-point h3 {
  font-size: 15px;
  margin: 0 0 4px;
}

.authenticity-point p {
  font-size: 13.5px;
  color: var(--text-muted);
  margin: 0;
}

.authenticity-disclaimer {
  font-size: 12.5px;
  color: var(--text-muted);
  font-style: italic;
  margin: 0;
}

/* -------------------- Como funciona -------------------- */

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.step-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
}

.step-icon {
  width: 42px;
  height: 42px;
  margin: 0 auto 12px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
}

.step-icon .icon-svg {
  width: 24px;
  height: 24px;
}

.step-icon-logo {
  background: #fff;
}

.step-logo {
  width: 34px;
  height: 20px;
  object-fit: contain;
}

.step-card .step-icon {
  margin-bottom: 12px;
}

.step-card h3 {
  font-size: 16px;
  margin: 0 0 8px;
  font-family: var(--font-serif);
}
.step-card p {
  color: var(--text-muted);
  font-size: 14px;
  margin: 0;
}

/* -------------------- Productos -------------------- */

.products-toolbar {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

#product-search {
  width: 100%;
  max-width: 420px;
  padding: 13px 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-size: 15px;
  background: var(--surface);
}
#product-search:focus {
  outline: none;
  border-color: var(--ink);
}

.category-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-chip {
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  cursor: pointer;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-muted);
  transition: all 0.15s ease;
}
.filter-chip:hover {
  border-color: var(--ink);
  color: var(--ink);
}
.filter-chip.active {
  background: var(--ink);
  border-color: var(--ink);
  color: #fdfbf6;
}

.no-results {
  color: var(--text-muted);
  text-align: center;
  padding: 40px 0;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.product-card:hover {
  box-shadow: var(--shadow-strong);
  border-color: #d8cdb4;
}

.product-image {
  position: relative;
  aspect-ratio: 4 / 3;
  background: #f1ece0;
  overflow: hidden;
}
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.product-card:hover .product-image img {
  transform: scale(1.03);
}

.badge {
  position: absolute;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 11px;
  border-radius: 6px;
}
.badge-category {
  top: 12px;
  left: 12px;
  background: rgba(28, 26, 23, 0.82);
  color: #fdfbf6;
}
.badge-stock {
  top: 12px;
  right: 12px;
  background: var(--cr-red);
  color: #fdf3e6;
}

.product-body {
  padding: 18px 20px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-name {
  font-family: var(--font-serif);
  font-size: 16.5px;
  margin: 0 0 8px;
  color: var(--ink);
}

.product-description {
  font-size: 13.5px;
  color: var(--text-muted);
  margin: 0 0 10px;
  flex: 1;
}

.product-stock {
  font-size: 12.5px;
  color: var(--gold-deep);
  margin: 0 0 10px;
  font-weight: 600;
}

.product-sold {
  font-size: 12.5px;
  color: var(--ink-soft);
  margin: 0 0 10px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}

.product-price {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 700;
  color: var(--cr-red);
}

.product-footer .btn {
  padding: 9px 16px;
  font-size: 13px;
}

.product-whatsapp-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--whatsapp-dark);
  align-self: flex-start;
}
.product-whatsapp-link:hover {
  text-decoration: underline;
}

.product-cert-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin: 8px 0 0;
  padding-top: 8px;
  border-top: 1px dashed var(--border);
}

.product-cert-code {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text-muted);
}

.product-cert-verify {
  font-size: 11px;
  font-weight: 700;
  color: var(--gold-deep);
}
.product-cert-verify:hover {
  text-decoration: underline;
}

/* -------------------- Pedidos por encargo -------------------- */

.preorder-section {
  background: linear-gradient(180deg, #fff 0%, #f7f4ee 100%);
}

.preorder-card {
  max-width: 860px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.preorder-card p {
  margin: 0 0 12px;
  color: var(--text);
  font-size: 15px;
}

.preorder-card p:last-child {
  margin-bottom: 0;
}

/* -------------------- Envios -------------------- */

.shipping-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 20px;
}

.shipping-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
}

.shipping-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
}

.shipping-icon .icon-svg {
  width: 28px;
  height: 28px;
}

.shipping-logo-wrap {
  width: 88px;
  height: 56px;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px;
}
.shipping-logo-wrap-dark {
  background: #000;
  border-color: #000;
}

.shipping-logo {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.shipping-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 14px;
}

/* -------------------- Pago -------------------- */

.payment-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px;
  max-width: 640px;
  margin: 0 auto;
}

.payment-logo {
  height: 40px;
  display: block;
  margin-bottom: 20px;
}

.payment-steps {
  padding-left: 20px;
  margin-bottom: 24px;
}
.payment-steps li {
  margin-bottom: 10px;
  color: var(--text);
}

.sinpe-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: var(--bg);
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  padding: 20px;
  flex-wrap: wrap;
}

.sinpe-number {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 1px;
}

.sinpe-name {
  margin: 4px 0 0;
  font-size: 13.5px;
  color: var(--text-muted);
}

/* -------------------- Comunidad -------------------- */

.community-inner {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

.community-text {
  color: var(--text);
  margin: 0 0 20px;
}

/* -------------------- Contacto -------------------- */

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 28px;
  text-align: center;
}

.btn-icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-icon .icon-svg {
  width: 18px;
  height: 18px;
}

.social-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  font-weight: 600;
  font-size: 14px;
  transition: all 0.2s ease;
}
.social-link:hover {
  border-color: var(--ink);
  color: var(--ink);
}

/* -------------------- Reseñas -------------------- */

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-bottom: 24px;
}

.review-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
}

.review-header {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: stretch;
  margin-bottom: 14px;
}

.review-avatar {
  width: 100%;
  height: clamp(280px, 42vw, 420px);
  border-radius: 16px;
  overflow: hidden;
  flex-shrink: 0;
  background: #111;
}
.review-avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
  display: block;
}

.review-header > div:last-child {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.review-name {
  font-weight: 700;
  margin: 0;
  font-size: 14px;
}

.review-stars {
  color: var(--gold);
  font-size: 14px;
}

.review-text {
  color: var(--text-muted);
  font-size: 14px;
  margin: 0;
}

.reviews-cta {
  text-align: center;
  font-weight: 600;
  color: var(--ink);
}

/* -------------------- Footer -------------------- */

.site-footer {
  background: var(--ink);
  color: rgba(250, 246, 235, 0.7);
  padding: 32px 0;
  text-align: center;
  font-size: 14px;
}
.footer-inner p {
  margin: 4px 0;
}
.footer-inner span[data-site-name] {
  color: #fdfbf6;
  font-family: var(--font-serif);
  font-weight: 700;
}
.footer-made {
  opacity: 0.65;
  font-size: 12.5px;
}

/* -------------------- Panel de selección (carrito) -------------------- */

.selection-float-btn {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 60;
  background: var(--ink);
  color: #fdfbf6;
  border: none;
  border-radius: 999px;
  padding: 15px 22px;
  font-size: 15px;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(20, 14, 4, 0.25);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.15s ease;
}

.cart-float-icon {
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cart-float-icon .icon-svg {
  width: 20px;
  height: 20px;
}
.selection-float-btn:hover {
  transform: translateY(-2px);
}

.selection-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 8, 4, 0.55);
  z-index: 70;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.selection-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.selection-panel {
  position: fixed;
  top: 0;
  right: -420px;
  width: 380px;
  max-width: 90vw;
  height: 100%;
  background: var(--surface);
  z-index: 80;
  box-shadow: -12px 0 34px rgba(0, 0, 0, 0.2);
  padding: 26px;
  display: flex;
  flex-direction: column;
  transition: right 0.3s ease;
}
.selection-panel.open {
  right: 0;
}

.selection-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.selection-panel-header h3 {
  margin: 0;
}
.selection-panel-header button {
  background: none;
  border: none;
  font-size: 26px;
  cursor: pointer;
  color: var(--text-muted);
  line-height: 1;
}

.selection-empty {
  color: var(--text-muted);
  font-size: 14px;
}

.selection-list {
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
  overflow-y: auto;
}

.selection-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13.5px;
}
.selection-row-name {
  flex: 1;
}
.selection-row-price {
  font-weight: 700;
  color: var(--cr-red);
}
.selection-row-remove {
  background: none;
  border: none;
  font-size: 18px;
  color: var(--text-muted);
  cursor: pointer;
}
.selection-row-remove:hover {
  color: var(--cr-red);
}

.selection-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-top: 2px solid var(--ink);
  font-size: 16px;
  margin-top: 8px;
}
.selection-total-row strong {
  font-family: var(--font-serif);
  color: var(--cr-red);
  font-size: 20px;
}

/* -------------------- Vista rápida (Quick View / buy box) -------------------- */

.quickview-trigger {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 14px;
  border: none;
  border-radius: 999px;
  background: rgba(28, 26, 23, 0.82);
  color: #fdfbf6;
  font-size: 12.5px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s ease;
}
.quickview-trigger:hover {
  background: var(--ink);
}
.quickview-trigger .icon-svg {
  width: 16px;
  height: 16px;
}

.quickview-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 8, 4, 0.6);
  z-index: 90;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.quickview-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.quickview-panel {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.96);
  width: 92vw;
  max-width: 760px;
  max-height: 88vh;
  overflow-y: auto;
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow-strong);
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.quickview-panel.open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}

.quickview-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  font-size: 26px;
  line-height: 1;
  color: var(--text-muted);
  cursor: pointer;
  z-index: 1;
}
.quickview-close:hover {
  color: var(--cr-red);
}

.quickview-body {
  display: flex;
  gap: 28px;
  padding: 32px;
}

.quickview-media {
  position: relative;
  flex: 0 0 42%;
  aspect-ratio: 4 / 3;
  background: #f1ece0;
  border-radius: var(--radius);
  overflow: hidden;
}
.quickview-image-wrap {
  width: 100%;
  height: 100%;
}
.quickview-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.quickview-category-badge {
  position: absolute;
  top: 12px;
  left: 12px;
}

.quickview-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.quickview-name {
  font-size: 21px;
  margin: 0 0 10px;
}

.quickview-description {
  font-size: 14.5px;
  color: var(--text-muted);
  margin: 0 0 10px;
}

.quickview-info .product-sold {
  margin-top: -4px;
}

.quickview-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 6px 0 18px;
}

.quickview-price {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 700;
  color: var(--cr-red);
}

.trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 600;
}
.trust-chip .icon-svg {
  width: 15px;
  height: 15px;
  color: var(--gold-deep);
  flex-shrink: 0;
}

.quickview-cert-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding-top: 10px;
  margin-bottom: 16px;
  border-top: 1px dashed var(--border);
}

body.quickview-locked {
  overflow: hidden;
}

/* -------------------- Responsive -------------------- */

@media (max-width: 1100px) {
  .brand-name {
    display: none;
  }
}

@media (max-width: 960px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .authenticity-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .shipping-grid {
    grid-template-columns: 1fr;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .about-inner {
    flex-direction: column;
    text-align: center;
  }
  .about-points {
    grid-template-columns: 1fr;
    text-align: left;
  }
}

@media (max-width: 720px) {
  .menu-toggle {
    display: flex;
  }
  .main-nav {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--ink);
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 20px 24px;
    gap: 16px;
    border-bottom: 1px solid rgba(200, 162, 51, 0.25);
    display: none;
  }
  .main-nav.open {
    display: flex;
  }
  .hero h1 {
    font-size: 30px;
  }
  .product-grid {
    grid-template-columns: 1fr 1fr;
  }
  .sinpe-box {
    flex-direction: column;
    text-align: center;
  }
  .quickview-body {
    flex-direction: column;
    padding: 24px;
  }
  .quickview-media {
    flex: none;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
}
