/** Shopify CDN: Minification failed

Line 27:0 Unexpected "}"

**/
/* ============================================================
   SIZE GUIDE POPUP — assets/size-guide-popup.css
   Agregar en theme.liquid: 
     {{ 'size-guide-popup.css' | asset_url | stylesheet_tag }}
   ============================================================ */

/* --- Botón trigger --- */
.size-guide-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #d0314b; /* fondo rojo */
  border: none;
  padding: 6px 10px; /* opcional para que parezca botón */
  font-size: 0.85rem;
  color: #ffffff; /* texto blanco */
  text-decoration: none; /* opcional: quitar subrayado */
  cursor: pointer;
  margin-top: 4px;
  border-radius: 4px; /* opcional: bordes redondeados */
}
}
.size-guide-trigger:hover {
  background: #40285f;
  
}
.size-guide-trigger svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* --- Overlay --- */
.size-guide-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 1rem;
  animation: sgFadeIn 0.18s ease;
}
@keyframes sgFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* --- Modal --- */
.size-guide-modal {
  background: #fff;
  border-radius: 12px;
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 1.5rem;
  animation: sgSlideUp 0.2s ease;
}
@keyframes sgSlideUp {
  from { transform: translateY(12px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

/* --- Header --- */
.size-guide-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.size-guide-title {
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
}
.size-guide-close {
  width: 32px;
  height: 32px;
  display: center;
  align-items: center;
  justify-content: center;
  background: #f5f5f5;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  color: #555;
  flex-shrink: 0;
}
.size-guide-close svg {
  stroke: #444;
  display: block;
}
.size-guide-close:hover {
  background: #e8e8e8;
}
.size-guide-close svg {
  width: 14px;
  height: 14px;
}

/* --- Descripción --- */
.size-guide-description {
  font-size: 0.85rem;
  color: #555;
  margin: 0 0 1rem;
  line-height: 1.5;
}

/* --- Tabs --- */
.size-guide-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 1rem;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 8px;
  overflow: hidden;
}
.size-guide-tab {
  flex: 1;
  padding: 8px 12px;
  font-size: 0.8rem;
  background: #f5f5f5;
  border: none;
  cursor: pointer;
  color: #666;
  transition: background 0.15s, color 0.15s;
}
.size-guide-tab + .size-guide-tab {
  border-left: 1px solid rgba(0,0,0,0.12);
}
.size-guide-tab.is-active {
  background: #fff;
  color: #111;
  font-weight: 600;
}
.size-guide-panel.is-hidden {
  display: none;
}

/* --- Tabla --- */
.size-guide-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.size-guide-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
}
.size-guide-table th {
  background: #f5f5f5;
  padding: 9px 12px;
  text-align: center;
  font-weight: 600;
  font-size: 0.78rem;
  color: #555;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  white-space: nowrap;
}
.size-guide-table td {
  padding: 9px 12px;
  text-align: center;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  color: #222;
}
.size-guide-table tbody tr:last-child td {
  border-bottom: none;
}
.size-guide-table tbody tr:hover td {
  background: #fafafa;
}

/* --- Tip --- */
.size-guide-tip {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  background: #EBF4FF;
  border-radius: 8px;
  padding: 10px 14px;
  margin-top: 1rem;
}
.size-guide-tip-icon {
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 1px;
}
.size-guide-tip p {
  font-size: 0.8rem;
  color: #1a4a80;
  margin: 0;
  line-height: 1.5;
}

/* Dark mode */
/* dark mode desactivado — fondo siempre blanco */
@media (prefers-color-scheme: dark-disabled) {
  .size-guide-modal { background: #1a1a1a; }
  .size-guide-table th { background: #2a2a2a; color: #aaa; }
  .size-guide-table td { color: #eee; border-color: rgba(255,255,255,0.07); }
  .size-guide-tab { background: #2a2a2a; color: #aaa; }
  .size-guide-tab.is-active { background: #1a1a1a; color: #fff; }
  .size-guide-close { background: #2a2a2a; color: #ccc; }
  .size-guide-tip { background: #1a2d42; }
  .size-guide-tip p { color: #7eb8f5; }
  .size-guide-description { color: #aaa; }
}

/* Mobile */
@media (max-width: 480px) {
  .size-guide-modal { padding: 1.25rem; border-radius: 16px 16px 0 0; }
  .size-guide-overlay { align-items: flex-end; padding: 0; }
}
