/* ============================================================
   COMPONENTS – Botones, tarjetas, badges, formulario, etc.
   Cada componente es autocontenido y reutilizable.
============================================================ */

/* ── SECCIÓN NOSOTROS ── */
.nosotros-section { background: var(--color-cream); }

.nosotros-layout {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}
@media (min-width: 768px) {
  .nosotros-layout {
    flex-direction: row;
    align-items: flex-start;
    gap: var(--space-2xl);
  }
}

/* Foto */
.nosotros-img-wrap {
  position: relative;
  flex: 0 0 auto;
  width: 100%;
  max-width: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
@media (min-width: 768px) { .nosotros-img-wrap { width: 45%; } }

.nosotros-slideshow {
  position: relative;
  width: 100%;
  height: 320px;
  overflow: hidden;
  border-radius: inherit;
}
.nosotros-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.6s ease-in-out;
}
.nosotros-slide.active { opacity: 1; }
.nosotros-img__badge {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: rgba(2,61,16,0.82);
  color: #fff;
  font-size: 11px;
  letter-spacing: 0.5px;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
}

/* Texto */
.nosotros-content { flex: 1; display: flex; flex-direction: column; gap: var(--space-md); }
.nosotros-p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.8;
}
.nosotros-p strong { color: var(--color-cacao); font-weight: 600; }

/* Misión */
.nosotros-mision {
  background: rgba(74,103,65,0.07);
  border-left: 3px solid var(--color-leaf);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: var(--space-md);
}
.nosotros-mision__label {
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-leaf);
  margin-bottom: 6px;
}
.nosotros-mision__text {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
  font-style: italic;
}

/* Tarjetas de valores */
.nosotros-values {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}
@media (min-width: 600px) {
  .nosotros-values { grid-template-columns: repeat(3, 1fr); }
}

.nosotros-value {
  background: var(--color-surface);
  border: 0.5px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-md);
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}
.nosotros-value:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.nosotros-value__icon { display: flex; margin-bottom: 4px; }
.nosotros-value__icon svg { width: 44px; height: 44px; }
.nosotros-value__img { width: 48px; height: 48px; object-fit: cover; border-radius: 8px; }
.nosotros-value__title {
  font-family: var(--font-display);
  font-size: var(--text-base);
  color: var(--color-cacao);
  font-weight: 700;
}
.nosotros-value__text {
  font-size: 12.5px;
  color: var(--color-text-muted);
  line-height: 1.65;
}

