/*
Theme Name: BICM Servicios Web
Theme URI: https://bienalcartel.org
Author: BICM
Description: Tema oficial BICM — Landing, Servicios, Tienda, Carrito, Contacto. Integrado con WooCommerce.
Version: 2.0.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 8.0
License: Proprietary
Text Domain: bicm-theme
*/

/* ============================================================
   RESET & VARIABLES
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --yellow:  #FDB913;
  --green:   #74B743;
  --black:   #0A0A0A;
  --white:   #ffffff;
  --gray-50: #f9f9f9;
  --gray-100:#f3f3f3;
  --font:    'Inter', sans-serif;
  --ease:    cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --max-w:   1920px;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--white);
  color: var(--black);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img  { display: block; max-width: 100%; }
a    { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.15); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(0,0,0,0.3); }

/* ============================================================
   UTILITIES
   ============================================================ */
.bicm-max { max-width: var(--max-w); margin: 0 auto; }
.bicm-px  { padding-left: 1.5rem; padding-right: 1.5rem; }
@media (min-width: 768px) { .bicm-px { padding-left: 3rem; padding-right: 3rem; } }

.label {
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.4rem 1rem;
  border-radius: 9999px;
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}
.pill-black  { background: var(--black); color: var(--white); }
.pill-yellow { background: var(--yellow); color: var(--black); }
.pill-green  { background: var(--green);  color: var(--black); }
.pill-outline {
  background: transparent;
  color: rgba(0,0,0,.4);
  border: 1px solid rgba(0,0,0,.12);
}
.pill-outline:hover,
.pill-outline.active {
  background: var(--green);
  border-color: var(--green);
  color: var(--black);
}
.pill-outline-sm {
  padding: 0.3rem 0.7rem;
  font-size: 0.5625rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 9999px;
  color: rgba(0,0,0,.45);
  cursor: pointer;
  background: none;
  transition: background .2s, color .2s, border-color .2s;
  white-space: nowrap;
}
.pill-outline-sm.active,
.pill-outline-sm:hover { background: var(--black); border-color: var(--black); color: white; }

.btn-round {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: background .3s var(--ease), color .3s var(--ease);
  cursor: pointer;
  border: none;
  font-family: inherit;
}
.btn-round-black { background: var(--black); color: white; }
.btn-round-black:hover { background: var(--green); color: var(--black); }
.btn-round-outline {
  background: transparent;
  color: rgba(0,0,0,.35);
  border: 1px solid rgba(0,0,0,.12);
}
.btn-round-outline:hover { color: var(--black); border-color: var(--black); }

.accent-line {
  height: 3px;
  border-radius: 9999px;
}
.accent-yellow { background: var(--yellow); }
.accent-green  { background: var(--green); }
.accent-black  { background: var(--black); }

/* Line clamp */
.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Animations */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes spin { to { transform: rotate(360deg); } }
.fade-up { opacity: 0; animation: fadeUp .5s var(--ease-out) forwards; }
.d1 { animation-delay: .05s; } .d2 { animation-delay: .1s; }
.d3 { animation-delay: .15s; } .d4 { animation-delay: .2s; }

/* ============================================================
   HEADER (páginas interiores)
   ============================================================ */
#bicm-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: white;
  border-bottom: 1px solid rgba(0,0,0,.08);
}
.bicm-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
}
@media (min-width: 768px) { .bicm-header-inner { padding: 1rem 3rem; } }

.bicm-logo {
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.bicm-nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}
@media (min-width: 768px) { .bicm-nav-desktop { display: flex; } }

