/* ===== Tipografía y subrayado ===== */
.nav-link {
  position: relative;
  font-family: 'Zen Kaku Gothic New', 'Noto Sans JP', sans-serif;
  transition: color 0.25s ease;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background-color: #c6a25c;
  transition: width 250ms ease;
}
.nav-link:hover::after {
  width: 100%;
}
.nav-link:hover {
  color: #c6a25c;
}

/* Drawer items */
.drawer-item {
  display: block;
  padding: 12px 16px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid transparent;
  transition: all 0.25s ease;
}
.drawer-item:hover {
  border-color: rgba(198, 162, 92, 0.4);
  background-color: rgba(255, 255, 255, 0.7);
}

/* Animaciones y transición del header */
.header-transition {
  transition: height 300ms ease, padding 300ms ease, transform 300ms ease, box-shadow 300ms ease;
}

.backdrop {
  backdrop-filter: blur(4px);
}




/* Contenedor del slider (por si en el futuro agregamos parallax sutil) */
#heroSwiper {
  --swiper-theme-color: #c6a25c; /* Foco dorado Swiper */
}

/* Bullets (paginación) elegantes con acento dorado */
#heroSwiper .swiper-pagination-bullets .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: #d1d5db; /* gris claro */
  opacity: 1;
  transition: transform 200ms ease, background-color 200ms ease;
}
#heroSwiper .swiper-pagination-bullet-active {
  background: #c6a25c; /* dorado */
  transform: scale(1.15);
}

/* Flechas redondas tipo “pill” */
.custom-nav-btn {
  position: absolute;
  top: 50%;
  z-index: 10;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 9999px;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.08);
  display: grid;
  place-items: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: background-color 180ms ease, transform 180ms ease;
}
.custom-nav-btn:hover {
  background: #faf7f0; /* ivory */
  transform: translateY(-50%) scale(1.04);
}

/* Posicionamiento de flechas dentro del contenedor redondeado */
#heroSwiper .swiper-button-prev.custom-nav-btn {
  left: 12px;
}
#heroSwiper .swiper-button-next.custom-nav-btn {
  right: 12px;
}

/* Ocultar default icons de Swiper (usamos Lucide) */
#heroSwiper .swiper-button-prev::after,
#heroSwiper .swiper-button-next::after {
  display: none;
}

/* Ajustes responsivos del alto si quieres un ratio consistente */
@media (min-width: 768px) {
  #heroSwiper .swiper-slide img {
    /* Truco: si tus imágenes no comparten proporción, descomenta para cobertura */
    /* object-fit: cover; height: 460px; width: 100%; */
  }
}
/* === Sidebar === */
#sidebarNav .acc-btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: space-between;
  padding: 10px 12px;
  border-radius: 10px;
  font-family: 'Zen Kaku Gothic New','Noto Sans JP',sans-serif;
  font-size: 14px;
  color: #222;
  transition: background-color .2s ease, color .2s ease;
}
#sidebarNav .acc-btn:hover { background: #faf7f0; color: #b8914a; }
#sidebarNav .acc-ico { width: 18px; height: 18px; transition: transform .2s ease; }

#sidebarNav .acc-panel {
  display: none;
  padding: 6px 6px 10px 10px;
}
#sidebarNav .acc-panel.open { display: block; }

#sidebarNav .acc-link {
  display: block;
  padding: 8px 10px;
  margin: 2px 0;
  border-radius: 8px;
  font-size: 13px;
  color: #444;
  transition: background-color .15s ease, color .15s ease;
}
#sidebarNav .acc-link:hover { background: #fff4; color: #c6a25c; }

#sidebarNav .acc-flat {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 14px;
  color: #222;
  transition: background-color .15s ease, color .15s ease;
}
#sidebarNav .acc-flat:hover { background: #faf7f0; color: #c6a25c; }

