/*
Theme Name:  YE Apparel Child
Theme URI:   https://shopyeapparel.com
Description: Child theme de Astra para YE Apparel. Fondo oscuro, tipografía Cormorant Garamond + DM Sans, acento dorado #C4A882. Diseño minimalista streetwear con WooCommerce editorial grid.
Author:      YE Apparel
Author URI:  https://shopyeapparel.com
Template:    astra
Version:     1.0.0
License:     GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ye-apparel-child
Tags:        dark, minimalist, fashion, woocommerce, streetwear
*/

/* ============================================================
   VARIABLES DE DISEÑO + OVERRIDE DE ASTRA
============================================================ */
:root {
  /* Paleta YE Apparel */
  --ye-black:        #080808;
  --ye-carbon:       #111111;
  --ye-charcoal:     #1C1C1C;
  --ye-graphite:     #2A2A2A;
  --ye-smoke:        #3D3D3D;
  --ye-mid:          #888888;
  --ye-light:        #BBBBBB;
  --ye-cream:        #F0EDE8;
  --ye-white:        #FAFAFA;
  --ye-accent:       #C4A882;
  --ye-accent-dim:   #8B6F4E;
  --ye-accent-pale:  rgba(196,168,130,.08);
  --ye-border:       rgba(255,255,255,.07);
  --ye-border-light: rgba(255,255,255,.12);

  /* Override tokens de Astra */
  --ast-global-color-0:    #C4A882;
  --ast-global-color-1:    #8B6F4E;
  --ast-global-color-2:    #FAFAFA;
  --ast-global-color-3:    #080808;
  --ast-body-bg-color:     #080808;
  --ast-body-color:        #FAFAFA;
  --ast-link-color:        #C4A882;
  --ast-link-hover-color:  #F0EDE8;
  --ast-heading-color:     #FAFAFA;
  --ast-border-color:      rgba(255,255,255,.07);
  --ast-button-bg-color:   #C4A882;
  --ast-button-color:      #080808;
}

/* ============================================================
   BASE — BODY & HTML
============================================================ */
html {
  scroll-behavior: smooth;
  cursor: none;
}
@media (max-width: 768px) {
  html { cursor: auto; }
}

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif !important;
  background-color: var(--ye-black) !important;
  color: var(--ye-white) !important;
  font-size: 15px !important;
  line-height: 1.7 !important;
  overflow-x: hidden;
}

body.admin-bar { cursor: auto; }

/* Fondo en todas las páginas / contenedores de Astra */
.ast-page-builder-template,
.page-template-default .site,
#page,
.hfb-header,
.ast-separate-container {
  background-color: var(--ye-black) !important;
}

/* ============================================================
   TIPOGRAFÍA
============================================================ */
h1, h2, h3, h4, h5, h6,
.entry-title,
.ast-blog-post-title,
.woocommerce-loop-product__title,
.woocommerce div.product .product_title,
.page-title {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-weight: 300 !important;
  letter-spacing: -.02em !important;
  color: var(--ye-white) !important;
  line-height: 1.05 !important;
}

p, li, td, th, label, input, select, textarea, button {
  font-family: 'DM Sans', sans-serif;
}

a {
  color: var(--ye-accent) !important;
  text-decoration: none !important;
  transition: color .3s ease !important;
}
a:hover { color: var(--ye-cream) !important; }

/* ============================================================
   GRAIN OVERLAY
============================================================ */
.ye-grain {
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ============================================================
   CURSOR PERSONALIZADO
============================================================ */
.ye-cursor {
  position: fixed;
  width: 8px; height: 8px;
  background: var(--ye-accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%,-50%);
  transition: transform .1s ease, width .3s, height .3s, opacity .3s;
  mix-blend-mode: difference;
}
.ye-cursor-follower {
  position: fixed;
  width: 36px; height: 36px;
  border: 1px solid rgba(196,168,130,.4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%,-50%);
  transition: transform .12s ease, width .3s, height .3s;
}
.ye-cursor.hover      { width: 20px; height: 20px; opacity: .5; }
.ye-cursor-follower.hover { width: 60px; height: 60px; border-color: var(--ye-accent); }
@media (max-width: 768px) {
  .ye-cursor, .ye-cursor-follower { display: none; }
}

/* ============================================================
   BARRA DE ANUNCIO
============================================================ */
.ye-announcement {
  background: var(--ye-accent-dim);
  color: var(--ye-cream);
  text-align: center;
  padding: 10px;
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  z-index: 600;
}
.ye-announcement::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.05), transparent);
  animation: ye-shimmer 3s infinite;
}
.ye-announcement span { color: var(--ye-cream); font-weight: 500; }
.ye-ann-close {
  position: absolute;
  right: 1rem; top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--ye-cream);
  cursor: pointer;
  font-size: 16px;
  opacity: .5;
  transition: opacity .2s;
}
.ye-ann-close:hover { opacity: 1; }

/* ============================================================
   NAVEGACIÓN — OVERRIDE ASTRA HEADER
============================================================ */
#masthead,
.site-header,
.ast-masthead-custom-menu-items,
.main-header-bar {
  background: transparent !important;
  border-bottom: none !important;
  position: fixed !important;
  top: 0; left: 0; right: 0;
  z-index: 500;
  transition: background .4s, border-color .4s, backdrop-filter .4s !important;
}
#masthead.scrolled,
.site-header.ye-scrolled,
.main-header-bar.ye-scrolled {
  background: rgba(8,8,8,.92) !important;
  backdrop-filter: blur(20px) !important;
  border-bottom: 1px solid var(--ye-border) !important;
}

