/* ================================================================
   GHELLER MEXICO — Sistema de Diseño Premium
   Joyería brasileña chapada en oro 18k · Lujo Accesible

   Paleta:
     Oro primario:    #c09749
     Oro oscuro:      #a8832e
     Oro claro:       #d4b07a
     Crema cálido:    #f5efe6
     Negro premium:   #1a1a1a
     Carbón:          #2c2c2c
     Gris cálido:     #8a8070
     Blanco cálido:   #fefdfb

   Tipografía:
     Títulos:   'Cormorant Garamond', Georgia, 'Times New Roman', serif
     Cuerpo:    'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif
   ================================================================ */


/* ────────────────────────────────────────────
   0. VARIABLES CSS GLOBALES
   ──────────────────────────────────────────── */
:root {
  --gheller-gold: #c09749;
  --gheller-gold-dark: #a8832e;
  --gheller-gold-light: #d4b07a;
  --gheller-gold-glow: rgba(192, 151, 73, 0.15);
  --gheller-cream: #f5efe6;
  --gheller-cream-dark: #ebe3d6;
  --gheller-black: #1a1a1a;
  --gheller-charcoal: #2c2c2c;
  --gheller-warm-gray: #8a8070;
  --gheller-white: #fefdfb;
  --gheller-line: #e8e0d4;

  --font-heading: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --transition-smooth: all 0.35s cubic-bezier(0.25, 0.1, 0.25, 1);
  --transition-fast: all 0.2s ease;
  --shadow-soft: 0 2px 20px rgba(26, 26, 26, 0.06);
  --shadow-hover: 0 8px 30px rgba(26, 26, 26, 0.1);
  --shadow-gold: 0 4px 20px rgba(192, 151, 73, 0.2);
}


/* ────────────────────────────────────────────
   1. TIPOGRAFÍA BASE
   Fundación tipográfica elegante y legible
   ──────────────────────────────────────────── */
body {
  font-family: var(--font-body) !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  color: var(--gheller-charcoal);
  line-height: 1.7;
  letter-spacing: 0.01em;
}

h1, h2, h3, h4, h5, h6,
.section-title,
.block-title {
  font-family: var(--font-heading) !important;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.2;
  color: var(--gheller-black);
}

h1 { font-size: 2.4rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.6rem; }

/* Títulos de secciones del homepage */
.section-title,
.featured-product-title,
.collection-grid-title {
  font-family: var(--font-heading) !important;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gheller-black);
  position: relative;
}

/* Línea decorativa dorada debajo de títulos de sección */
.section-title::after,
.featured-product-title::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--gheller-gold);
  margin: 12px auto 0;
}

/* Párrafos y texto descriptivo */
p, .rte, .product-info__description {
  line-height: 1.8;
  color: #555;
}


/* ────────────────────────────────────────────
   2. BARRA DE ANUNCIO (ANNOUNCEMENT BAR)
   Envío gratis, promociones, mensajes clave
   ──────────────────────────────────────────── */
.header-top__info,
.top-header-info {
  background: var(--gheller-black) !important;
  color: var(--gheller-cream) !important;
  font-family: var(--font-body) !important;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 0;
}

.header-top__info a,
.top-header-info a {
  color: var(--gheller-gold) !important;
  text-decoration: none;
  transition: var(--transition-fast);
}

.header-top__info a:hover,
.top-header-info a:hover {
  color: var(--gheller-gold-light) !important;
}


/* ────────────────────────────────────────────
   3. HEADER Y NAVEGACIÓN
   Limpio, espacioso, con presencia de marca
   ──────────────────────────────────────────── */
.main-header {
  border-bottom: 1px solid var(--gheller-line);
}

/* Logo con espacio para respirar */
.header-logo img {
  transition: var(--transition-smooth);
}

/* Menú principal */
.main-menu > li > a,
.nav > li > a {
  font-family: var(--font-body) !important;
  font-size: 12px !important;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gheller-black) !important;
  transition: var(--transition-smooth);
  position: relative;
  padding: 10px 14px !important;
}

/* Underline animado en hover */
.main-menu > li > a::after,
.nav > li > a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1.5px;
  background: var(--gheller-gold);
  transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
  transform: translateX(-50%);
}

