/* === GLOBAL RESETS === */
*, *::before, *::after {
  box-sizing: border-box;
}
html, body {
  margin: 0;
  padding-top: 0;
  overflow-x: hidden;
  font-family: 'Marcellus', serif;
  background-color: #000;
  color: #eee;
}
a {
  color: #ddd;
  text-decoration: none;
}
a:hover {
  color: #fff;
}
.pagina-inicio{
  background-color: #fff;
}

/* === HEADER === */
.nayarak-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: transparent;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  color: white;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
.nav-logo img {
  height: 50px;
}
.nav-center {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-center li a {
  color: white;
  text-decoration: none;
  font-size: 14px;
}
.nav-center li a:hover {
  color: #ccc;
}
.nav-icons {
  display: flex;
  gap: 20px;
}
.nav-icons img {
  height: 30px;
  transition: opacity 0.3s;
}
.nav-icons a:hover img {
  opacity: 0.7;
}

.nayarak-header.scrolled {
  background-color: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(6px);
  transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
}

/* Ocultar menú móvil por defecto */
.nav-mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #000;
  padding: 60px 20px 40px;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  z-index: 9998;
  overflow-y: auto;
}

.nav-mobile.active {
  display: flex;
}

.nav-mobile a {
  color: #fff;
  font-size: 1.3rem;
  text-decoration: none;
  border-bottom: 1px solid #333;
  padding: 12px 0;
  width: 100%;
  text-align: left;
}


/* Mostrar hamburguesa solo en móvil */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 9999;
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: white;
}



/* === SWIPER BANNER === */
.home-slider {
  margin-top: 0px;
  width: 100%;
  min-height: 100vh;  
}

.home-slider .swiper-slide {
  background-size: cover;
  background-position: center;
  height: 100vh;
}
.swiper-pagination {
  position: absolute;
  bottom: 25px;
  display: flex;
  justify-content: center;
  gap: 16px;
  width: 100%;
  z-index: 10;
}

.swiper-pagination-bullet {
  position: relative;
  width: 14px;
  height: 14px;
  background-color: #888;
  border-radius: 50%;
}

.swiper-pagination-bullet-active {
  background-color: #fff;
}

.progress-ring {
  position: absolute;
  top: -6px;
  left: -6px;
  transform: rotate(-90deg);
  pointer-events: none;
}

.progress-ring__circle {
  stroke: #fff;
  stroke-dasharray: 69.1;
  stroke-dashoffset: 69.1;
  transition: stroke-dashoffset 5s linear;
}

.progress-ring__circle.animating {
  stroke-dashoffset: 0;
}

.slide-content {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: white;
  z-index: 5;
  padding: 10px 20px;
}

.slide-content h2 {
  font-size: 4rem;
  font-weight: 300;
  margin-bottom: 15px;
}

.slide-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  text-transform: uppercase;
}

.slide-buttons .btn {
  padding: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s;
  border-bottom: 2px solid #fff;
}

.slide-buttons .btn-primary {
  background-color: #fa7b0400;
  color: #fff;
}

.slide-buttons .btn-primary:hover {
  background-color: #d86800;
}

.slide-buttons .btn-secondary {
  background-color: #ffffff00;
  color: #ffffff;
}

.slide-buttons .btn-secondary:hover {
  background-color: #dddddd;
}
/* === TOP SELLERS === */
.top-sellers {
  padding: 20px 60px;
  text-align: center;
  background: #ffffff;
}
.top-sellers h2 {
  margin-bottom: 120px;
  font-size: 2rem;
  color: #000;
}
.top-sellers .swiper {
  width: 100%;
  overflow: visible;
}
.top-sellers .swiper-wrapper {
  display: flex;
  align-items: center;
}
.top-sellers .swiper-slide {
  width: 100%;
  height: 100%;
  background: #ffffff;
  margin: 0px;
  opacity: 0.4;
  transition: transform 0.4s ease, opacity 0.4s ease;
  overflow: visible;
  transform: translateY(0);
}
.top-sellers .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;

}
.top-sellers .swiper-slide.offset-1 {
  transform: translateY(15px);
  opacity: 0.6;
}

.top-sellers .swiper-slide.offset-2 {
  transform: translateY(30px);
  opacity: 0.3;
}

.top-sellers .swiper-slide.is-center {
  transform: translateY(0) scale(1.1);
  opacity: 1;
  z-index: 2;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}
.top-sellers .slide-content {
  position: relative;
  text-align: center;
}