/* Logo */
.site-title a,
.ast-site-identity .site-title a,
.custom-logo-link {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 20px !important;
  font-weight: 600 !important;
  letter-spacing: .18em !important;
  text-transform: uppercase !important;
  color: var(--ye-white) !important;
}

/* Links de navegación */
.main-navigation a,
.ast-builder-menu a,
#site-navigation a,
.main-header-menu a {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 10px !important;
  letter-spacing: .18em !important;
  text-transform: uppercase !important;
  color: var(--ye-mid) !important;
  transition: color .3s !important;
}
.main-navigation a:hover,
.ast-builder-menu a:hover,
#site-navigation a:hover,
.main-header-menu a:hover {
  color: var(--ye-white) !important;
}

/* Dropdown menus */
.main-navigation ul ul,
.ast-builder-menu ul ul {
  background: var(--ye-carbon) !important;
  border: 1px solid var(--ye-border) !important;
  box-shadow: 0 10px 40px rgba(0,0,0,.6) !important;
}
.main-navigation ul ul li a,
.ast-builder-menu ul ul li a {
  color: var(--ye-light) !important;
  border-bottom: 1px solid var(--ye-border) !important;
}

/* Hamburger móvil */
.ast-mobile-menu-buttons button,
button.menu-toggle {
  color: var(--ye-mid) !important;
  background: none !important;
  border: none !important;
}

/* Espacio para el header fijo */
.site-content,
#content {
  padding-top: 64px !important;
}

/* ============================================================
   ANIMACIONES DE SCROLL (reveal system)
============================================================ */
.ye-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .8s ease, transform .8s ease;
}
.ye-reveal.from-left  { transform: translateX(-40px); }
.ye-reveal.from-right { transform: translateX(40px); }
.ye-reveal.from-scale { transform: scale(.95); opacity: 0; }
.ye-reveal.visible    { opacity: 1; transform: none; }

/* ============================================================
   HERO
============================================================ */
.ye-hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}
.ye-hero-left {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 5% 6rem 8%;
  background: linear-gradient(135deg, var(--ye-black) 0%, var(--ye-carbon) 100%);
}
.ye-hero-eyebrow {
  font-size: 10px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--ye-accent);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: .75rem;
  opacity: 0;
  animation: ye-fadeUp .8s .3s forwards;
}
.ye-hero-eyebrow::before {
  content: '';
  display: block;
  width: 30px; height: 1px;
  background: var(--ye-accent);
}
.ye-hero-title {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: clamp(4rem, 6vw, 7rem) !important;
  font-weight: 300 !important;
  line-height: .95 !important;
  letter-spacing: -.03em !important;
  margin-bottom: 2rem;
  opacity: 0;
  animation: ye-fadeUp .8s .5s forwards;
}
.ye-hero-title em { font-style: italic; color: var(--ye-accent); }
.ye-hero-subtitle {
  font-size: 14px;
  color: var(--ye-mid);
  max-width: 380px;
  line-height: 1.9;
  font-weight: 300;
  margin-bottom: 3rem;
  opacity: 0;
  animation: ye-fadeUp .8s .7s forwards;
}
.ye-hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: ye-fadeUp .8s .9s forwards;
}
.ye-hero-right {
  position: relative;
  overflow: hidden;
}
.ye-hero-img {
  position: absolute;
  inset: -10%;
  width: 120%; height: 120%;
  object-fit: cover;
  filter: brightness(.7) contrast(1.1);
  animation: ye-fadeIn 1.2s .2s both;
}
.ye-scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  opacity: 0;
  animation: ye-fadeUp .8s 1.2s forwards;
  z-index: 10;
}
.ye-scroll-indicator span { font-size: 9px; letter-spacing: .2em; text-transform: uppercase; color: var(--ye-mid); }
.ye-scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--ye-accent), transparent);
  animation: ye-scrollLine 2s infinite;
}

/* ============================================================
   TRUST BAR
============================================================ */
.ye-trust-bar {
  background: var(--ye-carbon);
  border-bottom: 1px solid var(--ye-border);
  padding: 16px 5%;
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.ye-trust-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: 10px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--ye-mid) !important;
}
.ye-trust-item svg {
  width: 15px; height: 15px;
  stroke: var(--ye-accent);
  fill: none;
  stroke-width: 1.5;
  flex-shrink: 0;
}

/* ============================================================
   MARQUEE
============================================================ */
.ye-marquee-wrap {
  border-top: 1px solid var(--ye-border);
  border-bottom: 1px solid var(--ye-border);
  padding: 14px 0;
  overflow: hidden;
  background: var(--ye-carbon);
}
.ye-marquee-track {
  display: flex;
  gap: 0;
  animation: ye-marquee 30s linear infinite;
  white-space: nowrap;
}
.ye-marquee-item {
  display: flex;
  align-items: center;
  gap: 3rem;
  padding: 0 3rem;
}
.ye-marquee-item span {
  font-size: 10px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--ye-smoke);
}
.ye-marquee-dot {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--ye-accent-dim);
  flex-shrink: 0;
}