.bicm-nav-link {
  position: relative;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: opacity .2s;
}
.bicm-nav-link:hover { opacity: .6; }
.bicm-nav-link .nav-underline {
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 3px;
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.bicm-nav-link.active .nav-underline { transform: scaleX(1); }

.bicm-header-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.bicm-icon-btn {
  position: relative;
  width: 2.25rem; height: 2.25rem;
  border-radius: 0.5rem;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
  cursor: pointer; border: none; background: none;
}
.bicm-icon-btn:hover { background: var(--gray-100); }
.bicm-icon-btn svg { width: 1.25rem; height: 1.25rem; }

.bicm-cart-badge {
  position: absolute;
  top: -2px; right: -2px;
  width: 1.125rem; height: 1.125rem;
  border-radius: 9999px;
  background: var(--green);
  color: white;
  font-size: 0.5625rem;
  font-weight: 900;
  display: flex; align-items: center; justify-content: center;
}

.bicm-user-avatar {
  width: 2rem; height: 2rem;
  border-radius: 9999px;
  background: var(--green);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 900; color: white;
  cursor: pointer;
}

/* User dropdown */
.bicm-user-menu {
  position: relative;
}
.bicm-user-dropdown {
  position: absolute;
  right: 0; top: calc(100% + 8px);
  width: 14rem;
  background: white;
  border: 1px solid rgba(0,0,0,.1);
  box-shadow: 0 8px 30px rgba(0,0,0,.12);
  z-index: 200;
  display: none;
}
.bicm-user-dropdown.open { display: block; }
.bicm-user-dropdown-head {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(0,0,0,.08);
}
.bicm-user-dropdown-head .name { font-weight: 700; font-size: 0.875rem; }
.bicm-user-dropdown-head .email { font-size: 0.6875rem; color: rgba(0,0,0,.4); }
.bicm-user-dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.625rem 1rem;
  font-size: 0.875rem;
  width: 100%;
  text-align: left;
  transition: background .15s;
  cursor: pointer; background: none; border: none; font-family: inherit;
}
.bicm-user-dropdown-item:hover { background: var(--gray-50); }
.bicm-user-dropdown-item svg { width: 1rem; height: 1rem; }
.bicm-user-dropdown-item.danger { color: #dc2626; }
.bicm-user-dropdown-item.danger:hover { background: #fef2f2; }

/* Mobile header */
.bicm-mobile-header-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
@media (min-width: 768px) { .bicm-mobile-header-right { display: none; } }

/* Mobile drawer */
.bicm-mobile-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.4);
  z-index: 300;
  display: none;
}
.bicm-mobile-overlay.open { display: block; }
.bicm-mobile-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 280px;
  background: white;
  z-index: 400;
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform .3s var(--ease-out);
}
.bicm-mobile-drawer.open { transform: translateX(0); }
.bicm-mobile-drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(0,0,0,.08);
}
.bicm-mobile-user-bar {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(0,0,0,.08);
  background: var(--gray-50);
}
.bicm-mobile-nav { display: flex; flex-direction: column; padding: 1.5rem; gap: 0.25rem; }
.bicm-mobile-nav-item {
  text-align: left;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.875rem; font-weight: 600;
  letter-spacing: 0.02em;
  transition: background .15s;
  cursor: pointer; background: none; border: none; font-family: inherit;
  display: flex; align-items: center; gap: 0.5rem;
}
.bicm-mobile-nav-item:hover { background: rgba(0,0,0,.04); }
.bicm-mobile-nav-item.active { background: var(--black); color: white; }
.bicm-mobile-nav-item.danger { color: #dc2626; margin-top: 0.5rem; }
.bicm-mobile-nav-item.danger:hover { background: #fef2f2; }
.bicm-mobile-nav-item svg { width: 1rem; height: 1rem; }
.bicm-mobile-nav-item.cta { background: var(--black); color: white; margin-top: 1rem; }

/* ============================================================
   LANDING PAGE
   ============================================================ */
#bicm-landing {
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  max-width: var(--max-w);
  margin: 0 auto;
}

/* Landing nav (solo en landing, top right) */
.landing-nav {
  position: absolute;
  top: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 3rem;
}
.landing-nav a {
  font-size: 0.875rem; font-weight: 500; color: white;
  mix-blend-mode: difference;
  transition: opacity .2s;
}
.landing-nav a:hover { opacity: .6; }
.landing-nav .cart-link {
  position: relative;
  padding: 0.5rem;
}
.landing-nav .cart-link svg { width: 1.5rem; height: 1.5rem; }

/* Split panels */
.landing-split {
  flex: 1;
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) { .landing-split { flex-direction: row; } }

.landing-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  overflow: hidden;
  flex: 1;
}
@media (min-width: 768px) { .landing-panel { width: 50%; height: 100%; } }

.landing-panel-img {
  position: relative;
  overflow: hidden;
  transition: height .6s var(--ease);
  height: 60%;
}
.landing-panel:hover .landing-panel-img { height: 45%; }
.landing-panel-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s var(--ease);
}
.landing-panel:hover .landing-panel-img img { transform: scale(1.05); }
.landing-panel-dim {
  position: absolute; inset: 0;
  background: white; opacity: 0;
  pointer-events: none;
  transition: opacity .5s var(--ease);
}
/* Dimming para el panel NO hover (cuando el otro está activo) */
.landing-split:has(.landing-panel:hover) .landing-panel:not(:hover) .landing-panel-dim {
  opacity: 0.5;
}
.landing-split:has(.landing-panel:hover) .landing-panel:not(:hover) .landing-panel-img {
  height: 72%;
}

.landing-panel-text {
  flex: 1;
  padding: 1.25rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: white;
  transition: background .5s var(--ease);
}
.landing-panel--servicios:hover .landing-panel-text { background: var(--yellow); }
.landing-panel--tienda:hover   .landing-panel-text { background: var(--green); }