.main-menu > li > a:hover::after,
.nav > li > a:hover::after,
.main-menu > li.active > a::after,
.nav > li.active > a::after {
  width: 70%;
}

.main-menu > li > a:hover,
.nav > li > a:hover {
  color: var(--gheller-gold) !important;
}

/* Íconos del header (búsqueda, cuenta, carrito) */
.header-icons a {
  color: var(--gheller-charcoal);
  transition: var(--transition-fast);
}

.header-icons a:hover {
  color: var(--gheller-gold);
}

/* Dropdown del menú */
.dropdown-menu {
  border: none;
  border-top: 2px solid var(--gheller-gold);
  box-shadow: var(--shadow-hover);
  border-radius: 0;
}

.dropdown-menu > li > a {
  font-family: var(--font-body) !important;
  font-size: 13px;
  letter-spacing: 0.04em;
  padding: 8px 20px;
  transition: var(--transition-fast);
}

.dropdown-menu > li > a:hover {
  background-color: var(--gheller-cream);
  color: var(--gheller-gold) !important;
}


/* ────────────────────────────────────────────
   4. HERO SLIDER (Revolution Slider)
   Impacto visual, tipografía de marca
   ──────────────────────────────────────────── */
.tp-caption {
  font-family: var(--font-heading) !important;
}

.rev_slider .btn,
.tp-caption .btn {
  font-family: var(--font-body) !important;
  font-size: 12px !important;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 14px 36px !important;
  border: 2px solid var(--gheller-gold);
  background: var(--gheller-gold);
  color: #fff !important;
  transition: var(--transition-smooth);
}

.rev_slider .btn:hover,
.tp-caption .btn:hover {
  background: transparent;
  color: var(--gheller-gold) !important;
}


/* ────────────────────────────────────────────
   5. PASOS DE COMPRA (Fixed Banners)
   Sección 1-2-3 con diseño limpio
   ──────────────────────────────────────────── */
.fixedbanners-section {
  padding: 40px 0;
}

.fixedbanners-section h3 {
  font-family: var(--font-heading) !important;
  font-weight: 400;
  font-style: italic;
  color: var(--gheller-charcoal);
}

.fixedbanners-section .number {
  color: var(--gheller-gold);
  font-family: var(--font-heading) !important;
  font-weight: 600;
}


/* ────────────────────────────────────────────
   6. BANNERS DE CATÁLOGO
   Tarjetas de colección con personalidad
   ──────────────────────────────────────────── */
.calalogbanner {
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.calalogbanner img {
  transition: transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.calalogbanner:hover img {
  transform: scale(1.04);
}

.calalogbanner .block-title {
  font-family: var(--font-heading) !important;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-shadow: 0 1px 3px rgba(0,0,0,0.15);
}

.calalogbanner .btn,
.calalogbanner span.btn {
  font-family: var(--font-body) !important;
  font-size: 11px !important;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 10px 28px;
  border: 1.5px solid #fff;
  background: transparent;
  color: #fff;
  transition: var(--transition-smooth);
}

.calalogbanner .btn:hover,
.calalogbanner span.btn:hover {
  background: var(--gheller-gold);
  border-color: var(--gheller-gold);
  color: #fff;
}

/* Overlay sutil en banners */
.calalogbanner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26,26,26,0.25) 0%,
    rgba(26,26,26,0.05) 60%
  );
  pointer-events: none;
  transition: var(--transition-smooth);
}

.calalogbanner:hover::after {
  background: linear-gradient(
    135deg,
    rgba(26,26,26,0.35) 0%,
    rgba(26,26,26,0.1) 60%
  );
}


/* ────────────────────────────────────────────
   7. GRID DE COLECCIONES (Homepage tiles)
   Elegancia en las tarjetas de colección
   ──────────────────────────────────────────── */
#shopify-section-collectionsall span.banner__title.size40 {
  display: none !important;
}

.collections-list__item,
.collection-grid-item {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  transition: var(--transition-smooth);
}