/* === Cards de producto (estilo base premium, limpio) === */
.prod-card { background: #fff; }
.prod-card img { transition: transform .25s ease; 
clip-path: inset(20% 0 22% 0);}
.prod-card a:hover img { transform: scale(1.02); }

.prod-name {
  font-family: 'Noto Sans JP',sans-serif;
  font-size: 13px;
  line-height: 1.5;
  color: #222;
}
.prod-price {
  font-family: 'Zen Kaku Gothic New','Noto Sans JP',sans-serif;
  color: #b45309; /* tono tipo “precio” (Tailwind amber-700) */
  font-size: 14px;
  font-weight: 600;
}
.prod-price .tax { font-size: 12px; color: #6b7280; margin-left: 2px; }
.prod-meta { font-size: 12px; color: #6b7280; }

/* Ajuste de sticky top por el header (aprox) */
@media (min-width:1024px){
  .lg\\:top-24 { top: 6rem; } /* coincide con clase usada en HTML */
}


/* ===== Beneficios (cards nuevas, marco fino dorado + sombra suave) ===== */
.benefit-card {
  background: #fff;
  border: 1px solid rgba(198,162,92,.45); /* gold */
  border-radius: 18px;
  padding: 28px 20px;
  text-align: center;
  box-shadow: 0 10px 24px rgba(0,0,0,.06);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.benefit-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(0,0,0,.08);
  border-color: rgba(198,162,92,.75);
}

.benefit-icon {
  display: grid;
  place-items: center;
  width: 64px; height: 64px;
  margin: 0 auto 12px;
  border-radius: 9999px;
  background: linear-gradient(180deg,#faf7f0, #fff);
  border: 1px solid rgba(198,162,92,.35);
  color: #b8914a; /* gold hover tone */
}

.benefit-title {
  font-family: 'Zen Kaku Gothic New','Noto Sans JP',sans-serif;
  font-size: 15px;
  letter-spacing: .02em;
  color: #222;
}

/* ===== Link superior del bloque categorías ===== */
.home-link {
  display: inline-block;
  padding: 6px 10px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  font-size: 12.5px;
  color: #6b7280;
  transition: color .18s ease, border-color .18s ease, background-color .18s ease;
}
.home-link:hover {
  color: #c6a25c;
  border-color: rgba(198,162,92,.55);
  background: #faf7f0;
}

/* ===== Tiles de subcategorías (nuevo look) ===== */
.tile {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #f0f0f0;
  box-shadow: 0 8px 20px rgba(0,0,0,.06);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(0,0,0,.10);
  border-color: rgba(198,162,92,.35);
}
.tile img {
  display: block;
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform .35s ease, filter .35s ease;
}
@media (min-width: 768px) {
  .tile img { height: 200px; }
}
.tile:hover img { transform: scale(1.03); filter: saturate(1.02); }

/* Etiqueta flotante con sello hex minimalista (diferente al viejo) */
.tile-label {
  position: absolute;
  left: 14px; top: 14px;
  padding: 6px 10px;
  font-family: 'Zen Kaku Gothic New','Noto Sans JP',sans-serif;
  font-size: 13.5px;
  color: #222;
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(198,162,92,.45);
  border-radius: 10px;
  box-shadow: 0 6px 14px rgba(0,0,0,.06);
}

/* CTA sutil dentro del tile (esquina) */
.tile-cta {
  position: absolute;
  right: 10px; bottom: 10px;
  display: inline-flex; align-items: center; gap: 6px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 9999px;
  padding: 6px 10px;
  font-size: 12px;
  color: #6b7280;
  transition: color .18s ease, border-color .18s ease, background-color .18s ease;
}
.tile:hover .tile-cta {
  color: #b8914a;
  border-color: rgba(198,162,92,.45);
  background: #faf7f0;
}


/* Headline */
.size-headline{
  font-family:'Zen Kaku Gothic New','Noto Sans JP',sans-serif;
  font-size:15px;
  color:#222;
}

/* Grid */
.size-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:18px;
}
@media (min-width:1024px){
  .size-grid{ grid-template-columns:repeat(2,minmax(0,1fr)); }
}

/* Tile */
.size-tile{
  position:relative;
  display:flex;
  align-items:center;
  justify-content: space-around;
  gap:14px;
  padding:14px 16px;
  border:1px solid rgba(198,162,92,.55); /* gold */
  border-radius:14px;
  background:#FAF7F0; /* ivory */
  text-decoration:none;
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  box-shadow:0 8px 20px rgba(0,0,0,.05);
}
.size-tile:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 28px rgba(0,0,0,.08);
  border-color:rgba(198,162,92,.75);
}
.size-tile:focus{
  outline:2px solid transparent;
  box-shadow:0 0 0 3px rgba(198,162,92,.35);
}

/* Image */
.size-img{
  width:100%; height:72px;
  border-radius:9999px;
  overflow:hidden;
  background:#fff;
  border:1px solid rgba(0,0,0,.06);
  flex-shrink:0;
}
.size-img img{
  width:100%; height:100%; object-fit:cover;
  transition:transform .25s ease;
}
.size-tile:hover .size-img img{ transform:scale(1.04); }

/* Label */
.size-label{
  font-family:'Zen Kaku Gothic New','Noto Sans JP',sans-serif;
  font-size:18px;
  color:#6b0f1a; /* tono vino para diferenciar del original */
  letter-spacing:.02em;
}
:root{
  --gold:#c6a25c;
  --gold-2:#b8914a;
  --ink:#222;
  --ivory:#faf7f0;
  --line:#eef1f4;
}

/* contenedor base */
.footer-root{
  background:#fff;
  border-top:1px solid var(--line);
  margin-top:40px;
  position:relative;
  color:var(--ink);
  font-family:'Noto Sans JP',sans-serif;
}

/* grid superior */
.footer-grid{
  max-width:80rem; margin:0 auto;
  padding:28px 1rem 10px;
  display:grid; gap:18px;
  grid-template-columns:repeat(2,minmax(0,1fr));
}
@media (min-width:1024px){
  .footer-grid{ grid-template-columns:repeat(4,minmax(0,1fr)); padding:36px 2rem 12px; }
}

/* columna */
.f-col{ background:#fff; border:1px solid var(--line); border-radius:14px; }
.f-head{
  width:100%; background:linear-gradient(180deg,#fff,var(--ivory));
  border:0; border-bottom:1px solid var(--line);
  padding:12px 14px; display:flex; align-items:center; justify-content:space-between;
  font-family:'Zen Kaku Gothic New','Noto Sans JP',sans-serif; font-size:14px; color:var(--ink);
  border-radius:14px 14px 0 0; cursor:pointer;
}
.f-head .ico{ width:18px; height:18px; transition:transform .2s ease; color:var(--gold-2);}
.f-list{ list-style:none; margin:0; padding:10px 12px 14px; display:block; }
.f-list a{
  display:block; padding:8px 10px; border-radius:10px; color:#444; text-decoration:none;
  transition:background-color .15s ease, color .15s ease, border-color .15s ease;
}
.f-list a:hover{ background:#fff; color:var(--gold-2); border:1px solid rgba(198,162,92,.35); }

/* acordeón solo en móvil */
@media (min-width:1024px){
  .f-head .ico{ display:none; }
}

/* nota central */
.footer-note{
  max-width:80rem; margin:8px auto 0; padding:16px 1rem 28px;
  display:grid; gap:12px;
  grid-template-columns:1fr;
}
@media (min-width:1024px){
  .footer-note{ grid-template-columns:repeat(4,minmax(0,1fr)); padding:10px 2rem 34px; }
}
.note-item{
  background:var(--ivory);
  border:1px dashed rgba(198,162,92,.6);
  border-radius:12px;
  padding:14px;
}
.note-item h4{
  margin:0 0 6px; font-family:'Zen Kaku Gothic New','Noto Sans JP',sans-serif; font-size:14px; color:#111;
}
.note-item p{ margin:0; font-size:13px; color:#555; line-height:1.7; }
.note-item .warn{ color:#b91c1c; }

/* bottom */
.footer-bottom{
  border-top:1px solid var(--line);
  background:#fff;
  padding:16px 1rem 22px;
  max-width:80rem; margin:0 auto;
  display:flex;
  flex-direction: column;
  gap:14px; text-align:center;
}
@media (min-width:1024px){
  .footer-bottom{ grid-template-columns:1fr auto 1fr; align-items:center; text-align:left; padding:18px 2rem 28px; }
}
.sub-links{ display:flex; flex-direction: column; gap:12px; flex-wrap:wrap; justify-content:center; width: 80%;}
.sub-links a{
  font-size:12.5px; color:#666; text-decoration:none; border:1px solid var(--line);
  padding:6px 10px; border-radius:10px; transition:all .15s ease;
}
.sub-links a:hover{ color:var(--gold-2); border-color:rgba(198,162,92,.45); background:var(--ivory); }

.sns{ display:flex; gap:10px; justify-content:center; }
.sico{ width:18px; height:18px; color:#888; transition:color .15s ease, transform .15s ease; }
.sns a:hover .sico{ color:var(--gold-2); transform:translateY(-1px); }

.copy{ text-align:center; color:#777; font-size:12.5px; }

/* ページトップ */
.to-top{
  position:fixed; right:16px; bottom:16px;
  width:42px; height:42px; border-radius:9999px;
  background:#fff; border:1px solid rgba(0,0,0,.08);
  display:grid; place-items:center;
  box-shadow:0 10px 24px rgba(0,0,0,.12);
  cursor:pointer; transition:transform .18s ease, opacity .18s ease;
  opacity:0; pointer-events:none;
}
.to-top.show{ opacity:1; pointer-events:auto; }
.to-top:hover{ transform:translateY(-2px); }







/* Paleta y tipografía */
:root{
  --gold:#c6a25c;
  --gold-2:#b8914a;
  --ink:#222;
  --ivory:#faf7f0;
  --line:#eef1f4;
}
@font-face{font-family:"Zen Kaku Gothic New";src:local("Zen Kaku Gothic New");}
.font-zen{font-family:'Zen Kaku Gothic New','Noto Sans JP',sans-serif;}

.text-ink{color:var(--ink);}
.text-gold-2{color:var(--gold-2);}

/* Sidebar */
.filter-block .filter-head{
  display:flex; align-items:center; justify-content:space-between;
  padding:12px 14px; background:linear-gradient(180deg,#fff,var(--ivory));
  font-family:'Zen Kaku Gothic New','Noto Sans JP',sans-serif; font-size:14px; color:var(--ink);
}
.acc-btn{display:grid; place-items:center; padding:6px; border-radius:8px; border:1px solid transparent;}
.acc-btn:hover{border-color:var(--line); background:#fff;}
.filter-panel{padding:10px 12px; display:none;}
.filter-panel.open{display:block;}

/* Checkbox pill */
.cb{
  display:flex; align-items:center; gap:8px; width:100%;
  padding:8px 10px; border-radius:10px; border:1px solid var(--line);
  background:#fff; color:#444; cursor:pointer; transition:.15s ease;
  font-size:13px;
}
.cb:hover{border-color:rgba(198,162,92,.45); color:var(--gold-2); background:#fff;}
.cb input{appearance:none; width:16px; height:16px; border:1.5px solid rgba(198,162,92,.6); border-radius:4px; display:inline-block; position:relative;}
.cb input:checked{background:var(--gold); border-color:var(--gold);}
.cb input:checked::after{content:""; position:absolute; inset:3px; background:#fff; border-radius:2px;}
.cb .count{margin-left:auto; font-size:12px; color:#888}

/* Botones */
.btn-outline{
  border:1px solid var(--line); border-radius:10px; padding:.55rem .8rem; font-size:13px;
  background:#fff; color:#444; transition:.15s ease;
}
.btn-outline:hover{border-color:rgba(198,162,92,.5); color:var(--gold-2); background:var(--ivory);}
.btn-gold{
  border-radius:12px; padding:.6rem 1.1rem; font-family:'Zen Kaku Gothic New','Noto Sans JP',sans-serif;
  background:var(--gold); color:#fff; box-shadow:0 10px 24px rgba(198,162,92,.25);
  transition:transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn-gold:hover{transform:translateY(-1px); box-shadow:0 16px 30px rgba(198,162,92,.3); background:var(--gold-2);}

/* Cards */
.prod-card{background:#fff;}
.prod-card a{display:block; overflow:hidden; border-radius:12px; border:1px solid var(--line);}
.prod-card img{width:100%; height:auto; display:block; transition:transform .25s ease;}
.prod-card a:hover img{transform:scale(1.02);}
.prod-name{font-family:'Noto Sans JP',sans-serif; font-size:13px; line-height:1.5; color:#222;}
.prod-price{font-family:'Zen Kaku Gothic New','Noto Sans JP',sans-serif; color:#b45309; font-size:14px; font-weight:600;}
.prod-price .tax{font-size:12px; color:#6b7280; margin-left:2px;}







/* ===========================
   PÁGINA DE PRODUCTO - ESTILOS MEJORADOS
   Mantiene TODAS las clases originales
   =========================== */

/* Container Principal - ORIGINAL: .product1 */
.product1 {
  display: flex;
  background-color: #ffffff;
  padding: 40px;
  align-items: flex-start;
  justify-content: center;
  width: 85%;
  max-width: 1400px;
  margin: 0 auto;
  margin-bottom: 60px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(198, 162, 92, 0.1);
  border: 1px solid rgba(198, 162, 92, 0.15);
  gap: 60px;
}

/* === GALERÍA DE IMÁGENES === */

/* Container de imagen - ORIGINAL: .product-image_container */
.product-image_container {
  width: 50%;
  padding: 10px;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: sticky;
  top: 100px;
}

/* Imagen principal - ORIGINAL: .product__image */
.product__image {
  width: 100%;
  height: auto;
  border-radius: 16px;
  border: 2px solid rgba(198, 162, 92, 0.2);
  transition: transform 0.5s ease, opacity 0.3s ease;
  background: #faf7f0;
  aspect-ratio: 1;
  object-fit: cover;
}

.product__image:hover {
  transform: scale(1.02);
}

/* Miniaturas - ORIGINAL: .product__thumbnails */
.product__thumbnails {
  margin: 20px auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
  gap: 12px;
  width: 100%;
}

/* Miniatura individual - ORIGINAL: .product__thumbnail */
.product__thumbnail {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  cursor: pointer;
  border-radius: 12px;
  border: 2px solid rgba(198, 162, 92, 0.2);
  transition: all 0.3s ease;
  background: #faf7f0;
}

.product__thumbnail:hover {
  border-color: #c6a25c;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(198, 162, 92, 0.3);
}

.product__thumbnail.active {
  border-color: #c6a25c;
  box-shadow: 0 0 0 3px rgba(198, 162, 92, 0.2);
}

/* === INFORMACIÓN DEL PRODUCTO === */

/* Info container - ORIGINAL: .product-info */
.product-info {
  flex: 1;
  padding: 15px;
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 20px;
  width: 50%;
  justify-content: flex-start;
  gap: 20px;
}

/* Título - ORIGINAL: .product-title */
.product-title {
  font-size: 28px;
  margin-bottom: 0;
  font-weight: 700;
  color: #222222;
  line-height: 1.4;
  letter-spacing: 0.5px;
}

/* Precio - ORIGINAL: .product-price */
.product-price {
  font-size: 32px;
  margin-left: 0;
  margin-bottom: 0;
  margin-top: 0;
  font-weight: 800;
  color: #c6a25c;
}

/* Code - ORIGINAL: .product-code1, .product-code2 */
.product-code1 {
  margin-left: 0;
  font-size: 14px;
  color: #8d6e46;
  margin-top: 0;
  font-weight: 500;
}

.product-code2 {
  margin-left: 0;
  margin-bottom: 20px;
  font-size: 12px;
  color: #8d6e46;
}

/* Links carrito - ORIGINAL: .cart-link */
.cart-link {
  text-decoration: none;
  color: #c6a25c;
  transition: all 0.3s ease;
}

.cart-link:hover {
  border-bottom: 2px solid #c6a25c;
  color: #b8914a;
}

/* Botón agregar al carrito - ORIGINAL: .product__add-to-cart-button */
.product__add-to-cart-button {
  margin: 0;
  margin-top: 30px;
  width: 100%;
  max-width: 400px;
  height: 56px;
  cursor: pointer;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  background: linear-gradient(135deg, #c6a25c, #b8914a);
  border: none;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(198, 162, 92, 0.3);
  letter-spacing: 1px;
}

.product__add-to-cart-button:hover {
  background: linear-gradient(135deg, #b8914a, #a67f3d);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(198, 162, 92, 0.4);
}

.product__add-to-cart-button:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(198, 162, 92, 0.3);
}

/* Selector de cantidad - ORIGINAL: .product-quantity */
.product-quantity {
  margin-top: 0;
  margin-left: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.product-quantity label {
  display: block;
  font-size: 16px;
  margin-right: 0;
  margin-bottom: 8px;
  font-weight: 600;
  color: #222222;
}

.product-quantity input {
  width: 60px;
  height: 44px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  border: 2px solid rgba(198, 162, 92, 0.3);
  border-right: none;
  border-left: none;
  outline: none;
  color: #222222;
  background: white;
}

.product-quantity input:focus {
  background: #faf7f0;
}

/* Botones de cantidad - ORIGINAL: .quantity-btn */
.quantity-btn {
  background: white;
  padding: 0;
  font-size: 16px;
  cursor: pointer;
  border: 2px solid rgba(198, 162, 92, 0.3);
  border-right: 1px solid rgba(198, 162, 92, 0.2);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  transition: all 0.3s ease;
  color: #8d6e46;
}

.quantity-btn:hover {
  background: #faf7f0;
  border-color: #c6a25c;
  color: #c6a25c;
}

.quantity-btn i {
  color: inherit;
  font-size: 16px;
}

/* Botón incrementar - ORIGINAL: .quantity-btn2 */
.quantity-btn2 {
  background: white;
  padding: 0;
  font-size: 16px;
  cursor: pointer;
  border: 2px solid rgba(198, 162, 92, 0.3);
  border-left: 1px solid rgba(198, 162, 92, 0.2);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  transition: all 0.3s ease;
  color: #8d6e46;
}

.quantity-btn2:hover {
  background: #faf7f0;
  border-color: #c6a25c;
  color: #c6a25c;
}

.quantity-btn2 i {
  color: inherit;
  font-size: 16px;
}

/* === DESCRIPCIÓN === */

/* Sección descripción - ORIGINAL: .product-description-section */
.product-description-section {
  width: 85%;
  max-width: 1400px;
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 0 auto;
  margin-top: 0;
  margin-bottom: 60px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.8;
  color: #222222;
  background: white;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(198, 162, 92, 0.1);
  border: 1px solid rgba(198, 162, 92, 0.15);
}

.product-description-section h2 {
  margin-bottom: 30px;
}

.product-description-section img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 20px 0;
}

.product-description-section p {
  margin-bottom: 16px;
}

.product-description-section ul,
.product-description-section ol {
  margin-left: 24px;
  margin-bottom: 16px;
}

.product-description-section li {
  margin-bottom: 8px;
}

/* === ELEMENTOS NUEVOS (OPCIONALES) === */

/* Separador Zen (nuevo, no rompe nada) */
.zen-divider {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #c6a25c, transparent);
  margin: 16px 0;
}

.zen-divider-small {
  width: 60px;
  height: 3px;
  background: linear-gradient(135deg, #c6a25c, #b8914a);
  border-radius: 2px;
  margin-bottom: 20px;
}

/* Features (nuevo, no rompe nada) */
.product-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #222222;
  font-size: 14px;
  font-weight: 500;
}

/* Meta info (nuevo, no rompe nada) */
.product-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  background: linear-gradient(135deg, #faf7f0, #f5f0e8);
  border-radius: 12px;
  border: 1px solid rgba(198, 162, 92, 0.2);
  width: 100%;
  margin-top: 20px;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Badge (nuevo, no rompe nada) */
.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 10;
}

.badge-new {
  background: linear-gradient(135deg, #c6a25c, #b8914a);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  box-shadow: 0 2px 8px rgba(198, 162, 92, 0.3);
}

/* Wrapper para precio (nuevo, no rompe nada) */
.product-price-wrapper {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.product-tax {
  font-size: 14px;
  color: #8d6e46;
  font-weight: 500;
}

/* Description content (nuevo, no rompe nada) */
.description-content {
  width: 100%;
}

.description-header {
  margin-bottom: 30px;
}

/* Wrapper para controles de cantidad (nuevo, no rompe nada) */
.quantity-controls-wrapper {
  display: flex;
  align-items: center;
  width: fit-content;
}

/* === RESPONSIVE === */

@media (max-width: 1024px) {
  .product1 {
    flex-direction: column;
    width: 95%;
    gap: 40px;
    padding: 30px;
  }

  .product-image_container,
  .product-info {
    width: 100%;
    position: static;
  }

  .product-description-section {
    width: 95%;
  }
}

@media (max-width: 640px) {
  .product1 {
    padding: 20px;
    gap: 30px;
  }

  .product-title {
    font-size: 22px;
  }

  .product-price {
    font-size: 26px;
  }

  .product__add-to-cart-button {
    width: 100%;
    max-width: none;
    font-size: 15px;
    height: 50px;
  }

  .product-description-section {
    padding: 30px 20px;
  }

  .product__thumbnails {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* === ANIMACIONES === */

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.product1 {
  animation: fadeIn 0.5s ease-out;
}



.input-style {
  @apply w-full px-4 py-3 border border-gray-300 rounded-xl
         bg-orange-50 focus:ring-2 focus:ring-[#0095B6]
         outline-none transition;
}

.payment-option {
  @apply flex items-center gap-3 p-3 border rounded-xl
         hover:bg-gray-50 cursor-pointer;
}


.category-panel {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.2s ease;
}

.category-panel.open {
  max-height: 1000px;
  opacity: 1;
}


.product-section{
  width: 90%;
  padding: 20px;
  margin: 0 auto;
}
.product-grid {
  margin: 20px auto;
  padding: 20px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));;
}
.logo-wrapper {
    width: 150px;
    height: 150px;
    background: white;
    border-radius: 50%;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.order-complete-page {
            min-height: 100vh;
            background: linear-gradient(135deg, #faf7f0 0%, #f5f0e8 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 40px 20px;
            font-family: 'Zen Kaku Gothic New', 'Noto Sans JP', sans-serif;
        }

        .order-complete-container {
            max-width: 700px;
            width: 100%;
            background: white;
            border-radius: 25px;
            box-shadow: 0 10px 40px rgba(198, 162, 92, 0.2);
            border: 2px solid rgba(198, 162, 92, 0.2);
            overflow: hidden;
            animation: fadeInUp 0.6s ease-out;
        }

        /* Header con logo */
        .order-header {
            background: linear-gradient(135deg, #c6a25c 0%, #b8914a 100%);
            padding: 50px 40px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .order-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: radial-gradient(circle at 25% 25%, rgba(255,255,255,0.1) 2px, transparent 2px),
                              radial-gradient(circle at 75% 75%, rgba(255,255,255,0.1) 2px, transparent 2px);
            background-size: 50px 50px;
            opacity: 0.5;
        }

        .logo-container {
            position: relative;
            z-index: 2;
            margin-bottom: 30px;
        }

        .logo-wrapper {
            width: 150px;
            height: 150px;
            margin: 0 auto;
            background: white;
            border-radius: 50%;
            padding: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .logo-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        /* Icono de éxito animado */
        .success-icon {
            position: relative;
            z-index: 2;
            width: 100px;
            height: 100px;
            background: white;
            border-radius: 50%;
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 20px rgba(198, 162, 92, 0.3);
            animation: scaleIn 0.5s ease-out 0.3s both;
        }

        .success-icon svg {
            color: #c6a25c;
        }

        .success-title {
            position: relative;
            z-index: 2;
            color: white;
            font-size: 32px;
            font-weight: 800;
            margin: 0;
            letter-spacing: 2px;
        }

        /* Contenido */
        .order-content {
            padding: 50px 40px;
            text-align: center;
        }

        .thank-you-message {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            margin-bottom: 30px;
            font-size: 24px;
            color: #222222;
            font-weight: 700;
        }

        .zen-divider {
            width: 80px;
            height: 3px;
            background: linear-gradient(135deg, #c6a25c, #b8914a);
            margin: 30px auto;
            border-radius: 2px;
        }

        .order-message {
            color: #6b5335;
            font-size: 16px;
            line-height: 1.8;
            margin-bottom: 30px;
        }

        .order-message strong {
            color: #222222;
            font-weight: 700;
        }

        /* Información de contacto */
        .contact-info {
            background: linear-gradient(135deg, #faf7f0, #f5f0e8);
            border-radius: 15px;
            padding: 25px;
            margin-bottom: 35px;
            border: 1px solid rgba(198, 162, 92, 0.2);
        }

        .contact-title {
            font-size: 14px;
            font-weight: 600;
            color: #8d6e46;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .contact-details {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            color: #222222;
            font-size: 15px;
        }

        .contact-details a {
            color: #c6a25c;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .contact-details a:hover {
            color: #b8914a;
            text-decoration: underline;
        }

        /* Botón home */
        .home-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            background: linear-gradient(135deg, #c6a25c, #b8914a);
            color: white;
            padding: 18px 50px;
            border-radius: 50px;
            font-size: 16px;
            font-weight: 700;
            text-decoration: none;
            box-shadow: 0 6px 20px rgba(198, 162, 92, 0.3);
            transition: all 0.3s ease;
            letter-spacing: 1px;
        }

        .home-button:hover {
            background: linear-gradient(135deg, #b8914a, #a67f3d);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(198, 162, 92, 0.4);
        }

        .home-button:active {
            transform: translateY(0);
        }

        /* Footer */
        .order-footer {
            background: linear-gradient(135deg, #6b5335 0%, #4a3a25 100%);
            padding: 30px 40px;
            text-align: center;
            color: white;
        }

        .footer-text {
            font-size: 14px;
            line-height: 1.6;
            margin-bottom: 15px;
            opacity: 0.95;
        }

        .footer-divider {
            width: 60px;
            height: 2px;
            background: rgba(250, 247, 240, 0.5);
            margin: 15px auto;
        }

        .copyright {
            font-size: 12px;
            opacity: 0.8;
        }

        /* Animaciones */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes scaleIn {
            from {
                transform: scale(0);
                opacity: 0;
            }
            to {
                transform: scale(1);
                opacity: 1;
            }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .order-complete-container {
                margin: 20px;
                border-radius: 20px;
            }

            .order-header {
                padding: 40px 30px;
            }

            .logo-wrapper {
                width: 120px;
                height: 120px;
            }

            .success-title {
                font-size: 26px;
            }

            .order-content {
                padding: 40px 30px;
            }

            .thank-you-message {
                font-size: 20px;
                flex-direction: column;
                gap: 10px;
            }

            .order-message {
                font-size: 15px;
            }

            .home-button {
                width: 100%;
                padding: 16px 40px;
            }

            .order-footer {
                padding: 25px 30px;
            }
        }

.product__image{
  clip-path: inset(20% 0 22% 0);
}
.product__thumbnail{
  clip-path: inset(20% 0 20% 0);
}