/* ==========================================================================
   WooCommerce overrides — tu 2º deseo
   Styles for shop archive, single product, cart, checkout, my account.
   ========================================================================== */

/* ── Shop archive ── */
.woocommerce-breadcrumb {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--color-gris-texto);
  padding: 16px 0;
}
.woocommerce-breadcrumb a { color: var(--color-gris-texto); }
.woocommerce-breadcrumb a:hover { color: var(--color-negro); }

.woocommerce-result-count {
  font-size: 13px;
  color: var(--color-gris-texto);
}
.woocommerce-ordering select {
  border: 1.5px solid #ece0e4;
  border-radius: var(--radius-sm);
  padding: 8px 14px;
  font-family: var(--font-body);
  font-size: 13px;
  background: #fff;
  color: var(--color-negro);
}

.shop-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 16px;
}

/* Shop filters modal */
.shop-filters-overlay {
  position: fixed;
  inset: 0;
  z-index: 180;
  background: rgba(11,7,8,.62);
  backdrop-filter: blur(2px);
}
.shop-filters {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 190;
  width: min(440px, calc(100vw - 32px));
  max-height: min(82vh, 720px);
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(0,0,0,.35);
  overflow: hidden;
}
.shop-filters[hidden],
.shop-filters-overlay[hidden] {
  display: none !important;
}
.shop-filters__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px;
  border-bottom: 1px solid #f0e6ea;
  flex-shrink: 0;
}
.shop-filters__heading {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  color: var(--color-negro);
}
.shop-filters__close {
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: #f5eef1;
  color: var(--color-negro);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.shop-filters__close:hover { background: #eadfe3; }
.shop-filters__body {
  padding: 18px 20px;
  overflow-y: auto;
  flex: 1;
  min-height: 0;
}
.shop-filters__group { margin-bottom: 20px; }
.shop-filters__group:last-child { margin-bottom: 0; }
.shop-filters__footer {
  display: flex;
  gap: 10px;
  padding: 16px 20px;
  border-top: 1px solid #f0e6ea;
  flex-shrink: 0;
  background: #fff;
}
.shop-filters__footer .btn-outline,
.shop-filters__footer .btn-primary {
  flex: 1;
  text-align: center;
  justify-content: center;
}
.price-slider__labels {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  margin-top: 6px;
  color: var(--color-gris-texto);
}
.shop-filters__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 10px;
  color: var(--color-negro);
}
.shop-filters__list { list-style: none; }
.shop-filters__list li { margin-bottom: 6px; }
.shop-filters__list label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  cursor: pointer;
  color: var(--color-gris-texto);
}
.shop-filters__list label:hover { color: var(--color-negro); }
.shop-filters__list input[type="checkbox"] {
  accent-color: var(--color-rosa);
  width: 16px; height: 16px;
}

.price-slider {
  margin-top: 10px;
}
.price-slider input[type="range"] {
  width: 100%;
  accent-color: var(--color-rosa);
}

body.filters-open {
  overflow: hidden;
}

/* Pagination — compact arrows only (first / prev / next / last) */
.woocommerce-pagination {
  margin-top: 40px;
  text-align: center;
}
.woocommerce-pagination ul,
.tu2deseo-pagination ul {
  display: inline-flex;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: nowrap;
  max-width: 100%;
}
.woocommerce-pagination li a,
.woocommerce-pagination li span,
.tu2deseo-pagination li a,
.tu2deseo-pagination li span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 22px;
  line-height: 1;
  border: 1.5px solid rgba(255,255,255,.22);
  color: #f1e4e8;
  background: transparent;
  transition: .2s;
  text-decoration: none;
}
.woocommerce-pagination li a:hover,
.tu2deseo-pagination li a:hover {
  border-color: var(--color-rosa);
  color: #fff;
  background: rgba(245,37,112,.18);
}
.woocommerce-pagination li span.disabled,
.tu2deseo-pagination li span.disabled {
  opacity: .35;
  cursor: default;
  pointer-events: none;
}
body:not(.theme-dark) .woocommerce-pagination li a,
body:not(.theme-dark) .woocommerce-pagination li span,
body:not(.theme-dark) .tu2deseo-pagination li a,
body:not(.theme-dark) .tu2deseo-pagination li span {
  border-color: #ece0e4;
  color: var(--color-gris-texto);
}
body:not(.theme-dark) .woocommerce-pagination li a:hover,
body:not(.theme-dark) .tu2deseo-pagination li a:hover {
  border-color: var(--color-negro);
  color: var(--color-negro);
  background: var(--color-gris-fondo);
}