.collections-list__item:hover,
.collection-grid-item:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.collections-list__item img,
.collection-grid-item img {
  transition: transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.collections-list__item:hover img,
.collection-grid-item:hover img {
  transform: scale(1.03);
}

/* Nombre de colección con estilo premium */
.collections-list__title,
.collection-grid-item__title {
  font-family: var(--font-heading) !important;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}


/* ────────────────────────────────────────────
   8. GRID DE PRODUCTOS
   Tarjetas de producto con hover refinado
   ──────────────────────────────────────────── */
.product__inside {
  background: #fff;
  border-radius: 2px;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.product__inside:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

/* Imagen de producto */
.product__inside__image {
  overflow: hidden;
  background: var(--gheller-cream);
}

.product__inside__image img {
  width: inherit;
  height: 270px;
  text-align: center;
  margin: auto;
  transition: transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.product__inside:hover .product__inside__image img {
  transform: scale(1.05);
}

/* Nombre del producto */
.product__inside__title {
  padding: 12px 8px 4px;
}

.product__inside__title a {
  font-family: var(--font-body) !important;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--gheller-charcoal);
  text-decoration: none;
  transition: var(--transition-fast);
}

.product__inside__title a:hover {
  color: var(--gheller-gold);
}

/* Precio del producto */
.product__inside__price,
.product__inside .price-box {
  font-family: var(--font-body) !important;
  color: var(--gheller-gold);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.02em;
}

/* Precio anterior tachado */
.price-box__old {
  color: var(--gheller-warm-gray);
  font-weight: 400;
  font-size: 13px;
}

/* Botón Quick View */
.quick-view-link,
.product__inside__quickview a {
  font-family: var(--font-body) !important;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gheller-gold);
  transition: var(--transition-fast);
}

.quick-view-link:hover,
.product__inside__quickview a:hover {
  color: var(--gheller-gold-dark);
}

/* Botón Add to Cart en hover de producto */
.product__inside .addtocart,
.product__inside .btn--ys {
  font-family: var(--font-body) !important;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  background: var(--gheller-gold);
  border-color: var(--gheller-gold);
  color: #fff;
  transition: var(--transition-smooth);
}

.product__inside .addtocart:hover,
.product__inside .btn--ys:hover {
  background: var(--gheller-gold-dark);
  border-color: var(--gheller-gold-dark);
}

/* Badge de SALE / NUEVO */
.label-sale {
  background-color: var(--gheller-gold) !important;
  font-family: var(--font-body) !important;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 10px;
  font-weight: 600;
  border-radius: 0;
  padding: 4px 10px;
}


/* ────────────────────────────────────────────
   9. PÁGINA DE PRODUCTO
   Experiencia de detalle refinada
   ──────────────────────────────────────────── */

/* Título del producto */
.product-info__title h1 {
  font-family: var(--font-heading) !important;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--gheller-black);
  margin-bottom: 8px;
}

/* Precio en página de producto */
.product-info__price,
.product-page .price-box {
  font-family: var(--font-body) !important;
  color: var(--gheller-gold) !important;
  font-weight: 600;
  font-size: 1.4rem;
  letter-spacing: 0.02em;
}

.product-info__price .price-box__new {
  color: var(--gheller-gold);
}

/* Botón Add to Cart principal */
.product-page .addtocart,
.btn.btn--ys.btn--xxl.addtocart {
  font-family: var(--font-body) !important;
  font-size: 13px !important;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  background: var(--gheller-gold) !important;
  border: 2px solid var(--gheller-gold) !important;
  color: #fff !important;
  padding: 14px 40px;
  transition: var(--transition-smooth);
  border-radius: 0;
}

.product-page .addtocart:hover,
.btn.btn--ys.btn--xxl.addtocart:hover {
  background: var(--gheller-gold-dark) !important;
  border-color: var(--gheller-gold-dark) !important;
  box-shadow: var(--shadow-gold);
  transform: translateY(-1px);
}

/* Etiqueta QTY */
.qty-label {
  font-family: var(--font-body) !important;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gheller-warm-gray);
}

/* Input de cantidad */
.qty-input {
  border: 1px solid var(--gheller-line);
  font-family: var(--font-body) !important;
  text-align: center;
  transition: var(--transition-fast);
}

.qty-input:focus {
  border-color: var(--gheller-gold);
  outline: none;
}


/* ────────────────────────────────────────────
   10. TABS DE PRODUCTO
   Descripción, Material, Cuidados, Envío
   ──────────────────────────────────────────── */
