<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Playfair+Display:wght@500;600;700&display=swap" rel="stylesheet">

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", Arial, sans-serif;
}

h1, h2, h3 {
  font-family: "Playfair Display", serif;
}

body {
  background-color: #0b0b0b;
  color: #e5c07b;
}

/* CATÁLOGO */
.catalogo {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 20px;
}

.catalogo h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 26px;
  letter-spacing: 2px;
}

/* GRID */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.card {
  background: #111;
  padding: 20px;
  text-align: center;
  border: 1px solid rgba(212, 175, 55, 0.2);
  transition: transform 0.3s, box-shadow 0.3s;

  display: flex;              /* 👈 AGREGA */
  flex-direction: column;     /* 👈 AGREGA */
}

.card img {
  width: 100%;
  height: 260px;
  object-fit: contain;
  margin-bottom: 20px;
  transition: transform 0.3s;
}

.card img:hover {
  transform: scale(1.08);
}

.card h3 {
  margin-bottom: 15px;
  font-size: 18px;
}

.card button {
  padding: 10px 28px;
  background: transparent;
  border: 1px solid #d4af37;
  color: #d4af37;
  cursor: pointer;
  transition: 0.3s;
}

.card button:hover {
  background: #d4af37;
  color: #000;
}

.precio {
  font-weight: bold;
  color: #bfa055; /* color dorado */
  margin: 5px 0;
  font-size: 1.1rem;
}

/* BOTONES DENTRO DE LAS CARDS */
.card-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;

  margin-top: auto;   /* 👈 CLAVE */
  padding-top: 20px;
}


/* HERO */
.hero {
  width: 100%;
  height: 70vh;
  max-height: 700px;
  background-image: url("portada1.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero-text .btn-gold {
  margin-top: 200px;
  padding: 14px 38px;
  background: transparent;
  border: 2px solid #d4af37;
  color: #d4af37;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-text .btn-gold:hover {
  background: #d4af37;
  color: #000;
}

/* BUSCADOR */
.search-box input {
  width: 250px;
  padding: 12px 16px;
  border: 1px solid #d4af37;
  border-radius: 6px;
  background: #111;
  color: #d4af37;
  font-size: 16px;
  outline: none;
}

/* FILTROS */
.search-filter-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 60px 0 40px 0;
}

.filter-buttons button {
  padding: 14px 38px;
  background: transparent;
  border: 1px solid #d4af37;
  color: #d4af37;
  font-size: 15px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 5px;
}

.filter-buttons button:hover {
  background: #d4af37;
  color: #000;
}

.filter-buttons button.active {
  background: transparent;
  color: #d4af37;
  border: 2px solid #d4af37;
  box-shadow: 0 0 12px #d4af37, 0 0 24px #d4af37, 0 0 36px #d4af37;
  transform: scale(1.05);
  transition: all 0.3s ease;
}

/* CARD hover */
.card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* BLOG */
.blog {
  max-width: 1100px;
  margin: 60px auto;
  padding: 40px 20px;
  text-align: center;
}