/* ============================================================
   BOTONES
============================================================ */
.ye-btn-primary,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  display: inline-flex !important;
  align-items: center !important;
  gap: .75rem !important;
  background: var(--ye-white) !important;
  color: var(--ye-black) !important;
  padding: 14px 32px !important;
  font-size: 11px !important;
  letter-spacing: .18em !important;
  text-transform: uppercase !important;
  border: 1.5px solid var(--ye-white) !important;
  cursor: pointer !important;
  font-family: 'DM Sans', sans-serif !important;
  font-weight: 500 !important;
  transition: all .3s !important;
  border-radius: 0 !important;
  position: relative;
  overflow: hidden;
}
.ye-btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--ye-accent);
  transform: translateX(-101%);
  transition: transform .3s ease;
  z-index: 0;
}
.ye-btn-primary:hover::before { transform: translateX(0); }
.ye-btn-primary:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover {
  border-color: var(--ye-accent) !important;
  color: var(--ye-black) !important;
  background: var(--ye-accent) !important;
}
.ye-btn-primary span { position: relative; z-index: 1; }

.ye-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  background: transparent;
  color: var(--ye-white) !important;
  padding: 14px 32px;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  border: 1px solid var(--ye-border-light);
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  text-decoration: none !important;
  transition: all .3s;
}
.ye-btn-outline:hover {
  border-color: var(--ye-accent);
  color: var(--ye-accent) !important;
}

/* ============================================================
   SECCIONES COMUNES
============================================================ */
.ye-section { padding: 7rem 8%; }
.ye-section-sm { padding: 4rem 8%; }

.ye-eyebrow {
  font-size: 10px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--ye-accent);
  margin-bottom: 1rem;
  display: block;
}
.ye-section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 300;
  letter-spacing: -.02em;
  line-height: 1.05;
  color: var(--ye-white);
}
.ye-section-title em { font-style: italic; color: var(--ye-accent); }

/* ============================================================
   GRID EDITORIAL — HOME Y CATÁLOGO
============================================================ */
.ye-editorial-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 2px;
}
.ye-editorial-grid .ye-editorial-item:first-child { grid-row: span 2; }

.ye-editorial-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.ye-editorial-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s ease, filter .5s ease;
  filter: brightness(.8) grayscale(.1);
  display: block;
}
.ye-editorial-item:hover .ye-editorial-img {
  transform: scale(1.06);
  filter: brightness(.6) grayscale(0);
}
.ye-editorial-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.8) 0%, transparent 50%);
}
.ye-editorial-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem;
  transform: translateY(8px);
  transition: transform .4s;
}
.ye-editorial-item:hover .ye-editorial-info { transform: translateY(0); }
.ye-editorial-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--ye-white);
  margin-bottom: .3rem;
}
.ye-editorial-price { font-size: 13px; color: var(--ye-accent); }
.ye-editorial-badge {
  position: absolute;
  top: 1rem; left: 1rem;
  font-size: 9px;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: 5px 12px;
  font-weight: 500;
}
.ye-badge-gold  { background: var(--ye-accent); color: var(--ye-black); }
.ye-badge-white { background: rgba(255,255,255,.9); color: var(--ye-black); }

.ye-quick-view {
  position: absolute;
  bottom: 1.5rem; right: 1.5rem;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.2);
  color: var(--ye-white);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 8px 16px;
  cursor: pointer;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .3s, transform .3s;
  font-family: 'DM Sans', sans-serif;
}
.ye-editorial-item:hover .ye-quick-view { opacity: 1; transform: translateY(0); }

/* ============================================================
   WOOCOMMERCE — CATÁLOGO (SHOP / ARCHIVE)
============================================================ */
.woocommerce-page .woocommerce,
.woocommerce {
  background: var(--ye-black) !important;
}

/* Header del archive */
.woocommerce-products-header,
.woocommerce-breadcrumb {
  padding: 0 8% !important;
  color: var(--ye-smoke) !important;
  font-size: 11px !important;
  letter-spacing: .05em !important;
}
.woocommerce-breadcrumb a { color: var(--ye-accent) !important; }

.woocommerce-result-count,
.woocommerce-ordering select {
  color: var(--ye-smoke) !important;
  background: var(--ye-charcoal) !important;
  border: 1px solid var(--ye-border) !important;
  border-radius: 0 !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 11px !important;
}

/* Grid de productos — estilo editorial */
.woocommerce ul.products,
.woocommerce-page ul.products {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 2px !important;
  padding: 2px !important;
  margin: 0 !important;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  position: relative !important;
  overflow: hidden !important;
  cursor: pointer !important;
  min-height: 500px !important;
  margin: 0 !important;
  padding: 0 !important;
  background: var(--ye-carbon) !important;
  border: none !important;
  border-radius: 0 !important;
  transition: none !important;
  box-shadow: none !important;
}

/* Imagen cover */
.woocommerce ul.products li.product img,
.woocommerce-page ul.products li.product img {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  filter: brightness(.8) grayscale(.1) !important;
  transition: transform .8s ease, filter .5s ease !important;
  margin: 0 !important;
}
.woocommerce ul.products li.product:hover img {
  transform: scale(1.06) !important;
  filter: brightness(.6) grayscale(0) !important;
}

/* Overlay degradado */
.woocommerce ul.products li.product::before {
  content: '' !important;
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(to top, rgba(0,0,0,.8) 0%, transparent 50%) !important;
  z-index: 1 !important;
  pointer-events: none !important;
}

/* Título y precio al fondo */
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product h2 {
  position: absolute !important;
  bottom: 2.5rem !important;
  left: 1.5rem !important;
  right: 1.5rem !important;
  z-index: 2 !important;
  font-size: 1.2rem !important;
  color: var(--ye-white) !important;
  padding: 0 !important;
  margin: 0 0 .3rem !important;
  transform: translateY(8px);
  transition: transform .4s;
}
.woocommerce ul.products li.product:hover .woocommerce-loop-product__title,
.woocommerce ul.products li.product:hover h2 {
  transform: translateY(0);
}