.product-page__tab-wrapper .nav-tabs {
  border-bottom: 1px solid var(--gheller-line);
}

.product-page__tab-wrapper .nav-tabs > li > a {
  font-family: var(--font-body) !important;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gheller-warm-gray);
  border: none;
  border-bottom: 2px solid transparent;
  padding: 12px 18px;
  transition: var(--transition-fast);
  background: transparent;
}

.product-page__tab-wrapper .nav-tabs > li > a:hover {
  color: var(--gheller-charcoal);
  border-color: var(--gheller-line);
  background: transparent;
}

.product-page__tab-wrapper .nav-tabs > li.active > a {
  color: var(--gheller-gold) !important;
  border-bottom: 2px solid var(--gheller-gold);
  background: transparent;
}

.tab-content {
  padding: 24px 0;
  font-size: 14px;
  line-height: 1.8;
  color: #555;
}

.tab-content h3,
.tab-content h4 {
  font-family: var(--font-heading) !important;
  color: var(--gheller-gold);
  font-weight: 500;
  margin-bottom: 12px;
}

.tab-content ul li {
  padding: 4px 0;
  position: relative;
  padding-left: 16px;
}

.tab-content ul li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--gheller-gold);
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
  top: 5px;
}


/* ────────────────────────────────────────────
   11. TRUST BADGES (Producto)
   Íconos de confianza con estilo premium
   ──────────────────────────────────────────── */
.productpage-htmlblock {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--gheller-line);
}

.productpage-htmlblock table {
  width: 100%;
}

.productpage-htmlblock td {
  padding: 12px 8px;
  vertical-align: top;
  font-size: 13px;
  line-height: 1.5;
}

/* Estilos para los íconos circulares dorados */
.productpage-htmlblock .material-icons,
.productpage-htmlblock i {
  color: var(--gheller-gold);
}

/* Títulos de badges */
.productpage-htmlblock strong,
.productpage-htmlblock b {
  font-family: var(--font-body) !important;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gheller-gold);
  display: block;
  margin-bottom: 3px;
}

/* Texto descriptivo de badges */
.productpage-htmlblock em,
.productpage-htmlblock i:not(.material-icons) {
  font-size: 12px;
  color: #666;
  display: block;
  margin-bottom: 4px;
  font-style: italic;
}

/* "Guaranteed Safe Checkout" badges */
.trust-badge-image,
.payment-badges {
  border: 1px solid var(--gheller-line);
  border-radius: 4px;
  padding: 16px;
  margin-top: 16px;
  text-align: center;
}

.trust-badge-image h5,
.payment-badges h5 {
  font-family: var(--font-body) !important;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gheller-gold);
  margin-bottom: 10px;
}


/* ────────────────────────────────────────────
   12. SECCIÓN "COMPLETA TU LOOK"
   Cross-sell con estilo
   ──────────────────────────────────────────── */
.product-upsell-section h2,
.product-upsell-section .section-title {
  font-family: var(--font-heading) !important;
  font-size: 1.6rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}


/* ────────────────────────────────────────────
   13. COLECCIONES (Página de categoría)
   Navegación y filtrado elegante
   ──────────────────────────────────────────── */

/* Título de la colección */
.collection-page__title h1,
.breadcrumbs + h1 {
  font-family: var(--font-heading) !important;
  font-weight: 500;
  letter-spacing: 0.06em;
}

/* Toolbar de filtros */
.collection-toolbar {
  border-bottom: 1px solid var(--gheller-line);
  padding-bottom: 12px;
  margin-bottom: 24px;
}

/* Sidebar de filtros */
.collapse-block__title {
  font-family: var(--font-body) !important;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  font-weight: 600;
  color: var(--gheller-charcoal);
}

.sidebar-filter a {
  font-size: 13px;
  color: #666;
  transition: var(--transition-fast);
}

.sidebar-filter a:hover {
  color: var(--gheller-gold);
  padding-left: 4px;
}


/* ────────────────────────────────────────────
   14. CARRITO
   Experiencia de compra fluida
   ──────────────────────────────────────────── */

/* Mini cart (popup) */
.small-cart,
.cart-popup {
  border-top: 2px solid var(--gheller-gold);
  box-shadow: var(--shadow-hover);
}

