.catalogo-section {
  background: #f6f4f1;
  padding: 80px 0;
  font-family: 'Cinzel', serif;
}

.catalogo-container {
  margin: auto;
  padding: 0 40px;
}


.catalogo-header {
  text-align: center;
  margin-bottom: 60px;
}

.breadcrumbs {
  font-size: 12px;
  opacity: 0.6;
  margin-bottom: 10px;
}

.catalogo-header h1 {
  font-size: 42px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.subtitle {
  font-size: 16px;
  opacity: 0.7;
}


.catalogo-body {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
}

/* FILTROS */
.filters-panel {
  background: rgba(255, 255, 255, 0.6);
  padding: 25px;
  border-radius: 18px;
}

.filters-panel h3 {
  font-size: 14px;
  margin-bottom: 20px;
}

.filter-block {
  margin-bottom: 25px;
}

.filter-title {
  font-size: 13px;
  display: block;
  margin-bottom: 10px;
}

.tallas span {
  display: inline-block;
  border: 1px solid #ccc;
  padding: 6px 10px;
  margin: 4px;
  font-size: 12px;
  border-radius: 6px;
}

.colores span {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 8px;
}

.c1 {
  background: #c2a77d;
}

.c2 {
  background: #8b5a2b;
}

.c3 {
  background: #000;
}

.c4 {
  background: #eee;
}

.btn-filter {
  width: 100%;
  padding: 12px;
  border-radius: 30px;
  background: #c7a76b;
  border: none;
  color: white;
  font-size: 13px;
}

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

.producto-card {
  background: rgba(255, 255, 255, 0.7);
  border-radius: 20px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.producto-img {
  position: relative;
  padding: 5px;
}



.fav {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(6px);
  border-radius: 50%;

  color: #8c8c8c;
  cursor: pointer;

  transition: all .25s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.fav:hover {
  transform: scale(1.08);
  color: #c6a75e;
}

.fav.active {
  color: #695d36;
  background: rgb(208 184 103);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12), 0 0 0 2px rgba(198, 167, 94, 0.25);
}

.producto-info {
  padding: 10px;
}

.producto-info h4 {
  font-size: 16px;
  margin-bottom: 5px;
}

.material {
  font-size: 13px;
  opacity: 0.6;
}

.rating {
  color: #c7a76b;
  font-size: 15px;
  margin: 10px 0;
}

.precio {
  font-size: 16px;
  margin-bottom: 15px;
}

.btn-cart {
  background: #c7a76b;
  border: none;
  padding: 12px;
  border-radius: 30px;
  width: 100%;
  color: white;
  font-size: 13px;
  flex: 2;
}

.acciones {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.btn-ver {
  flex: 1;
  background: transparent;
  border: 1px solid #c7a76b;
  color: #c7a76b;
  padding: 10px;
  border-radius: 30px;
  font-size: 12px;
  letter-spacing: 1px;
}

.btn-ver:hover {
  background: #c7a76b;
  color: #fff;
}

.modal-actions .btn-cart {
  cursor: pointer;
  transition: .2s ease;
}

.modal-actions .btn-cart:hover {
  filter: brightness(1.05);
}


/* ===== MODAL PREMIUM ===== */

.modal-producto.is-open {
  display: block
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .35);
  backdrop-filter: blur(6px)
}

.modal-contenido {
  position: relative;
  width: 980px;
  max-width: calc(100% - 40px);
  margin: 5vh auto;
  background: #f6f4ef;
  border-radius: 18px;
  padding: 32px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .18);
  border: 1px solid rgba(199, 167, 107, .22);
  z-index: 2;
}


/* ANIMACION MODAL */
.modal-contenido {
  transform: scale(.94) translateY(25px);
  opacity: 0;
  transition: transform .65s cubic-bezier(.22, 1, .36, 1), opacity .55s ease;
}

.modal-producto.is-open .modal-contenido {
  transform: scale(1) translateY(0);
  opacity: 1;
}

/* efecto de cierre */
.modal-producto.closing .modal-contenido {
  transform: scale(.92) translateY(35px);
  opacity: 0;
}





.modal-cerrar {
  position: absolute;
  top: 18px;
  right: 22px;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, .08);
  background: rgba(255, 255, 255, .65);
  font-size: 24px;
  line-height: 1;
  opacity: .75
}