/* ── Single product ── */
.single-product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding: 48px 0;
}
.product-gallery {
  position: sticky;
  top: 100px;
  align-self: start;
}
.product-gallery__main {
  position: relative;
  aspect-ratio: 1 / 1;
  background: #fff;
  border: 1.5px solid #eadfe3;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 12px;
  cursor: zoom-in;
}
.product-gallery__main img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 24px;
}
.product-gallery__lens {
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  background-size: 210%;
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease;
}
.product-gallery__main.is-zoomed .product-gallery__lens { opacity: 1; }
.product-gallery__hint {
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(14,14,14,.65);
  color: #fff;
  pointer-events: none;
  transition: opacity .18s ease;
}
.product-gallery__main.is-zoomed .product-gallery__hint { opacity: 0; }

/* Fullscreen lightbox */
.product-lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(11,7,8,.94);
  cursor: zoom-out;
}
.product-lightbox.is-open { display: flex; }
.product-lightbox img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: var(--radius-sm);
}
.product-lightbox__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.12);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.product-lightbox__close:hover { background: rgba(255,255,255,.22); }

.product-gallery__thumbs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.product-gallery__thumb {
  width: 72px; height: 72px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1.5px solid #eadfe3;
  cursor: pointer;
  background: #fff;
  padding: 0;
  transition: border-color .2s;
}
.product-gallery__thumb.is-active,
.product-gallery__thumb:hover {
  border-color: var(--color-rosa);
}
.product-gallery__thumb img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 6px;
}

.product-summary { padding-top: 8px; }
.product-summary__title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
}
.product-summary__rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
.product-summary__stars { color: var(--color-rosa); font-size: 14px; letter-spacing: 2px; }
.product-summary__rating-count { font-size: 12px; color: var(--color-gris-texto); }

.product-summary__price {
  margin-bottom: 20px;
}
.product-summary__price .price--current,
.product-summary__price .woocommerce-Price-amount,
.product-summary__price bdi {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 36px;
  color: var(--color-rosa);
  line-height: 1.1;
}
.product-summary__price .price--old,
.product-summary__price .price--old .woocommerce-Price-amount,
.product-summary__price .price--old bdi {
  font-size: 16px;
  font-weight: 700;
  color: #b7adb1;
}
.product-summary__short-desc {
  font-size: var(--fs-body);
  color: var(--color-gris-texto);
  line-height: var(--lh-normal);
  margin-bottom: 24px;
}

/* Variations swatches */
.variation-swatches { margin-bottom: 24px; }
.variation-swatches__group { margin-bottom: 16px; }
.variation-swatches__label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 8px;
}
.variation-swatches__options { display: flex; gap: 8px; flex-wrap: wrap; }
.swatch-option {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2px solid #e6dbe0;
  cursor: pointer;
  transition: .2s;
}
.swatch-option:hover,
.swatch-option.is-selected {
  border-color: var(--color-rosa);
  box-shadow: 0 0 0 2px rgba(245,37,112,.2);
}
.filter-pill.is-selected {
  background: var(--color-rosa);
  color: #fff;
  border-color: var(--color-rosa);
}

