/** Shopify CDN: Minification failed

Line 14:3 Unexpected "="

**/
/* ============================================================
   CAPELLI BEAUTY & BARBER SUPPLY — Custom Styles
   capellibeautyshop.com
   ============================================================
   INSTRUCCIONES:
   - Este archivo NO debe modificarse directamente en el tema base
   - Todos los estilos custom van aquí, organizados por sección
   - Para desactivar un bloque, comenta con /* ... */
   ============================================================ */


/* ------------------------------------------------------------
   1. VARIABLES DE MARCA
   Colores y tokens de diseño de Capelli Beauty
   ------------------------------------------------------------ */
:root {
  --capelli-orange:    #ff6900;
  --capelli-orange-dk: #cc5300;   /* hover / pressed */
  --capelli-teal:      #0cc0df;
  --capelli-teal-dk:   #0999b3;
  --capelli-black:     #0a0a0a;
  --capelli-dark:      #111111;
  --capelli-gray:      #f5f5f5;
  --capelli-text:      #1a1a1a;
  --capelli-muted:     #666666;
  --capelli-border:    #e5e5e5;

  /* Tipografía */
  --capelli-font-heading: var(--font-heading-family, 'Helvetica Neue', sans-serif);
  --capelli-font-body:    var(--font-body-family, 'Helvetica Neue', sans-serif);

  /* Espaciado y radios */
  --capelli-radius-sm: 4px;
  --capelli-radius-md: 8px;
  --capelli-radius-lg: 12px;

  /* Transiciones */
  --capelli-transition: 0.22s ease;
  --capelli-transition-slow: 0.4s ease;
}


/* ------------------------------------------------------------
   2. RESETS PREMIUM GLOBALES
   Mejoras base que aplican a todo el sitio
   ------------------------------------------------------------ */

/* Scroll más suave en toda la página */
html {
  scroll-behavior: smooth;
}

/* Antialiasing de fuentes para look más limpio */
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Cursor pointer en todos los elementos clickeables */
a, button, [role="button"], label[for] {
  cursor: pointer;
}

/* Imágenes sin borde/outline al hacer click */
img {
  outline: none;
}

/* Selección de texto en naranja de la marca */
::selection {
  background-color: var(--capelli-orange);
  color: #ffffff;
}


.capelli-annbar {
  position: relative;
  z-index: 200;
  background: #0a0a0a !important;
  background-color: #0a0a0a !important;
  height: 38px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  width: 100%;
}

.capelli-annbar__track {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.capelli-annbar__msg {
  position: absolute;
  left: 0;
  right: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 400;
  color: #ffffff !important;
  letter-spacing: 0.01em;
  text-align: center;
  padding: 0 16px;
  opacity: 0;
  transform: translateY(5px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
  white-space: nowrap;
}

.capelli-annbar__msg.is-active {
  opacity: 1 !important;
  transform: translateY(0);
  pointer-events: auto;
}

.capelli-annbar__msg strong {
  color: #ff6900 !important;
  font-weight: 600;
}

.capelli-annbar__link {
  color: #0cc0df !important;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
}
.capelli-annbar__link:hover {
  color: #ffffff !important;
}

.capelli-annbar__close {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: none !important;
  border: none;
  color: #666666;
  font-size: 13px;
  line-height: 1;
  padding: 6px;
  cursor: pointer;
  transition: color 0.2s ease;
}
.capelli-annbar__close:hover {
  color: #ffffff !important;
}

@media (max-width: 640px) {
  .capelli-annbar__msg {
    font-size: 11px;
    white-space: normal;
    text-align: center;
    line-height: 1.3;
  }
  .capelli-annbar {
    height: auto;
    min-height: 38px;
    padding: 6px 0;
  }
}


/* ------------------------------------------------------------
   4. BRAND LOGOS STRIP
   ------------------------------------------------------------ */
.capelli-brands {
  background: #0a0a0a !important;
  padding: 28px 0 24px;
  overflow: hidden;
}

.capelli-brands__label {
  text-align: center;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #444444;
  margin-bottom: 20px;
}

/* Contenedor con fade en los bordes */
.capelli-brands__wrapper {
  position: relative;
  overflow: hidden;
}
.capelli-brands__wrapper::before,
.capelli-brands__wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.capelli-brands__wrapper::before {
  left: 0;
  background: linear-gradient(to right, #0a0a0a, transparent);
}
.capelli-brands__wrapper::after {
  right: 0;
  background: linear-gradient(to left, #0a0a0a, transparent);
}

/* Track animado */
.capelli-brands__track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: capelli-marquee 22s linear infinite;
}
.capelli-brands__track:hover {
  animation-play-state: paused;
}

@keyframes capelli-marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Cada logo */
.capelli-brands__item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 36px;
  height: 52px;
  opacity: 0.28;
  transition: opacity 0.35s ease;
  text-decoration: none;
  flex-shrink: 0;
}
.capelli-brands__item:hover {
  opacity: 1;
}

/* Imagen del logo */
.capelli-brands__item img {
  height: 28px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1);  /* fuerza blanco por si el logo no es blanco puro */
  transition: filter 0.35s ease;
}
.capelli-brands__item:hover img {
  filter: brightness(0) invert(1);  /* se mantiene blanco al hover — solo cambia opacidad */
}

/* Mobile */
@media (max-width: 640px) {
  .capelli-brands__item {
    padding: 0 24px;
  }
  .capelli-brands__item img {
    height: 22px;
  }
  .capelli-brands__wrapper::before,
  .capelli-brands__wrapper::after {
    width: 40px;
  }
}


/* ------------------------------------------------------------
   5. HERO
   (Se completa en el Paso 4)
   ------------------------------------------------------------ */
/* styles coming soon */


/* ------------------------------------------------------------
   6. TRUST BADGES
   ------------------------------------------------------------ */
.capelli-trust {
  background: #0a0a0a !important;
  padding: 48px 40px;
}

.capelli-trust__eyebrow {
  text-align: center;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #444444;
  margin-bottom: 32px;
}

.capelli-trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1100px;
  margin: 0 auto;
}