.blog h2 {
  color: #bfa055;
  font-size: 26px;
  margin-bottom: 40px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.blog-card {
  background: #111;
  padding: 25px 20px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  border-radius: 8px;
}

.blog-card:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.blog-card h3 {
  color: #fff;
  margin-bottom: 15px;
  font-size: 18px;
}

.blog-card p {
  color: #e5c07b;
  font-size: 15px;
  margin-bottom: 20px;
  line-height: 1.5;
}

/* FOOTER */
.footer {
  background-color: #1a1a1a;
  color: #bfa055;
  text-align: center;
  padding: 20px 0;
  margin-top: 40px;
  font-family: sans-serif;
}

.footer p {
  color: #bfa055;
}

.footer .social-icons {
  margin-top: 10px;
}

.footer .social-icons a {
  margin: 0 10px;
  display: inline-block;
  color: #bfa055;
  text-decoration: none;
  font-weight: bold;
  transition: transform 0.3s, color 0.3s;
}

.footer .social-icons a:hover {
  color: #ffffff;
  transform: scale(1.2);
}

.icon-redes {
  width: 30px;
  height: 30px;
}

.extra-filters{
  display:flex;
  gap:10px;
  justify-content:center;
  align-items:center;
  flex-wrap:wrap;
  margin-top:12px;
}

.extra-filters select{
  background:#0b0b0b;
  color:#e5c07b;
  border:1px solid #e5c07b;
  padding:10px 12px;
  border-radius:8px;
  outline:none;
}

.extra-filters select:focus{
  box-shadow:0 0 0 2px rgba(229,192,123,.25);
}

.btn-clear{
  background:transparent;
  color:#e5c07b;
  border:1px solid #e5c07b;
  padding:10px 14px;
  border-radius:8px;
  cursor:pointer;
}
.btn-clear:hover{
  filter:brightness(1.15);
}

/* ====== Layout más limpio para filtros ====== */
.search-filter-container{
  max-width: 1100px;
  margin: 0 auto;
  padding: 18px 20px;
  display: grid;
  gap: 12px;
}

/* Fila 1: Buscador + Marca + Precio + Limpiar */
.search-box,
.extra-filters{
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

/* Buscador un poco más protagonista */
.search-box input{
  min-width: 260px;
  width: 320px;
}

/* Selects y botón Limpiar más compactos */
.extra-filters select,
.extra-filters .btn-clear{
  height: 40px;
  padding: 0 12px;
  border-radius: 10px;
}

/* Fila 2: botones Hombre/Mujer/Unisex/Todos centrados */
.filter-buttons{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Botones de tipo más delgados y “pro” */
.filter-buttons button{
  padding: 10px 14px;
  border-radius: 12px;
}

/* En móvil: todo apilado, cómodo */
@media (max-width: 680px){
  .search-box input{
    width: 100%;
    min-width: 0;
  }
  .search-box, .extra-filters{
    justify-content: stretch;
  }
  .extra-filters select,
  .extra-filters .btn-clear{
    flex: 1;
    min-width: 140px;
  }
}

/* SECCIÓN CONFIANZA (estilo lujo, acorde a la página) */
.confianza{
  max-width: 1100px;
  margin: 40px auto 30px;
  padding: 28px 22px;
  text-align: center;

  background: #111;
  border: 1px solid rgba(212, 175, 55, 0.25);
  box-shadow: 0 0 30px rgba(0,0,0,0.45);
  border-radius: 14px;
}

.confianza h2{
  font-size: 24px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.confianza p{
  max-width: 850px;
  margin: 0 auto 18px;
  font-size: 15px;
  line-height: 1.9;
  color: #e5c07b;
  opacity: 1;
}

.confianza-items{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 12px;
  margin-top: 10px;
}

.confianza-items span{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  padding: 10px 22px;
  font-size: 13px;

  background: transparent;
  border: 1px solid rgba(198,179,142,0.3);
  color: #e6e1d5;
  border-radius: 999px;
}

.intro{
  background: #000;
  padding: 100px 20px;
  text-align: center;
}


.intro h1 {
  font-size: 30px;
  letter-spacing: 2px;
  margin-bottom: 18px;
}

.intro p{
  max-width: 700px;
  margin: 0 auto 22px;
  line-height: 1.8;
  font-size: 15px;
  color: #e6e1d5;
}


.intro .slogan{
  margin-top: 30px;
  font-style: italic;
  font-size: 14px;
  color: #c6b38e;
}


/* ===============================
   PRODUCTO TIPO TIENDA (LUJO)
   =============================== */

.topbar{
  max-width:1100px;
  margin:18px auto 0;
  padding:0 20px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.topbar .logo{
  color:#d4af37;
  text-decoration:none;
  letter-spacing:2px;
  font-weight:700;
}

.top-cta{
  color:#d4af37;
  text-decoration:none;
  border:1px solid rgba(212,175,55,0.45);
  padding:10px 14px;
  border-radius:12px;
  background:rgba(212,175,55,0.08);
}

.breadcrumb{
  max-width:1100px;
  margin:14px auto 0;
  padding:0 20px;
  font-size:13px;
  opacity:0.85;
}
.breadcrumb a{
  color:#d4af37;
  text-decoration:none;
}
.breadcrumb span{
  margin:0 6px;
  opacity:0.6;
}

.product-page{
  max-width:1100px;
  margin:18px auto 70px;
  padding:0 20px;
}

/* CAJA CON BORDE DORADO SUTIL */
.product-shell{
  border:1px solid rgba(212,175,55,0.22);
  border-radius:18px;
  padding:26px;
  background:rgba(10,10,10,0.55);
  box-shadow:0 0 45px rgba(0,0,0,0.65);
}

.product-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:60px;
  align-items:center;
}

.product-media{
  background:#0f0f0f;
  border:1px solid rgba(212,175,55,0.18);
  border-radius:16px;
  padding:18px;
}

.product-media img{
  width:100%;
  height:auto;
  border-radius:12px;
  display:block;
}

/* PANEL INFO */
.product-info{
  background:#0f0f0f;
  border:1px solid rgba(212,175,55,0.18);
  border-radius:16px;
  padding:22px;
}

.brand{
  letter-spacing:2px;
  font-weight:700;
  opacity:0.9;
  margin:0 0 8px;
}

.product-title{
  font-size:26px;
  letter-spacing:2px;
  margin:0 0 10px;
}

.product-desc{
  margin:0 0 14px;
  font-size:13px;
  opacity:0.85;
}

.price{
  font-size:30px;
  color:#d4af37;
  margin:12px 0 18px;
}

/* Opciones */
.opt-block{ margin-top:8px; }
.opt-label{
  font-size:13px;
  opacity:0.85;
  margin:0 0 10px;
}
.sizes{ display:flex; gap:10px; flex-wrap:wrap; }
.size-btn{
  border:1px solid rgba(212,175,55,0.35);
  background:transparent;
  color:#d4af37;
  padding:10px 14px;
  border-radius:12px;
  cursor:pointer;
  font-weight:700;
}
.size-btn.active{
  background:#d4af37;
  color:#000;
}

/* Cantidad + Consultar */
.qty-row{
  display:grid;
  grid-template-columns: 170px 1fr;
  gap:16px;
  margin-top:18px;
  align-items:center;
}

.qty{
  display:flex;
  align-items:center;
  justify-content:space-between;
  border:1px solid rgba(212,175,55,0.25);
  border-radius:14px;
  padding:10px;
  background:rgba(212,175,55,0.06);
}

.qty-btn{
  width:44px;
  height:44px;
  border-radius:12px;
  border:1px solid rgba(212,175,55,0.30);
  background:transparent;
  color:#d4af37;
  cursor:pointer;
  font-size:20px;
}

.qty-input{
  width:50px;
  text-align:center;
  border:none;
  background:transparent;
  color:#d4af37;
  font-weight:700;
  font-size:16px;
}

.btn-consultar{
  width:100%;
  padding:16px;
  border-radius:14px;
  border:1px solid #d4af37;
  background:#d4af37;
  color:#000;
  font-weight:800;
  letter-spacing:1px;
  cursor:pointer;
}
.btn-consultar:hover{ opacity:0.92; }

/* Tabs */
.tabs{
  margin-top:22px;
  border-top:1px solid rgba(212,175,55,0.18);
  padding-top:14px;
}
.tab-head{
  display:flex;
  gap:14px;
  margin-bottom:12px;
}
.tab-btn{
  border:none;
  background:transparent;
  color:#d4af37;
  letter-spacing:2px;
  font-size:12px;
  cursor:pointer;
  opacity:0.75;
}
.tab-btn.active{ opacity:1; text-decoration:underline; }

.tab-panel{ display:none; }
.tab-panel.active{ display:block; }
.tab-panel p{
  margin:0;
  font-size:14px;
  line-height:1.6;
  opacity:0.9;
}

.info-list{
  margin:0;
  padding-left:18px;
}
.info-list li{ margin-bottom:6px; }

.backlink{ margin-top:18px; }
.backlink a{
  color:#d4af37;
  text-decoration:none;
  font-size:14px;
}

/* Responsive */
@media (max-width: 900px){
  .product-shell{ padding:18px; }
  .product-grid{ grid-template-columns:1fr; gap:22px; }
  .qty-row{ grid-template-columns:1fr; }
}

.card-link{ display:block; }
.card-link img{ cursor:pointer; }

.title-link{
  color:inherit;
  text-decoration:none;
}
.title-link:hover{
  text-decoration:underline;
}

/* ===== SAN VALENTÍN: CENTRADO PRO ===== */
.san-valentin{
  width: 100%;
  max-width: 1200px;   /* ajusta si querés más ancho */
  margin: 0 auto;      /* centra toda la sección */
  padding: 50px 16px 20px;
  text-align: center;
}

/* Grid centrado */
.san-valentin-grid{
  display: grid;
  gap: 22px;
  justify-content: center; /* centra el grid cuando sobran espacios */
  grid-template-columns: repeat(4, minmax(230px, 260px)); /* cards “parejas” */
}

/* Responsivo */
@media (max-width: 1100px){
  .san-valentin-grid{
    grid-template-columns: repeat(2, minmax(230px, 260px));
  }
}

@media (max-width: 560px){
  .san-valentin-grid{
    grid-template-columns: minmax(240px, 340px); /* 1 columna centrada */
  }
}

/* Que cada card quede centrada dentro de su celda */
.san-valentin .valentin-card{
  width: 100%;
  margin: 0 auto;
}

.filter-buttons button:focus {
  outline: none;
  box-shadow: none;
}

/* ===============================
   CARDS REDONDAS – MATÍAS PARFUM
   =============================== */

/* Card general */
.card {
  border-radius: 22px;
  overflow: hidden; /* clave para que la imagen respete el borde */
}

/* Imagen dentro de la card */
.card img {
  border-radius: 16px;
}

/* Botón (opcional, más suave) */
.card .consultar-btn {
  border-radius: 14px;
}

/* =========================
   INTRO MATÍAS PARFUM
   ========================= */

.intro-overlay{
  position: fixed;
  inset: 0;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;

  animation: introFadeOut 1.8s ease forwards;
  animation-delay: 1.6s;
}

.intro-title{
  font-family: "Playfair Display", serif;
  font-size: 42px;
  letter-spacing: 6px;
  color: #d4af37; /* dorado elegante */
  opacity: 0;

  animation: introText 1.4s ease forwards;
}

/* Animación texto */
@keyframes introText{
  from{
    opacity: 0;
    transform: translateY(8px);
  }
  to{
    opacity: 1;
    transform: translateY(0);
  }
}

/* Animación salida */
@keyframes introFadeOut{
  to{
    opacity: 0;
    visibility: hidden;
  }
}

/* Responsive */
@media(max-width: 600px){
  .intro-title{
    font-size: 30px;
    letter-spacing: 4px;
  }
}

/* ===== SUAVIZAR ENTRADA DESPUÉS DE INTRO ===== */

/* Dar aire al hero para que no aparezca tan brusco */
.hero{
  margin-top: 40px;
}

/* Separar un poco más las primeras secciones */
.intro{
  margin-top: 80px;
}

.confianza{
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(198,179,142,0.25);
  border-radius: 18px;
  padding: 50px 40px;
  max-width: 900px;
  margin: 80px auto 0;
}

/* =========================
   HERO ELEGANTE EDITORIAL
   ========================= */

.hero-elegante{
  height: 100vh;
  background:
    linear-gradient(
      rgba(0,0,0,0.6),
      rgba(0,0,0,0.6)
    ),
    url("img/fondo-hero1.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-content{
  max-width: 720px;
  padding: 0 20px;
}

.hero-content h1{
  font-family: "Cinzel", serif;
  font-size: 56px;
  letter-spacing: 6px;
  color: #c6b38e;
  margin-bottom: 20px;
}

.hero-content p{
  font-size: 18px;
  color: #e6e1d5; /* blanco hueso elegante */
  margin-bottom: 32px;
  letter-spacing: 1px;
}

/* Botón elegante (ya alineado con tu estilo) */
.btn-gold{
  background: transparent;
  border: 1px solid #c6b38e;
  color: #c6b38e;
  padding: 12px 34px;   /* ajuste fino */
  font-size: 13px;     /* ajuste fino */
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-gold:hover{
  background: rgba(198,179,142,0.08);
}

/* Responsive */
@media(max-width: 600px){
  .hero-content h1{
    font-size: 36px;
    letter-spacing: 4px;
  }

  .hero-content p{
    font-size: 16px;
  }
}

