:root {
  --primary-color: #d4af37;
  --primary-dark: #b08f26;
  --secondary-color: #101010;
  --text-color: #e0e0e0;
  --text-dark: #333;
  --bg-dark: #0a0a0a;
  --bg-light: #1a1a1a;
  --border-color: #333;
  --transition: all 0.3s ease;
  --shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  --container-padding: 0 15px;
}

/* Reset & Basics */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
  color: var(--text-color);
  background-color: var(--bg-dark);
  overflow-x: hidden;
  line-height: 1.6;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--container-padding);
}

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

img {
  max-width: 100%;
  height: auto;
}

ul {
  list-style: none;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
  padding-bottom: 1rem;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--primary-color);
}

.section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 3rem;
  color: #999;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 1rem 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background-color: rgba(0, 0, 0, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
}

.logo a {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  color: #fff;
  transition: var(--transition);
}

.logo span {
  color: var(--primary-color);
}

.nav-menu {
  display: flex;
  align-items: center;
}

.nav-menu li {
  margin: 0 1.2rem;
}

.nav-menu a {
  position: relative;
  font-size: 0.95rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
}

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: var(--transition);
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--primary-color);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

.cart-icon {
  position: relative;
  margin-left: 1.5rem;
  font-size: 1.3rem;
  cursor: pointer;
  transition: var(--transition);
}

.cart-icon:hover {
  color: var(--primary-color);
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background-color: var(--primary-color);
  color: #000;
  font-size: 0.7rem;
  font-weight: 600;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hamburger {
  display: none;
  cursor: pointer;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  background-color: #fff;
  transition: var(--transition);
}

/* Header */
header {
  position: relative;
  background: url("../img/background.png") center center no-repeat;
  background-size: cover;
  background-attachment: fixed;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 80px;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 0 20px;
  pointer-events: auto;
  will-change: transform;
}

.hero-content h1 {
  font-family: "Playfair Display", serif;
  font-size: 4rem;
  color: #fff;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

.hero-content h1 span {
  color: var(--primary-color);
}

.hero-content p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 2.5rem;
  color: #e0e0e0;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.cta-button {
  border: none;
  padding: 0.9rem 2.5rem;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--transition);
  border-radius: 30px;
}

.cta-button.primary {
  background: var(--primary-color);
  color: var(--text-dark);
}

.cta-button.primary:hover {
  background: var(--primary-dark);
}

.cta-button.secondary {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.cta-button.secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.7),
    rgba(0, 0, 0, 0.5)
  );
  z-index: 0;
}

/* Featured Section */
.featured-section {
  padding: 5rem 0;
  background-color: var(--bg-light);
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.featured-item {
  text-align: center;
  padding: 2rem;
  transition: var(--transition);
  border-radius: 10px;
  background: var(--bg-dark);
  box-shadow: var(--shadow);
}

.featured-item:hover {
  transform: translateY(-10px);
}

.featured-item i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  display: inline-block;
  border: 2px solid var(--primary-color);
  width: 70px;
  height: 70px;
  line-height: 70px;
  border-radius: 50%;
  background-color: rgba(var(--color-gold-rgb), 0.1);
}