.landing-panel-title {
  font-size: clamp(1.875rem, 4vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.landing-panel-line {
  height: 4px; width: 2.5rem;
  background: var(--black);
  border-radius: 9999px;
  transition: width .5s var(--ease);
  margin-bottom: 0.5rem;
}
.landing-panel:hover .landing-panel-line { width: 5rem; }
.landing-panel-desc {
  font-size: 0.8125rem; line-height: 1.6;
  color: rgba(0,0,0,.6); max-width: 22rem;
  margin-bottom: 0.5rem;
  transition: color .4s;
}
.landing-panel:hover .landing-panel-desc { color: rgba(0,0,0,.8); }

.landing-panel-bullets {
  display: none; flex-direction: column; gap: 0.25rem;
  margin-bottom: 0.75rem;
}
.landing-panel:hover .landing-panel-bullets { display: flex; }
.landing-panel-bullets li {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.6875rem; font-weight: 500;
}
.landing-panel-bullets li::before {
  content: ''; width: 4px; height: 4px;
  border-radius: 9999px; background: var(--black); flex-shrink: 0;
}

.landing-panel-cta {
  display: inline-flex; align-items: center; gap: 0.375rem;
  background: var(--black); color: white;
  padding: 0.5rem 1rem; border-radius: 9999px;
  font-size: 0.625rem; font-weight: 800; letter-spacing: 0.15em;
  text-transform: uppercase; width: fit-content;
  transition: transform .2s;
}
.landing-panel-cta:hover { transform: scale(1.02); }
.landing-panel-cta svg { width: 0.75rem; height: 0.75rem; }

/* ============================================================
   INNER PAGES — SHARED
   ============================================================ */
.bicm-page {
  min-height: 100vh;
  padding-top: 4rem; /* header height */
  background: white;
}

.bicm-hero {
  display: grid;
  grid-template-columns: 1fr;
  border-bottom: 1px solid rgba(0,0,0,.08);
}
@media (min-width: 768px) { .bicm-hero { grid-template-columns: 1fr 1fr; } }

.bicm-hero-left {
  padding: 3rem 1.5rem;
  display: flex; flex-direction: column; justify-content: space-between; gap: 1.5rem;
  border-bottom: 1px solid rgba(0,0,0,.08);
}
@media (min-width: 768px) {
  .bicm-hero-left {
    padding: 3rem; border-bottom: none;
    border-right: 1px solid rgba(0,0,0,.08);
  }
}

.bicm-page-title {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 1rem;
}
.bicm-hero-desc {
  font-size: 1rem; line-height: 1.7;
  color: rgba(0,0,0,.55); max-width: 26rem;
}
.bicm-hero-right {
  position: relative; overflow: hidden; min-height: 280px;
}
.bicm-hero-right img {
  width: 100%; height: 100%; object-fit: cover;
  position: absolute; inset: 0;
}

/* ============================================================
   SERVICIOS
   ============================================================ */
.servicios-section {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 3rem 1.5rem;
}
@media (min-width: 768px) { .servicios-section { padding: 3rem; } }

.service-row { border-bottom: 1px solid rgba(0,0,0,.1); }

.service-trigger {
  width: 100%; display: flex;
  align-items: center; justify-content: space-between;
  padding: 1.5rem 0; text-align: left;
  cursor: pointer; background: none; border: none;
}

.service-trigger-left {
  display: flex; align-items: center; gap: 1rem; flex: 1;
}
.service-title {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 900; letter-spacing: -0.01em;
  position: relative;
}
.service-title-underline {
  position: absolute; bottom: -4px; left: 0;
  height: 3px; background: var(--yellow);
  width: 0; transition: width .4s var(--ease);
}
.service-trigger[aria-expanded="true"] .service-title-underline { width: 100%; }

.service-extending-line {
  height: 3px; background: var(--yellow);
  width: 0; transition: width .4s .1s var(--ease);
}
.service-trigger[aria-expanded="true"] .service-extending-line { width: 60px; }

.service-num {
  font-size: 1.5rem; font-weight: 300;
  color: rgba(0,0,0,.25); width: 2rem; text-align: right;
}
.service-chevron {
  width: 1.25rem; height: 1.25rem;
  color: rgba(0,0,0,.3);
  transition: transform .3s var(--ease);
}
.service-trigger[aria-expanded="true"] .service-chevron { transform: rotate(180deg); }

.service-body {
  max-height: 0; overflow: hidden;
  transition: max-height .4s var(--ease-out);
}
.service-body.open { max-height: 700px; }

.service-body-inner { padding-bottom: 2rem; }
.service-body-desc {
  font-size: 0.9375rem; color: rgba(0,0,0,.55);
  line-height: 1.7; max-width: 40rem; margin-bottom: 1.5rem;
}

.service-two-col {
  display: grid; grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) { .service-two-col { grid-template-columns: auto 1fr; gap: 3rem; } }

.service-bullets {
  display: flex; flex-direction: column; gap: 0.75rem;
}
.service-bullets li {
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.9375rem;
}
.service-bullets li::before {
  content: ''; width: 0.5rem; height: 0.5rem;
  background: var(--yellow); flex-shrink: 0;
}

.service-images {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
}
.service-img-slot {
  aspect-ratio: 3/4;
  background: rgba(0,0,0,.05);
  overflow: hidden;
}
.service-img-slot img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================================
   TIENDA — HERO, DESTACADOS, GRILLA
   ============================================================ */
.tienda-page {
  min-height: 100vh;
  padding-top: 4rem;
  background: white;
}

/* CART BUTTON FIXED */
.fixed-cart-btn {
  position: fixed;
  top: 1rem; right: 1.5rem;
  z-index: 150;
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--black); color: white;
  border-radius: 9999px;
  font-size: 0.625rem; font-weight: 800;
  letter-spacing: 0.15em; text-transform: uppercase;
  transition: background .3s, color .3s;
  cursor: pointer; border: none; font-family: inherit;
}
.fixed-cart-btn:hover { background: var(--green); color: var(--black); }
.fixed-cart-btn svg { width: 0.875rem; height: 0.875rem; }
.fixed-cart-count {
  width: 1.25rem; height: 1.25rem;
  border-radius: 9999px;
  background: var(--green); color: white;
  font-size: 0.5625rem; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  margin-left: -0.25rem;
}

/* SECTION LABELS */
.section-label {
  font-size: 0.625rem; font-weight: 800;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(0,0,0,.22); margin-bottom: 1.5rem;
}

/* RECENTLY ARRIVED */
.recently-arrived {
  padding: 3rem 1.5rem 2.5rem;
  border-bottom: 1px solid rgba(0,0,0,.08);
  max-width: var(--max-w); margin: 0 auto;
}
@media (min-width: 768px) { .recently-arrived { padding: 3rem 3rem 2.5rem; } }

.highlight-new {
  display: grid; grid-template-columns: 1fr;
  border: 1px solid rgba(0,0,0,.08);
  overflow: hidden; cursor: pointer;
  transition: box-shadow .3s;
}
.highlight-new:hover { box-shadow: 0 8px 40px rgba(0,0,0,.1); }
@media (min-width: 768px) { .highlight-new { grid-template-columns: 1fr 1fr; } }

.highlight-new-img {
  position: relative; overflow: hidden; min-height: 360px;
  background: rgba(116,183,67,.1);
}
.highlight-new-img img {
  width: 100%; height: 100%; object-fit: cover;
  position: absolute; inset: 0;
  transition: transform .7s var(--ease-out);
}
.highlight-new:hover .highlight-new-img img { transform: scale(1.04); }
.highlight-new-img .new-badge {
  position: absolute; top: 1rem; left: 1rem; z-index: 2;
  background: var(--black); color: white;
  font-size: 0.5625rem; font-weight: 900;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 0.375rem 0.75rem; border-radius: 9999px;
}
.highlight-new-img .fav-btn-abs {
  position: absolute; top: 1rem; right: 1rem; z-index: 2;
}
.highlight-new-text {
  padding: 2rem 2.5rem;
  display: flex; flex-direction: column; justify-content: space-between;
}
.highlight-product-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 900; letter-spacing: -0.02em; text-transform: uppercase;
  line-height: 1.1; margin-bottom: 0.75rem;
}
.highlight-accent {
  height: 3px; width: 2rem; background: var(--green);
  border-radius: 9999px; margin-bottom: 1rem;
  transition: width .4s var(--ease);
}
.highlight-new:hover .highlight-accent { width: 4rem; }