/* ── BOTONES ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 13px 22px;
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.4px;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
  white-space: nowrap;
}
.btn:active { transform: scale(0.96); }

.btn-primary {
  background: var(--color-caramel);
  color: #fff;
}
.btn-primary:hover { opacity: 0.9; }

.btn-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn-outline:hover { background: rgba(255,255,255,0.08); }

.btn-dark {
  background: var(--color-cacao);
  color: #fff;
}
.btn-dark:hover { opacity: 0.88; }

.btn-ghost {
  color: var(--color-caramel);
  border: 1.5px solid var(--color-caramel);
  background: transparent;
}
.btn-ghost:hover { background: rgba(200,131,42,0.08); }

.btn-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--color-caramel);
  color: #fff;
  font-size: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-fast), background var(--transition-fast);
  flex-shrink: 0;
}
.btn-icon:active { transform: scale(0.88); }
.btn-icon.added { background: var(--color-leaf); }

/* ── BADGE ── */
.badge {
  display: inline-block;
  padding: 5px 13px;
  border-radius: var(--radius-pill);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.badge-caramel {
  background: rgba(200,131,42,0.15);
  color: var(--color-caramel);
  border: 1px solid rgba(200,131,42,0.35);
}
.badge-leaf {
  background: rgba(74,103,65,0.15);
  color: var(--color-leaf);
  border: 1px solid rgba(74,103,65,0.3);
}

/* ── TARJETA GENÉRICA ── */
.card {
  background: var(--color-surface);
  border: 0.5px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.card-body { padding: var(--space-lg) var(--space-md); }
/* ── TARJETA DE EXPERIENCIA ── */
.exp-card {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .exp-card { flex-direction: row; }
}
.exp-img-col {
  flex: 0 0 auto;
  width: 100%;
  background: var(--color-cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
@media (min-width: 768px) {
  .exp-img-col { width: 42%; }
}
.exp-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}
.exp-text-col { flex: 1; }

/* ── TARJETA DE PRODUCTO ── */
.product-card {
  flex: 0 0 185px;
  background: rgba(255,255,255,0.07);
  border: 0.5px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  transition: transform var(--transition-base);
}
.product-card:hover { transform: translateY(-2px); }
.product-card__emoji { font-size: 38px; margin-bottom: var(--space-sm); display: block; }
.product-card__name  { color: #fff; font-size: var(--text-base); font-weight: 500; margin-bottom: 4px; }
.product-card__desc  { color: rgba(255,255,255,0.55); font-size: 12px; line-height: 1.55; margin-bottom: var(--space-md); }
.product-card__footer{ display: flex; justify-content: space-between; align-items: center; }
.product-card__price {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-caramel);
}

/* ── IMAGEN EN TARJETA DE PRODUCTO ── */
.product-card__img-wrap {
  position: relative;
  width: 100%;
  height: 140px;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: var(--space-sm);
  cursor: pointer;
}
.product-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.product-card__img-wrap:hover .product-card__img { transform: scale(1.06); }
.product-card__gallery-hint {
  position: absolute;
  bottom: 6px;
  right: 8px;
  font-size: 10px;
  background: rgba(0,0,0,0.55);
  color: #fff;
  padding: 2px 7px;
  border-radius: 20px;
  pointer-events: none;
}

/* ── MODAL GALERÍA ── */
.gallery-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.88);
  z-index: 500;
  align-items: flex-end;
  justify-content: center;
  padding: 0;
}
.gallery-modal.open { display: flex; }

.gallery-modal__box {
  background: var(--color-surface, #2a1a0f);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  width: 100%;
  max-width: 600px;
  max-height: 92vh;
  overflow-y: auto;
  padding: 24px 20px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  scrollbar-width: none;
}
.gallery-modal__box::-webkit-scrollbar { display: none; }

/* Pastilla visual para indicar que se puede arrastrar/cerrar */
.gallery-modal__box::before {
  content: '';
  display: block;
  width: 40px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255,255,255,0.2);
  margin: 0 auto 4px;
  flex-shrink: 0;
}

.gallery-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  color: #fff;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}
.gallery-modal__close:hover { background: rgba(255,255,255,0.25); }

.gallery-modal__main-img-wrap {
  width: 100%;
  max-height: 55vh;
  overflow-y: auto;
  border-radius: var(--radius-md);
  background: rgba(0,0,0,0.3);
  scrollbar-width: thin;
  scrollbar-color: rgba(42, 200, 81, 0.5) transparent;
}
.gallery-modal__main-img-wrap::-webkit-scrollbar {
  width: 4px;
}
.gallery-modal__main-img-wrap::-webkit-scrollbar-thumb {
  background: rgba(42, 200, 81, 0.5);
  border-radius: 2px;
}
.gallery-modal__main-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  border-radius: var(--radius-md);
}

.gallery-modal__thumbs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 2px;
}
.gallery-modal__thumbs::-webkit-scrollbar { display: none; }

.gallery-modal__thumb {
  flex: 0 0 86px;
  height: 86px;
  border-radius: var(--radius-md);
  object-fit: cover;
  cursor: pointer;
  opacity: 0.5;
  border: 2.5px solid transparent;
  transition: opacity 0.2s, border-color 0.2s, transform 0.2s;
}
.gallery-modal__thumb:hover { opacity: 0.8; transform: scale(1.04); }
.gallery-modal__thumb.active {
  opacity: 1;
  border-color: var(--color-caramel);
}

.gallery-modal__info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-top: 0.5px solid rgba(255,255,255,0.1);
  padding-top: 14px;
}
.gallery-modal__name {
  color: #fff;
  font-size: var(--text-lg);
  font-weight: 700;
  margin: 0;
}
.gallery-modal__desc {
  color: rgba(255,255,255,0.6);
  font-size: var(--text-sm);
  line-height: 1.6;
  margin: 0;
}
.gallery-modal__price {
  color: var(--color-caramel);
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  margin: 4px 0 0;
}
.gallery-modal__add-btn {
  margin-top: 4px;
  width: 100%;
  padding: 14px;
  background: var(--color-caramel);
  color: #fff;
  border-radius: var(--radius-md);
  font-size: var(--text-base);
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
}
.gallery-modal__add-btn:active { transform: scale(0.97); opacity: 0.9; }

/* ── TARJETA DE TESTIMONIO ── */
.testimonial-card {
  flex: 0 0 272px;
  background: var(--color-surface);
  border: 0.5px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-md);
}
.testimonial-card__stars { color: var(--color-caramel); font-size: 14px; margin-bottom: var(--space-sm); }
.testimonial-card__text  { font-size: var(--text-sm); color: var(--color-text-muted); line-height: 1.7; margin-bottom: var(--space-md); font-style: italic; }
.testimonial-card__name  { font-size: var(--text-sm); font-weight: 500; color: var(--color-cacao); }
.testimonial-card__loc   { font-size: var(--text-xs); color: var(--color-text-muted); }