.top-sellers .slide-content img {
  width: 100%;

  display: block;
}

.top-sellers .slide-text {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  text-align: center;
  font-weight: bold;
  font-size: 22px;
  margin-top: 0px;
  color: #b58d3f;
}

.swiper-slide-active .slide-text {
  opacity: 1;
  transform: translateY(0);
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .top-sellers .swiper-slide {
    width: 220px;
    height: 320px;
  }
}
@media (max-width: 768px) {
  .nayarak-header{
    background-color: #111;
  }
  .top-sellers .swiper-slide {
    width: 180px;
    height: 260px;
  }
  .top-sellers .swiper{
    width: 75%;
  }
  .nav-center, .nav-icons {
    display: none;
  }
  .nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
  }
  .nav-toggle span {
    width: 22px;
    height: 2px;
    background: white;
  }
  .nav-mobile {
    display: none;
    flex-direction: column;
    background: #111;
    position: absolute;
    top: 100%;
    width: 100%;
    padding: 20px;
    z-index: 10000;
  }
  .nav-mobile.active {
    display: flex;
  }
  .nav-mobile a {
    color: #fff;
    padding: 12px 0;
    border-bottom: 1px solid #333;
  }
}
@media (max-width: 480px) {
  .top-sellers .swiper-slide {
    width: 140px;
    height: 200px;
  }
}

/* === Cards Nigga === */
.black-cards-carousel {
  background-color: #111;
  padding: 80px 20px;
  text-align: center;
  color: #fff;
}

.black-cards-carousel h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #fff;
}

.black-cards-swiper {
  width: 100%;
  overflow: visible;
}

.black-cards-swiper .swiper-slide {
  width: 260px;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card-slide {
  background: #000000;
  color: #ffffff;
  border-radius: 10px;
  padding: 0;
  width: 100%;
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.card-slide:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

.card-slide img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
}

.card-title {
  font-size: 1rem;
  font-weight: 600;
}

/* Slide central (más alto) */
.swiper-slide.level-0 {
  transform: translateY(-40px);
  z-index: 3;
}

/* Lados medios (medio nivel) */
.swiper-slide.level-1 {
  transform: translateY(-20px);
  z-index: 2;
}

/* Lados más bajos (nivel base) */
.swiper-slide.level-2 {
  transform: translateY(0);
  z-index: 1;
}

@media (max-width: 768px) {
  .black-cards-carousel {
    padding: 60px 0;
    overflow: visible;
  }

  .black-cards-swiper {
    overflow: visible !important;
  }

  .black-cards-swiper .swiper-wrapper {
    overflow: visible !important;
  }

  .black-cards-swiper .swiper-slide {
    width: 80vw; /* Slide ancho en móviles */
    max-width: 300px;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
  }

  .card-slide {
    width: 100%;
  }

  .swiper-slide.level-0 {
    transform: translateY(-35px) !important;
    z-index: 3;
  }

  .swiper-slide.level-1 {
    transform: translateY(-20px) !important;
    z-index: 2;
  }

  .swiper-slide.level-2 {
    transform: translateY(0) !important;
    z-index: 1;
  }
}


/* === CATEGORÍAS === */
.categorias-destacadas {
  background-color: #000;
  padding: 60px 20px;
  text-align: center;
}

.contenedor-categorias {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 columnas en desktop */
  gap: 20px;
}

.categoria-box {
  position: relative;
  text-align: center;
  text-decoration: none;
  color: inherit;
  border: 2px solid transparent;
  border-radius: 12px;
  padding: 6px;
  background-clip: padding-box;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.05);
}

/* Efecto dorado de lujo */
.categoria-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: 12px;
  padding: 2px;
  background: linear-gradient(135deg, #d4af37, #f9f6ef, #d4af37);
  z-index: -1;
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
}

/* Imagen */
.categoria-box img {
  width: 100%;
  border-radius: 10px;
  opacity: 0.9;
  transition: 0.3s;
}

/* Hover */
.categoria-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(255, 255, 255, 0.1);
}

.categoria-box:hover img {
  opacity: 1;
}