/* DESTACADOS */
.destacados {
  padding: 2.5rem 1.5rem;
  border-bottom: 1px solid rgba(0,0,0,.08);
  max-width: var(--max-w); margin: 0 auto;
}
@media (min-width: 768px) { .destacados { padding: 2.5rem 3rem; } }

.destacados-grid {
  display: grid; grid-template-columns: 1fr; gap: 1.5rem;
}
@media (min-width: 768px) { .destacados-grid { grid-template-columns: 1fr 1fr; } }

.highlight-card {
  border: 1px solid rgba(0,0,0,.08);
  overflow: hidden; cursor: pointer;
  display: flex; flex-direction: column;
}
.highlight-card-img {
  position: relative; height: 260px; overflow: hidden;
  background: rgba(0,0,0,.04);
}
.highlight-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  position: absolute; inset: 0;
  transition: transform .7s var(--ease-out);
}
.highlight-card:hover .highlight-card-img img { transform: scale(1.05); }
.highlight-card-body {
  padding: 1.25rem; display: flex;
  flex-direction: column; gap: 0.5rem; flex: 1;
  transition: background .4s var(--ease-out);
}
.highlight-card--green:hover  .highlight-card-body { background: var(--green); }
.highlight-card--yellow:hover .highlight-card-body { background: var(--yellow); }
.highlight-card-title { font-size: 1.25rem; font-weight: 900; text-transform: uppercase; }
.highlight-card-accent {
  height: 2px; width: 1.5rem; background: var(--black);
  border-radius: 9999px; transition: width .4s;
}
.highlight-card:hover .highlight-card-accent { width: 3rem; }
.highlight-card-desc { font-size: 0.6875rem; color: rgba(0,0,0,.55); line-height: 1.6; }
.highlight-card-bottom {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: auto;
}
.highlight-card-price { font-size: 1.25rem; font-weight: 900; }
.add-circle {
  width: 2rem; height: 2rem; border-radius: 9999px;
  background: var(--black);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s; cursor: pointer;
  border: none; font-family: inherit;
}
.add-circle:hover { background: white; }
.add-circle svg { width: 1rem; height: 1rem; color: white; }
.add-circle:hover svg { color: var(--black); }

/* FAVORITE BUTTON */
.fav-btn {
  width: 2rem; height: 2rem; border-radius: 9999px;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, opacity .2s;
  cursor: pointer; border: none; font-family: inherit;
  background: rgba(255,255,255,.9);
}
.fav-btn:hover, .fav-btn.active { background: var(--yellow); }
.fav-btn svg { width: 1rem; height: 1rem; color: rgba(0,0,0,.5); }
.fav-btn.active svg { color: white; fill: white; }
.fav-btn-lg {
  width: 3rem; height: 3rem;
}
.fav-btn-lg svg { width: 1.25rem; height: 1.25rem; }

/* ALL PRODUCTS GRID */
.all-products {
  padding: 3rem 1.5rem;
  max-width: var(--max-w); margin: 0 auto;
}
@media (min-width: 768px) { .all-products { padding: 3rem; } }

.grid-header {
  display: flex; align-items: center;
  justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
  margin-bottom: 2rem;
}
.filter-pills { display: flex; gap: 0.5rem; flex-wrap: wrap; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 1rem;
}
@media (min-width: 640px)  { .product-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .product-grid { grid-template-columns: repeat(4, 1fr); } }

.product-card { display: flex; flex-direction: column; cursor: pointer; }
.product-card-img {
  position: relative; aspect-ratio: 1/1;
  overflow: hidden; background: rgba(0,0,0,.04);
}
.product-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s var(--ease-out);
}
.product-card:hover .product-card-img img { transform: scale(1.05); }
.product-quick-add {
  position: absolute; bottom: 0.75rem; right: 0.75rem;
  width: 2rem; height: 2rem; border-radius: 9999px;
  background: var(--black); color: white;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: scale(.8);
  transition: opacity .2s, transform .2s, background .2s;
  cursor: pointer; border: none; font-family: inherit;
}
.product-card:hover .product-quick-add { opacity: 1; transform: scale(1); }
.product-quick-add:hover { background: var(--green); }
.product-quick-add svg { width: 1rem; height: 1rem; }
.product-fav-btn {
  position: absolute; top: 0.75rem; left: 0.75rem;
  opacity: 0; transform: scale(.8);
  transition: opacity .2s, transform .2s;
}
.product-card:hover .product-fav-btn,
.product-fav-btn.active { opacity: 1; transform: scale(1); }

