:root {
  --codeon-wl-cream: #F4F4F4;
  --codeon-wl-cream-2: #E9E9E9;
  --codeon-wl-ink: #0A0A0A;
  --codeon-wl-ink-soft: #555555;
  --codeon-wl-muted: #888888;
  --codeon-wl-orange: #F72E16;
  --codeon-wl-orange-dark: #D9230E;
  --codeon-wl-teal: #188A45;
  --codeon-wl-line: #E2E2E2;
}

.codeon-wishlist-page,
.codeon-wishlist-page *,
.codeon-wishlist-heart,
.codeon-wishlist-heart * {
  box-sizing: border-box;
}

.codeon-wishlist-page {
  width: 100%;
  color: var(--codeon-wl-ink);
  font-family: "Inter", sans-serif;
}

.codeon-wishlist-page-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin: 0 0 30px;
}

.codeon-wishlist-page-header h1 {
  margin: 0;
  color: var(--codeon-wl-ink);
  font-family: "Poppins", Arial, sans-serif;
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.codeon-wishlist-page-header p {
  margin: 5px 0 0;
  color: var(--codeon-wl-ink-soft);
  font-size: 14px;
  line-height: 1.5;
}

.codeon-wishlist-grid {
  display: grid;
  grid-template-columns: repeat(var(--codeon-wishlist-columns, 4), minmax(0, 1fr));
  gap: 18px;
  width: 100%;
}

.codeon-wishlist-card {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--codeon-wl-line);
  border-radius: 14px 14px 42px 42px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.codeon-wishlist-card:hover {
  border-color: #D0D0D0;
  box-shadow: 0 14px 30px -12px rgba(28, 23, 18, .25);
  transform: translateY(-4px);
}

.codeon-wishlist-card.is-removing {
  opacity: 0;
  transform: scale(.96);
  pointer-events: none;
}

.codeon-wishlist-card-media {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--codeon-wl-cream);
  border-bottom: 1px solid var(--codeon-wl-line);
}

.codeon-wishlist-card-media > a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 18px;
}

.codeon-wishlist-card-media img {
  display: block;
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  object-fit: contain;
  transition: transform .22s ease;
}

.codeon-wishlist-card:hover .codeon-wishlist-card-media img {
  transform: scale(1.035);
}

.codeon-wishlist-card-body {
  display: flex;
  flex: 1;
  min-width: 0;
  flex-direction: column;
  padding: 15px 15px 18px;
}

.codeon-wishlist-card-category,
.codeon-wishlist-card-category a {
  color: #767186;
  font-size: 9px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: .03em;
  text-decoration: none;
  text-transform: uppercase;
}

.codeon-wishlist-card h2 {
  margin: 8px 0 0;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.42;
}

.codeon-wishlist-card h2 a {
  color: var(--codeon-wl-ink);
  text-decoration: none;
}

.codeon-wishlist-card h2 a:hover {
  color: var(--codeon-wl-orange);
}

.codeon-wishlist-card-price {
  margin: 10px 0 0;
  color: var(--codeon-wl-ink);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
}

.codeon-wishlist-card-price del {
  margin-right: 5px;
  color: var(--codeon-wl-muted);
  opacity: 1;
}

.codeon-wishlist-card-price ins {
  color: var(--codeon-wl-orange);
  text-decoration: none;
}

.codeon-wishlist-card-stock {
  margin: 5px 0 0;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 10px;
  font-weight: 600;
}

.codeon-wishlist-card-stock.is-in-stock {
  color: var(--codeon-wl-teal);
}

.codeon-wishlist-card-stock.is-out-of-stock {
  color: #C83A32;
}

.codeon-wishlist-add-cart {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 40px;
  margin: auto 0 2px !important;
  padding: 11px 14px !important;
  color: #fff !important;
  background: var(--codeon-wl-orange) !important;
  border: 0 !important;
  border-radius: 999px !important;
  box-shadow: 0 4px 0 var(--codeon-wl-orange-dark) !important;
  font-family: "Inter", sans-serif !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  text-align: center;
  text-decoration: none !important;
  transition: background-color .18s ease, box-shadow .18s ease, transform .18s ease !important;
}

.codeon-wishlist-card-stock + .codeon-wishlist-add-cart {
  margin-top: 17px !important;
}