/* Texto */
.categoria-box figcaption {
  margin-top: 10px;
  font-size: 1.1rem;
  color: #fefefe;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* ✅ Responsive: móviles 2 columnas */
@media (max-width: 768px) {
  .contenedor-categorias {
    grid-template-columns: repeat(2, 1fr);
  }
}



/* === Background-Image === */
.seccion-bg-central {
  background-image: url('../images/h1_bn-6.webp');
  background-position: center;
  background-repeat: no-repeat;
  height: 400px; /* ajustable */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #000000;
  position: relative;
}

.seccion-bg-central::before {
  content: "";
  position: absolute;
  inset: 0;
  /*
  background: rgba(0,0,0,0.5); /* oscurece la imagen para legibilidad */
  z-index: 1;
}

.seccion-bg-central .contenido-centrado {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 20px;
}

.seccion-bg-central h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.seccion-bg-central p {
  font-size: 1.1rem;
  color: #000000;
}

/* === PRODUCTOS DESTACADOS === */
.productos-destacados {
    background: #000000;
    padding: 60px 20px;
    text-align: center;
}
.productos-destacados h2 {
    font-size: 2rem;
    font-weight: 400;
    color: #eee;
    margin-bottom: 30px;
}
ul.products {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}
ul.products li.product {
    background-color: #1a1a1a;
    border: 1px solid #222;
    border-radius: 8px;
    padding: 20px;
    width: 250px;
}
ul.products li.product h2 {
    color: #fff;
    font-size: 1rem;
}
ul.products li.product .price {
    color: #ccc;
}


/* === HISTORIA === */
.historia {
  background-color: #000000;
  padding: 60px 20px;
}

.contenedor-historia {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap; /* permite que sea responsive */
}

.historia-img {
  flex: 1 1 400px;
  text-align: center;
}

.historia-img img {
  width: 100%;
  max-width: 650px;
  border-radius: 12px;
}

.historia-texto {
  flex: 1 1 400px;
}

.historia-texto h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.historia-texto p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #ffffff;
}

/* Responsive: imagen encima del texto */
@media (max-width: 768px) {
  .contenedor-historia {
    flex-direction: column;
    text-align: center;
  }

  .historia-texto {
    padding: 20px 10px;
  }
}


/* === FOOTER === */
.nayarak-footer {
  background: #000;
  color: #eee;
  padding: 60px 20px 30px;
  text-align: center;
}

.footer-contenido {
  max-width: 1200px;
  margin: auto;
}

.footer-logo img {
  height: 60px;
  margin-bottom: 30px;
}