.small-cart .btn,
.cart-table .btn--ys {
  font-family: var(--font-body) !important;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  background-color: var(--gheller-gold);
  border-color: var(--gheller-gold);
  color: #fff;
  transition: var(--transition-smooth);
}

.small-cart .btn:hover,
.cart-table .btn--ys:hover {
  background-color: var(--gheller-gold-dark);
  border-color: var(--gheller-gold-dark);
}

/* Totales del carrito */
.shopping-cart__total {
  font-family: var(--font-body) !important;
  color: var(--gheller-gold);
  font-weight: 600;
}

/* Carrito vacío */
.empty-cart-message {
  font-family: var(--font-heading) !important;
  font-size: 1.4rem;
  color: var(--gheller-warm-gray);
}


/* ────────────────────────────────────────────
   15. FOOTER PREMIUM
   Oscuro, elegante, con detalles dorados
   ──────────────────────────────────────────── */
footer,
.footer-section {
  background: var(--gheller-black) !important;
  letter-spacing: 0.02em;
}

footer .title-under {
  font-family: var(--font-body) !important;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px !important;
  font-weight: 600;
  color: var(--gheller-gold) !important;
  padding-bottom: 12px;
  margin-bottom: 16px;
  position: relative;
}

/* Línea dorada debajo del título del footer */
footer .title-under::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 1.5px;
  background: var(--gheller-gold);
}

footer a {
  color: #aaa !important;
  font-size: 13px;
  transition: var(--transition-fast);
}

footer a:hover {
  color: var(--gheller-gold) !important;
  padding-left: 3px;
}

/* Información de contacto */
footer .contact-info,
footer address {
  color: #999;
  font-size: 13px;
  line-height: 1.8;
}

/* Íconos de redes sociales */
footer .social-icons a,
footer .soc-icon a {
  color: #888 !important;
  font-size: 18px;
  margin-right: 16px;
  transition: var(--transition-smooth);
}

footer .social-icons a:hover,
footer .soc-icon a:hover {
  color: var(--gheller-gold) !important;
  transform: translateY(-2px);
  padding-left: 0;
}

/* Copyright */
footer .copyright,
.footer-copyright {
  font-size: 12px;
  color: #666;
  letter-spacing: 0.04em;
  border-top: 1px solid #333;
  padding-top: 20px;
  margin-top: 20px;
}

.footer-copyright strong {
  color: var(--gheller-gold);
}


/* ────────────────────────────────────────────
   16. NEWSLETTER Y POPUP
   Invitación elegante para suscribirse
   ──────────────────────────────────────────── */
.subscribe-box .btn,
.popup-newsletter .btn {
  font-family: var(--font-body) !important;
  background-color: var(--gheller-gold);
  border-color: var(--gheller-gold);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  transition: var(--transition-smooth);
}

.subscribe-box .btn:hover,
.popup-newsletter .btn:hover {
  background-color: var(--gheller-gold-dark);
  border-color: var(--gheller-gold-dark);
}

.subscribe-box input[type="email"],
.popup-newsletter input[type="email"] {
  font-family: var(--font-body) !important;
  border: 1px solid var(--gheller-line);
  transition: var(--transition-fast);
}

.subscribe-box input[type="email"]:focus,
.popup-newsletter input[type="email"]:focus {
  border-color: var(--gheller-gold);
  box-shadow: 0 0 0 2px var(--gheller-gold-glow);
}


/* ────────────────────────────────────────────
   17. BOTONES GLOBALES
   Sistema de botones coherente y elegante
   ──────────────────────────────────────────── */

/* Botón primario — dorado sólido */
.btn--ys,
.btn-primary,
button[type="submit"] {
  font-family: var(--font-body) !important;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 0;
  transition: var(--transition-smooth);
}

/* Botón secundario — contorno */
.btn--outline,
.btn-default {
  background: transparent;
  border: 1.5px solid var(--gheller-charcoal);
  color: var(--gheller-charcoal);
  font-family: var(--font-body) !important;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  transition: var(--transition-smooth);
}

.btn--outline:hover,
.btn-default:hover {
  background: var(--gheller-black);
  border-color: var(--gheller-black);
  color: #fff;
}


/* ────────────────────────────────────────────
   18. BREADCRUMBS
   Navegación contextual sutil
   ──────────────────────────────────────────── */