.woocommerce ul.products li.product .price,
.woocommerce-page ul.products li.product .price {
  position: absolute !important;
  bottom: 1.5rem !important;
  left: 1.5rem !important;
  z-index: 2 !important;
  font-size: 13px !important;
  color: var(--ye-accent) !important;
  font-family: 'DM Sans', sans-serif !important;
}
.woocommerce ul.products li.product .price del { color: var(--ye-smoke) !important; }

/* Botón "Añadir al carrito" como quick-view */
.woocommerce ul.products li.product .button,
.woocommerce ul.products li.product a.button {
  position: absolute !important;
  bottom: 1.5rem !important;
  right: 1.5rem !important;
  z-index: 3 !important;
  background: rgba(255,255,255,.1) !important;
  backdrop-filter: blur(10px) !important;
  border: 1px solid rgba(255,255,255,.2) !important;
  color: var(--ye-white) !important;
  font-size: 10px !important;
  letter-spacing: .12em !important;
  padding: 8px 16px !important;
  opacity: 0 !important;
  transform: translateY(8px) !important;
  transition: opacity .3s, transform .3s, background .2s !important;
  width: auto !important;
}
.woocommerce ul.products li.product:hover .button,
.woocommerce ul.products li.product:hover a.button {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* Ocultar rating en el loop (se muestra en el producto) */
.woocommerce ul.products li.product .star-rating {
  display: none;
}

/* ============================================================
   WOOCOMMERCE — PRODUCTO INDIVIDUAL
============================================================ */
.woocommerce div.product {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 0 !important;
  align-items: start !important;
  background: var(--ye-black) !important;
  padding-top: 64px !important;
}

/* Galería */
.woocommerce div.product .woocommerce-product-gallery {
  position: sticky !important;
  top: 64px !important;
  height: calc(100vh - 64px) !important;
  background: var(--ye-carbon) !important;
  overflow: hidden !important;
}
.woocommerce div.product .woocommerce-product-gallery img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  filter: brightness(.85) !important;
}
.woocommerce div.product .flex-viewport { height: 100% !important; }
.woocommerce div.product .flex-control-thumbs {
  position: absolute !important;
  left: 1.5rem !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  display: flex !important;
  flex-direction: column !important;
  gap: .5rem !important;
  z-index: 10 !important;
}
.woocommerce div.product .flex-control-thumbs li {
  width: 56px !important;
  height: 70px !important;
  overflow: hidden !important;
}
.woocommerce div.product .flex-control-thumbs img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  filter: brightness(.7) !important;
  border: 2px solid transparent !important;
  cursor: pointer !important;
  transition: border-color .2s !important;
}
.woocommerce div.product .flex-control-thumbs .flex-active img {
  border-color: var(--ye-accent) !important;
}

/* Panel de detalles */
.woocommerce div.product .summary {
  padding: 4rem !important;
  background: var(--ye-black) !important;
  overflow-y: auto !important;
}
.woocommerce div.product .product_title {
  font-size: 2.8rem !important;
  margin-bottom: .75rem !important;
}
.woocommerce div.product .woocommerce-product-rating {
  margin-bottom: 1rem !important;
}
.woocommerce div.product .price {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 2rem !important;
  font-weight: 300 !important;
  color: var(--ye-white) !important;
  margin-bottom: 1.5rem !important;
}
.woocommerce div.product .star-rating span::before { color: var(--ye-accent) !important; }

/* Variaciones (talla/color) */
.woocommerce div.product form.cart .variations td,
.woocommerce div.product form.cart .variations th {
  border: none !important;
  background: transparent !important;
  padding: .5rem 0 !important;
  color: var(--ye-light) !important;
  font-size: 11px !important;
  letter-spacing: .1em !important;
  text-transform: uppercase !important;
}
.woocommerce div.product form.cart .variations select {
  background: var(--ye-graphite) !important;
  border: 1px solid var(--ye-border) !important;
  color: var(--ye-white) !important;
  border-radius: 0 !important;
  font-family: 'DM Sans', sans-serif !important;
  padding: 10px 14px !important;
}

/* Botón Add to Cart */
.woocommerce div.product .single_add_to_cart_button {
  width: 100% !important;
  padding: 17px !important;
  background: var(--ye-white) !important;
  color: var(--ye-black) !important;
  border: none !important;
  font-size: 12px !important;
  letter-spacing: .2em !important;
  text-transform: uppercase !important;
  border-radius: 0 !important;
  transition: background .3s !important;
}
.woocommerce div.product .single_add_to_cart_button:hover {
  background: var(--ye-accent) !important;
}