.product-card-info { margin-top: 0.75rem; text-align: center; }
.product-card-name {
  font-size: 0.625rem; font-weight: 900;
  letter-spacing: 0.12em; text-transform: uppercase; line-height: 1.3;
}
.product-card-cat { font-size: 0.5625rem; color: rgba(0,0,0,.38); margin-top: 0.125rem; }
.product-card-price { font-size: 0.875rem; font-weight: 900; margin-top: 0.25rem; }
.product-add-link {
  font-size: 0.5625rem; font-weight: 800;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(0,0,0,.3); transition: color .2s;
  background: none; border: none; cursor: pointer;
  font-family: inherit; margin-top: 0.375rem;
}
.product-add-link:hover { color: var(--black); }

/* PRODUCT MODAL */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.6);
  z-index: 500;
  display: none;
}
.modal-overlay.open { display: block; }
.product-modal {
  position: fixed;
  inset: 1rem;
  background: white; z-index: 600;
  display: none;
  overflow: hidden;
  flex-direction: column;
}
.product-modal.open { display: flex; }
@media (min-width: 768px) {
  .product-modal {
    inset: auto;
    left: 50%; top: 50%;
    transform: translate(-50%,-50%);
    width: 100%; max-width: 42rem;
    flex-direction: row;
  }
}
.product-modal-close {
  position: absolute; top: 1rem; right: 1rem; z-index: 2;
  width: 2rem; height: 2rem; border-radius: 9999px;
  background: rgba(0,0,0,.1);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; border: none; transition: background .2s;
}
.product-modal-close:hover { background: rgba(0,0,0,.2); }
.product-modal-close svg { width: 1rem; height: 1rem; }
.product-modal-img {
  width: 100%; aspect-ratio: 1/1;
  background: rgba(116,183,67,.1);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; flex-shrink: 0;
}
@media (min-width: 768px) { .product-modal-img { width: 50%; aspect-ratio: auto; } }
.product-modal-img img { width: 100%; height: 100%; object-fit: cover; }
.product-modal-placeholder { width: 75%; height: 75%; background: rgba(214,95,95,.4); }
.product-modal-body {
  padding: 1.5rem 2rem;
  display: flex; flex-direction: column; flex: 1;
  overflow-y: auto;
}
.product-modal-cat { font-size: 0.625rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; color: rgba(0,0,0,.35); margin-bottom: 0.5rem; }
.product-modal-title { font-size: 1.5rem; font-weight: 900; text-transform: uppercase; margin-bottom: 0.5rem; }
.product-modal-desc { font-size: 0.875rem; color: rgba(0,0,0,.55); line-height: 1.7; flex: 1; margin-bottom: 1.5rem; }
.product-modal-price { font-size: 1.875rem; font-weight: 900; margin-bottom: 1.5rem; }
.product-modal-actions { display: flex; gap: 0.75rem; }

/* IMPRESION SECTION */
.impresion-banner {
  background: var(--black);
  padding: 2rem 1.5rem;
  border-top: 4px solid var(--black);
  display: flex; align-items: center; justify-content: space-between;
  max-width: var(--max-w); margin: 0 auto;
}
@media (min-width: 768px) { .impresion-banner { padding: 2rem 3rem; } }
.impresion-banner-bar {
  width: 0.5rem; height: 2.5rem; background: var(--green);
  border-radius: 9999px; margin-right: 1rem; flex-shrink: 0;
}
.impresion-banner-title {
  font-size: clamp(1.25rem, 2.5vw, 1.875rem);
  font-weight: 900; color: white;
  letter-spacing: -0.02em; line-height: 1;
}
.impresion-banner-label {
  font-size: 0.5625rem; font-weight: 800; letter-spacing: .18em;
  text-transform: uppercase; color: rgba(255,255,255,.35);
}
.impresion-banner-right {
  font-size: 0.6875rem; color: rgba(255,255,255,.28);
  max-width: 200px; text-align: right; line-height: 1.6;
}
@media (max-width: 768px) { .impresion-banner-right { display: none; } }

.impresion-body {
  padding: 3rem 1.5rem;
  max-width: var(--max-w); margin: 0 auto;
}
@media (min-width: 768px) { .impresion-body { padding: 3rem; } }

/* BICM WIDGET */
.widget-heading { margin-bottom: 2.5rem; }
.widget-tag {
  font-size: 0.625rem; font-weight: 800;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--green); margin-bottom: 0.5rem;
}
.widget-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900; letter-spacing: -0.03em; line-height: 1;
}
.widget-desc {
  font-size: 0.8125rem; color: rgba(0,0,0,.45);
  margin-top: 1rem; max-width: 38rem; line-height: 1.7;
}
.widget-grid {
  display: grid; grid-template-columns: 1fr; gap: 3rem;
}
@media (min-width: 1024px) { .widget-grid { grid-template-columns: 1fr 1fr; } }