/* ── TABS ── */
.tabs-row {
  display: flex;
  gap: var(--space-sm);
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
  margin-bottom: var(--space-lg);
}
.tabs-row::-webkit-scrollbar { display: none; }

.tab-btn {
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  font-size: var(--text-sm);
  white-space: nowrap;
  border: 1px solid var(--color-border);
  background: #fff;
  color: var(--color-text-muted);
  transition: all var(--transition-base);
}
.tab-btn.active {
  background: var(--color-cacao);
  color: #fff;
  border-color: var(--color-cacao);
}

/* ── FORMULARIO ── */
.form-group { margin-bottom: var(--space-md); }

.form-group label {
  display: block;
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  padding: 13px 15px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: var(--text-base);
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-cream);
  transition: border-color var(--transition-fast);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.form-control:focus { border-color: var(--color-caramel); }
.form-control.error { border-color: #c0392b; }

textarea.form-control { height: 100px; resize: none; }

.form-error {
  font-size: var(--text-xs);
  color: #c0392b;
  margin-top: 4px;
  display: none;
}
.form-error.visible { display: block; }

/* ── TOAST / NOTIFICACIÓN ── */
.toast {
  position: fixed;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--color-cacao);
  color: #fff;
  padding: 12px 20px;
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  opacity: 0;
  transition: all var(--transition-base);
  pointer-events: none;
  z-index: 300;
  white-space: nowrap;
  box-shadow: var(--shadow-lg);
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ── FAB WHATSAPP ── */
.wa-fab {
  position: fixed;
  bottom: 24px;
  right: 20px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 4px 16px rgba(37,211,102,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  z-index: 200;
  transition: transform var(--transition-fast);
}
.wa-fab:hover  { transform: scale(1.07); }
.wa-fab:active { transform: scale(0.93); }

/* ── CARRITO BADGE ── */
.cart-badge {
  display: none;
  background: var(--color-caramel);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 10px var(--space-md);
  font-size: var(--text-sm);
  margin-top: var(--space-md);
  align-items: center;
  gap: 8px;
}
.cart-badge.visible { display: flex; }



/* ── BUTTON 88 STYLE ── */
.button-88 {
  display: inline-flex;
  align-items: center;
  font-family: inherit;
  font-weight: 500;
  font-size: 14px;
  padding: 0.6em 1.3em;
  color: white;
  background: linear-gradient(0deg, rgba(20,167,62,1) 0%, rgba(102,247,113,1) 100%);
  border: none;
  box-shadow: 0 0.7em 1.5em -0.5em rgba(20,167,62,0.6);
  letter-spacing: 0.05em;
  border-radius: 20em;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  transition: all 0.3s ease;
  text-decoration: none;
}

.button-88:hover {
  box-shadow: 0 0.5em 1.5em -0.5em rgba(20,167,62,0.8);
  transform: translateY(-2px);
}

.button-88:active {
  box-shadow: 0 0.3em 1em -0.5em rgba(20,167,62,0.6);
  transform: translateY(0);
}

/* ── CART DRAWER ── */
.cart-drawer {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 600;
}
.cart-drawer.open { display: block; }

.cart-drawer__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  animation: fadeInOverlay 0.25s ease;
}
@keyframes fadeInOverlay {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.cart-drawer__panel {
  position: absolute;
  top: 0; right: 0;
  height: 100%;
  width: 100%;
  max-width: 420px;
  background: var(--color-cream);
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 40px rgba(0,0,0,0.2);
  animation: slideInPanel 0.3s ease;
}
@keyframes slideInPanel {
  from { transform: translateX(100%); }
  to   { transform: translateX(0); }
}

.cart-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--color-border);
  flex-shrink: 0;
}
.cart-drawer__title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--color-caramel);
  margin: 0;
}
.cart-drawer__close {
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: var(--color-text-muted);
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast);
}
.cart-drawer__close:hover { background: var(--color-cream-dark); }

.cart-drawer__items {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  scrollbar-width: thin;
}
.cart-drawer__empty {
  text-align: center;
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  margin-top: 48px;
}