.modal-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 32px
}

.img-frame {
  background: rgba(255, 255, 255, .65);
  border: 1px solid rgba(0, 0, 0, .06);
  border-radius: 22px;
  padding: 10px;
}

.modal-imagen img {
  width: 100%;
  display: block
}

.mini-strip {
  display: flex;
  gap: 10px;
  margin-top: 14px
}

.mini-strip span {
  flex: 1;
  height: 54px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .55);
  border: 1px solid rgba(0, 0, 0, .06);
}

.modal-topline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px
}

.pill {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 11px;
  letter-spacing: 1px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(199, 167, 107, .14);
  border: 1px solid rgba(199, 167, 107, .35);
  color: #7b5a25;
}

.pill.loading {
  background: rgba(0, 0, 0, .06);
  border-color: rgba(0, 0, 0, .10);
  color: rgba(0, 0, 0, .55)
}

.sku {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 12px;
  opacity: .55
}

.modal-info h2 {
  font-size: 28px;
  margin: 0 0 6px;
}

.modal-subtitle {
  font-size: 14px;
  opacity: .65;
  margin: 0 0 14px
}

.modal-precio {
  font-size: 22px;
  margin: 6px 0 16px
}

.modal-sep {
  height: 1px;
  background: rgba(0, 0, 0, .08);
  margin: 14px 0
}

.modal-block {
  margin: 12px 0
}

.block-title {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 1px;
  opacity: .6;
  margin-bottom: 10px;
  text-transform: uppercase
}

.tallas-modal {
  display: flex;
  flex-wrap: wrap;
  gap: 8px
}

.chip {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 12px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, .12);
  background: rgba(255, 255, 255, .55);
}

.modal-descripcion {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.55;
  opacity: .78;
  margin: 0;
}

.modal-actions {
  display: flex;
  gap: 10px;
  margin-top: 18px
}

.btn-ghost {
  flex: 1;
  background: transparent;
  border: 1px solid rgba(199, 167, 107, .55);
  color: #7b5a25;
  padding: 12px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 1px;
}

.modal-btn {
  flex: 2
}

/*.btn-cart[disabled]{opacity:.55;filter:saturate(.6);cursor:not-allowed}*/

.modal-trust {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 12px;
  opacity: .55;
  margin-top: 14px
}

.modal-producto {
  position: fixed;
  inset: 0;
  z-index: 9999;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition: opacity .35s ease;
}

.modal-producto.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .45);
  backdrop-filter: blur(4px);
  z-index: 1;
}