/* Add to cart form */
.product-add-to-cart {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 28px;
}
form.variations_form.product-add-to-cart {
  display: block;
}
.variations_form .woocommerce-variation-add-to-cart,
.variations_form .variations_button {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.variations_form .woocommerce-variation {
  margin-bottom: 12px;
}
.quantity-input {
  display: flex;
  align-items: center;
  border: 1.5px solid #ece0e4;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: #fff;
}
.quantity-input .quantity {
  display: flex;
  align-items: center;
  margin: 0;
  flex: 0 0 auto;
}
.quantity-input button {
  width: 40px; height: 44px;
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: var(--color-negro);
  transition: background .2s;
  flex-shrink: 0;
}
.quantity-input button:hover { background: var(--color-gris-fondo); }
.quantity-input input,
.quantity-input .qty {
  width: 48px;
  min-width: 48px;
  height: 44px;
  text-align: center;
  border: none;
  background: #fff;
  color: var(--color-negro);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  line-height: 44px;
  -moz-appearance: textfield;
  appearance: textfield;
}
.quantity-input input::-webkit-inner-spin-button,
.quantity-input input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.product-add-to-cart .btn-primary {
  flex: 1;
  text-align: center;
  padding: 14px 28px;
  font-size: 15px;
}

/* Trust badges on single product */
.product-trust {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-top: 1px solid #f0e6ea;
  border-bottom: 1px solid #f0e6ea;
  margin-bottom: 28px;
}
.product-trust__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--color-gris-texto);
}
.product-trust__icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--color-rosa-suave);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Tabs / accordion */
.product-tabs { margin-top: 48px; }
.product-tabs__nav {
  display: flex;
  gap: 0;
  border-bottom: 2px solid #f0e6ea;
}
.product-tabs__tab {
  padding: 12px 24px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  color: var(--color-gris-texto);
  cursor: pointer;
  border: none;
  background: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: .2s;
}
.product-tabs__tab:hover { color: var(--color-negro); }
.product-tabs__tab.is-active {
  color: var(--color-rosa);
  border-bottom-color: var(--color-rosa);
}
.product-tabs__panel {
  padding: 28px 0;
  display: none;
  font-size: var(--fs-body);
  line-height: var(--lh-normal);
  color: var(--color-gris-texto);
}
.product-tabs__panel.is-active { display: block; }
.product-tabs__panel h3 { color: var(--color-negro); margin-bottom: 12px; }
.product-tabs__panel table { width: 100%; border-collapse: collapse; }
.product-tabs__panel table th,
.product-tabs__panel table td {
  padding: 10px 14px;
  text-align: left;
  border-bottom: 1px solid #f0e6ea;
  font-size: 13px;
}
.product-tabs__panel table th {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-negro);
  width: 35%;
}

/* Cross-sell "bought together" */
.bought-together {
  background: var(--color-gris-fondo);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 40px;
}
.bought-together__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 20px;
}
.bought-together__items { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.bought-together__item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  padding: 12px;
  border-radius: var(--radius-sm);
  border: 1px solid #f0e6ea;
}
.bought-together__item img { width: 56px; height: 56px; object-fit: contain; }
.bought-together__plus {
  font-size: 20px;
  color: var(--color-gris-texto);
  font-weight: 700;
}

/* ── Cart page ── */
.cart-page { padding: 48px 0; }
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th {
  text-align: left;
  padding: 12px 16px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  color: var(--color-gris-texto);
  border-bottom: 2px solid #f0e6ea;
}
.cart-table td {
  padding: 20px 16px;
  border-bottom: 1px solid #f0e6ea;
  vertical-align: middle;
}
.cart-table__product {
  display: flex;
  align-items: center;
  gap: 16px;
}
.cart-table__product img {
  width: 72px; height: 72px;
  object-fit: contain;
  background: var(--color-rosa-suave);
  border-radius: var(--radius-sm);
  padding: 8px;
}
.cart-table__name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
}
.cart-table__variant { font-size: 12px; color: var(--color-gris-texto); }
.cart-table__remove {
  color: var(--color-gris-texto);
  cursor: pointer;
  background: none;
  border: none;
  font-size: 18px;
  transition: color .2s;
}
.cart-table__remove:hover { color: var(--color-rosa); }

.cart-summary {
  background: var(--color-gris-fondo);
  border-radius: var(--radius);
  padding: 28px;
  margin-top: 28px;
  max-width: 400px;
  margin-left: auto;
}
.cart-summary__row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 14px;
}
.cart-summary__row.--total {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 20px;
  padding-top: 12px;
  border-top: 2px solid #e6dbe0;
  margin-top: 8px;
}
.cart-coupon {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}
.cart-coupon input {
  flex: 1;
  border: 1.5px solid #ece0e4;
  border-radius: var(--radius-pill);
  padding: 10px 16px;
  font-size: 13px;
  font-family: var(--font-body);
}
.cart-checkout-btn {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 16px;
  padding: 16px 24px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 15px;
  color: #fff !important;
  background: linear-gradient(135deg, var(--color-rosa), var(--color-rojo));
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 8px 24px rgba(245,37,112,.35);
  text-decoration: none !important;
}
.cart-checkout-btn:hover,
.cart-checkout-btn:focus,
.cart-checkout-btn:visited,
.cart-checkout-btn:active {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(245,37,112,.5);
  color: #fff !important;
}

.cart-summary__shipping {
  padding: 12px 0;
  font-size: 14px;
}
.cart-summary__shipping .woocommerce-shipping-methods li {
  background: #fff;
}

.cart-shipping-notice {
  background: var(--color-rosa-suave);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 13px;
  margin-top: 16px;
  color: var(--color-gris-texto);
}
.cart-shipping-notice strong { color: var(--color-rosa); }