/* Tabs del producto → estilo acordeón */
.woocommerce div.product .woocommerce-tabs {
  border-top: 1px solid var(--ye-border) !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs {
  background: none !important;
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li {
  background: none !important;
  border: none !important;
  border-bottom: 1px solid var(--ye-border) !important;
  border-radius: 0 !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li a {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 11px !important;
  letter-spacing: .12em !important;
  text-transform: uppercase !important;
  color: var(--ye-light) !important;
  padding: 1.1rem 0 !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
  color: var(--ye-white) !important;
}
.woocommerce div.product .woocommerce-tabs .panel {
  background: none !important;
  border: none !important;
  padding: 0 0 1.25rem !important;
  font-size: 13px !important;
  color: var(--ye-smoke) !important;
  line-height: 1.9 !important;
}

/* ============================================================
   WOOCOMMERCE — CARRITO
============================================================ */
.woocommerce-cart .site-content { background: var(--ye-black); }
.woocommerce table.cart { border-collapse: collapse !important; }
.woocommerce table.cart td,
.woocommerce table.cart th {
  border-bottom: 1px solid var(--ye-border) !important;
  background: transparent !important;
  color: var(--ye-white) !important;
  padding: 1rem !important;
}
.woocommerce table.cart thead th {
  font-size: 9px !important;
  letter-spacing: .2em !important;
  text-transform: uppercase !important;
  color: var(--ye-smoke) !important;
}
.woocommerce table.cart .product-name a { color: var(--ye-light) !important; }
.woocommerce table.cart .amount { color: var(--ye-accent) !important; }
.woocommerce .cart-collaterals,
.woocommerce .cart_totals {
  background: var(--ye-carbon) !important;
  border: 1px solid var(--ye-border) !important;
  padding: 2rem !important;
}
.woocommerce .cart_totals h2 {
  font-size: 1.5rem !important;
  margin-bottom: 1rem !important;
}
.woocommerce .cart_totals table td,
.woocommerce .cart_totals table th {
  border-bottom: 1px solid var(--ye-border) !important;
  background: transparent !important;
  color: var(--ye-light) !important;
  padding: .75rem 0 !important;
}
.woocommerce .wc-proceed-to-checkout .checkout-button {
  background: var(--ye-white) !important;
  color: var(--ye-black) !important;
  border-radius: 0 !important;
  font-size: 12px !important;
  letter-spacing: .2em !important;
  padding: 17px !important;
}
.woocommerce .wc-proceed-to-checkout .checkout-button:hover {
  background: var(--ye-accent) !important;
}

/* ============================================================
   WOOCOMMERCE — CHECKOUT
============================================================ */
.woocommerce-checkout .site-content { background: var(--ye-black); }
.woocommerce-checkout #order_review,
.woocommerce-checkout .woocommerce-checkout-review-order {
  background: var(--ye-carbon) !important;
  border: 1px solid var(--ye-border) !important;
  padding: 2rem !important;
}
.woocommerce-checkout #payment {
  background: var(--ye-charcoal) !important;
  border-radius: 0 !important;
}
.woocommerce-checkout #payment .payment_methods li {
  border-bottom: 1px solid var(--ye-border) !important;
  color: var(--ye-light) !important;
}
.woocommerce-checkout #payment #place_order {
  background: var(--ye-accent) !important;
  color: var(--ye-black) !important;
  border-radius: 0 !important;
  font-size: 12px !important;
  letter-spacing: .2em !important;
  padding: 17px !important;
  width: 100% !important;
}

/* Inputs del checkout */
.woocommerce-checkout .form-row input,
.woocommerce-checkout .form-row select,
.woocommerce-checkout .form-row textarea,
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row select {
  background: var(--ye-graphite) !important;
  border: 1px solid var(--ye-border) !important;
  border-radius: 0 !important;
  color: var(--ye-white) !important;
  font-family: 'DM Sans', sans-serif !important;
  padding: 13px !important;
}
.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row select:focus {
  border-color: rgba(196,168,130,.3) !important;
  box-shadow: none !important;
  outline: none !important;
}
.woocommerce form .form-row label {
  font-size: 9px !important;
  letter-spacing: .2em !important;
  text-transform: uppercase !important;
  color: var(--ye-smoke) !important;
}

/* ============================================================
   SECCIÓN PARALLAX
============================================================ */
.ye-parallax-section {
  position: relative;
  height: 80vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ye-parallax-bg {
  position: absolute;
  inset: -20%;
  width: 140%; height: 140%;
  object-fit: cover;
  filter: brightness(.35) contrast(1.2);
  will-change: transform;
}
.ye-parallax-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 3rem;
  max-width: 700px;
}
.ye-parallax-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -.03em;
  margin-bottom: 1.5rem;
  color: var(--ye-white);
}
.ye-parallax-title em { font-style: italic; color: var(--ye-accent); }
.ye-parallax-subtitle {
  font-size: 14px;
  color: rgba(255,255,255,.6);
  font-weight: 300;
  line-height: 1.9;
  margin-bottom: 2.5rem;
}
.ye-parallax-line {
  width: 1px; height: 80px;
  background: linear-gradient(to bottom, var(--ye-accent), transparent);
  margin: 0 auto 2rem;
}

/* ============================================================
   STICKY SCROLL — NUESTRA ARTESANÍA
============================================================ */
.ye-sticky-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 200vh;
  background: var(--ye-carbon);
}
.ye-sticky-left {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}
.ye-sticky-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .6s ease;
  filter: brightness(.75);
}
.ye-sticky-img.active { opacity: 1; }
.ye-sticky-right {
  padding: 8rem 6rem;
  display: flex;
  flex-direction: column;
  gap: 8rem;
}
.ye-sticky-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  font-weight: 300;
  color: rgba(255,255,255,.05);
  line-height: 1;
  margin-bottom: 1rem;
  display: block;
}
.ye-sticky-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 300;
  margin-bottom: 1rem;
  line-height: 1.1;
  color: var(--ye-white);
}
.ye-sticky-title em { font-style: italic; color: var(--ye-accent); }
.ye-sticky-text {
  font-size: 14px;
  color: var(--ye-mid);
  line-height: 1.9;
  font-weight: 300;
  max-width: 380px;
  margin-bottom: 1.5rem;
}