/* CONTENEDOR TALLAS */
.tallas-modal {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

/* CHIP BASE */
.tallas-modal .chip {
  min-width: 42px;
  height: 34px;
  padding: 0 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  border-radius: 20px;
  border: 1px solid rgba(120, 110, 90, .25);
  background: #f4f2ee;
  color: #3a3a3a;
  cursor: pointer;
  transition: all .2s ease;
  user-select: none;
}

/* HOVER */
.tallas-modal .chip:hover {
  background: #e9e5de;
  border-color: rgba(120, 110, 90, .45);
}

/* SELECCIONADA */
.tallas-modal .chip.active {
  background: #c5b79d;
  color: #fff;
  border-color: #c5b79d;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .08);
}

/* SIN STOCK */
.tallas-modal .chip.disabled {
  opacity: .35;
  pointer-events: none;
}

.disabled-group {
  opacity: .35;
  pointer-events: none;
}

/*ORNAMENTOS*/
.titulo-ornamentado {
  text-align: center;
  font-family: "Cinzel", serif;
  font-size: 46px;
  letter-spacing: 4px;
  position: relative;
}

.titulo-wrapper {
  position: relative;
  display: inline-block;
  padding: 0 80px;
}

.ornamento {
  position: absolute;
  top: 50%;
  width: 80px;
  height: 18px;
  transform: translateY(-50%);
  background: linear-gradient(90deg,
      #b8903c,
      #202020,
      #b8903c);
  mask: url('./../img/ornamento2.png') center / contain no-repeat;
  -webkit-mask: url('./../img/ornamento2.png') center / contain no-repeat;
  opacity: 0.85;
}

.left {
  left: 0;
}

.right {
  right: 0;
  transform: translateY(-50%) scaleX(-1);
}

.ornamento-movil {
  display: none;
}

.hornamento {
  width: 90px;
}

/* MOBILE */
@media (max-width: 768px) {

  /* =========================
     TÍTULO + ORNAMENTOS
  ========================== */
  .titulo-wrapper {
    padding: 0;
  }

  .ornamento {
    display: none;
  }

  .ornamento-movil {
    display: block;
    margin: 18px auto 0;
    width: 120px;
    height: 24px;
    background: linear-gradient(90deg,
        #b8903c,
        #202020,
        #b8903c);
    mask: url('./../img/ornamento-movil.png') center / contain no-repeat;
    -webkit-mask: url('./../img/ornamento-movil.png') center / contain no-repeat;
    opacity: 0.9;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
  }

  .titulo-ornamentado {
    font-size: 32px;
    letter-spacing: 2px;
  }

  /* ========================
     LAYOUT GENERAL
  ========================== */
  .catalogo-body {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .filters-panel {
    order: 2;
  }

  .productos-grid {
    order: 1;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  /* =========================
     TARJETAS DE PRODUCTO
  ========================== */
  .producto-card {
    padding: 25px 20px;
  }

  .producto-info h4 {
    font-size: 18px;
    letter-spacing: 1px;
  }

  .precio {
    font-size: 14px;
  }

  .acciones {
    flex-direction: column;
    gap: 14px;
  }

  .btn-ver,
  .btn-cart {
    width: 100%;
  }

  /* Modal: ocupa pantalla y es scrollable */
  .modal-contenido {
    width: auto;
    max-width: calc(100% - 24px);
    margin: 10px auto;
    padding: 16px;
    border-radius: 18px;
    max-height: calc(100vh - 20px);
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }

  /* De 2 columnas a 1 columna */
  .modal-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* Imagen: controla el tamaño */
  .img-frame {
    padding: 14px;
    border-radius: 16px;
  }

  .modal-imagen img {
    width: 100%;
    height: auto;
    max-height: 42vh;
    object-fit: contain;
  }

  /* Tipografías */
  .modal-info h2 {
    font-size: 22px;
  }

  .modal-precio {
    font-size: 18px;
  }

  .modal-subtitle {
    font-size: 13px;
  }

  /* Botones: en columna */
  .modal-actions {
    flex-direction: column;
    gap: 10px;
  }

  .btn-ghost,
  .modal-btn {
    width: 100%;
  }

  /* Botón cerrar: siempre visible y usable */
  .modal-cerrar {
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    font-size: 24px;
    z-index: 5;
  }
}

.modal-precio {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-family: 'Cinzel', serif;
  margin: 12px 0 4px;
}

.modal-precio .currency {
  font-size: 18px;
  opacity: 0.6;
  letter-spacing: 1px;
}

.modal-precio .amount {
  font-size: 34px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #2a2a2a;
}

.modal-precio .code {
  font-size: 14px;
  opacity: 0.5;
  margin-left: 4px;
}

.modal-precio-sub {
  font-size: 13px;
  opacity: 0.55;
  letter-spacing: 0.5px;
}


.modal-precio {
  transition: transform .25s ease, opacity .25s ease;
}

.modal-precio:hover {
  transform: translateY(-2px);
}

.modal-precio-wrapper {
  background: linear-gradient(145deg, #f5f3ef, #ffffff);
  padding: 1px 8px;
  border-radius: 12px;
  border: 1px solid #e6e2db;
  display: inline-block;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .04);
}

.modal-precio {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-family: 'Cinzel', serif;
}

.modal-precio .currency {
  font-size: 16px;
  opacity: .6;
  letter-spacing: 1px;
}

.modal-precio .amount {
  font-size: 38px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #d00000;
}

.modal-precio .code {
  font-size: 14px;
  opacity: .5;
}

.modal-precio-note {
  font-size: 12px;
  opacity: .55;
  margin-top: 4px;
  letter-spacing: .5px;
}

.modal-info {
  max-height: calc(100vh - 140px);
  overflow-y: auto;
}

.modal-info::-webkit-scrollbar {
  width: 6px;
}

.modal-info::-webkit-scrollbar-track {
  background: transparent;
}

.modal-info::-webkit-scrollbar-thumb {
  background: rgba(120, 110, 90, 0.35);
  border-radius: 10px;
  transition: background .3s ease;
}

.modal-info::-webkit-scrollbar-thumb:hover {
  background: rgba(120, 110, 90, 0.6);
}

.modal-info {
  scrollbar-width: thin;
  scrollbar-color: #7f3a1f transparent;
}





.modal-oferta {
  position: relative;
  overflow: hidden;

  margin-top: 18px;
  padding: 18px 20px;

  border-radius: 16px;
  border: 1px solid rgba(199, 167, 94, 0.45);

  background:
    linear-gradient(135deg,
      #8f3025 0%,
      #a53b2c 48%,
      #76241e 100%);

  color: #fffaf2;

  box-shadow:
    0 12px 28px rgba(84, 37, 28, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}


.modal-oferta::after {
  content: "";

  position: absolute;
  top: 0;
  left: 20px;

  width: 70px;
  height: 2px;

  background: #d4b36b;
}


.modal-oferta__encabezado {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}


.modal-oferta__label {
  display: block;

  margin-bottom: 5px;

  font-family: 'Cinzel', serif;
  font-size: 9px;
  font-weight: 600;

  letter-spacing: 2.2px;

  color: #efd59d;
}


.modal-oferta__valor {
  font-family: 'Cinzel', serif;

  font-size: 27px;
  font-weight: 600;
  line-height: 1;

  letter-spacing: 1px;

  color: #ffffff;
}


.modal-oferta__icono {
  width: 42px;
  height: 42px;

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

  flex-shrink: 0;

  border-radius: 50%;

  border: 1px solid rgba(239, 213, 157, 0.45);

  background: rgba(255, 255, 255, 0.08);

  font-family: 'Cinzel', serif;
  font-size: 18px;

  color: #efd59d;
}


.modal-oferta__texto {
  margin: 13px 0 0;

  font-size: 12px;
  line-height: 1.55;

  color: rgba(255, 255, 255, 0.87);
}


.modal-oferta__vigencia {
  margin-top: 12px;
  padding-top: 10px;

  border-top: 1px solid rgba(255, 255, 255, 0.14);

  font-size: 13px;
  letter-spacing: 0.6px;

  color: #efd59d;
}

/** CARRITO */
/*   #cartBubble{
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 999999;
}

.cart-inner{
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(145deg,#d1b27c,#b8903c);
  box-shadow:
    0 20px 40px rgba(0,0,0,.15),
    inset 0 2px 6px rgba(255,255,255,.3);
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  transition: all .3s ease;
  position: relative;
}

.cart-inner:hover{
  transform: translateY(-6px);
  box-shadow:
    0 30px 60px rgba(0,0,0,.2),
    inset 0 2px 8px rgba(255,255,255,.35);
}

.cart-svg{
  width:26px;
  height:26px;
  fill:#2a2a2a;
  opacity:.9;
}

.cart-badge{
  position:absolute;
  top:6px;
  right:6px;
  min-width:18px;
  height:18px;
  padding:0 5px;
  border-radius:999px;
  background:#a30000;
  color:#fff;
  font-size:11px;
  font-family:system-ui;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 4px 12px rgba(0,0,0,.25);
  border:2px solid #f6f4f1;

}
#carritoPanel{
  width: 100vw !important;
  max-width: 100vw;
}
.offcanvas.offcanvas-end {
  transition: transform 2s ease;
}
.producto-img{
  position: relative;
}

.producto-badge{
  position: absolute;
  top: 12px;
  right: 12px;

  min-width: 22px;
  height: 22px;
  padding: 0 6px;

  border-radius: 999px;
  background: linear-gradient(145deg,#d1b27c,#b8903c);
  color: #1f1a12;

  font: 600 11px/22px system-ui;
  display:flex;
  align-items:center;
  justify-content:center;

  box-shadow: 0 6px 16px rgba(0,0,0,.22);
}*/
/*sin productos*/
.empty-state {
  width: 100%;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.empty-block {
  max-width: 520px;
  text-align: left;
}

.empty-title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  letter-spacing: 2px;
  color: #1c2a39;
  margin-bottom: 18px;
}

.empty-text {
  font-size: 0.95rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #9a7b4f;
  line-height: 1.8;
}

/* =========================
   EMPTY STATE PREMIUM
========================= */
.empty-state {
  grid-column: 1 / -1;
  width: 100%;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 20px;
}

.empty-frame {
  position: relative;
  width: min(100%, 780px);
  padding: 58px 46px;
  text-align: center;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .78), rgba(255, 255, 255, .55));
  border: 1px solid rgba(184, 144, 60, 0.18);
  box-shadow:
    0 18px 50px rgba(17, 24, 32, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  overflow: hidden;
}

.empty-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top center, rgba(184, 144, 60, .12), transparent 45%);
  pointer-events: none;
}

.empty-kicker {
  display: inline-block;
  margin-bottom: 18px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(184, 144, 60, 0.22);
  background: rgba(255, 255, 255, .58);
  color: #9a7b4f;
  font: 600 11px/1 system-ui, -apple-system, "Segoe UI", sans-serif;
  letter-spacing: 2.5px;
}

.empty-title {
  margin: 0 0 18px;
  font-family: 'Cinzel', serif;
  font-size: clamp(2rem, 3.2vw, 3.25rem);
  font-weight: 500;
  letter-spacing: 2px;
  line-height: 1.18;
  color: #16263a;
}

.empty-text {
  max-width: 560px;
  margin: 0 auto;
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.9;
  letter-spacing: .3px;
  text-transform: none;
  color: rgba(28, 42, 57, 0.78);
}

.empty-divider {
  width: 120px;
  height: 1px;
  margin: 28px auto 16px;
  background: linear-gradient(90deg,
      transparent,
      rgba(184, 144, 60, .55),
      transparent);
}

.empty-signature {
  display: inline-block;
  font-family: 'Cinzel', serif;
  font-size: .82rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #b8903c;
  opacity: .9;
}

.mini-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(72px, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.mini-thumb {
  padding: 0;
  border: 1px solid rgba(0, 0, 0, .08);
  background: rgba(255, 255, 255, .65);
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  transition: .22s ease;
}

.mini-thumb img {
  width: 100%;
  height: 72px;
  object-fit: cover;
  display: block;
}

.mini-thumb:hover {
  transform: translateY(-2px);
  border-color: rgba(199, 167, 107, .55);
}

.mini-thumb.active {
  border-color: #c7a76b;
  box-shadow: 0 8px 18px rgba(199, 167, 107, .18);
}

@media (max-width: 768px) {
  .empty-state {
    min-height: 420px;
    padding: 10px 0;
  }

  .empty-frame {
    padding: 38px 24px;
    border-radius: 22px;
  }

  .empty-kicker {
    letter-spacing: 2px;
    font-size: 10px;
  }

  .empty-title {
    font-size: 1.9rem;
    letter-spacing: 1px;
  }

  .empty-text {
    font-size: .95rem;
    line-height: 1.75;
  }
}

/*patron de fondo*/
.catalogo-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, #f8f6f1 0%, #f3f0ea 100%);
}

.catalogo-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/pattern-western-leather.png");
  background-repeat: repeat;
  background-size: 520px;
  opacity: 0.045;
  pointer-events: none;
  z-index: 0;
}

.catalogo-container {
  position: relative;
  z-index: 1;
}

.catalogo-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top center, rgba(184, 142, 75, 0.10), transparent 35%),
    linear-gradient(90deg, rgba(82, 44, 22, 0.04), transparent 18%, transparent 82%, rgba(82, 44, 22, 0.04));
  pointer-events: none;
  z-index: 0;
}

.oferta-sello {
  position: absolute;
  left: 50%;
  bottom: -18px;
  transform: translateX(-50%);
  z-index: 5;

  min-width: 132px;
  padding: 10px 18px 12px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;

  border-radius: 18px;
  border: 1px solid rgba(173, 129, 56, 0.35);

  background: linear-gradient(180deg,
      #fff8ec 0%,
      #f5e4bd 48%,
      #e1bd76 100%);

  box-shadow:
    0 14px 28px rgba(121, 89, 36, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);

  text-align: center;
}

img,
svg {
  border-top-right-radius: 5%;
  border-top-left-radius: 5%;
}

.oferta-ribbon {
  position: absolute;
  top: 22px;
  right: -58px;
  z-index: 6;

  width: 195px;
  min-height: 48px;
  padding: 7px 18px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  min-height: 46px;
  transform: rotate(42deg);
  transform-origin: center;

  background:
    linear-gradient(135deg,
      #812d24 0%,
      #a73d2e 48%,
      #78261f 100%);

  border-top: 1px solid rgba(255, 230, 184, 0.72);
  border-bottom: 1px solid rgba(255, 230, 184, 0.72);

  color: #fff8e9;
  text-align: center;

  box-shadow:
    0 8px 18px rgba(78, 30, 22, 0.30),
    inset 0 1px 0 rgba(255, 255, 255, 0.20);

  pointer-events: none;
}

.oferta-ribbon::before,
.oferta-ribbon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(255, 218, 151, 0.35);
}

.oferta-ribbon::before {
  top: 4px;
}

.oferta-ribbon::after {
  bottom: 4px;
}

.oferta-ribbon__small {
  display: block;

  font-family: 'Cinzel', serif;
  font-size: 8px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 2.4px;

  color: #f4d9a5;
}

.oferta-ribbon__value {
  display: block;
  margin-top: 4px;

  font-family: 'Cinzel', serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 1px;

  color: #ffffff;
  text-shadow: 0 1px 2px rgba(45, 15, 10, 0.35);
}

@media (max-width: 575.98px) {
  .oferta-ribbon {
    top: 42px;
    right: -46px;
    width: 180px;
  }

  .oferta-ribbon__value {
    font-size: 13px;
  }
}

.western-aviso {
  position: fixed;
  top: 32px;
  left: 50%;
  z-index: 99999;

  width: min(560px, calc(100% - 32px));
  min-height: 92px;

  padding: 20px 24px;

  display: flex;
  align-items: center;
  gap: 18px;

  border-radius: 20px;

  background: rgba(255, 252, 246, 0.99);
  border: 1px solid rgba(157, 117, 55, 0.30);

  box-shadow:
    0 24px 60px rgba(48, 34, 20, 0.25),
    0 8px 20px rgba(48, 34, 20, 0.10);

  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);

  opacity: 0;
  visibility: hidden;

  transform: translate(-50%, -22px) scale(.97);

  transition:
    opacity .25s ease,
    transform .35s cubic-bezier(.22, 1, .36, 1),
    visibility .25s ease;
}


.western-aviso.visible {
  opacity: 1;
  visibility: visible;

  transform:
    translate(-50%, 0) scale(1);
}


/* ICONO */

.western-aviso-icon {
  width: 54px;
  height: 54px;

  flex: 0 0 54px;

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

  border-radius: 16px;

  font-family: 'Cinzel', serif;
  font-size: 24px;
  font-weight: 700;
}


/* TEXTO */

.western-aviso-texto {
  flex: 1;

  display: flex;
  flex-direction: column;

  gap: 6px;
}


.western-aviso-texto strong {
  font-family: 'Cinzel', serif;

  font-size: 15px;
  font-weight: 700;

  letter-spacing: .8px;

  color: #30251d;
}


.western-aviso-texto span {
  font-size: 14px;
  line-height: 1.5;

  color: #675c51;
}


/* =========================
   ADVERTENCIA
========================= */

.western-aviso.warning {
  border-left: 6px solid #c5963d;
}

.western-aviso.warning .western-aviso-icon {
  color: #7d5715;

  background:
    linear-gradient(145deg,
      #f8e9c6,
      #efd39a);

  box-shadow:
    inset 0 0 0 1px rgba(151, 105, 34, .12);
}


/* =========================
   ÉXITO
========================= */

.western-aviso.success {
  border-left: 6px solid #4f7257;
}

.western-aviso.success .western-aviso-icon {
  color: #36583e;

  background:
    linear-gradient(145deg,
      #e8f2e9,
      #cee2d2);

  box-shadow:
    inset 0 0 0 1px rgba(54, 88, 62, .10);
}


/* MÓVIL */

@media (max-width: 575.98px) {

  .western-aviso {
    top: 18px;

    width: calc(100% - 24px);
    min-height: 82px;

    padding: 16px 18px;

    gap: 14px;

    border-radius: 17px;
  }

  .western-aviso-icon {
    width: 48px;
    height: 48px;

    flex-basis: 48px;

    font-size: 21px;
  }

  .western-aviso-texto strong {
    font-size: 13px;
  }

  .western-aviso-texto span {
    font-size: 13px;
  }
}