.codeon-wishlist-add-cart:hover {
  color: #fff !important;
  background: var(--codeon-wl-orange-dark) !important;
  box-shadow: none !important;
  transform: translateY(4px);
}

.codeon-wishlist-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  display: inline-flex;
  padding: 5px 10px;
  color: #fff;
  background: var(--codeon-wl-orange);
  border-radius: 8px 8px 8px 2px;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
}

.codeon-wishlist-heart {
  appearance: none !important;
  -webkit-appearance: none !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 7px;
  width: 38px !important;
  min-width: 38px !important;
  height: 38px !important;
  min-height: 38px !important;
  margin: 0 !important;
  padding: 0 !important;
  color: var(--codeon-wl-ink) !important;
  background: rgba(255, 255, 255, .94) !important;
  border: 1px solid var(--codeon-wl-line) !important;
  border-radius: 50% !important;
  box-shadow: 0 4px 12px rgba(28, 23, 18, .12) !important;
  cursor: pointer;
  transition: color .18s ease, background-color .18s ease, border-color .18s ease, transform .18s ease !important;
}

.codeon-wishlist-card-media > .codeon-wishlist-heart {
  position: absolute !important;
  top: 11px;
  right: 11px;
  z-index: 4;
}

.codeon-wishlist-heart:hover {
  color: var(--codeon-wl-orange) !important;
  background: #fff !important;
  border-color: var(--codeon-wl-orange) !important;
  transform: scale(1.05);
}

.codeon-wishlist-heart.is-active {
  color: var(--codeon-wl-orange) !important;
  background: #fff !important;
  border-color: rgba(232, 93, 37, .45) !important;
}

.codeon-wishlist-heart.is-loading {
  opacity: .55;
  pointer-events: none;
}

.codeon-wishlist-heart:focus-visible {
  outline: 2px solid var(--codeon-wl-orange) !important;
  outline-offset: 3px;
}

.codeon-wishlist-heart-icon {
  display: block;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
}

.codeon-wishlist-heart-label {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}

.codeon-wishlist-heart:has(.codeon-wishlist-heart-label) {
  width: auto !important;
  padding: 0 14px !important;
  border-radius: 999px !important;
}

.codeon-wishlist-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 17px;
  height: 17px;
  padding: 0 4px;
  color: #fff;
  background: var(--codeon-wl-orange);
  border-radius: 999px;
  font-family: "Inter", sans-serif;
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
}

.codeon-wishlist-nav-link {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  padding: 6px 10px;
  color: var(--codeon-wl-ink);
  border-radius: 9px;
  font-family: "Inter", sans-serif;
  text-decoration: none;
  transition: background-color .18s ease, transform .18s ease;
}

.codeon-wishlist-nav-link:hover {
  color: var(--codeon-wl-ink);
  background: var(--codeon-wl-cream-2);
  transform: translateY(-1px);
}

.codeon-wishlist-nav-link > svg {
  width: 22px;
  height: 22px;
}

.codeon-wishlist-nav-label {
  margin-top: 3px;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.1;
}

.codeon-wishlist-nav-link > .codeon-wishlist-count {
  position: absolute;
  top: -3px;
  right: 1px;
  border: 2px solid var(--codeon-wl-cream);
}

.codeon-wishlist-optin {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  max-width: 360px;
  padding: 11px 14px;
  color: var(--codeon-wl-ink-soft);
  background: #fff;
  border: 1px solid var(--codeon-wl-line);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
}

.codeon-wishlist-optin input {
  width: 16px;
  height: 16px;
  margin: 0;
  accent-color: var(--codeon-wl-orange);
}

.codeon-wishlist-login-note {
  color: var(--codeon-wl-orange-dark);
  font-size: 11px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.codeon-wishlist-notice {
  margin: -12px 0 22px;
  padding: 13px 15px;
  color: var(--codeon-wl-ink);
  background: #E5F5EA;
  border: 1px solid var(--codeon-wl-line);
  border-radius: 11px;
  box-shadow: inset 4px 0 0 var(--codeon-wl-teal);
  font-size: 12px;
}

.codeon-wishlist-empty {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 42px 20px 62px;
  color: var(--codeon-wl-ink);
  background: #fff;
  border: 1px solid var(--codeon-wl-line);
  border-radius: 18px 18px 70px 70px;
  text-align: center;
}

.codeon-wishlist-empty > svg {
  width: 58px;
  height: 58px;
  color: var(--codeon-wl-orange);
}

.codeon-wishlist-empty h2 {
  margin: 18px 0 0;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 26px;
  font-weight: 800;
  line-height: 1.1;
}

.codeon-wishlist-empty p {
  margin: 6px 0 0;
  color: var(--codeon-wl-ink-soft);
  font-size: 13px;
}

.codeon-wishlist-empty a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-top: 20px;
  padding: 11px 20px;
  color: #fff !important;
  background: var(--codeon-wl-orange);
  border-radius: 999px;
  box-shadow: 0 4px 0 var(--codeon-wl-orange-dark);
  font-size: 11px;
  font-weight: 700;
  text-decoration: none !important;
}