.widget-code-label {
  font-size: 0.625rem; font-weight: 800;
  letter-spacing: .18em; text-transform: uppercase;
  color: rgba(0,0,0,.38); margin-bottom: 0.75rem;
}
.widget-code-row { display: flex; gap: 0.5rem; margin-bottom: 0.25rem; }
.widget-code-wrap {
  display: flex; align-items: center;
  border: 1px solid rgba(0,0,0,.18); border-radius: 9999px;
  overflow: hidden; flex: 1;
}
.widget-code-prefix {
  padding: 0.75rem;
  background: rgba(0,0,0,.04); border-right: 1px solid rgba(0,0,0,.08);
  font-size: 0.75rem; font-family: monospace; font-weight: 700; color: rgba(0,0,0,.35);
}
.widget-code-input {
  flex: 1; padding: 0.75rem;
  font-size: 0.875rem; font-family: monospace;
  outline: none; border: none; background: transparent;
}
.widget-code-hint { font-size: 0.625rem; color: rgba(0,0,0,.25); margin-bottom: 1.5rem; }
.widget-code-error { font-size: 0.75rem; color: #ef4444; margin-bottom: .75rem; }

.widget-upload-zone {
  border: 2px dashed rgba(0,0,0,.14); border-radius: 1rem;
  padding: 1.25rem; display: flex; align-items: center; gap: 1rem;
  cursor: pointer; transition: border-color .2s; margin-bottom: 2rem;
}
.widget-upload-zone:hover { border-color: rgba(0,0,0,.32); }

.widget-options { transition: opacity .3s; }
.widget-options.disabled { opacity: .38; pointer-events: none; }

.widget-option-group { margin-bottom: 1.25rem; }
.widget-option-label {
  font-size: 0.5625rem; font-weight: 800; letter-spacing: .18em;
  text-transform: uppercase; color: rgba(0,0,0,.28); margin-bottom: 0.5rem;
}
.widget-option-pills { display: flex; gap: 0.5rem; flex-wrap: wrap; }

.widget-price-box {
  background: rgba(0,0,0,.025); border: 1px solid rgba(0,0,0,.06);
  border-radius: 1.25rem; padding: 1.25rem;
  margin-bottom: 1.25rem; margin-top: 2rem;
}
.widget-price-row {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 0.5rem;
}
.widget-price-row-label { font-size: 0.6875rem; color: rgba(0,0,0,.35); }
.widget-price-row-val { font-size: 0.8125rem; font-weight: 900; }
.widget-price-divider { height: 1px; background: rgba(0,0,0,.08); margin: 0.75rem 0; }
.widget-total { font-size: 1.375rem; font-weight: 900; }

.widget-collection-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 0.75rem;
  margin-top: 2.5rem;
}
@media (min-width: 640px)  { .widget-collection-grid { grid-template-columns: repeat(4,1fr); } }
@media (min-width: 768px)  { .widget-collection-grid { grid-template-columns: repeat(6,1fr); } }
@media (min-width: 1024px) { .widget-collection-grid { grid-template-columns: repeat(8,1fr); } }

