@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;1,400&display=swap');

:root {
  --bg-main: #0a0a0a;
  --bg-card: #141414;
  --bg-secondary: #121212;
  --text-light: #f5f5f7;
  --text-muted: #a1a1a6;
  --gold-primary: #d4af37;
  --gold-hover: #f3e5ab;
  --gold-glow: rgba(212, 175, 55, 0.15);
  --whatsapp: #25d366;
  --whatsapp-hover: #1eb956;
  --border-dark: #222222;
  --border-gold: rgba(212, 175, 55, 0.3);
  --radius-card: 16px;
  --shadow-dark: 0 15px 35px rgba(0, 0, 0, 0.6);
  --shadow-gold-hover: 0 12px 30px rgba(212, 175, 55, 0.18);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--bg-main);
  color: var(--text-light);
  line-height: 1.5;
}

/* HEADER GLASSMORPHISM */
.header {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 7%;
  position: sticky;
  top: 0;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 100;
  border-bottom: 1px solid var(--border-dark);
}

.logo {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  text-decoration: none;
  color: #ffffff;
  font-size: 24px;
  letter-spacing: 1px;
}
.logo span { font-weight: 400; font-style: italic; color: var(--gold-primary); }

nav { display: flex; gap: 30px; align-items: center; }
nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}
nav a:hover { color: var(--gold-primary); }
nav a.nav-ig {
  color: var(--gold-primary);
  border: 1px solid var(--border-gold);
  padding: 6px 14px;
  border-radius: 20px;
}
nav a.nav-ig:hover { background: var(--gold-glow); }

/* HERO */
.hero {
  min-height: 520px;
  display: flex;
  align-items: center;
  padding: 90px 7%;
  background: radial-gradient(circle at top right, #1c1811 0%, #0a0a0a 60%);
  border-bottom: 1px solid var(--border-dark);
}
.hero-content { max-width: 680px; }
.eyebrow {
  font-size: 11px;
  letter-spacing: 3px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--gold-primary);
  text-transform: uppercase;
}
h1, h2 { font-family: 'Playfair Display', serif; font-weight: 500; }
h1 {
  font-size: clamp(44px, 6vw, 76px);
  line-height: 1.05;
  letter-spacing: -1px;
  color: #ffffff;
}
h1 span { font-style: italic; color: var(--gold-primary); }
.hero p:not(.eyebrow) {
  max-width: 520px;
  font-size: 15px;
  line-height: 1.7;
  margin: 24px 0 36px;
  color: var(--text-muted);
}
.hero-actions { display: flex; gap: 16px; }
.button {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: all 0.2s ease;
}
.button.primary { background: var(--gold-primary); color: #000; }
.button.primary:hover { background: var(--gold-hover); transform: translateY(-2px); }
.button.secondary { background: transparent; color: var(--text-light); border: 1px solid var(--border-dark); }
.button.secondary:hover { border-color: var(--gold-primary); background: rgba(255,255,255,0.03); }

/* CATÁLOGO & FILTROS */
.catalogo { padding: 90px 7%; }
.section-title { text-align: center; margin-bottom: 45px; }
h2 { font-size: 42px; color: #ffffff; margin: 6px 0; }
.subtitle { font-size: 14px; color: var(--text-muted); }

.filter-wrapper {
  max-width: 720px;
  margin: 0 auto 50px auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.search-container {
  width: 100%;
  position: relative;
}
.search-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold-primary);
}
.search-container input {
  width: 100%;
  padding: 16px 20px 16px 52px;
  border: 1px solid var(--border-dark);
  border-radius: 30px;
  background: #121212;
  color: #ffffff;
  font-family: inherit;
  font-size: 14px;
  outline: none;
  transition: all 0.2s;
}
.search-container input:focus {
  border-color: var(--gold-primary);
  box-shadow: 0 0 15px var(--gold-glow);
}

.category-chips { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.chip {
  padding: 8px 20px;
  border-radius: 20px;
  background: #141414;
  border: 1px solid var(--border-dark);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  color: var(--text-muted);
  transition: all 0.2s;
}
.chip:hover, .chip.active {
  background: var(--gold-primary);
  color: #000000;
  border-color: var(--gold-primary);
  font-weight: 600;
}

/* CARDS DE PRODUCTO */
.products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-dark);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
  transform: translateY(-6px);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-gold-hover);
}

.photo {
  height: 250px;
  background: #0d0d0d;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-bottom: 1px solid #1a1a1a;
}
.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.card:hover .photo img { transform: scale(1.08); }

.badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(10, 10, 10, 0.85);
  border: 1px solid var(--border-dark);
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.8px;
  z-index: 2;
  text-transform: uppercase;
}
.badge.highlight {
  background: var(--gold-primary);
  color: #000;
  border: none;
}

.placeholder-art {
  display: none;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #181818;
  border: 1px solid var(--border-dark);
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--gold-primary);
}

.card-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.brand {
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--gold-primary);
  font-weight: 700;
}
.card h3 { margin: 6px 0; font-size: 20px; color: #ffffff; }
.desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 16px;
}

.notes-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.notes-tags span {
  font-size: 10px;
  background: #1a1a1a;
  border: 1px solid #282828;
  color: #ccc;
  padding: 3px 8px;
  border-radius: 4px;
  font-weight: 500;
}

.bottom {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid #1f1f1f;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.price-box { display: flex; align-items: baseline; gap: 4px; }
.price-box strong { font-size: 24px; color: var(--gold-primary); font-family: 'Playfair Display', serif; }
.price-box small { font-size: 12px; color: var(--text-muted); }

.order-btn {
  width: 100%;
  padding: 12px;
  font-size: 13px;
  font-weight: 600;
  background: var(--whatsapp);
  color: #ffffff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s;
}
.order-btn:hover { background: var(--whatsapp-hover); }

/* SECCIÓN CÓMO COMPRAR */
.how {
  padding: 80px 7%;
  background: var(--bg-secondary);
  border: 1px solid var(--border-dark);
  border-radius: 20px;
  margin: 0 7% 90px 7%;
}
.how-header { text-align: center; margin-bottom: 45px; }
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.step-card {
  background: var(--bg-card);
  padding: 30px;
  border-radius: 14px;
  border: 1px solid var(--border-dark);
}
.num {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  color: var(--gold-primary);
  font-weight: 600;
  display: block;
  margin-bottom: 10px;
}
.step-card h3 { margin-bottom: 8px; font-size: 18px; color: #fff; }
.step-card p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* FOOTER */
footer {
  padding: 50px 7%;
  background: #050505;
  border-top: 1px solid var(--border-dark);
  color: #fff;
}
.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}
footer .logo { color: #fff; }
footer p { color: var(--text-muted); }
footer a { color: var(--gold-primary); text-decoration: none; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .products { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .products { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .catalogo { padding: 60px 4%; }
  .how { margin: 0 4% 60px 4%; padding: 50px 5%; }
  .steps { grid-template-columns: 1fr; }
  .hero { padding: 60px 5%; }
  .footer-content { flex-direction: column; gap: 16px; text-align: center; }
}
/* ESTILOS DEL LOGO */
.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  height: 50px;
  width: auto;
  border-radius: 6px;
  transition: transform 0.2s ease;
}

.logo-img:hover {
  transform: scale(1.05);
}

.logo-footer {
  height: 60px;
  width: auto;
  border-radius: 6px;
  margin-bottom: 12px;
}