.codeon-wishlist-toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 2147483647;
  max-width: min(360px, calc(100vw - 36px));
  padding: 13px 16px;
  color: #fff;
  background: var(--codeon-wl-ink);
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(28, 23, 18, .22);
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 600;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .2s ease, transform .2s ease;
  pointer-events: none;
}

.codeon-wishlist-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .codeon-wishlist-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .codeon-wishlist-page-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 22px;
  }

  .codeon-wishlist-page-header h1 {
    font-size: 29px;
  }

  .codeon-wishlist-page-header p {
    font-size: 13px;
  }

  .codeon-wishlist-optin {
    width: 100%;
    max-width: none;
    border-radius: 12px;
  }

  .codeon-wishlist-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 11px;
  }

  .codeon-wishlist-card {
    border-radius: 12px 12px 30px 30px;
  }

  .codeon-wishlist-card-media > a {
    padding: 11px;
  }

  .codeon-wishlist-card-media > .codeon-wishlist-heart {
    top: 8px;
    right: 8px;
  }

  .codeon-wishlist-heart {
    width: 34px !important;
    min-width: 34px !important;
    height: 34px !important;
    min-height: 34px !important;
  }

  .codeon-wishlist-heart-icon {
    width: 18px;
    height: 18px;
  }

  .codeon-wishlist-card-body {
    padding: 12px 11px 15px;
  }

  .codeon-wishlist-card h2 {
    font-size: 11px;
  }

  .codeon-wishlist-card-price {
    font-size: 10px;
  }

  .codeon-wishlist-add-cart {
    min-height: 37px;
    padding: 10px 8px !important;
    font-size: 9px !important;
  }

  .codeon-wishlist-nav-link {
    min-width: 44px;
    padding: 6px;
  }

  .codeon-wishlist-nav-label {
    display: none;
  }

  .codeon-wishlist-empty {
    min-height: 280px;
    padding: 34px 16px 48px;
    border-radius: 15px 15px 45px 45px;
  }
}

@media (max-width: 430px) {
  .codeon-wishlist-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   V1.1 · ALERTAS CENTRADAS, TARJETAS Y BADGE DE OFERTA
========================================================= */

/* Badge condicional para usar con [codeon_badge_oferta]. */
.codeon-sale-badge {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: auto !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 5px 10px !important;
  color: #FFFFFF !important;
  background: var(--codeon-wl-orange) !important;
  border: 0 !important;
  border-radius: 8px 8px 8px 2px !important;
  box-shadow: none !important;
  font-family: "Poppins", Arial, sans-serif !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  letter-spacing: .02em;
  text-transform: none !important;
  white-space: nowrap;
}

/* Dentro de la tarjeta se superpone sobre la fotografía. */
.codeon-wishlist-card-media > .codeon-sale-badge,
.codeon-wishlist-card-media > .codeon-wishlist-badge {
  position: absolute !important;
  top: 12px !important;
  left: 12px !important;
  right: auto !important;
  z-index: 5 !important;
}

/* Tarjeta idéntica a la línea visual de Enganches Pacheco. */
.codeon-wishlist-grid {
  align-items: stretch;
  gap: 16px;
}

.codeon-wishlist-card {
  isolation: isolate;
  display: flex !important;
  flex-direction: column !important;
  width: 100% !important;
  min-width: 0 !important;
  height: 100%;
  margin: 0 !important;
  padding: 0 0 16px !important;
  overflow: hidden !important;
  color: var(--codeon-wl-ink);
  background: #FFFFFF !important;
  border: 1px solid var(--codeon-wl-line) !important;
  border-radius: 14px 14px 42px 42px !important;
  box-shadow: none !important;
}

.codeon-wishlist-card:hover {
  border-color: #D0D0D0 !important;
  box-shadow: 0 14px 30px -12px rgba(28, 23, 18, .25) !important;
  transform: translateY(-4px);
}

.codeon-wishlist-card-media {
  position: relative !important;
  flex: 0 0 auto;
  width: 100% !important;
  aspect-ratio: 1 / 1;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  background: #FFFFFF !important;
  border: 0 !important;
  border-bottom: 1px solid var(--codeon-wl-line) !important;
}

.codeon-wishlist-card-media > a {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  padding: 18px !important;
  background: #FFFFFF !important;
}

.codeon-wishlist-card-media img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  margin: 0 !important;
  padding: 0 !important;
  object-fit: contain !important;
}