/* Shipping progress bar */
.shipping-progress {
  height: 4px;
  background: #e6dbe0;
  border-radius: 2px;
  margin-top: 8px;
  overflow: hidden;
}
.shipping-progress__bar {
  height: 100%;
  background: var(--color-rosa);
  border-radius: 2px;
  transition: width var(--duration-md) var(--ease-out);
}

/* ── WooCommerce notices (cart / checkout / account) ── */
.woocommerce-notices-wrapper,
.woocommerce-NoticeGroup,
.woocommerce-NoticeGroup-checkout {
  margin: 0 0 20px;
}
.woocommerce-error,
.woocommerce-message,
.woocommerce-info,
ul.woocommerce-error,
ul.woocommerce-message,
ul.woocommerce-info {
  list-style: none !important;
  margin: 0 0 18px !important;
  padding: 14px 16px 14px 44px !important;
  border-radius: 10px;
  border: 1.5px solid transparent;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.45;
  position: relative;
  clear: both;
}
.woocommerce-error li,
.woocommerce-message li,
.woocommerce-info li {
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}
.woocommerce-error li + li,
.woocommerce-message li + li,
.woocommerce-info li + li {
  margin-top: 8px !important;
}
.woocommerce-error::before,
.woocommerce-message::before,
.woocommerce-info::before {
  position: absolute;
  left: 14px;
  top: 14px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}
.woocommerce-error {
  background: #fde8ec !important;
  border-color: #e85a6b !important;
  color: #8c1233 !important;
}
.woocommerce-error::before {
  content: "!";
  background: #e85a6b;
  color: #fff;
}
.woocommerce-error a {
  color: #8c1233;
  font-weight: 700;
  text-decoration: underline;
}
.woocommerce-message {
  background: #e8f7ef !important;
  border-color: #3daa6d !important;
  color: #1f6b42 !important;
}
.woocommerce-message::before {
  content: "✓";
  background: #3daa6d;
  color: #fff;
}
.woocommerce-info {
  background: #f8eef2 !important;
  border-color: var(--color-rosa, #c94a72) !important;
  color: #5c2a3d !important;
}
.woocommerce-info::before {
  content: "i";
  background: var(--color-rosa, #c94a72);
  color: #fff;
  font-style: italic;
}

.woocommerce-invalid input,
.woocommerce-invalid select,
.woocommerce-invalid textarea,
.woocommerce form-row.woocommerce-invalid input.input-text,
.woocommerce form-row.woocommerce-invalid select,
.woocommerce form-row.woocommerce-invalid textarea,
.validate-required.woocommerce-invalid input,
.validate-required.woocommerce-invalid select {
  border-color: #e85a6b !important;
  background: #fff5f7 !important;
  box-shadow: 0 0 0 3px rgba(232, 90, 107, .18);
}
.woocommerce-invalid label,
.woocommerce form-row.woocommerce-invalid label {
  color: #8c1233;
}

/* ── Checkout ── */
.checkout-page { padding: 48px 0; }
.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 48px;
}
.checkout-section {
  margin-bottom: 32px;
}
.checkout-section__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid #f0e6ea;
}

.form-row {
  margin-bottom: 16px;
}
.form-row label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 6px;
  color: var(--color-negro);
}
.form-row label .required { color: var(--color-rosa); }
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  border: 1.5px solid #ece0e4;
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-negro);
  transition: border-color .2s;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--color-rosa);
  outline: none;
}
.form-row--half {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Checkboxes and radios must escape the full-width text input styling above. */
.form-row input[type="checkbox"],
.form-row input[type="radio"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  accent-color: var(--color-rosa);
}
.form-row label.checkbox,
.form-row label.woocommerce-form__label-for-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0;
  font-weight: 600;
  line-height: 1.45;
  cursor: pointer;
}

/* Terms & place order */
.woocommerce-terms-and-conditions-wrapper {
  margin-bottom: 18px;
}
.place-order {
  margin-bottom: 0;
}
#place_order {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 18px;
  padding: 18px 28px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: .2px;
  color: #fff;
  background: linear-gradient(135deg, var(--color-rosa), var(--color-rojo));
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 8px 24px rgba(245,37,112,.35);
}
#place_order:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(245,37,112,.5);
  color: #fff;
}
#place_order:disabled {
  opacity: .6;
  cursor: not-allowed;
  transform: none;
}