.breadcrumbs {
  font-family: var(--font-body) !important;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--gheller-warm-gray);
  padding: 16px 0;
}

.breadcrumbs a {
  color: var(--gheller-warm-gray);
  transition: var(--transition-fast);
}

.breadcrumbs a:hover {
  color: var(--gheller-gold);
}

.breadcrumbs span {
  color: var(--gheller-line);
  margin: 0 6px;
}


/* ────────────────────────────────────────────
   19. BOTÓN WHATSAPP FLOTANTE
   Integrado, pulido, accesible
   ──────────────────────────────────────────── */
.gheller-whatsapp-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: #fff;
  border-radius: 50px;
  padding: 12px 22px;
  text-decoration: none !important;
  font-family: var(--font-body) !important;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.03em;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
  transition: var(--transition-smooth);
  cursor: pointer;
}

.gheller-whatsapp-btn:hover {
  background: #1ebe5d;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  transform: translateY(-2px);
  color: #fff;
  text-decoration: none !important;
}

.gheller-whatsapp-btn svg {
  width: 22px;
  height: 22px;
  fill: #fff;
  flex-shrink: 0;
}

.gheller-whatsapp-btn span {
  white-space: nowrap;
}

/* Animación sutil de pulso para atraer atención */
@keyframes gheller-pulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35); }
  50% { box-shadow: 0 4px 24px rgba(37, 211, 102, 0.55); }
}

.gheller-whatsapp-btn {
  animation: gheller-pulse 3s ease-in-out infinite;
}

.gheller-whatsapp-btn:hover {
  animation: none;
}

/* Mobile: solo ícono circular */
@media (max-width: 767px) {
  .gheller-whatsapp-btn {
    padding: 14px;
    border-radius: 50%;
    bottom: 16px;
    right: 16px;
    gap: 0;
  }

  .gheller-whatsapp-btn span {
    display: none;
  }
}


/* ────────────────────────────────────────────
   20. BACK TO TOP
   Botón de regreso al inicio
   ──────────────────────────────────────────── */
.back-to-top {
  background-color: var(--gheller-gold) !important;
  border-radius: 0;
  transition: var(--transition-smooth);
  opacity: 0.85;
}

.back-to-top:hover {
  background-color: var(--gheller-gold-dark) !important;
  opacity: 1;
  transform: translateY(-2px);
}


/* ────────────────────────────────────────────
   21. FORMULARIOS
   Inputs refinados con feedback visual
   ──────────────────────────────────────────── */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
input[type="number"],
textarea,
select {
  font-family: var(--font-body) !important;
  border: 1px solid var(--gheller-line);
  border-radius: 0;
  transition: var(--transition-fast);
  font-size: 14px;
  color: var(--gheller-charcoal);
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--gheller-gold);
  box-shadow: 0 0 0 3px var(--gheller-gold-glow);
  outline: none;
}

/* Placeholder con tono suave */
::placeholder {
  color: #bbb;
  font-style: italic;
  font-size: 13px;
}


/* ────────────────────────────────────────────
   22. PÁGINA DE BÚSQUEDA
   Resultados limpios y legibles
   ──────────────────────────────────────────── */
.search-page__title {
  font-family: var(--font-heading) !important;
}

.search-page input[type="text"] {
  border: 2px solid var(--gheller-line);
  font-size: 16px;
  padding: 14px 20px;
}

.search-page input[type="text"]:focus {
  border-color: var(--gheller-gold);
}


/* ────────────────────────────────────────────
   23. PÁGINA DE PASSWORD (Pre-lanzamiento)
   Pantalla de espera con marca
   ──────────────────────────────────────────── */
.password-page {
  font-family: var(--font-body) !important;
}

.password-page h1,
.password-page h2 {
  font-family: var(--font-heading) !important;
}


/* ────────────────────────────────────────────
   24. MODAL DE CARRITO (Add to Cart popup)
   Confirmación visual elegante
   ──────────────────────────────────────────── */
#modalAddToCart .modal-content,
#modalAddToCartError .modal-content {
  border-radius: 0;
  border: none;
  box-shadow: var(--shadow-hover);
}

#modalAddToCart .modal-header {
  border-bottom: 1px solid var(--gheller-line);
}