.poster-card {
  position: relative; border: 1px solid rgba(0,0,0,.08);
  overflow: hidden; background: white;
}
.poster-card-img {
  aspect-ratio: 3/4; background: rgba(0,0,0,.04);
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.poster-card-img img { width: 100%; height: 100%; object-fit: contain; }
.poster-spinner {
  width: 1.25rem; height: 1.25rem;
  border: 2px solid rgba(0,0,0,.15); border-top-color: rgba(0,0,0,.6);
  border-radius: 9999px; animation: spin .7s linear infinite;
}
.poster-card-label {
  padding: 0.25rem 0.5rem;
  border-top: 1px solid rgba(0,0,0,.05);
  font-size: 0.5625rem; font-weight: 700;
  text-transform: uppercase; text-align: center;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.poster-card-remove {
  position: absolute; top: 0.375rem; right: 0.375rem;
  width: 1.5rem; height: 1.5rem; border-radius: 9999px;
  background: rgba(0,0,0,.65); opacity: 0;
  display: flex; align-items: center; justify-content: center;
  transition: opacity .2s; cursor: pointer; border: none;
}
.poster-card:hover .poster-card-remove { opacity: 1; }
.poster-card-remove svg { width: 0.75rem; height: 0.75rem; color: white; }

/* ============================================================
   CART PAGE
   ============================================================ */
.cart-page {
  min-height: 100vh;
  padding-top: 4rem; background: white;
  max-width: var(--max-w); margin: 0 auto;
}
.cart-page-inner { padding: 3rem 1.5rem; }
@media (min-width: 768px) { .cart-page-inner { padding: 3rem; } }

.cart-header-row {
  display: flex; align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
  margin-bottom: 2rem;
}
.cart-page-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900; letter-spacing: -0.03em;
}
.currency-toggle {
  display: flex; border: 1px solid rgba(0,0,0,.1); border-radius: 0.5rem; overflow: hidden;
}
.currency-toggle button {
  padding: 0.5rem 1rem; font-weight: 700; font-size: 0.75rem;
  letter-spacing: 0.05em; background: white; border: none;
  cursor: pointer; transition: background .2s, color .2s; font-family: inherit;
}
.currency-toggle button.active { background: var(--black); color: white; }
.currency-toggle button:hover:not(.active) { background: var(--gray-100); }

.cart-grid {
  display: grid; grid-template-columns: 1fr; gap: 3rem;
}
@media (min-width: 1024px) { .cart-grid { grid-template-columns: 1fr 1fr 1fr; } }
.cart-items-col { grid-column: span 1; }
@media (min-width: 1024px) { .cart-items-col { grid-column: span 2; } }

.cart-item {
  display: flex; gap: 1rem; padding: 1rem;
  border: 1px solid rgba(0,0,0,.08); border-radius: 0.75rem;
  margin-bottom: 1rem;
}
.cart-item-img {
  width: 5rem; height: 6rem; background: rgba(0,0,0,.04);
  border-radius: 0.5rem; overflow: hidden; flex-shrink: 0;
}
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-img-placeholder {
  width: 100%; height: 100%;
  background: rgba(116,183,67,.15);
  display: flex; align-items: center; justify-content: center;
}
.cart-item-img-placeholder div { width: 75%; height: 75%; background: rgba(214,95,95,.3); border-radius: 4px; }
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name { font-size: 0.75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.cart-item-cat { font-size: 0.5625rem; color: rgba(0,0,0,.38); margin-top: 0.125rem; }
.cart-item-meta { font-size: 0.5625rem; color: rgba(0,0,0,.28); margin-top: 0.25rem; line-height: 1.5; }
.cart-item-bottom {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 0.75rem;
}
.qty-controls { display: flex; align-items: center; gap: 0.5rem; }
.qty-btn {
  width: 1.75rem; height: 1.75rem;
  border: 1px solid rgba(0,0,0,.12); border-radius: 0.375rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background .15s; background: none; font-family: inherit;
}
.qty-btn:hover { background: var(--gray-100); }
.qty-btn:disabled { opacity: .3; pointer-events: none; }
.qty-btn svg { width: 0.75rem; height: 0.75rem; }
.qty-val { font-size: 0.875rem; font-weight: 700; width: 1.5rem; text-align: center; }
.cart-item-price { font-size: 0.875rem; font-weight: 900; }
.cart-item-remove {
  padding: 0.25rem; cursor: pointer; background: none;
  border: none; transition: color .2s; color: rgba(0,0,0,.3);
}
.cart-item-remove:hover { color: #ef4444; }
.cart-item-remove svg { width: 1rem; height: 1rem; }

.order-summary {
  background: rgba(0,0,0,.02);
  border: 1px solid rgba(0,0,0,.08);
  padding: 1.5rem;
  position: sticky; top: 5rem; height: fit-content;
}
.order-summary-title {
  font-size: 0.75rem; font-weight: 800;
  letter-spacing: .18em; text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.order-summary-row {
  display: flex; justify-content: space-between;
  font-size: 0.875rem; margin-bottom: 0.75rem;
}
.order-summary-row span:first-child { color: rgba(0,0,0,.5); }
.order-summary-divider { height: 1px; background: rgba(0,0,0,.08); margin: 1rem 0; }
.order-total-label { font-size: 0.625rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; color: rgba(0,0,0,.45); }
.order-total-val { font-size: 1.375rem; font-weight: 900; }
.order-woo-note { font-size: 0.5625rem; color: rgba(0,0,0,.3); line-height: 1.6; text-align: center; margin: 1rem 0; }

.cart-empty {
  min-height: 60vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 3rem;
}
.cart-empty svg { width: 5rem; height: 5rem; color: rgba(0,0,0,.12); margin-bottom: 1.5rem; }
.cart-empty-title { font-size: 1.875rem; font-weight: 900; margin-bottom: 1rem; }
.cart-empty-desc { font-size: 0.875rem; color: rgba(0,0,0,.45); margin-bottom: 2rem; }

/* ============================================================
   CONTACTO PAGE
   ============================================================ */
.contacto-page {
  min-height: 100vh; padding-top: 4rem; background: white;
}
.contacto-inner {
  padding: 3rem 1.5rem;
  max-width: 75rem; margin: 0 auto;
}
@media (min-width: 768px) { .contacto-inner { padding: 3rem; } }
.contacto-grid {
  display: grid; grid-template-columns: 1fr; gap: 4rem;
}
@media (min-width: 768px) { .contacto-grid { grid-template-columns: 1fr 1fr; gap: 4rem; } }

.contacto-info-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900; letter-spacing: -0.03em; margin-bottom: 1rem;
}
.contacto-info-desc {
  font-size: 1rem; color: rgba(0,0,0,.55);
  line-height: 1.7; max-width: 26rem; margin-bottom: 3rem;
}
.contact-item {
  display: flex; align-items: flex-start; gap: 1rem;
  margin-bottom: 1.5rem;
}
.contact-icon {
  width: 2.5rem; height: 2.5rem; border-radius: 9999px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-icon svg { width: 1rem; height: 1rem; }
.contact-icon-black { background: var(--black); }
.contact-icon-black svg { color: white; }
.contact-icon-yellow { background: var(--yellow); }
.contact-icon-yellow svg { color: var(--black); }
.contact-icon-green { background: var(--green); }
.contact-icon-green svg { color: white; }
.contact-item-title {
  font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; margin-bottom: 0.25rem;
}
.contact-item-text { font-size: 0.875rem; color: rgba(0,0,0,.55); line-height: 1.6; }
.contact-item-text a { transition: color .2s; }
.contact-item-text a:hover { color: var(--yellow); }

.contact-form-wrap {
  background: rgba(0,0,0,.02); border: 1px solid rgba(0,0,0,.08); padding: 2rem;
}
.contact-form-title { font-size: 1.25rem; font-weight: 700; margin-bottom: 1.5rem; }
.form-field { margin-bottom: 1.25rem; }
.form-label {
  display: block; font-size: 0.625rem; font-weight: 800;
  letter-spacing: .18em; text-transform: uppercase;
  color: rgba(0,0,0,.38); margin-bottom: 0.5rem;
}
.form-input, .form-textarea {
  width: 100%; padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,.12);
  font-size: 0.875rem; font-family: inherit;
  outline: none; transition: border-color .2s;
  background: white;
}
.form-input:focus, .form-textarea:focus { border-color: rgba(0,0,0,.4); }
.form-textarea { min-height: 7.5rem; resize: vertical; }

/* ============================================================
   FOOTER
   ============================================================ */
#bicm-footer {
  background: var(--black); color: white;
}
.footer-inner {
  padding: 4rem 1.5rem 5rem;
  display: flex; flex-direction: column; gap: 3rem;
}
@media (min-width: 768px) {
  .footer-inner {
    padding: 5rem 3rem;
    flex-direction: row; justify-content: space-between;
  }
}
.footer-brand {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 900; line-height: 1.15; letter-spacing: -0.01em;
  max-width: 50%;
}
.footer-links-wrap { display: flex; gap: 4rem 6rem; flex-wrap: wrap; }
.footer-links-col { display: flex; flex-direction: column; gap: 1rem; }
.footer-col-title { font-size: 0.875rem; font-weight: 700; }
.footer-link {
  font-size: 0.875rem; color: rgba(255,255,255,.7);
  transition: color .2s; display: flex; align-items: center; gap: 0.5rem;
}
.footer-link:hover { color: white; }
.footer-link svg { width: 1rem; height: 1rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
}
.footer-bottom-inner {
  padding: 1.25rem 1.5rem;
  display: flex; align-items: center; flex-wrap: wrap; gap: 1rem;
  font-size: 0.75rem; color: rgba(255,255,255,.4);
}
@media (min-width: 768px) { .footer-bottom-inner { padding: 1.25rem 3rem; } }
.footer-bottom-link { text-decoration: underline; transition: color .2s; }
.footer-bottom-link:hover { color: rgba(255,255,255,.7); }

/* ============================================================
   OVERLAY & CART DRAWER (tienda)
   ============================================================ */
.drawer-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.4);
  z-index: 300; display: none;
}
.drawer-overlay.open { display: block; }
.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: 100%; max-width: 380px;
  background: white; z-index: 400;
  display: flex; flex-direction: column;
  box-shadow: -8px 0 40px rgba(0,0,0,.15);
  transform: translateX(100%);
  transition: transform .35s var(--ease-out);
}
.cart-drawer.open { transform: translateX(0); }
.drawer-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(0,0,0,.08);
}
.drawer-title-row { display: flex; align-items: center; gap: 0.5rem; }
.drawer-title-row svg { width: 1rem; height: 1rem; }
.drawer-title {
  font-size: 0.75rem; font-weight: 900;
  letter-spacing: .18em; text-transform: uppercase;
}
.drawer-count {
  width: 1.25rem; height: 1.25rem; border-radius: 9999px;
  background: var(--green); color: white;
  font-size: 0.5625rem; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
}
.drawer-items { flex: 1; overflow-y: auto; padding: 1rem 1.5rem; }
.drawer-empty {
  height: 100%; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 0.75rem;
  color: rgba(0,0,0,.25);
}
.drawer-empty svg { width: 2.5rem; height: 2.5rem; }
.drawer-empty p { font-size: 0.625rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.drawer-item {
  display: flex; gap: 0.75rem; padding: 0.75rem 0;
  border-bottom: 1px solid rgba(0,0,0,.05);
}
.drawer-item-img {
  width: 4rem; height: 5rem; border-radius: 0.5rem;
  overflow: hidden; background: rgba(0,0,0,.05); flex-shrink: 0;
}
.drawer-item-img img { width: 100%; height: 100%; object-fit: cover; }
.drawer-item-name { font-size: 0.625rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.drawer-item-meta { font-size: 0.5625rem; color: rgba(0,0,0,.35); margin-top: 0.125rem; }
.drawer-item-bottom { display: flex; align-items: center; justify-content: space-between; margin-top: 0.5rem; }
.drawer-item-price { font-size: 0.875rem; font-weight: 900; }
.drawer-footer { padding: 1.25rem 1.5rem; border-top: 1px solid rgba(0,0,0,.08); }
.drawer-total-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; }
.drawer-total-val { font-size: 1.125rem; font-weight: 900; }
.drawer-woo-note { font-size: 0.5625rem; color: rgba(0,0,0,.3); line-height: 1.6; margin-bottom: 1rem; }

/* ============================================================
   NOTIFICACIONES TOAST
   ============================================================ */
#bicm-toast-container {
  position: fixed;
  bottom: 1.5rem; right: 1.5rem;
  z-index: 1000;
  display: flex; flex-direction: column-reverse; gap: 0.5rem;
  pointer-events: none;
}
.bicm-toast {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.875rem 1.25rem;
  background: var(--black); color: white;
  border-radius: 0.75rem;
  font-size: 0.8125rem; font-weight: 600;
  box-shadow: 0 8px 30px rgba(0,0,0,.2);
  pointer-events: all;
  animation: fadeUp .3s var(--ease-out) forwards;
  max-width: 320px;
}
.bicm-toast.success { background: var(--black); border-left: 3px solid var(--green); }
.bicm-toast.error   { background: var(--black); border-left: 3px solid #ef4444; }
.bicm-toast.info    { background: var(--black); border-left: 3px solid var(--yellow); }
.bicm-toast svg { width: 1rem; height: 1rem; flex-shrink: 0; }