.codeon-wishlist-card-body {
  display: flex !important;
  flex: 1 1 auto !important;
  flex-direction: column !important;
  align-items: stretch !important;
  width: 100% !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 15px 14px 2px !important;
  background: #FFFFFF !important;
}

.codeon-wishlist-card-category,
.codeon-wishlist-card-category a {
  margin: 0 !important;
  padding: 0 !important;
  color: #767186 !important;
  font-family: "Inter", sans-serif !important;
  font-size: 9px !important;
  font-weight: 800 !important;
  line-height: 1.3 !important;
  letter-spacing: .03em !important;
  text-decoration: none !important;
  text-transform: uppercase !important;
}

.codeon-wishlist-card h2 {
  width: 100%;
  min-height: 38px;
  margin: 8px 0 0 !important;
  padding: 0 !important;
  color: var(--codeon-wl-ink) !important;
  font-family: "Inter", sans-serif !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  line-height: 1.42 !important;
  letter-spacing: 0 !important;
}

.codeon-wishlist-card h2 a {
  color: var(--codeon-wl-ink) !important;
  text-decoration: none !important;
}

.codeon-wishlist-card-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px;
  width: 100%;
  margin: 9px 0 0 !important;
  padding: 0 !important;
  color: var(--codeon-wl-ink) !important;
  font-family: "Poppins", Arial, sans-serif !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  line-height: 1.4 !important;
}

.codeon-wishlist-card-price del {
  margin: 0 2px 0 0 !important;
  color: var(--codeon-wl-muted) !important;
  opacity: 1 !important;
}

.codeon-wishlist-card-price ins {
  margin: 0 !important;
  color: var(--codeon-wl-orange) !important;
  text-decoration: none !important;
}

.codeon-wishlist-card-stock {
  width: 100%;
  margin: 5px 0 0 !important;
  padding: 0 !important;
  font-family: "Poppins", Arial, sans-serif !important;
  font-size: 10px !important;
  font-weight: 500 !important;
  line-height: 1.35 !important;
}

.codeon-wishlist-add-cart {
  width: 100% !important;
  min-height: 42px !important;
  margin: auto 0 2px !important;
  padding: 11px 14px !important;
  border-radius: 999px !important;
  font-size: 11px !important;
}

.codeon-wishlist-card-stock + .codeon-wishlist-add-cart {
  margin-top: 17px !important;
}

/* Corazón de la tarjeta. */
.codeon-wishlist-card-media > .codeon-wishlist-heart {
  top: 11px !important;
  right: 11px !important;
  left: auto !important;
  z-index: 6 !important;
  color: var(--codeon-wl-orange) !important;
  background: rgba(255, 255, 255, .96) !important;
  border-color: var(--codeon-wl-line) !important;
}

/* Alerta inferior centrada con estilo de píldora de Enganches Pacheco. */
.codeon-wishlist-toast {
  position: fixed !important;
  right: auto !important;
  bottom: 24px !important;
  left: 50% !important;
  z-index: 2147483647 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 11px !important;
  width: max-content !important;
  max-width: min(430px, calc(100vw - 24px)) !important;
  min-height: 56px !important;
  margin: 0 !important;
  padding: 7px 18px 7px 7px !important;
  color: var(--codeon-wl-ink) !important;
  background: #FFFFFF !important;
  border: 2px solid var(--codeon-wl-ink) !important;
  border-radius: 999px !important;
  box-shadow:
    0 4px 0 var(--codeon-wl-orange-dark),
    0 12px 26px rgba(28, 23, 18, .16) !important;
  font-family: "Inter", sans-serif !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  line-height: 1.25 !important;
  text-align: left !important;
  opacity: 0;
  transform: translate(-50%, 16px) !important;
  transition: opacity .2s ease, transform .2s ease !important;
  pointer-events: none !important;
}