/* ============================================================
   RESEÑAS
============================================================ */
.ye-reviews-wrap {
  background: var(--ye-carbon);
  border-top: 1px solid var(--ye-border);
}
.ye-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--ye-border);
}
.ye-review-card {
  background: var(--ye-charcoal);
  padding: 2rem;
  transition: background .3s;
}
.ye-review-card:hover { background: var(--ye-graphite); }
.ye-review-header {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1rem;
}
.ye-reviewer-av {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--ye-graphite);
  border: 1px solid var(--ye-border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: var(--ye-accent);
  flex-shrink: 0;
}
.ye-reviewer-name { font-size: 13px; font-weight: 500; color: var(--ye-white); }
.ye-reviewer-loc  { font-size: 11px; color: var(--ye-smoke); }
.ye-review-stars  { color: var(--ye-accent); font-size: 12px; letter-spacing: 2px; margin-bottom: .75rem; }
.ye-review-text   { font-size: 13px; color: var(--ye-mid); line-height: 1.8; font-style: italic; font-weight: 300; }
.ye-review-product{ font-size: 11px; color: var(--ye-accent-dim); margin-top: .75rem; letter-spacing: .05em; }

.ye-rating-hero {
  padding: 4rem 8%;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4rem;
  align-items: center;
}
.ye-rating-big {
  font-family: 'Cormorant Garamond', serif;
  font-size: 7rem;
  font-weight: 300;
  color: var(--ye-white);
  line-height: 1;
}
.ye-rbar { display: flex; align-items: center; gap: .75rem; margin-bottom: .5rem; }
.ye-rbar-label { font-size: 11px; color: var(--ye-smoke); width: 35px; }
.ye-rbar-track { flex: 1; height: 2px; background: var(--ye-graphite); }
.ye-rbar-fill  { height: 100%; background: var(--ye-accent); }
.ye-rbar-count { font-size: 11px; color: var(--ye-smoke); width: 25px; text-align: right; }

/* ============================================================
   NEWSLETTER
============================================================ */
.ye-newsletter {
  background: var(--ye-carbon);
  border-top: 1px solid var(--ye-border);
  padding: 6rem 8%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.ye-newsletter::before {
  content: 'NEWSLETTER';
  position: absolute;
  right: -2rem; top: 50%;
  transform: translateY(-50%) rotate(90deg);
  font-family: 'Cormorant Garamond', serif;
  font-size: 10rem;
  font-weight: 300;
  color: rgba(255,255,255,.015);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: .1em;
}
.ye-newsletter-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 300;
  color: var(--ye-white);
  line-height: 1.1;
  margin-bottom: .75rem;
}
.ye-newsletter-title em { font-style: italic; color: var(--ye-accent); }
.ye-newsletter-sub { font-size: 13px; color: var(--ye-smoke); font-weight: 300; line-height: 1.9; }

.ye-newsletter-form { display: flex; gap: 0; margin-bottom: .75rem; }
.ye-newsletter-input {
  flex: 1;
  padding: 15px 20px;
  background: var(--ye-graphite);
  border: 1px solid var(--ye-border);
  border-right: none;
  color: var(--ye-white);
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  outline: none;
  transition: border-color .2s;
  border-radius: 0;
}
.ye-newsletter-input::placeholder { color: var(--ye-smoke); }
.ye-newsletter-input:focus { border-color: rgba(196,168,130,.3); }
.ye-newsletter-btn {
  background: var(--ye-accent);
  color: var(--ye-black);
  border: none;
  padding: 15px 28px;
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  white-space: nowrap;
  transition: background .2s;
}
.ye-newsletter-btn:hover { background: var(--ye-cream); }
.ye-newsletter-privacy { font-size: 11px; color: var(--ye-smoke); }

/* ============================================================
   GRID INSTAGRAM
============================================================ */
.ye-insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2px;
}
.ye-insta-item {
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  background: var(--ye-carbon);
}
.ye-insta-img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(.7) grayscale(.2);
  transition: transform .5s ease, filter .4s;
}
.ye-insta-item:hover .ye-insta-img {
  transform: scale(1.08);
  filter: brightness(.5) grayscale(0);
}
.ye-insta-over {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .3s;
  background: rgba(0,0,0,.2);
}
.ye-insta-item:hover .ye-insta-over { opacity: 1; }
.ye-insta-icon   { font-size: 22px; color: white; }
.ye-insta-handle { font-size: 10px; letter-spacing: .12em; color: rgba(255,255,255,.7); margin-top: .3rem; }

/* ============================================================
   PÁGINA ABOUT
============================================================ */
.ye-about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 90vh;
}
.ye-about-visual {
  position: relative;
  overflow: hidden;
  background: var(--ye-carbon);
}
.ye-about-img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(.6) grayscale(.2);
}
.ye-about-badge {
  position: absolute;
  bottom: 3rem; right: 3rem;
  border: 1px solid rgba(196,168,130,.3);
  padding: 1.5rem;
  text-align: center;
  backdrop-filter: blur(10px);
  background: rgba(8,8,8,.5);
}
.ye-about-badge-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--ye-white);
  line-height: 1;
}
.ye-about-badge-label {
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ye-accent);
  margin-top: .3rem;
}
.ye-about-content {
  padding: 7rem 6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--ye-black);
}
.ye-about-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  font-weight: 300;
  line-height: 1.08;
  margin-bottom: 1.5rem;
  letter-spacing: -.02em;
  color: var(--ye-white);
}
.ye-about-title em { font-style: italic; color: var(--ye-accent); }
.ye-about-text { font-size: 14px; color: var(--ye-mid); line-height: 2; font-weight: 300; margin-bottom: 1.25rem; }
.ye-about-quote {
  border-left: 2px solid var(--ye-accent);
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-style: italic;
  color: var(--ye-light);
  line-height: 1.5;
}
.ye-about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--ye-border);
}
.ye-about-stat {
  background: var(--ye-carbon);
  padding: 2.5rem;
  text-align: center;
}
.ye-about-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--ye-white);
  line-height: 1;
  margin-bottom: .4rem;
}
.ye-about-stat-label {
  font-size: 9px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--ye-smoke);
}