.footer-menu {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.footer-menu a {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}
.footer-menu a:hover {
  color: #fff;
}

.footer-redes {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.footer-redes img {
  height: 24px;
  transition: opacity 0.3s;
}
.footer-redes a:hover img {
  opacity: 0.6;
}

.footer-copy p {
  font-size: 13px;
  color: #ffffff;
  margin: 0;
}

/*woocomerew*/
.tienda {
  margin-top: 100px; /* para escritorio */
}

@media screen and (max-width: 768px) {
  .tienda {
    margin-top: 120px; /* más espacio si el header en móviles es más alto */
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
/* Filtros de categoría */
.filtros-categorias ul {
    list-style: none;
    display: flex;
    gap: 1rem;
    padding: 0;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.filtros-categorias a {
    text-decoration: none;
    padding: 0.5rem 1rem;
    border: 1px solid #aaa;
    border-radius: 4px;
    color: #333;
    transition: all 0.2s ease;
}

.filtros-categorias a.activo,
.filtros-categorias a:hover {
    background: #000;
    color: #fff;
}

/* Grid de productos */
.grid-productos-custom {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 2rem;
    list-style: none;
}

.producto-box {
    background: #fff;
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    text-align: center;
}
.producto-box .swiper-pagination-bullet-active {
  background-color: #be3c3c65;
}

.titulo-producto {
    font-size: 1.1rem;
    margin: 1rem 0 0.5rem;
    color: #000000;
}

.precio-producto {
    font-weight: bold;
    color: #c84b31;
    margin-bottom: 0.5rem;
    display: block;
}

.paginacion-tienda {
    margin-top: 2rem;
    text-align: center;
}

.boton-ver-carrito {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #c84b31;
    color: white;
    padding: 12px 20px;
    border-radius: 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    text-decoration: none;
    font-weight: bold;
    z-index: 9999;
    transition: background-color 0.3s ease;
}

.boton-ver-carrito:hover {
    background-color: #a83925;
}
/* Responsive para filtros y grid */
@media screen and (max-width: 768px) {
    /* Filtros de categoría responsivos */
        .filtros-categorias ul {
        overflow-x: auto;
        white-space: nowrap;
        gap: 1.5rem;
        padding: 10px;
        margin: 1rem 0;
        justify-content: center;
        scrollbar-width: none;
    }

    .filtros-categorias ul::-webkit-scrollbar {
        display: none; /* Chrome/Safari */
    }

    .filtros-categorias li {
        display: inline-block;
    }

    .filtros-categorias a {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }

    /* Grid de productos: 3 columnas en móviles */
    .grid-productos-custom {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        padding: 0 1rem;
    }

    .producto-box {
        padding: 0.8rem;
    }

    .titulo-producto {
        font-size: 0.95rem;
    }

    .precio-producto {
        font-size: 0.9rem;
    }

    .producto-box .button {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
}

/**************************Single Product***************************/
.producto-slider {
    width: 100%;
    max-width: 600px;
    margin: 0;
    position: relative;
}

.swiper-slide img {
    width: 100%;
    height: auto;
    display: block;
}

.swiper-button-next,
.swiper-button-prev {
    color: #000;
}

.swiper-pagination {
    bottom: 10px;
}

/***************************************/
/* Estilo para escritorio (galería horizontal estilo Inkafarma) */
#product-page {
    padding-top: 100px; /* Ajusta este valor al alto de tu header */
}


.galeria-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.miniaturas {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 80px;
}

.miniaturas img {
    width: 100%;
    border: 2px solid transparent;
    cursor: pointer;
    border-radius: 6px;
    transition: border 0.2s;
}

.miniatura.active img {
    border-color: #0073aa;
}

.imagen-principal {
    flex: 1;
    max-width: 500px;
    position: relative;
}

.imagen-principal img {
    width: 100%;
    border-radius: 8px;
    display: block;
}

.info-producto {
    flex: 1;
    min-width: 280px;
}

@media screen and (max-width: 768px) {

  #product-page {
    padding-top: 120px; /* asegúrate de dejar espacio para el menú fijo */
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .galeria-layout {
    flex-direction: column;
    align-items: center;
  }

  .miniaturas {
    display: none; /* ocultamos miniaturas en móvil */
  }

  .imagen-principal {
    width: 100%;
    max-width: 100%;
  }

  .imagen-principal .swiper {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
  }

  .swiper-slide img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
  }

  .swiper-pagination {
    bottom: 15px !important;
    text-align: center;
  }

  .info-producto {
    width: 100%;
    padding-top: 1.5rem;
  }

  .product-long-description,
  .product-short-description,
  .product-cart-button {
    margin-top: 1rem;
  }

  .product-long-description p,
  .product-short-description p {
    font-size: 1rem;
    line-height: 1.5;
  }

  .product-price {
    font-size: 1.2rem;
    color: #c84b31;
    font-weight: bold;
  }

  .product-cart-button {
    text-align: center;
  }

  .product-cart-button .button {
    padding: 12px 24px;
    font-size: 1rem;
  }
}


/* Contenedor general */
.productos {
  margin-top: 3rem;
  text-align: left;
  padding: 0 1rem;
}

.productos .info {
  text-align: left;
  padding: 0.5rem;
}

/* Título */
.productos h2 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: #000000;
}

/* Grid de productos: escritorio (5 columnas por defecto) */
.productos .grid-productos {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

/* Tablet: 3 columnas */
@media (max-width: 1024px) {
  .productos .grid-productos {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Móviles: 1 columna */
@media (max-width: 768px) {
  .productos .grid-productos {
    grid-template-columns: 1fr;
  }
}

/* Caja de producto */
.productos .producto-box {
  background: #fff;
  border-radius: 10px;
  padding: 0;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

/* Imagen del producto */
.productos .producto-box img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
  object-fit: cover;
}

/* Título */
.productos .titulo-producto {
  font-size: 1rem;
  font-weight: 600;
  color: #222;
  margin: 0 0 0.25rem;
  line-height: 1.4;
}

/* Precio */
.productos .precio-producto {
  font-weight: bold;
  color: #c84b31;
  margin: 0.5rem 0;
}

/* Descripción */
.descripcion {
  font-size: 0.9rem;
  color: #717171;
  line-height: 1.4;
  margin: 0 0 0.5rem;
}

.icon-favorito {
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 6px;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  background-color: 0 2px 6px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  font-size: 1.5rem;
  color: #ffffff;
  z-index: 10;
  transition: transform 0.2s ease;
  fill: #fff !important;
}

.icon-favorito:hover {
  transform: scale(1.2);
}

.producto-box {
  position: relative;
}


/* === PRODUCTOS DESTACADOS CUSTOM === *
.seccion-productos-custom {
  padding: 60px 20px;
  background: #ffffff;
  color: #000000;
}

.grid-productos-custom {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  max-width: 1200px;
  margin: auto;
}

.producto-box {
  background: transparent;
  transition: transform 0.3s ease;
}

.producto-slider {
  width: 100%;
  aspect-ratio: 4 / 3; /* Controla altura proporcional *
  overflow: hidden;
  margin-bottom: 12px;
  border-radius: 16px;
}

.producto-slider .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px; /* Solo la imagen redondeada *
  display: block;
}

.producto-box .info {
  padding: 0 4px;
}

.producto-box h3 {
  font-size: 1.1rem;
  color: #fff;
  margin: 0 0 6px;
}

.producto-box .descripcion {
  font-size: 0.9rem;
  color: #bbb;
  margin-bottom: 8px;
}

.producto-box .precio {
  font-weight: bold;
  color: #fff;
  font-size: 1rem;
}

/* Responsividad para móviles *
@media (max-width: 768px) {
  .seccion-productos-custom {
    padding: 40px 15px;
  }

  .grid-productos-custom {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .producto-box h3 {
    font-size: 1rem;
  }

  .producto-box .descripcion {
    font-size: 0.85rem;
  }

  .producto-box .precio {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .seccion-productos-custom {
    padding: 30px 10px;
  }

  .producto-slider {
    aspect-ratio: 1 / 1; /* Más cuadrado en pantallas chicas *
  }

  .producto-box h3 {
    font-size: 0.95rem;
  }

  .producto-box .descripcion {
    font-size: 0.8rem;
  }

  .producto-box .precio {
    font-size: 0.9rem;
  }
}

*/

/* ===== Sección HERO (título principal) ===== */
.about-hero {
  background-color: #000;
  padding: 120px 20px 60px;
  text-align: center;
  color: #fff;
}

.about-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 400;
}

.about-hero p {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
  color: #ccc;
  font-size: 1.1rem;
}

/* ===== Sección Misión y Visión ===== */
.about-mision-vision {
  background-color: #111;
  padding: 60px 20px;
}

.about-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.about-box {
  background-color: #1c1c1c;
  border: 1px solid #333;
  padding: 30px;
  border-radius: 8px;
}

.about-box h2 {
  color: #fff;
  margin-bottom: 15px;
}

.about-box p {
  color: #ccc;
  line-height: 1.6;
}

/* ===== Sección Objetivos ===== */
.about-objetivos {
  background-color: #0d0d0d;
  padding: 60px 20px;
  color: #eee;
}

.about-objetivos h2 {
  margin-bottom: 20px;
  text-align: center;
  font-weight: 400;
}

.about-objetivos ul {
  list-style: none;
  padding-left: 0;
  max-width: 900px;
  margin: 0 auto;
}

.about-objetivos ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 15px;
  line-height: 1.6;
}

.about-objetivos ul li::before {
  content: '✔';
  position: absolute;
  left: 0;
  top: 0;
  color: #c49b66;
}

/* ===== Sección Por qué comprar artesanías ===== */
.about-benefits {
  background-color: #111;
  padding: 60px 20px 100px;
  text-align: center;
  color: #eee;
}

.about-benefits h2 {
  margin-bottom: 20px;
  font-weight: 400;
}

.about-benefits p {
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.8;
  color: #ccc;
}

/* ===== Utilidades ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ===== Responsive fix for fixed header ===== */
@media (max-width: 768px) {
  .about-hero {
    padding-top: 140px;
  }
}


/* === STORE POLICY STYLES === */
.store-policy-hero {
  background-color: #000;
  color: #fff;
  padding: 80px 20px 60px;
  text-align: center;
}

.store-policy-hero h1 {
  font-size: 2.8rem;
  margin-bottom: 15px;
  font-family: 'Marcellus', serif;
}

.store-policy-hero p {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto;
  color: #ccc;
}

.store-section {
  background-color: #111;
  color: #eee;
  padding: 60px 20px;
}

.store-section h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #fff;
  font-family: 'Marcellus', serif;
}

.store-section p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #ccc;
}

.store-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.store-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  color: #ddd;
}

.store-list li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: #f0c14b;
  font-size: 1rem;
}

/* Responsive container */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .store-policy-hero h1 {
    font-size: 2rem;
  }

  .store-section h2 {
    font-size: 1.5rem;
  }
}