.codeon-wishlist-toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0) !important;
}

.codeon-wishlist-toast-icon {
  display: inline-flex;
  flex: 0 0 40px;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  overflow: hidden;
  color: var(--codeon-wl-orange);
  background: var(--codeon-wl-cream);
  border: 1px solid var(--codeon-wl-line);
  border-radius: 50%;
}

.codeon-wishlist-toast-icon img {
  display: block;
  width: 34px !important;
  height: 34px !important;
  margin: 0 !important;
  object-fit: contain;
  border-radius: 50%;
}

.codeon-wishlist-toast-icon svg {
  display: block;
  width: 20px;
  height: 20px;
}

.codeon-wishlist-toast-text {
  display: block;
  min-width: 0;
  max-width: 330px;
  overflow-wrap: break-word;
}

@media (max-width: 767px) {
  .codeon-wishlist-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 11px;
  }

  .codeon-wishlist-card {
    border-radius: 12px 12px 30px 30px !important;
  }

  .codeon-wishlist-card-media > a {
    padding: 11px !important;
  }

  .codeon-wishlist-card-body {
    padding: 12px 11px 2px !important;
  }

  .codeon-wishlist-card h2 {
    min-height: 48px;
    font-size: 11px !important;
  }

  .codeon-wishlist-card-price {
    font-size: 10px !important;
  }

  .codeon-wishlist-add-cart {
    min-height: 38px !important;
    padding: 10px 8px !important;
    font-size: 9px !important;
  }

  .codeon-wishlist-toast {
    bottom: 16px !important;
    min-height: 52px !important;
    max-width: calc(100vw - 20px) !important;
    padding: 6px 15px 6px 6px !important;
    font-size: 12px !important;
  }

  .codeon-wishlist-toast-icon {
    flex-basis: 38px;
    width: 38px;
    height: 38px;
  }

  .codeon-wishlist-toast-icon img {
    width: 32px !important;
    height: 32px !important;
  }
}

@media (max-width: 430px) {
  .codeon-wishlist-grid {
    grid-template-columns: 1fr;
  }

  .codeon-wishlist-card h2 {
    min-height: 0;
  }
}

/* =========================================================
   TEMA ENGANCHE Y REMOLQUES PACHECO
========================================================= */

.codeon-wishlist-page,
.codeon-wishlist-heart {
  --codeon-wl-cream: #F4F4F4;
  --codeon-wl-cream-2: #E9E9E9;
  --codeon-wl-ink: #0A0A0A;
  --codeon-wl-ink-soft: #555555;
  --codeon-wl-muted: #888888;
  --codeon-wl-orange: #F72E16;
  --codeon-wl-orange-dark: #D9230E;
  --codeon-wl-teal: #188A45;
  --codeon-wl-line: #E2E2E2;
}

.codeon-wishlist-page,
.codeon-wishlist-page *,
.codeon-wishlist-heart,
.codeon-wishlist-heart * {
  font-family: "Poppins", Arial, sans-serif !important;
}

.codeon-wishlist-page {
  padding: clamp(24px, 4vw, 54px);
  color: #FFFFFF;
  background: #050505;
  border-radius: 30px;
}

.codeon-wishlist-page-header {
  align-items: flex-end;
  margin-bottom: 28px;
}

.codeon-wishlist-page-header h1 {
  color: #FFFFFF;
  font-family: "Poppins", Arial, sans-serif;
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.035em;
  text-transform: uppercase;
}

.codeon-wishlist-page-header p {
  color: #B7B7B7;
  font-size: 14px;
}

.codeon-wishlist-grid {
  gap: 22px;
}

.codeon-wishlist-card {
  overflow: hidden;
  color: #0A0A0A;
  background: #FFFFFF !important;
  border: 0 !important;
  border-radius: 30px !important;
  box-shadow: none;
}

.codeon-wishlist-card:hover {
  border-color: transparent !important;
  box-shadow: 0 20px 44px rgba(0, 0, 0, .32);
  transform: translateY(-4px);
}

.codeon-wishlist-card-media,
.codeon-wishlist-card-media > a {
  background: #FFFFFF !important;
}

.codeon-wishlist-card-media {
  border-bottom: 1px solid #EEEEEE;
}