/* ============================================================
   FAQ
============================================================ */
.ye-faq-layout {
  padding: 5rem 8%;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 5rem;
}
.ye-faq-nav {
  position: sticky;
  top: 5rem;
  display: flex;
  flex-direction: column;
  gap: .25rem;
}
.ye-faq-cat {
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ye-smoke) !important;
  padding: .6rem .75rem;
  border-left: 2px solid transparent;
  cursor: pointer;
  transition: all .2s;
}
.ye-faq-cat:hover,
.ye-faq-cat.active {
  color: var(--ye-white) !important;
  border-left-color: var(--ye-accent);
}
.ye-faq-item { border-bottom: 1px solid var(--ye-border); }
.ye-faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--ye-light);
  font-weight: 300;
  text-align: left;
  gap: 1rem;
  transition: color .2s;
}
.ye-faq-q:hover { color: var(--ye-white); }
.ye-faq-icon { font-size: 18px; color: var(--ye-smoke); flex-shrink: 0; transition: transform .3s; }
.ye-faq-ans { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.ye-faq-ans.open { max-height: 300px; }
.ye-faq-ans-body { padding: 0 0 1.25rem; font-size: 13px; color: var(--ye-smoke); line-height: 1.9; font-weight: 300; }

/* ============================================================
   CONTACTO
============================================================ */
.ye-contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 64px);
}
.ye-contact-info {
  padding: 7rem 5% 7rem 8%;
  background: var(--ye-carbon);
  border-right: 1px solid var(--ye-border);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ye-contact-form-panel {
  padding: 7rem 8% 7rem 5%;
  background: var(--ye-black);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ye-form-label {
  display: block;
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ye-smoke);
  margin-bottom: .6rem;
}
.ye-form-input {
  width: 100%;
  padding: 13px 0;
  border: none;
  border-bottom: 1px solid var(--ye-border);
  background: transparent;
  font-size: 14px;
  color: var(--ye-white);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  outline: none;
  transition: border-color .2s;
}
.ye-form-input:focus { border-bottom-color: var(--ye-accent); }
.ye-form-input::placeholder { color: var(--ye-smoke); }

/* ============================================================
   FOOTER
============================================================ */
#colophon,
.site-footer,
.ast-footer-overlay {
  background: var(--ye-carbon) !important;
  border-top: 1px solid var(--ye-border) !important;
  color: var(--ye-smoke) !important;
}
.site-footer a,
#colophon a {
  color: rgba(255,255,255,.35) !important;
  font-size: 12px !important;
  font-weight: 300 !important;
  transition: color .2s !important;
}
.site-footer a:hover,
#colophon a:hover { color: var(--ye-white) !important; }

.ye-footer-main {
  padding: 5rem 8%;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  border-bottom: 1px solid var(--ye-border);
}
.ye-footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 300;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--ye-white);
  margin-bottom: .75rem;
}
.ye-footer-tagline {
  font-size: 12px;
  color: var(--ye-smoke);
  font-weight: 300;
  line-height: 1.9;
  max-width: 260px;
  margin-bottom: 1.5rem;
}
.ye-footer-col-title {
  font-size: 9px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--ye-smoke);
  margin-bottom: 1.25rem;
}
.ye-footer-links { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.ye-footer-links a {
  font-size: 12px !important;
  color: rgba(255,255,255,.35) !important;
  text-decoration: none !important;
  font-weight: 300 !important;
  transition: color .2s !important;
}
.ye-footer-links a:hover { color: var(--ye-white) !important; }

.ye-footer-bottom {
  padding: 1.5rem 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.ye-footer-copy { font-size: 10px; color: rgba(255,255,255,.2); letter-spacing: .05em; }
.ye-payment-icons { display: flex; gap: .5rem; }
.ye-pay-badge {
  background: rgba(255,255,255,.05);
  border: 1px solid var(--ye-border);
  padding: 4px 10px;
  font-size: 9px;
  color: rgba(255,255,255,.3);
  letter-spacing: .05em;
  border-radius: 2px;
}

/* Social buttons */
.ye-social-row { display: flex; gap: .5rem; margin-top: 2rem; }
.ye-social-btn {
  width: 38px; height: 38px;
  border: 1px solid var(--ye-border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .2s;
  text-decoration: none !important;
  color: var(--ye-smoke) !important;
  font-size: 12px;
  font-weight: 500;
}
.ye-social-btn:hover {
  border-color: var(--ye-accent);
  color: var(--ye-accent) !important;
}

/* ============================================================
   CARRITO LATERAL (sidebar nativo del theme)
============================================================ */
.ye-cart-overlay {
  position: fixed;
  inset: 0;
  background: transparent;
  z-index: 700;
  pointer-events: none;
  transition: background .3s;
}
.ye-cart-overlay.open { background: rgba(0,0,0,.7); pointer-events: all; }
.ye-cart-sidebar {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 420px;
  background: var(--ye-carbon);
  z-index: 701;
  transform: translateX(100%);
  transition: transform .35s ease;
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--ye-border);
}
.ye-cart-sidebar.open { transform: translateX(0); }
.ye-cart-hdr {
  padding: 1.5rem 1.75rem;
  border-bottom: 1px solid var(--ye-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ye-cart-hdr-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--ye-white);
}
.ye-cart-close {
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: var(--ye-smoke);
  transition: color .2s;
}
.ye-cart-close:hover { color: var(--ye-white); }
.ye-cart-items { flex: 1; overflow-y: auto; padding: 1.5rem 1.75rem; }
.ye-cart-empty { text-align: center; padding: 4rem 2rem; color: var(--ye-smoke); }
.ye-cart-ftr {
  padding: 1.5rem 1.75rem;
  border-top: 1px solid var(--ye-border);
}
.ye-cart-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.ye-cart-subtotal-label {
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ye-smoke);
}
.ye-cart-subtotal-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--ye-white);
}
.ye-checkout-btn {
  width: 100%;
  padding: 16px;
  background: var(--ye-white);
  color: var(--ye-black);
  border: none;
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  transition: background .25s;
  margin-bottom: .75rem;
}
.ye-checkout-btn:hover { background: var(--ye-accent); }