.featured-item h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.featured-item p {
  color: #aaa;
  letter-spacing: 0.7px;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Catalog Section */
.catalog-section {
  padding: 5rem 0;
  background-color: var(--bg-dark);
}

/* .contenedor básico eliminado - layout controlado por catalogo-rediseno.css */

.filtros {
  width: 280px;
  background: var(--bg-light);
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
  align-self: flex-start;
  position: sticky;
  top: 100px;
}

.filtros-mobile-toggle {
  display: none;
}

.cerrar-filtros-btn {
  display: none;
}

.filtros h3 {
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.filtro-grupo {
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 1.5rem;
}

.filtro-grupo:last-child {
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 0;
}

.filtro-titulo {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  cursor: pointer;
}

.filtro-titulo strong {
  font-size: 1.1rem;
  color: #fff;
}

.filtro-titulo i {
  font-size: 0.8rem;
  color: #999;
  transition: var(--transition);
}

.filtro-opciones {
  max-height: 250px;
  overflow-y: auto;
  padding-right: 5px;
}

.filtro-opciones::-webkit-scrollbar {
  width: 5px;
}

.filtro-opciones::-webkit-scrollbar-track {
  background: #333;
  border-radius: 10px;
}

.filtro-opciones::-webkit-scrollbar-thumb {
  background: #555;
  border-radius: 10px;
}

.custom-checkbox,
.custom-radio {
  display: block;
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 0.9rem;
  user-select: none;
  color: #ddd;
}

.custom-checkbox input,
.custom-radio input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 18px;
  width: 18px;
  background-color: #333;
  border-radius: 3px;
  transition: var(--transition);
}

.custom-radio .checkmark {
  border-radius: 50%;
}

.custom-checkbox:hover input ~ .checkmark,
.custom-radio:hover input ~ .checkmark {
  background-color: #444;
}

.custom-checkbox input:checked ~ .checkmark,
.custom-radio input:checked ~ .checkmark {
  background-color: var(--primary-color);
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.custom-checkbox input:checked ~ .checkmark:after,
.custom-radio input:checked ~ .checkmark:after {
  display: block;
}

.custom-checkbox .checkmark:after {
  left: 6px;
  top: 3px;
  width: 4px;
  height: 8px;
  border: solid var(--text-dark);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.custom-radio .checkmark:after {
  top: 5px;
  left: 5px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--text-dark);
}

.catalogo {
  flex: 1;
  display: block; /* el grid se aplicará a #catalogo-container */
}

.producto {
  background: var(--bg-light);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.producto:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.producto-img {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.producto-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.producto-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  opacity: 0;
  transition: var(--transition);
}

.producto:hover .producto-overlay {
  opacity: 1;
}

.quick-view,
.add-to-cart {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: #fff;
  color: var(--text-dark);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: var(--transition);
}

.quick-view:hover,
.add-to-cart:hover {
  background: var(--primary-color);
}

.producto-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--primary-color);
  color: var(--text-dark);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 20px;
  z-index: 1;
}

.producto-info {
  padding: 1.5rem;
}

.marca {
  font-size: 0.85rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.producto-info h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  transition: var(--transition);
}

.producto:hover .producto-info h3 {
  color: var(--primary-color);
}

.genero {
  font-size: 0.9rem;
  color: #aaa;
  margin-bottom: 0.8rem;
}

.genero i {
  margin-right: 5px;
  color: var(--primary-color);
}

/* Mensaje sin resultados */
.no-productos {
  text-align: center;
  padding: 3rem;
  margin: 2rem auto;
  background-color: rgba(var(--color-gold-rgb), 0.05);
  border-radius: 8px;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.no-productos i {
  font-size: 3rem;
  color: var(--color-gold);
  margin-bottom: 1rem;
}

.no-productos p {
  font-size: 1.2rem;
  color: var(--color-text);
  line-height: 1.5;
}

/* Controles de catálogo (contador y selector) */
.catalogo-controles {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.categoria-tag {
  font-size: 0.85rem;
  color: #8a7100;
  margin: 0 5px 8px 0;
  background-color: rgba(212, 175, 55, 0.15);
  padding: 3px 10px;
  border-radius: 12px;
  display: inline-block;
  transition: all 0.3s ease;
}

.categoria-tag:hover {
  background-color: rgba(212, 175, 55, 0.3);
  transform: translateY(-2px);
}

.categoria-tags {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.rating {
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
}

.rating i {
  color: var(--primary-color);
  font-size: 0.9rem;
  margin-right: 2px;
}

.rating span {
  margin-left: 5px;
  font-size: 0.8rem;
  color: #aaa;
}

.precio {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
}

.descuento {
  text-decoration: line-through;
  color: #999;
  font-size: 0.9rem;
  font-weight: normal;
  margin-left: 10px;
}

.btn-comprar {
  display: inline-block;
  width: 100%;
  padding: 0.8rem 0;
  background: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  text-align: center;
  font-weight: 600;
  border-radius: 30px;
  transition: var(--transition);
}

.btn-comprar:hover {
  background: var(--primary-color);
  color: var(--text-dark);
}

/* About Section */
.about-section {
  padding: 5rem 0;
  background: url("../img/about.png") center center;
  background-size: cover;
  position: relative;
}

.about-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.about-content {
  padding: 2rem;
}

.about-content .section-title {
  text-align: left;
}

.about-content .section-title::after {
  left: 0;
  transform: none;
}

.about-text {
  margin-bottom: 1.5rem;
  color: #ddd;
  line-height: 1.8;
}

.stats-container {
  display: flex;
  justify-content: space-between;
  margin: 2.5rem 0;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-button {
  background: var(--primary-color);
  color: var(--text-dark);
  border: none;
  padding: 0.8rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
  transition: var(--transition);
}

.about-button:hover {
  background: var(--primary-dark);
}

.about-image {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-logo {
  max-width: 80%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.logo-underline {
  width: 50%;
  height: 4px;
  background-color: var(--primary-color);
  margin: 20px auto 0;
}

.about-image::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--primary-color);
}

.about-image::before {
  content: "";
  position: absolute;
  top: 20px;
  right: 20px;
  bottom: 20px;
  left: 20px;
  border: 2px solid var(--primary-color);
  border-radius: 5px;
  z-index: 1;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 2;
}

/* Testimonials Section */
.testimonials-section {
  padding: 5rem 0;
  background-color: var(--bg-light);
}

.testimonials-slider {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  padding: 2rem 0;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  align-items: stretch; /* Asegura misma altura de las tarjetas */
}

.testimonials-slider::-webkit-scrollbar {
  display: none;
}

.testimonial {
  min-width: 350px;
  flex: 1;
  background: var(--bg-dark);
  border-radius: 10px;
  padding: 2rem;
  box-shadow: var(--shadow);
  scroll-snap-align: start;
  transition: var(--transition);
  display: flex;            /* Columna para fijar autor abajo */
  flex-direction: column;
}

.testimonial:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.testimonial-rating {
  margin-bottom: 1rem;
}

.testimonial-rating i {
  color: var(--primary-color);
  font-size: 1rem;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: #ddd;
}

.testimonial-author {
  display: flex;
  align-items: center;
  margin-top: auto;         /* Empuja autor al fondo de la tarjeta */
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 1rem;
  border: 3px solid var(--primary-color);
}

.testimonial-author h4 {
  margin-bottom: 0.2rem;
  font-size: 1.1rem;
}

.testimonial-author p {
  font-size: 0.8rem;
  color: #999;
}

/* Contact Section */

/* Contact Section */
.contact-section {
  padding: 5rem 0;
  background-color: var(--bg-light);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 2rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
}

.contact-item i {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-right: 1.5rem;
  margin-top: 0.2rem;
}

.contact-item h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.contact-item p {
  color: #aaa;
  line-height: 1.6;
}

.social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-icons a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-dark);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: var(--transition);
}

.social-icons a:hover {
  background: var(--primary-color);
  color: var(--text-dark);
}

.contact-form-container {
  background: var(--bg-dark);
  border-radius: 10px;
  padding: 2rem;
  box-shadow: var(--shadow);
}

/* Contact form eliminado */

/* Footer newsletter eliminado */

.footer {
  padding: 4rem 0 2.5rem;
  background: var(--bg-light);
}

.footer .container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr; /* about / links / contact */
  gap: 2.5rem 3rem;
  align-items: start;
}

.footer-about p {
  margin: 1rem 0 1.25rem;
  line-height: 1.8;
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--primary-color);
  color: var(--text-dark);
}

.footer-links h3,
.footer-contact h3,
.footer-newsletter h3 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.8rem;
}