/* Ítem del carrito */
.cart-item {
  display: grid;
  grid-template-columns: 62px 1fr auto auto;
  align-items: center;
  gap: 10px;
  background: white;
  border-radius: var(--radius-md);
  padding: 10px 12px;
  box-shadow: var(--shadow-sm);
}
.cart-item__img {
  width: 62px; height: 62px;
  object-fit: cover;
  border-radius: var(--radius-sm);
}
.cart-item__info { display: flex; flex-direction: column; gap: 3px; overflow: hidden; }
.cart-item__name {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-caramel);
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cart-item__subtotal {
  font-size: var(--text-xs);
  color: var(--color-leaf);
  font-weight: 600;
  margin: 0;
}
.cart-item__qty-ctrl {
  display: flex;
  align-items: center;
  gap: 5px;
}
.qty-btn {
  width: 26px; height: 26px;
  border: 1px solid var(--color-border);
  background: white;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 15px;
  line-height: 1;
  display: flex; align-items: center; justify-content: center;
  color: var(--color-caramel);
  transition: background var(--transition-fast);
}
.qty-btn:hover { background: var(--color-cream-dark); }
.qty-val {
  font-size: var(--text-sm);
  font-weight: 600;
  min-width: 20px;
  text-align: center;
  color: var(--color-caramel);
}
.cart-item__rm {
  background: none; border: none;
  cursor: pointer;
  color: var(--color-text-muted);
  font-size: 13px;
  padding: 4px;
  border-radius: var(--radius-sm);
  transition: color var(--transition-fast);
}
.cart-item__rm:hover { color: #c0392b; }

/* Footer del drawer */
.cart-drawer__foot {
  display: none;
  flex-direction: column;
  gap: 12px;
  padding: 20px 24px;
  border-top: 1px solid var(--color-border);
  background: white;
  flex-shrink: 0;
}
.cart-drawer__foot.visible { display: flex; }

.cart-drawer__total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--text-base);
  color: var(--color-caramel);
}
.cart-drawer__total-row strong {
  font-size: 22px;
  font-family: var(--font-display);
}
.btn--wompi {
  display: block;
  text-align: center;
  background: #28a745;
  color: white;
  padding: 14px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: var(--text-base);
  text-decoration: none;
  transition: background var(--transition-fast), transform var(--transition-fast);
  letter-spacing: 0.3px;
}
.btn--wompi:hover { background: #218838; transform: translateY(-1px); }
.btn--wompi:active { transform: scale(0.97); }

.cart-drawer__disclaimer {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  text-align: center;
  margin: 0;
  line-height: 1.5;
}

/* ── MODAL DE CHECKOUT ── */
.checkout-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 700;
  overflow-y: auto;
  padding: 24px 16px 40px;
}
.checkout-modal.open {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.checkout-modal__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.62);
}

.checkout-modal__box {
  position: relative;
  background: var(--color-cream);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 520px;
  padding: 28px 24px 32px;
  z-index: 1;
  animation: slideUpModal 0.3s ease;
}
@keyframes slideUpModal {
  from { transform: translateY(28px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

.checkout-modal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.checkout-modal__title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--color-caramel);
  margin: 0;
}
.checkout-modal__close {
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: var(--color-text-muted);
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast);
}
.checkout-modal__close:hover { background: var(--color-cream-dark); }

/* Fila de dos columnas para ID y celular/correo */
.co-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 420px) {
  .co-row { grid-template-columns: 1fr; }
}

/* Resumen del pedido */
.co-summary {
  background: white;
  border-radius: var(--radius-md);
  padding: 12px 14px;
  margin: 16px 0 6px;
  border: 1px solid var(--color-border);
}
.co-summary__title {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-text-muted);
  font-weight: 600;
  margin: 0 0 8px;
}
.co-summary__item {
  display: flex;
  justify-content: space-between;
  font-size: var(--text-sm);
  color: var(--color-caramel);
  padding: 5px 0;
  border-bottom: 0.5px solid var(--color-border);
}
.co-summary__item:last-child { border-bottom: none; }

/* Costo de envío */
.co-shipping-info {
  background: rgba(74,103,65,0.08);
  border: 1px solid rgba(74,103,65,0.2);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  margin: 6px 0 14px;
  font-size: var(--text-sm);
  color: var(--color-leaf);
  font-weight: 500;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.co-shipping-info__line {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.co-shipping-info__val {
  font-weight: 700;
  color: var(--color-leaf);
}

/* Desglose subtotal + envío */
.co-breakdown {
  background: white;
  border-radius: var(--radius-md);
  padding: 10px 14px;
  margin-bottom: 8px;
  border: 1px solid var(--color-border);
}
.co-breakdown__line {
  display: flex;
  justify-content: space-between;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  padding: 4px 0;
}
.co-breakdown__line + .co-breakdown__line {
  border-top: 0.5px solid var(--color-border);
}

/* Total */
.co-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--text-base);
  color: var(--color-caramel);
  margin: 8px 0 16px;
}
.co-total-row strong {
  font-family: var(--font-display);
  font-size: 22px;
}