#modalAddToCart .btn {
  font-family: var(--font-body) !important;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}


/* ────────────────────────────────────────────
   25. RESPONSIVE — MOBILE FIRST
   Ajustes para 70%+ del tráfico
   ──────────────────────────────────────────── */
@media (max-width: 991px) {
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.5rem; }

  .product-info__title h1 {
    font-size: 1.5rem;
  }
}

@media (max-width: 767px) {
  /* Menú móvil */
  .mobile-menu a {
    font-family: var(--font-body) !important;
    font-size: 14px;
    letter-spacing: 0.06em;
    padding: 12px 16px;
    border-bottom: 1px solid var(--gheller-line);
  }

  .mobile-menu a:hover,
  .mobile-menu a.active {
    color: var(--gheller-gold);
  }

  /* Producto en móvil */
  .product-info__price {
    font-size: 1.2rem;
  }

  .btn.btn--ys.btn--xxl.addtocart {
    width: 100%;
    padding: 16px 20px;
    font-size: 13px !important;
  }

  /* Tabs de producto más compactos */
  .product-page__tab-wrapper .nav-tabs > li > a {
    font-size: 10px;
    letter-spacing: 0.06em;
    padding: 10px 10px;
  }

  /* Grid de productos 2 columnas */
  .product__inside__image img {
    height: 200px;
  }

  /* Footer en móvil */
  footer .title-under {
    margin-top: 24px;
  }
}

/* Banners responsivos */
@media (max-width: 800px) {
  #banner-aretes img {
    height: 228px !important;
    width: inherit;
  }

  span.btn.btn--ys.btn--xl {
    max-width: 90%;
    font-size: 11px !important;
    padding: 10px 16px;
    letter-spacing: 0.1em;
  }

  .col-xs-6.calalogbanner {
    height: 200px;
    display: block;
    max-height: 200px;
    overflow: hidden;
  }

  .col-xs-6.calalogbanner .block-title {
    font-size: 1.6em;
    display: block;
    line-height: 1.3;
  }

  .calalogbanner:nth-child(5) .block-title {
    font-size: 1.2em;
    margin-top: -20px;
  }

  .calalogbanner:nth-child(4) .block-title {
    font-size: 1.5em;
  }

  .calalogbanner:nth-child(5) p {
    margin-top: 0;
  }

  .calalogbanner:nth-child(5) span.btn.btn--ys.btn--xl.inversion {
    width: 80%;
  }

  .col-xs-6.calalogbanner img {
    height: 200px;
    width: inherit;
  }

  .col-md-4.col-sm-6.col-xs-12.class15184958720131,
  .col-md-4.col-sm-6.col-xs-12.class15184958720132 {
    width: 50%;
  }
}


/* ────────────────────────────────────────────
   26. UTILIDADES
   Clases auxiliares de marca
   ──────────────────────────────────────────── */
.text-gold { color: var(--gheller-gold) !important; }
.bg-gold { background-color: var(--gheller-gold) !important; }
.bg-cream { background-color: var(--gheller-cream) !important; }
.bg-dark { background-color: var(--gheller-black) !important; }

/* Separador elegante */
.gheller-divider {
  width: 40px;
  height: 1.5px;
  background: var(--gheller-gold);
  margin: 20px auto;
}

/* Texto con estilo de marca */
.gheller-accent {
  font-family: var(--font-heading) !important;
  font-style: italic;
  color: var(--gheller-gold);
}


/* ────────────────────────────────────────────
   27. ANIMACIONES SUTILES
   Micro-interacciones para sentir premium
   ──────────────────────────────────────────── */

/* Fade in para productos al cargar */
@keyframes gheller-fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.product__inside {
  animation: gheller-fadeUp 0.5s ease forwards;
}

/* Stagger para grid de productos */
.product__inside:nth-child(1) { animation-delay: 0.05s; }
.product__inside:nth-child(2) { animation-delay: 0.1s; }
.product__inside:nth-child(3) { animation-delay: 0.15s; }
.product__inside:nth-child(4) { animation-delay: 0.2s; }
.product__inside:nth-child(5) { animation-delay: 0.25s; }
.product__inside:nth-child(6) { animation-delay: 0.3s; }

/* Smooth scroll global */
html {
  scroll-behavior: smooth;
}