.footer-links h3::after,
.footer-contact h3::after,
.footer-newsletter h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--primary-color);
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-links a {
  color: #aaa;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary-color);
}

.footer-contact p {
  display: flex;
  align-items: center;
  margin-bottom: 1.1rem;
  line-height: 1.7;
  color: #aaa;
}

.footer-contact i {
  color: var(--primary-color);
  margin-right: 1rem;
  width: 20px;
}

.footer-newsletter p {
  color: #aaa;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.footer-newsletter-form {
  display: flex;
  margin-bottom: 1.5rem;
}

.footer-newsletter-form input {
  flex: 1;
  padding: 0.8rem 1.2rem;
  border: none;
  border-radius: 30px 0 0 30px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.footer-newsletter-form input::placeholder {
  color: #aaa;
}

.footer-newsletter-form button {
  padding: 0 1.5rem;
  border: none;
  border-radius: 0 30px 30px 0;
  background: var(--primary-color);
  color: var(--text-dark);
  cursor: pointer;
  transition: var(--transition);
}

.footer-newsletter-form button:hover {
  background: var(--primary-dark);
}

.payment-methods {
  margin-top: 1.5rem;
}

.payment-methods img {
  max-width: 200px;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: #888;
  font-size: 0.9rem;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 2000;
  overflow: auto;
  backdrop-filter: blur(5px);
}

.modal-content {
  position: relative;
  background: var(--bg-dark);
  margin: 5% auto;
  width: 90%;
  max-width: 900px;
  border-radius: 10px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
  animation: modalOpen 0.3s ease;
}

@keyframes modalOpen {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 2rem;
  color: #aaa;
  cursor: pointer;
  transition: var(--transition);
  z-index: 1;
}

.close-modal:hover {
  color: var(--primary-color);
}

.modal-body {
  display: flex;
  flex-wrap: wrap;
}

.modal-product-image {
  flex: 1 1 350px;
  padding: 2rem;
}

.modal-product-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.modal-product-info {
  flex: 1 1 350px;
  padding: 2rem;
}

.modal-product-info h3 {
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
}

.modal-product-marca {
  font-size: 0.9rem;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.modal-product-genero {
  font-size: 1rem;
  color: #aaa;
  margin-bottom: 1rem;
}

.modal-product-price {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-color);
  margin: 1rem 0;
  display: flex;
  align-items: center;
}

.modal-product-description {
  margin: 1.5rem 0;
  color: #aaa;
  line-height: 1.8;
}

.modal-product-quantity {
  margin: 1.5rem 0;
  display: flex;
  align-items: center;
}

.modal-product-quantity label {
  margin-right: 1rem;
}

.quantity-selector {
  display: flex;
  align-items: center;
  border: 1px solid var(--border-color);
  border-radius: 30px;
  overflow: hidden;
}

.quantity-btn {
  width: 35px;
  height: 35px;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
}

.quantity-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.quantity-selector input {
  width: 50px;
  height: 35px;
  border: none;
  text-align: center;
  font-size: 1rem;
  background: transparent;
  color: #fff;
}

.modal-product-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.add-to-cart-btn,
.buy-now-btn {
  padding: 0.8rem 1.5rem;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  flex: 1;
}

.add-to-cart-btn {
  background: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.add-to-cart-btn:hover {
  background: var(--primary-color);
  color: var(--text-dark);
}

.buy-now-btn {
  background: var(--primary-color);
  border: 2px solid var(--primary-color);
  color: var(--text-dark);
}

.buy-now-btn:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr; /* about + links / contact */
    gap: 2rem;
  }
}

