/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Apr 18 2026 | 10:02:51 */
/* ==========================================================
   Veluvia Cart v4 — Modern Luxury Jewelry
   Diseño original restaurado + Aislamiento de Header Divi
========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300&family=DM+Sans:wght@300;400;500&family=Montserrat:wght@400;500;600;700&display=swap');

:root {
  --c-gold:   #c5a059;
  --c-gold-d: #a8863e;
  --c-cream:  #f9f7f2;
  --c-carbon: #2d2926;
  --c-2:      #5c5650;
  --c-3:      #9c9690;
  --c-border: #e8e4df;
  --c-soft:   #f0ece7;
  --c-white:  #ffffff;
  --c-t:      .22s ease;
}

/* ==========================================================
   PAGE (Protección activada para no tocar el menú)
========================================================== */
body.woocommerce-cart #main-content { background: var(--c-cream) !important; }

/* El ancho de 1160px solo se aplica DENTRO de la página del carrito */
body.woocommerce-cart #main-content .woocommerce,
body.woocommerce-cart #main-content .et_pb_text_inner > .woocommerce {
  font-family: 'DM Sans', sans-serif !important;
  color: var(--c-carbon) !important;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px 60px;
  background: transparent !important;
}

/* Ocultamos las tablas de WooCommerce SOLO en la página del carrito */
body.woocommerce-cart #main-content .woocommerce-cart-form,
body.woocommerce-cart #main-content .cart-collaterals { 
  display: none !important; 
}

/* WC notices stay visible */
.woocommerce-notices-wrapper { display: block !important; }
.woocommerce-notices-wrapper .woocommerce-message,
.woocommerce-notices-wrapper .woocommerce-info {
  font-family: 'DM Sans', sans-serif; 
  font-size: 13px;
  color: #000000 !important; /* <--- Esto cambia el texto a negro */
  background: rgba(197,160,89,.09) !important;
  border-top: 3px solid var(--c-gold) !important;
  border-radius: 0 !important; 
  margin-bottom: 24px;
}
.woocommerce-notices-wrapper .woocommerce-message a { color: var(--c-gold) !important; }

/* Color negro para la clase nativa de carrito vacío y errores */
.woocommerce-notices-wrapper .woocommerce-error,
p.cart-empty {
  color: #000000 !important;
}

/* Si la alerta roja de error también necesita el fondo dorado/texto negro */
.woocommerce-notices-wrapper .woocommerce-error {
  font-family: 'DM Sans', sans-serif; 
  font-size: 13px;
  background: rgba(197,160,89,.09) !important;
  border-top: 3px solid #b20000 !important; /* Rojo oscuro para diferenciar que es error/vacío */
  border-radius: 0 !important; 
  margin-bottom: 24px;
}

/* ==========================================================
   OUR CUSTOM CART CONTAINER
========================================================== */
#vcs-app {
  font-family: 'DM Sans', sans-serif;
  color: var(--c-carbon);
  padding-top: 40px;
}

/* Page title */
#vcs-app .vcs-page-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 400; letter-spacing: .02em;
  color: var(--c-carbon); margin: 0 0 8px;
}
#vcs-app .vcs-back-link {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11px; color: var(--c-3); letter-spacing: .08em;
  text-decoration: none; text-transform: uppercase; margin-bottom: 32px;
  transition: color var(--c-t);
}
#vcs-app .vcs-back-link:hover { color: var(--c-carbon); }
#vcs-app .vcs-back-link::before { content: '←'; font-size: 14px; }

/* ==========================================================
   2-COL LAYOUT
========================================================== */
.vcs-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 0 52px;
  align-items: start;
}
.vcs-col-left { min-width: 0; }
.vcs-col-right { position: sticky; top: 24px; }

/* ==========================================================
   ITEM LIST
========================================================== */
.vcs-items { list-style: none; margin: 0; padding: 0; }

/* Single item */
.vcs-item {
  display: grid;
  grid-template-columns: 96px 1fr auto;
  gap: 0 20px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--c-border);
  transition: opacity var(--c-t), transform var(--c-t);
}
.vcs-item:first-child { border-top: 1px solid var(--c-border); }

/* Image */
.vcs-item-img-wrap {
  width: 96px; height: 96px; overflow: hidden; flex-shrink: 0; display: block;
}
.vcs-item-img {
  width: 96px; height: 96px; object-fit: cover; display: block;
  transition: transform .45s ease;
}
.vcs-item-img-wrap:hover .vcs-item-img { transform: scale(1.05); }