.codeon-wishlist-card-body {
  padding: 18px 20px 24px;
  background: #FFFFFF !important;
  text-align: center;
}

.codeon-wishlist-card-category,
.codeon-wishlist-card-category a {
  color: #777777 !important;
  font-size: 10px;
  font-weight: 600;
}

.codeon-wishlist-card h2 {
  min-height: 52px;
  margin-top: 9px;
  font-family: "Poppins", Arial, sans-serif !important;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.35;
}

.codeon-wishlist-card h2 a,
.codeon-wishlist-card h2 a:hover {
  color: #0A0A0A !important;
}

.codeon-wishlist-card-price {
  justify-content: center;
  color: #F72E16;
  font-family: "Poppins", Arial, sans-serif !important;
  font-size: 24px;
  font-style: italic;
  font-weight: 900;
}

.codeon-wishlist-card-price ins {
  color: #F72E16;
}

.codeon-wishlist-card-stock {
  font-family: "Poppins", Arial, sans-serif !important;
  text-align: center;
}

.codeon-wishlist-add-cart {
  min-height: 44px;
  margin-top: 14px;
  color: #FFFFFF !important;
  background: #F72E16 !important;
  border-radius: 999px !important;
  box-shadow: none !important;
  font-family: "Poppins", Arial, sans-serif !important;
  font-size: 12px;
  font-weight: 800;
}

.codeon-wishlist-add-cart:hover {
  color: #FFFFFF !important;
  background: #D9230E !important;
}

.codeon-wishlist-heart {
  color: #F72E16 !important;
  background: #FFFFFF !important;
  border: 1px solid #E1E1E1 !important;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .12) !important;
}

.codeon-wishlist-heart:hover,
.codeon-wishlist-heart.is-active {
  color: #FFFFFF !important;
  background: #F72E16 !important;
  border-color: #F72E16 !important;
}

.codeon-sale-badge,
.codeon-wishlist-badge {
  color: #FFFFFF !important;
  background: #F72E16 !important;
  border-radius: 999px !important;
  font-family: "Poppins", Arial, sans-serif !important;
  text-transform: uppercase;
}

.codeon-wishlist-optin {
  color: #0A0A0A;
  background: #FFFFFF;
  border-radius: 999px;
}

.codeon-wishlist-login-note {
  color: #FFFFFF;
  border-color: #FFFFFF;
}

.codeon-wishlist-notice {
  color: #0A0A0A;
  background: #FFFFFF;
  border-left: 5px solid #F72E16;
  border-radius: 18px;
  box-shadow: none;
}

.codeon-wishlist-empty {
  color: #0A0A0A;
  background: #FFFFFF;
  border: 0;
  border-radius: 30px;
}

.codeon-wishlist-empty h2 {
  color: #0A0A0A;
  font-family: "Poppins", Arial, sans-serif;
}

.codeon-wishlist-empty a {
  color: #FFFFFF !important;
  background: #F72E16 !important;
  border-radius: 999px;
  box-shadow: none;
}

.codeon-wishlist-empty a:hover {
  background: #D9230E !important;
}

.codeon-wishlist-nav-link {
  color: #FFFFFF;
  font-family: "Poppins", Arial, sans-serif;
}

.codeon-wishlist-nav-link:hover {
  color: #F72E16;
}

.codeon-wishlist-count {
  color: #FFFFFF;
  background: #F72E16;
  border: 2px solid #050505;
}

.codeon-wishlist-toast {
  color: #FFFFFF !important;
  background: #111111 !important;
  border: 1px solid #343434 !important;
  border-radius: 999px !important;
  box-shadow: 0 18px 44px rgba(0, 0, 0, .35) !important;
  font-family: "Poppins", Arial, sans-serif !important;
}

.codeon-wishlist-toast-icon {
  background: #F72E16;
}

@media (max-width: 767px) {
  .codeon-wishlist-page {
    padding: 22px 12px 34px;
    border-radius: 22px;
  }

  .codeon-wishlist-page-header {
    align-items: stretch;
  }

  .codeon-wishlist-card {
    border-radius: 22px !important;
  }

  .codeon-wishlist-card-body {
    padding: 14px 12px 18px;
  }

  .codeon-wishlist-card h2 {
    min-height: 48px;
    font-size: 14px;
  }

  .codeon-wishlist-card-price {
    font-size: 20px;
  }
}