/* Separadores verticales entre items */
.capelli-trust__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 28px;
  position: relative;
}
.capelli-trust__item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 10%;
  bottom: 10%;
  width: 1px;
  background: #222222;
}

/* Ícono */
.capelli-trust__icon {
  width: 56px;
  height: 56px;
  background: rgba(255, 105, 0, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: background 0.3s ease;
}
.capelli-trust__item:hover .capelli-trust__icon {
  background: rgba(255, 105, 0, 0.18);
}

.capelli-trust__icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.85;
  transition: opacity 0.3s ease;
}
.capelli-trust__item:hover .capelli-trust__icon img {
  opacity: 1;
}

/* Texto */
.capelli-trust__title {
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.02em;
  margin-bottom: 6px;
  font-family: var(--capelli-font-heading);
}

.capelli-trust__desc {
  font-size: 11px;
  color: #555555;
  line-height: 1.6;
}

/* Mobile — 2 columnas */
@media (max-width: 768px) {
  .capelli-trust {
    padding: 36px 20px;
  }
  .capelli-trust__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 16px;
  }
  .capelli-trust__item:not(:last-child)::after {
    display: none;
  }
  .capelli-trust__item:nth-child(1),
  .capelli-trust__item:nth-child(2) {
    border-bottom: 1px solid #1e1e1e;
    padding-bottom: 28px;
  }
}

/* Mobile pequeño — 1 columna */
@media (max-width: 480px) {
  .capelli-trust__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .capelli-trust__item:nth-child(1),
  .capelli-trust__item:nth-child(2) {
    border-bottom: 1px solid #1e1e1e;
  }
}


/* ------------------------------------------------------------
   7. WHOLESALE SECTION
   ------------------------------------------------------------ */
.capelli-ws {
  background: #0a0a0a !important;
  padding: 64px 40px;
}

.capelli-ws__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* LEFT */
.capelli-ws__eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ff6900 !important;
  margin-bottom: 12px;
}

.capelli-ws__title {
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  font-family: var(--capelli-font-heading);
}

.capelli-ws__desc {
  font-size: 14px;
  color: #ffffffff !important;
  line-height: 1.75;
  margin-bottom: 22px;
}

.capelli-ws__perks {
  list-style: none;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.capelli-ws__perks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #ffffffff !important;
}
.capelli-ws__perks li span {
  color: #ff6900 !important;
  font-weight: 700;
  font-size: 11px;
  flex-shrink: 0;
}

.capelli-ws__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: #ff6900 !important;
  color: #ffffff !important;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 8px !important;
  border: none !important;
  box-shadow: none !important;
  text-decoration: none !important;
  transition: background 0.22s ease, transform 0.22s ease;
}
.capelli-ws__btn:hover {
  background: #cc5300 !important;
  color: #ffffff !important;
  transform: translateY(-1px);
}

/* RIGHT PANEL */
.capelli-ws__right {
  background: #0f0f0f;
  border: 1px solid #1a1a1a;
  border-radius: 14px;
  padding: 26px 22px;
}

.capelli-ws__brands-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #333333;
  margin-bottom: 16px;
  text-align: center;
}