@media (max-width: 992px) {
  .hero-content h1 {
    font-size: 3.5rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-image {
    order: -1;
  }

  /* Contact responsive eliminado */
}

@media (max-width: 768px) {
  header {
    background-attachment: scroll;
    background-position: center 30%;
  }

  .hamburger {
    display: block;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: rgba(0, 0, 0, 0.95);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    padding: 2rem;
    height: 100vh;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu li {
    margin: 1.5rem 0;
  }

  .hero-content h1 {
    font-size: 3rem;
  }

  .contenedor {
    flex-direction: column;
  }

  .filtros {
    width: 90%;
    max-width: 350px;
    position: fixed;
    top: 0;
    left: -100%;
    height: 100vh;
    overflow-y: auto;
    z-index: 1000;
    background: var(--bg-light);
    transition: left 0.3s ease;
    padding-top: 60px;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.2);
  }
  
  .filtros.activo {
    left: 0;
  }
  
  .filtros-mobile-toggle {
    display: block;
    width: 100%;
    margin-bottom: 20px;
  }
  
  .toggle-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 12px;
    background: var(--primary-color);
    color: var(--text-dark);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
  }
  
  .toggle-btn:hover {
    background: var(--primary-dark);
  }
  
  .toggle-btn i {
    font-size: 1.1rem;
  }
  
  .cerrar-filtros-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-dark);
    cursor: pointer;
    display: block;
  }

  /* El grid se controla en #catalogo-container; no redefinir .catalogo aquí */

  .footer-grid {
  grid-template-columns: 1fr;
  gap: 2.2rem;
  }

  .about-content {
    padding: 0;
  }
}

@media (max-width: 576px) {
  header {
    background-position: 65% center;
  }

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

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .featured-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  header {
    background-position: 70% center;
    background-size: cover;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  /* Newsletter responsive eliminado */

  .newsletter-form input {
    border-radius: 30px;
    margin-bottom: 1rem;
  }

  .newsletter-form button {
    border-radius: 30px;
  }

  .modal-body {
    flex-direction: column;
  }

  .modal-product-actions {
    flex-direction: column;
  }

  .stats-container {
    flex-direction: column;
    gap: 1.5rem;
  }
}