/* Discretion notice */
.discretion-notice {
  background: var(--color-rosa-suave);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  font-size: 13px;
  color: var(--color-gris-texto);
  margin: 20px 0;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.discretion-notice svg { flex-shrink: 0; margin-top: 2px; }

/* Order summary sidebar */
.order-summary {
  background: var(--color-gris-fondo);
  border-radius: var(--radius);
  padding: 28px;
  position: sticky;
  top: 100px;
}
.order-summary__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 20px;
}
.order-summary__item {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #e6dbe0;
}
.order-summary__item img {
  width: 56px; height: 56px;
  object-fit: contain;
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 6px;
}

/* Shipping method options — card style */
.woocommerce-shipping-methods {
  list-style: none;
  margin: 0;
  padding: 0;
}
.woocommerce-shipping-methods li {
  border: 1.5px solid #ece0e4;
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  margin-bottom: 8px;
  cursor: pointer;
  transition: border-color .2s, background .2s;
  background: #fff;
}
.woocommerce-shipping-methods li:has(input:checked) {
  border-color: var(--color-rosa);
  background: var(--color-rosa-suave);
}
.woocommerce-shipping-methods label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  color: var(--color-negro);
}
.woocommerce-shipping-methods input[type="radio"] {
  accent-color: var(--color-rosa);
}

/* Payment methods — card style */
.payment-methods,
.wc_payment_methods {
  margin-top: 8px;
  list-style: none;
  padding: 0;
}
.payment-method,
.wc_payment_methods li {
  border: 1.5px solid #ece0e4;
  border-radius: var(--radius-sm);
  padding: 16px;
  margin-bottom: 8px;
  cursor: pointer;
  transition: border-color .2s, background .2s;
  background: #fff;
}
.payment-method.is-selected,
.wc_payment_methods li:has(input:checked) {
  border-color: var(--color-rosa);
  background: var(--color-rosa-suave);
}
.payment-method label,
.wc_payment_methods li label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
}
.wc_payment_methods li input[type="radio"] {
  accent-color: var(--color-rosa);
}
.wc_payment_methods li img {
  max-height: 22px;
  width: auto;
}
.wc_payment_methods .payment_box {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #ece0e4;
  font-size: 13px;
  color: var(--color-gris-texto);
  line-height: 1.5;
}

/* Thank you page */
.thankyou {
  text-align: center;
  padding: 80px 0;
  max-width: 560px;
  margin: 0 auto;
}
.thankyou__icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--color-rosa-suave);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.thankyou h1 {
  font-size: 32px;
  margin-bottom: 12px;
}
.thankyou p {
  color: var(--color-gris-texto);
  font-size: var(--fs-body);
  line-height: var(--lh-normal);
  margin-bottom: 28px;
}

/* ── My account ── */
.myaccount-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
  padding: 48px 0;
}
.myaccount-nav ul { list-style: none; }
.myaccount-nav li { margin-bottom: 4px; }
.myaccount-nav a {
  display: block;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  color: var(--color-gris-texto);
  transition: .2s;
}
.myaccount-nav a:hover { background: var(--color-gris-fondo); color: var(--color-negro); }
.myaccount-nav .is-active a {
  background: var(--color-rosa-suave);
  color: var(--color-rosa);
}

.myaccount-content h2 {
  font-size: 24px;
  margin-bottom: 24px;
}

/* Orders table */
.orders-table { width: 100%; border-collapse: collapse; }
.orders-table th {
  text-align: left;
  padding: 12px 14px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  color: var(--color-gris-texto);
  border-bottom: 2px solid #f0e6ea;
}
.orders-table td {
  padding: 14px;
  border-bottom: 1px solid #f0e6ea;
  font-size: 14px;
}
.orders-table .order-status {
  display: inline-block;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 700;
  font-family: var(--font-heading);
}
.order-status--completed { background: #e6f4ea; color: #1e7e34; }
.order-status--processing { background: #fff3cd; color: #856404; }
.order-status--pending { background: var(--color-rosa-suave); color: var(--color-rosa); }

/* Login / Register */
.auth-forms {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 800px;
}
.auth-form {
  background: var(--color-gris-fondo);
  border-radius: var(--radius);
  padding: 32px;
}
.auth-form h2 {
  font-size: 22px;
  margin-bottom: 12px;
}
.auth-form__intro {
  font-size: 13px;
  color: var(--color-gris-texto);
  margin-bottom: 20px;
  line-height: 1.45;
}
.auth-form__hint {
  font-size: 12px;
  color: var(--color-gris-texto);
  margin: -4px 0 14px;
}
.auth-form__actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.auth-form__remember {
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}
.auth-form__links {
  margin-top: 14px;
  font-size: 13px;
}
.auth-form__links a,
.auth-form__switch a {
  color: var(--color-rosa);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.auth-form__switch {
  margin-top: 16px;
  font-size: 13px;
  color: var(--color-gris-texto);
}

/* Wishlist page */
.wishlist-page { padding: 48px 0 72px; }
.wishlist-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap-grid);
}
.wishlist-loading {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--color-gris-texto);
  padding: 32px 0;
}
.wishlist-empty {
  text-align: center;
  max-width: 420px;
  margin: 0 auto;
  padding: 48px 16px 24px;
}
.wishlist-empty__icon {
  width: 88px;
  height: 88px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245, 37, 112, 0.12);
  color: var(--color-rosa);
}
.wishlist-empty h2 {
  font-family: var(--font-heading);
  font-size: var(--fs-h3, 1.5rem);
  margin: 0 0 10px;
}
.wishlist-empty p {
  color: var(--color-gris-texto);
  margin: 0 0 24px;
  line-height: 1.5;
}
.wishlist-empty[hidden] { display: none !important; }