/* Vertical marquee */
.capelli-ws__vmarquee {
  height: 200px;
  overflow: hidden;
  position: relative;
}
.capelli-ws__vmarquee::before,
.capelli-ws__vmarquee::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 40px;
  z-index: 2;
  pointer-events: none;
}
.capelli-ws__vmarquee::before {
  top: 0;
  background: linear-gradient(to bottom, #0f0f0f, transparent);
}
.capelli-ws__vmarquee::after {
  bottom: 0;
  background: linear-gradient(to top, #0f0f0f, transparent);
}

.capelli-ws__vtrack {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  will-change: transform;
}

/* Cada chip */
.capelli-ws__chip {
  background: #141414;
  border: 1px solid #1e1e1e;
  border-radius: 7px;
  padding: 8px 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  transition: border-color 0.3s ease;
}
.capelli-ws__chip:hover {
  border-color: #333333;
}
.capelli-ws__chip img {
  width: 68px;
  height: 18px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.4;
  transition: opacity 0.3s ease;
}
.capelli-ws__chip:hover img {
  opacity: 1;
}

/* Stats */
.capelli-ws__divider {
  border: none;
  border-top: 1px solid #1a1a1a;
  margin: 16px 0;
}
.capelli-ws__stats {
  display: flex;
  justify-content: space-around;
  text-align: center;
}
.capelli-ws__stat {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.capelli-ws__stat-val {
  font-size: 20px;
  font-weight: 700;
  color: #ff6900 !important;
}
.capelli-ws__stat-label {
  font-size: 9px;
  color: #ffffffff;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Mobile */
@media (max-width: 768px) {
  .capelli-ws {
    padding: 48px 20px;
  }
  .capelli-ws__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .capelli-ws__vmarquee {
    height: 160px;
  }
}


/* ------------------------------------------------------------
   8. PRODUCT CARDS — Premium hover effects
   ------------------------------------------------------------ */

/* Card: elevación + sombra al hover */
product-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: block;
}
product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.10);
}

/* Imagen: zoom suave al hover */
.card-gallery .product-media__image {
  transition: transform 0.45s ease !important;
}
product-card:hover .card-gallery .product-media__image {
  transform: scale(1.05);
}

/* Título: naranja al hover */
product-card p[role="heading"] {
  transition: color 0.22s ease;
}
product-card:hover p[role="heading"] {
  color: #ff6900 !important;
}

/* Botón quick-add: borde naranja al hover */
product-card:hover .quick-add__button {
  border-color: #ff6900 !important;
}

/* Mobile: sin efectos en dispositivos touch */
@media (hover: none) {
  product-card:hover {
    transform: none;
    box-shadow: none;
  }
  product-card:hover .card-gallery .product-media__image {
    transform: none;
  }
}


/* ------------------------------------------------------------
   9. NAVIGATION / DROPDOWNS
   (Se completa en el Paso 8)
   ------------------------------------------------------------ */
/* styles coming soon */


/* ------------------------------------------------------------
   10. UTILIDADES GLOBALES
   Clases helper reutilizables en todo el sitio
   ------------------------------------------------------------ */

/* Botón primario Capelli (naranja) */
.capelli-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  background-color: var(--capelli-orange);
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--capelli-radius-md);
  text-decoration: none;
  transition: background-color var(--capelli-transition), transform var(--capelli-transition);
}
.capelli-btn-primary:hover {
  background-color: var(--capelli-orange-dk);
  color: #ffffff;
  transform: translateY(-1px);
}
.capelli-btn-primary:active {
  transform: translateY(0);
}

/* Botón secundario (outline) */
.capelli-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 28px;
  background-color: transparent;
  color: var(--capelli-orange);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 2px solid var(--capelli-orange);
  border-radius: var(--capelli-radius-md);
  text-decoration: none;
  transition: all var(--capelli-transition);
}
.capelli-btn-outline:hover {
  background-color: var(--capelli-orange);
  color: #ffffff;
  transform: translateY(-1px);
}

/* Botón oscuro (fondo negro) */
.capelli-btn-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  background-color: var(--capelli-black);
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--capelli-radius-md);
  text-decoration: none;
  transition: all var(--capelli-transition);
}
.capelli-btn-dark:hover {
  background-color: var(--capelli-orange);
  color: #ffffff;
  transform: translateY(-1px);
}

/* Badge de marca (ej. "BaByliss PRO") */
.capelli-brand-badge {
  display: inline-block;
  padding: 3px 8px;
  background-color: var(--capelli-black);
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--capelli-radius-sm);
}

/* Sección con separador superior */
.capelli-section {
  padding: 60px 0;
}
.capelli-section-title {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--capelli-text);
  margin-bottom: 8px;
}
.capelli-section-sub {
  font-size: 15px;
  color: var(--capelli-muted);
  margin-bottom: 40px;
}