/* ============================================================
   TOAST
============================================================ */
.ye-toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(120px);
  background: var(--ye-accent);
  color: var(--ye-black);
  padding: 1rem 2rem;
  font-size: 12px;
  letter-spacing: .08em;
  transition: transform .3s ease;
  z-index: 9999;
  pointer-events: none;
  display: flex;
  align-items: center;
  gap: .5rem;
  font-weight: 500;
}
.ye-toast.show { transform: translateX(-50%) translateY(0); }

/* ============================================================
   FILTER BUTTONS (catálogo)
============================================================ */
.ye-filter-btn {
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 9px 22px;
  border: 1px solid var(--ye-border);
  background: transparent;
  cursor: pointer;
  color: var(--ye-smoke);
  transition: all .2s;
  font-family: 'DM Sans', sans-serif;
}
.ye-filter-btn.active,
.ye-filter-btn:hover {
  border-color: var(--ye-accent);
  color: var(--ye-accent);
}

/* ============================================================
   DIVIDER & HELPERS
============================================================ */
.ye-divider { border: none; border-top: 1px solid var(--ye-border); margin: 1.5rem 0; }
.ye-text-accent  { color: var(--ye-accent) !important; }
.ye-bg-carbon    { background: var(--ye-carbon); }
.ye-bg-black     { background: var(--ye-black); }

/* Urgencia (stock) */
.ye-urgency {
  background: rgba(45,106,79,.12);
  border: 1px solid rgba(45,106,79,.25);
  padding: .85rem 1rem;
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1rem;
}
.ye-urgency-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #4CAF50;
  flex-shrink: 0;
  animation: ye-pulse 2s infinite;
}
.ye-urgency-text { font-size: 12px; color: var(--ye-light); }
.ye-urgency-text strong { color: #4CAF50; }

/* ============================================================
   KEYFRAMES
============================================================ */
@keyframes ye-fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes ye-fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes ye-shimmer {
  from { transform: translateX(-100%); }
  to   { transform: translateX(100%); }
}
@keyframes ye-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes ye-scrollLine {
  0%   { transform: scaleY(0);   transform-origin: top; }
  50%  { transform: scaleY(1);   transform-origin: top; }
  51%  { transform: scaleY(1);   transform-origin: bottom; }
  100% { transform: scaleY(0);   transform-origin: bottom; }
}
@keyframes ye-pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(76,175,80,.4); }
  50%       { opacity: .6; box-shadow: 0 0 0 6px rgba(76,175,80,0); }
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
  .ye-footer-main { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 900px) {
  .ye-hero { grid-template-columns: 1fr; }
  .ye-hero-right { display: none; }
  .ye-hero-left  { padding: 5rem 6% 4rem; }

  .ye-editorial-grid { grid-template-columns: 1fr 1fr; }
  .ye-editorial-grid .ye-editorial-item:first-child { grid-row: span 1; }

  .woocommerce ul.products,
  .woocommerce-page ul.products {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .ye-sticky-section { grid-template-columns: 1fr; min-height: auto; }
  .ye-sticky-left  { display: none; }
  .ye-sticky-right { padding: 4rem 6%; gap: 4rem; }

  .ye-about-split { grid-template-columns: 1fr; }
  .ye-about-visual { height: 60vw; }
  .ye-about-content { padding: 4rem 6%; }
  .ye-about-stats { grid-template-columns: 1fr 1fr; }

  .ye-newsletter { grid-template-columns: 1fr; gap: 2rem; }
  .ye-insta-grid { grid-template-columns: repeat(3, 1fr); }

  .woocommerce div.product {
    grid-template-columns: 1fr !important;
  }
  .woocommerce div.product .woocommerce-product-gallery {
    position: relative !important;
    height: 70vw !important;
    top: 0 !important;
  }
  .woocommerce div.product .summary { padding: 2rem !important; }

  .ye-contact-layout { grid-template-columns: 1fr; }
  .ye-faq-layout { grid-template-columns: 1fr; }
  .ye-faq-nav { display: none; }

  .ye-cart-sidebar { width: 100%; max-width: 420px; }
  .ye-trust-bar { gap: 1.5rem; }
  .ye-rating-hero { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 640px) {
  .woocommerce ul.products,
  .woocommerce-page ul.products {
    grid-template-columns: 1fr !important;
  }
  .ye-insta-grid { grid-template-columns: repeat(2, 1fr); }
  .ye-reviews-grid { grid-template-columns: 1fr; }
  .ye-about-stats { grid-template-columns: 1fr; }
  .ye-footer-main { grid-template-columns: 1fr; }
  .ye-newsletter-form { flex-direction: column; }
  .ye-newsletter-input { border-right: 1px solid var(--ye-border); border-bottom: none; }
}