/* Trust cards below product */
.product-trust-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin: 16px 0 48px;
}
.product-trust-card {
  background: var(--dark-negro-2, #150F11);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 28px 18px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.product-trust-card__icon {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: rgba(245,37,112,.12);
  color: var(--color-rosa);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(204,6,59,.12);
  margin-bottom: 6px;
}
.product-trust-card strong {
  font-family: var(--font-heading);
  font-size: 16px;
  color: #fff;
}
.product-trust-card p {
  font-size: 13px;
  line-height: 1.45;
  color: #a99ca1;
  margin: 0;
  max-width: 220px;
}

.related-products {
  margin: 8px 0 56px;
}
.related-products h2 {
  font-size: var(--fs-h2);
  margin-bottom: 28px;
}

@media (max-width: 1000px) {
  .single-product-layout { grid-template-columns: 1fr; gap: 28px; }
  .product-gallery { position: static; }
  .checkout-layout {
    grid-template-columns: 1fr;
  }
  .checkout-layout__aside { order: -1; }
  .myaccount-layout { grid-template-columns: 1fr; }
  .auth-forms { grid-template-columns: 1fr; }
  .wishlist-grid { grid-template-columns: repeat(2, 1fr); }
  .product-trust-cards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
  .product-trust {
    flex-wrap: wrap;
    gap: 10px;
  }
  .product-trust__item {
    flex: 1 1 45%;
    font-size: 11px;
  }
  .cart-summary { max-width: none; }
  .wishlist-grid { grid-template-columns: 1fr 1fr; }
  .product-trust-cards {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .product-trust-card {
    padding: 16px 10px 14px;
    gap: 6px;
  }
  .product-trust-card__icon {
    width: 48px;
    height: 48px;
  }
  .product-trust-card strong {
    font-size: 13px;
  }
  .product-trust-card p {
    display: none;
  }

  /* Cart table: stack rows so nothing overflows the viewport. */
  .cart-page {
    overflow-x: hidden;
  }
  .cart-table,
  .cart-table thead,
  .cart-table tbody,
  .cart-table tr,
  .cart-table th,
  .cart-table td {
    display: block;
    width: 100%;
  }
  .cart-table thead { display: none; }
  .cart-table tr {
    position: relative;
    padding: 16px 40px 16px 0;
    border-bottom: 1px solid #f0e6ea;
    margin-bottom: 8px;
  }
  .cart-table td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    border-bottom: none;
  }
  .cart-table td::before {
    content: attr(data-title);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 12px;
    color: var(--color-gris-texto);
    flex-shrink: 0;
  }
  .cart-table td:first-child {
    display: block;
    padding-top: 0;
  }
  .cart-table td:first-child::before { display: none; }
  .cart-table__product {
    gap: 12px;
    align-items: flex-start;
  }
  .cart-table__product img {
    width: 56px;
    height: 56px;
  }
  .cart-table__name {
    font-size: 13px;
    word-break: break-word;
  }
  .cart-table__remove-cell {
    position: absolute;
    top: 12px;
    right: 0;
    width: auto !important;
    padding: 0 !important;
    display: block !important;
  }
  .cart-table__remove-cell::before { display: none; }
  .cart-coupon {
    width: 100%;
    display: flex;
    gap: 8px;
  }
  .cart-coupon input {
    flex: 1;
    min-width: 0;
  }
}