/* Info */
.vcs-item-info { display: flex; flex-direction: column; gap: 4px; }
.vcs-item-name {
  font-size: 14px; font-weight: 400; color: var(--c-carbon);
  text-decoration: none; letter-spacing: .01em; line-height: 1.45;
  transition: color var(--c-t);
}
.vcs-item-name:hover { color: var(--c-gold); }
.vcs-item-variant {
  font-size: 11px; color: var(--c-3); letter-spacing: .04em;
}
.vcs-item-unit-price {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px; font-weight: 500; color: var(--c-2);
  margin-top: 2px;
}

/* Qty controls */
.vcs-item-controls {
  display: flex; align-items: center; gap: 14px; margin-top: 10px;
}
.vcs-qty-wrap {
  display: flex; align-items: center;
  border: 1px solid var(--c-border);
  height: 32px; width: fit-content;
}
.vcs-qty-btn {
  width: 28px; height: 32px;
  background: transparent; border: none; cursor: pointer;
  font-size: 16px; font-weight: 300; color: var(--c-2);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--c-t), color var(--c-t);
  line-height: 1; padding: 0;
  font-family: 'DM Sans', sans-serif;
}
.vcs-qty-btn:hover { background: var(--c-carbon); color: var(--c-white); }
.vcs-qty-num {
  width: 34px; text-align: center;
  font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 500;
  color: var(--c-carbon); border-left: 1px solid var(--c-border); border-right: 1px solid var(--c-border);
  background: var(--c-white); height: 100%;
  display: flex; align-items: center; justify-content: center;
  user-select: none;
}
.vcs-remove-btn {
  font-size: 11px; color: var(--c-3); letter-spacing: .06em;
  text-transform: uppercase; background: none; border: none; cursor: pointer;
  padding: 0; font-family: 'DM Sans', sans-serif; transition: color var(--c-t);
}
.vcs-remove-btn:hover { color: #dc2626; }

/* Right: price + wishlist */
.vcs-item-right {
  display: flex; flex-direction: column; align-items: flex-end; gap: 8px; min-width: 72px;
}
.vcs-item-price {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px; font-weight: 600; color: var(--c-carbon); white-space: nowrap;
}
.vcs-item-price.is-sale { color: var(--c-gold); }

/* Wishlist heart on cart */
.vcs-wl-btn {
  display: flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; background: none; border: none;
  cursor: pointer; color: var(--c-3); padding: 0;
  transition: color var(--c-t), transform .18s cubic-bezier(.34,1.56,.64,1);
}
.vcs-wl-btn:hover { color: var(--c-carbon); transform: scale(1.15); }
.vcs-wl-btn.active { color: #e63946; }
.vcs-wl-btn.active svg path { fill: #e63946; stroke: #e63946; }
.vcs-wl-btn.loading { opacity: .45; pointer-events: none; }
@keyframes vcs-pulse { 0%,100%{transform:scale(1)} 40%{transform:scale(1.4)} 70%{transform:scale(.9)} }
.vcs-wl-btn.pulsing svg { animation: vcs-pulse .4s ease; }

/* Removing animation */
.vcs-item.removing {
  opacity: 0; transform: translateX(20px);
  pointer-events: none; transition: opacity .28s ease, transform .28s ease;
}

/* Updating overlay */
.vcs-items.loading { opacity: .5; pointer-events: none; transition: opacity .2s; }

/* ==========================================================
   BOTTOM ROW: coupon + clear + update
========================================================== */
.vcs-cart-footer {
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px;
  padding: 20px 0; border-bottom: 1px solid var(--c-border); margin-bottom: 0;
}

.vcs-coupon-wrap { display: flex; align-items: center; gap: 8px; flex: 1; flex-wrap: wrap; }
.vcs-coupon-input {
  flex: 1; min-width: 140px; padding: 10px 14px;
  border: 1px solid var(--c-border); background: var(--c-white);
  font-family: 'DM Sans', sans-serif; font-size: 12px; letter-spacing: .06em;
  text-transform: uppercase; color: var(--c-carbon); outline: none;
  transition: border-color var(--c-t);
}
.vcs-coupon-input::placeholder { text-transform: none; letter-spacing: .02em; color: var(--c-3); }
.vcs-coupon-input:focus { border-color: var(--c-gold); }
.vcs-coupon-apply {
  padding: 10px 18px; background: var(--c-carbon); color: var(--c-cream);
  border: 1px solid var(--c-carbon); font-family: 'DM Sans', sans-serif;
  font-size: 11px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase;
  cursor: pointer; white-space: nowrap; transition: background var(--c-t), border-color var(--c-t);
}
.vcs-coupon-apply:hover { background: var(--c-gold); border-color: var(--c-gold); }
.vcs-coupon-apply:disabled { opacity: .6; pointer-events: none; }
.vcs-coupon-msg {
  width: 100%; font-size: 12px; padding: 4px 0; display: none;
}
.vcs-coupon-msg.error { color: #dc2626; display: block; }
.vcs-coupon-msg.success { color: #16a34a; display: block; }

/* Applied coupon tags */
.vcs-applied-coupons { display: flex; flex-wrap: wrap; gap: 6px; width: 100%; margin-top: 4px; }
.vcs-coupon-tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px; background: rgba(197,160,89,.1);
  border: 1px solid rgba(197,160,89,.3); font-size: 11px;
  letter-spacing: .06em; text-transform: uppercase; color: var(--c-gold);
  font-family: 'DM Sans', sans-serif;
}
.vcs-coupon-tag button {
  background: none; border: none; cursor: pointer; color: var(--c-3);
  padding: 0; font-size: 14px; line-height: 1; transition: color var(--c-t);
}
.vcs-coupon-tag button:hover { color: #dc2626; }

/* Cart actions */
.vcs-cart-actions {
  display: flex; gap: 8px; margin-left: auto; align-items: center;
}
.vcs-clear-btn {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 10px 14px; background: transparent; border: 1px solid var(--c-border);
  color: var(--c-3); font-family: 'DM Sans', sans-serif; font-size: 11px;
  font-weight: 400; letter-spacing: .08em; text-transform: uppercase;
  cursor: pointer; white-space: nowrap; transition: all var(--c-t);
}
.vcs-clear-btn:hover { background: #fee2e2; border-color: #fca5a5; color: #dc2626; }

/* ==========================================================
   ORDER SUMMARY
========================================================== */
.vcs-summary {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  padding: 28px 24px;
}

.vcs-summary-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px; font-weight: 500; letter-spacing: .16em; text-transform: uppercase;
  color: var(--c-2); margin: 0 0 20px; padding-bottom: 16px;
  border-bottom: 1px solid var(--c-border);
}

.vcs-summary-row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 10px 0; font-size: 13px;
  border-bottom: 1px solid var(--c-soft);
}
.vcs-summary-row:last-of-type { border-bottom: none; }
.vcs-summary-label { color: var(--c-2); font-weight: 400; }
.vcs-summary-value {
  font-family: 'Montserrat', sans-serif; font-weight: 500;
  color: var(--c-carbon); font-size: 13px;
}
.vcs-summary-row.discount .vcs-summary-value { color: var(--c-gold); }
.vcs-summary-row.shipping .vcs-summary-value { font-size: 12px; color: var(--c-2); font-weight: 400; font-family: 'DM Sans', sans-serif; }

/* Inline remove coupon in summary */
.vcs-rm-coupon-inline {
  font-size: 10px; color: var(--c-3); background: none; border: none;
  cursor: pointer; letter-spacing: .06em; text-transform: uppercase;
  text-decoration: underline; font-family: 'DM Sans', sans-serif;
  margin-left: 6px; transition: color var(--c-t);
}
.vcs-rm-coupon-inline:hover { color: #dc2626; }

.vcs-total-row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 16px 0 0; margin-top: 10px; border-top: 1px solid var(--c-border);
}
.vcs-total-label {
  font-size: 13px; font-weight: 500; letter-spacing: .06em; text-transform: uppercase;
  color: var(--c-carbon);
}
.vcs-total-value {
  font-family: 'Montserrat', sans-serif; font-size: 22px; font-weight: 700; color: var(--c-carbon);
}
.vcs-total-vat { font-size: 10px; color: var(--c-3); letter-spacing: .03em; display: block; text-align: right; margin-top: 2px; }

/* Checkout button */
.vcs-checkout-btn {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; padding: 16px 24px; margin-top: 20px;
  background: var(--c-carbon); color: var(--c-cream);
  border: none; text-decoration: none; cursor: pointer;
  font-family: 'DM Sans', sans-serif; font-size: 11px; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase;
  transition: background var(--c-t), letter-spacing var(--c-t);
}
.vcs-checkout-btn:hover { background: var(--c-gold); color: var(--c-white); letter-spacing: .22em; }

/* LA NOTA EN COLOR NEGRO SÓLIDO COMO PEDISTE */
.vcs-summary-note {
  font-size: 11px; color: #000000 !important; text-align: center;
  margin: 12px 0 0; line-height: 1.6; letter-spacing: .02em;
}

/* Help links */
.vcs-help { margin-top: 24px; padding-top: 18px; border-top: 1px solid var(--c-border); }
.vcs-help-title {
  font-size: 10px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase;
  color: var(--c-carbon); margin: 0 0 10px;
}
.vcs-help a {
  display: block; font-size: 12px; color: var(--c-2); text-decoration: none;
  padding: 5px 0; border-bottom: 1px solid var(--c-soft); transition: color var(--c-t);
}
.vcs-help a:last-child { border-bottom: none; }
.vcs-help a:hover { color: var(--c-gold); }

/* ==========================================================
   EMPTY STATE
========================================================== */
.vcs-empty {
  text-align: center; padding: 80px 24px;
  display: flex; flex-direction: column; align-items: center;
}
.vcs-empty svg { opacity: .18; margin-bottom: 24px; color: var(--c-carbon); }
.vcs-empty h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 30px; font-weight: 400; margin: 0 0 10px; letter-spacing: .03em;
}
.vcs-empty p { font-size: 14px; color: var(--c-2); line-height: 1.7; margin: 0 0 28px; }
.vcs-empty-cta {
  display: inline-block; padding: 14px 36px;
  background: var(--c-carbon); color: var(--c-cream);
  font-size: 11px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase;
  text-decoration: none; transition: background var(--c-t);
}
.vcs-empty-cta:hover { background: var(--c-gold); color: var(--c-white); }

/* ==========================================================
   SKELETON loader
========================================================== */
@keyframes vcs-shimmer {
  0%   { background-position: -600px 0; }
  100% { background-position: 600px 0; }
}
.vcs-skeleton {
  background: linear-gradient(90deg, var(--c-soft) 25%, var(--c-cream) 50%, var(--c-soft) 75%);
  background-size: 600px 100%;
  animation: vcs-shimmer 1.4s infinite;
  border-radius: 2px;
}

/* ==========================================================
   TABLET ≤ 1024
========================================================== */
@media (max-width: 1024px) {
  .vcs-layout { grid-template-columns: 1fr; gap: 32px 0; }
  .vcs-col-right { position: static; }
  body.woocommerce-cart #main-content .woocommerce { padding: 0 20px 48px; }
}

/* ==========================================================
   MOBILE ≤ 767
========================================================== */
@media (max-width: 767px) {
  body.woocommerce-cart #main-content .woocommerce { padding: 0 16px 40px; }
  #vcs-app { padding-top: 28px; }
  #vcs-app .vcs-page-title { font-size: 24px; }
/* ... Deja el resto del CSS de .vcs-item igual ... */

  .vcs-item {
    grid-template-columns: 80px 1fr;
    grid-template-rows: auto auto;
    gap: 0 14px;
    padding: 18px 0;
  }
  .vcs-item-img-wrap, .vcs-item-img { width: 80px !important; height: 80px !important; }
  .vcs-item-right {
    grid-column: 2; grid-row: 1;
    flex-direction: row; align-items: center; justify-content: flex-end; gap: 10px;
  }
  .vcs-item-img-wrap { grid-row: 1 / span 2; }

  .vcs-cart-footer { flex-direction: column; align-items: stretch; }
  .vcs-coupon-wrap { width: 100%; }
  .vcs-coupon-input { min-width: 0; width: 100%; }
  .vcs-cart-actions { margin-left: 0; flex-direction: column; width: 100%; }
  .vcs-clear-btn { width: 100%; justify-content: center; }

  .vcs-summary { padding: 20px 16px; }
  .vcs-total-value { font-size: 18px; }
}

@media (max-width: 400px) {
  .vcs-item { grid-template-columns: 70px 1fr; gap: 0 10px; }
  .vcs-item-img-wrap, .vcs-item-img { width: 70px !important; height: 70px !important; }
}