:root{
  --bg:#f5f4f1;
  --surface:#ffffff;
  --text:#262626;
  --muted:#6b6b6b;
  --shadow:0 12px 30px rgba(0,0,0,.10);
  --shadow2:0 16px 42px rgba(0,0,0,.14);
  --radius:18px;
  --radius2:26px;
  --focus:rgba(38,38,38,.22);

  /* Card-specific customizable colors (can be overridden via plugin settings -> inline CSS vars on .enxoval-pc) */
  --imageBg: #ffffff;
  --contentBg: #ffffff;
  --divider: rgba(0,0,0,.06);
  --buttonBg: #fee2e2;
  --buttonText: #ef4444;
  --buttonBorder: rgba(239,68,68,.18);
  --badgeBg: rgba(255,255,255,.86);
  --badgeText: #262626;
  --badgeBorder: rgba(0,0,0,.06);
}

.enxoval-pc{
  margin: 14px 0 22px;
  font-family: inherit;
  color: var(--text);
}

.enxoval-pc-grid{
  display:grid;
  grid-template-columns: repeat(var(--enxoval-cols, 3), minmax(0,1fr));
  gap:14px;
}

/* Carousel (scroll-snap, mobile-first) */
.enxoval-pc--carousel .enxoval-pc-carousel{
  display:flex;
  gap:14px;
  overflow-x:auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  padding-bottom: 6px;
  scrollbar-width: none;
}
.enxoval-pc--carousel .enxoval-pc-carousel::-webkit-scrollbar{ display:none; }

.enxoval-pc--carousel .enxoval-pc-slide{
  flex: 0 0 var(--enxoval-slide-mobile, 78%);
  max-width: var(--enxoval-slide-mobile, 78%);
  scroll-snap-align: start;
}
.enxoval-pc--carousel .enxoval-pc-slide .enxoval-card{ height: 100%; }

@media (min-width: 860px){
  .enxoval-pc--carousel .enxoval-pc-slide{
    flex-basis: 38%;
    max-width: 38%;
  }
}

@media (min-width: 1080px){
  .enxoval-pc--carousel .enxoval-pc-slide{
    flex-basis: 30%;
    max-width: 30%;
  }
}

@media (max-width: 980px){
  .enxoval-pc-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 760px){
  .enxoval-pc-grid{ grid-template-columns: 1fr; }
}

.enxoval-card{
  position: relative;
  background: var(--surface);
  border-radius: var(--radius2);
  box-shadow: var(--shadow);
  overflow: hidden;
  display:flex;
  flex-direction:column;
  min-height: 100%;
  transition: transform .16s ease, box-shadow .16s ease;
}

/* Whole-card link overlay (button stays clickable via z-index) */
.enxoval-card-permalink{
  position:absolute;
  inset:0;
  z-index: 2;
  border-radius: var(--radius2);
  text-indent: -9999px;
  overflow: hidden;
}
.enxoval-card-thumb,
.enxoval-card-content{
  position: relative;
  z-index: 1;
}
.enxoval-cta{
  position: relative;
  z-index: 3;
}
.enxoval-card:hover{
  transform: translateY(-2px);
  box-shadow: var(--shadow2);
}

.enxoval-card-thumb{
  position:relative;
  /* Responsive thumbnail height so the image area scales with card width.
     Prevents tall product images from visually pushing into the content area. */
  height: clamp(160px, 22vw, 210px);
  /* Most product images are on white background; keep this area white for better contrast */
  background: var(--imageBg);
  border-bottom: 1px solid var(--divider);
  display:grid;
  place-items:center;
  overflow: hidden;
}
.enxoval-card-img{
  /* The theme may set global img styles; keep the image boxed within the thumb area. */
  display:block;
  box-sizing: border-box;
  width:100%;
  height:100%;
  max-width:100%;
  max-height:100%;
  object-fit: contain;
  padding: 12px;
}
.enxoval-card-img--placeholder{
  /* When no image is set we render an emoji placeholder.
     Ensure it stays perfectly centered inside the thumb area. */
  font-size: 54px;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  padding: 0;
  line-height: 1;
  text-align: center;
}

.enxoval-badge{
  position:absolute;
  top:12px; left:12px;
  background: var(--badgeBg);
  color: var(--badgeText);
  z-index: 3;
  border-radius: 999px;
  padding: 7px 10px;
  font-weight: 750;
  font-size: 12px;
  box-shadow: inset 0 0 0 1px var(--badgeBorder);
}

.enxoval-badge-stack{
  position:absolute;
  top:12px; left:12px;
  z-index: 3;
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  max-width: calc(100% - 24px);
}
.enxoval-badge-stack .enxoval-badge{
  position: static;
  top: auto; left: auto;
}

.enxoval-card-content{
  /* Invert: colored text area, white image area */
  background: var(--contentBg);
  padding:14px 14px 16px;
  display:flex;
  flex-direction:column;
  gap:10px;
  flex:1;
}

.enxoval-card-title{
  margin:0;
  font-size:18px;
  letter-spacing:-.01em;
}

.enxoval-card-desc{
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.enxoval-card-meta{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:10px;
  margin-top:auto;
}

.enxoval-small{
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
}

.enxoval-price{
  font-weight: 900;
  font-size: 20px;
}

.enxoval-card-rating{
  font-weight: 750;
  font-size: 13px;
  color: var(--text);
  white-space:nowrap;
}
.enxoval-stars{ margin-right: 4px; }

.enxoval-cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  margin-top: 8px;
  padding:10px 12px;
  width:100%;
  border-radius:14px;
  border:0;
  cursor:pointer;
  font-weight:850;
  letter-spacing:.02em;
  background: var(--buttonBg);
  color: var(--buttonText);
  box-shadow: inset 0 0 0 1px var(--buttonBorder);
  text-decoration:none;
  transition: transform .14s ease, filter .14s ease;
}


/* ---------- Preview pills (PA-API safe; no images) ---------- */
.enxoval-pc--preview .enxoval-preview-pill{
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--card-bg, var(--surface));
  border-radius: var(--radius2);
  box-shadow: var(--shadow);
  overflow: hidden;
  min-height: 176px;
  transition: transform .16s ease, box-shadow .16s ease;
}

/* subtle decoration (slightly different from rankings) */
.enxoval-pc--preview .enxoval-preview-pill::after{
  content:"";
  position:absolute;
  top:0;
  right:-22%;
  width:62%;
  height:100%;
  background: radial-gradient(circle at 30% 40%, rgba(0,0,0,.06), transparent 62%);
  pointer-events:none;
}

.enxoval-pc--preview .enxoval-preview-pill:hover{
  transform: translateY(-2px);
  box-shadow: var(--shadow2);
}

.enxoval-preview-pill__link{
  display:block;
  color: inherit;
  text-decoration: none;
}

.enxoval-preview-pill__inner{
  position: relative;
  z-index: 1;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

/* Chips row: always one line */
.enxoval-preview-pill__chips{
  display:flex;
  align-items:center;
  gap: 8px;
  flex-wrap: nowrap;
  overflow: hidden;
  white-space: nowrap;
  -webkit-mask-image: linear-gradient(90deg, #000 88%, transparent);
  mask-image: linear-gradient(90deg, #000 88%, transparent);
}

.enxoval-preview-chip{
  display:inline-flex;
  align-items:center;
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 850;
  background: rgba(255,255,255,.86);
  color: var(--text);
  box-shadow: inset 0 0 0 1px var(--badgeBorder);
  max-width: 44%;
  overflow: hidden;
  text-overflow: ellipsis;
}

.enxoval-preview-chip--muted{
  background: rgba(255,255,255,.66);
  color: var(--muted);
}

.enxoval-preview-chip--primary{
  background: var(--text);
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.06);
}

/* Title: 1 line */
.enxoval-preview-pill__title{
  margin: 0;
  font-weight: 950;
  font-size: 16px;
  line-height: 1.25;
  color: var(--text);
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Description: exactly 2 lines (clamped) */
.enxoval-preview-pill__desc{
  font-size: 13px;
  line-height: 1.35;
  color: var(--muted);
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: calc(1 * 1.35em);
}

.enxoval-preview-pill__desc--empty{
  opacity: 0;
}

/* CTA: consistent size across cards */
.enxoval-pc--preview{
  --previewButtonBg: rgba(210,191,149,.78);
  --previewButtonText: rgba(0,0,0,.70);
  --previewButtonBorder: rgba(0,0,0,.06);
}

.enxoval-preview-pill__cta{
  position: relative;
  z-index: 1;
  display: block;
  margin: 0 14px 14px;
  padding: 12px 14px;
  border-radius: 999px;
  text-align: center;
  text-decoration: underline;
  font-weight: 900;
  font-size: 13px;
  color: var(--previewButtonText);
  background: var(--previewButtonBg);
  box-shadow: inset 0 0 0 1px var(--previewButtonBorder);
}

.enxoval-preview-pill__cta:hover{
  text-decoration: none;
}

.enxoval-preview-pill__cta--disabled{
  opacity: .55;
  pointer-events:none;
}

/* ---------- Single product page layout ---------- */
.enxoval-product{
  margin: 18px 0 26px;
}

.enxoval-product-hero{
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
  background: var(--surface);
  border-radius: var(--radius2);
  box-shadow: var(--shadow);
  overflow: hidden;
}

@media (min-width: 860px){
  .enxoval-product-hero{ grid-template-columns: 46% 54%; }
}

.enxoval-product-media{
  background: var(--imageBg);
  border-bottom: 1px solid var(--divider);
}
@media (min-width: 860px){
  .enxoval-product-media{ border-bottom:0; border-right: 1px solid var(--divider); }
}

.enxoval-product-gallery{
  width: 100%;
  height: clamp(260px, 32vw, 420px);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.enxoval-product-gallery--empty{ font-size: 64px; }
.enxoval-product-img{
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  padding: 18px;
  box-sizing: border-box;
  display: block;
}

/* Make gallery slides behave as fixed-height frames (prevents overlap with text) */
.enxoval-product-slide{ height: clamp(260px, 32vw, 420px); }
.enxoval-product-slide .enxoval-product-img{ padding: 18px; }

.enxoval-product-summary{
  background: var(--contentBg);
  padding: 16px 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.enxoval-product-meta-top{
  color: var(--muted);
  font-weight: 650;
  font-size: 12px;
}

.enxoval-product-title{
  margin: 0;
  font-size: 26px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.enxoval-product-badges{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.enxoval-pill{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 800;
  background: rgba(255,255,255,.86);
  color: var(--text);
  box-shadow: inset 0 0 0 1px var(--badgeBorder);
}
.enxoval-pill--muted{
  background: rgba(255,255,255,.66);
  color: var(--muted);
}

.enxoval-product-price{
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 10px;
}
.enxoval-product-price-now{ font-size: 28px; font-weight: 950; }
.enxoval-product-rating{ font-weight: 850; }

.enxoval-product-actions{ margin-top: 2px; }
.enxoval-product-permalink{ color: var(--muted); font-size: 12px; text-decoration: none; }
.enxoval-product-permalink:hover{ text-decoration: underline; }

.enxoval-product-related{
  margin-top: 18px;
}
.enxoval-product-h2{
  margin: 0 0 12px;
  font-size: 18px;
  letter-spacing: -0.01em;
}
.enxoval-cta:hover{
  transform: translateY(-1px);
  filter: saturate(1.05);
}

/* Affiliate disclaimer (shown on single product pages) */
.enxoval-disclaimer{
  margin: 16px 0 0;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(0,0,0,.02);
  box-shadow: inset 0 0 0 1px var(--divider);
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
  text-align: center;
}

.enxoval-pc-empty{
  padding: 14px;
  border-radius: 12px;
  background: rgba(0,0,0,.03);
  color: var(--muted);
}

/* Carousel arrows (optional via shortcode arrows="1") */
.enxoval-pc-carousel-wrap{
  position: relative;
}
.enxoval-pc-nav{
  position:absolute;
  top:50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  font-weight: 900;
  font-size: 22px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.86);
  color: var(--text);
  box-shadow: var(--shadow);
  z-index: 5;
}
.enxoval-pc-nav:disabled{
  opacity: .35;
  cursor: default;
}
.enxoval-pc-nav--prev{ left: 6px; }
.enxoval-pc-nav--next{ right: 6px; }

@media (min-width: 860px){
  .enxoval-pc--carousel .enxoval-pc-carousel{
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media (max-width: 859px){
  /* On mobile, swipe is best; hide arrows */
  .enxoval-pc-nav{ display:none; }
}

/* ----------------------------
   Single product page layout
----------------------------- */

.enxoval-product{
  margin: 18px 0 24px;
  font-family: inherit;
  color: var(--text);
}

.enxoval-product-hero{
  background: var(--surface);
  border-radius: var(--radius2);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
}

.enxoval-product-media{
  background: var(--imageBg);
  border-right: 1px solid var(--divider);
}

.enxoval-product-gallery{
  min-height: 320px;
  display: grid;
  place-items: center;
  padding: 18px;
}
.enxoval-product-img{
  width: 100%;
  height: 100%;
  max-height: 420px;
  object-fit: contain;
  display: block;
}
.enxoval-product-gallery--empty{
  font-size: 54px;
}

.enxoval-product-summary{
  background: var(--contentBg);
  padding: 18px 18px 20px;
  display:flex;
  flex-direction:column;
  gap: 12px;
}

.enxoval-product-meta-top{
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

.enxoval-product-title{
  margin: 0;
  font-size: clamp(22px, 2.4vw, 30px);
  letter-spacing: -.01em;
}

.enxoval-product-badges{
  display:flex;
  flex-wrap: wrap;
  gap: 8px;
}

.enxoval-pill{
  display:inline-flex;
  align-items:center;
  gap: 6px;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--badgeBg);
  color: var(--badgeText);
  box-shadow: inset 0 0 0 1px var(--badgeBorder);
  font-weight: 750;
  font-size: 12px;
}
.enxoval-pill--muted{
  background: rgba(255,255,255,.76);
  color: var(--text);
}

.enxoval-product-price{
  display:flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 12px;
}
.enxoval-product-price-now{
  font-weight: 900;
  font-size: 30px;
}
.enxoval-product-rating{
  font-weight: 850;
  font-size: 14px;
}

.enxoval-product-actions{
  margin-top: 4px;
}
.enxoval-product-permalink{
  color: var(--muted);
  font-size: 12px;
  text-decoration: none;
}
.enxoval-product-permalink:hover{ text-decoration: underline; }

.enxoval-product-related{
  margin-top: 18px;
}
.enxoval-product-h2{
  margin: 0 0 10px;
  font-size: 20px;
  letter-spacing: -.01em;
}

.enxoval-product-slide{
  display: grid;
  place-items: center;
  background: var(--imageBg);
  border-radius: 16px;
  border: 1px solid var(--divider);
  padding: 8px;
}

@media (max-width: 980px){
  .enxoval-product-hero{
    grid-template-columns: 1fr;
  }
  .enxoval-product-media{
    border-right: 0;
    border-bottom: 1px solid var(--divider);
  }
  .enxoval-product-gallery{ min-height: 260px; }
}


/* ----------------------------
   Rankings populares (page cards)
----------------------------- */

.enxoval-rankings{
  margin: 14px 0 22px;
  color: var(--text);
}

.enxoval-rankings-grid{
  display: grid;
  grid-template-columns: repeat(var(--enxoval-cols, 4), minmax(0, 1fr));
  gap: 14px;
}

@media (max-width: 980px){
  .enxoval-rankings-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 760px){
  .enxoval-rankings-grid{ grid-template-columns: 1fr; }
}

.enxoval-rank-card{
  position: relative;
  display: block;
  text-decoration: none;
  background: var(--card-bg, var(--surface));
  border-radius: var(--radius2);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform .16s ease, box-shadow .16s ease;
}

.enxoval-rank-card::after{
  content: "";
  position: absolute;
  top: 0;
  right: -18%;
  width: 42%;
  height: 100%;
  background: rgba(0,0,0,.03);
  border-radius: 999px;
  transform: rotate(-8deg);
}

.enxoval-rank-card__inner{
  position: relative;
  z-index: 2;
  padding: 18px 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 104px;
}

.enxoval-rank-card__title{
  font-weight: 800;
  font-size: 16px;
  line-height: 1.25;
  color: var(--text);
}

.enxoval-rank-card__desc{
  font-size: 13px;
  line-height: 1.45;
  color: var(--muted);
}

.enxoval-rank-card__cta{
  margin-top: auto;
  font-weight: 800;
  font-size: 13px;
  color: rgba(0,0,0,.62);
}

.enxoval-rank-card:hover{
  transform: translateY(-2px);
  box-shadow: var(--shadow2);
}



/* ---------- Single product page (ranking-style) ---------- */
body.single-product_card{
  --card-bg: #ffffff;
  --text-main: #1f2937;
  --text-muted: #6b7280;
  --accent-red: #ef4444;
  --accent-red-light: #fee2e2;
  --radius-card: 24px;
  --radius-btn: 99px;
  --shadow-soft: 0 4px 20px rgba(0,0,0,0.04);
  --bg-gallery: #ffffff;
}

body.single-product_card .enxoval-product{
  max-width: 1200px;
  margin: 0 auto 40px;
  padding: 0 10px;
}

body.single-product_card .enxoval-product-hero{
  background: var(--card-bg);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

@media (min-width: 860px){
  body.single-product_card .enxoval-product-hero{ grid-template-columns: 45% 55%; }
}

body.single-product_card .enxoval-product-media{
  background: var(--bg-gallery);
  border-bottom: 1px solid #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 860px){
  body.single-product_card .enxoval-product-media{
    border-bottom: none;
    border-right: 1px solid #f3f4f6;
  }
}

body.single-product_card .enxoval-product-gallery{
  width: 100%;
  height: 200px !important;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 860px){
  body.single-product_card .enxoval-product-gallery{
    height: 350px !important;
    padding: 30px;
  }
}

body.single-product_card .enxoval-product-img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

body.single-product_card .enxoval-product-summary{
  padding: 24px;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

body.single-product_card .enxoval-product-badges{
  display: flex;
  gap: 10px;
  margin-bottom: 0;
  flex-wrap: wrap;
}

body.single-product_card .enxoval-pill{
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 99px;
  letter-spacing: 0.5px;
  box-shadow: none;
  border: 0;
}

body.single-product_card .enxoval-pill--muted{
  background: #f3f4f6;
  color: var(--text-muted);
}

body.single-product_card .enxoval-product-title{
  font-size: 22px;
  font-weight: 800;
  margin: 0 0 2px 0;
  line-height: 1.2;
  color: var(--text-main);
  letter-spacing: normal;
}

body.single-product_card .enxoval-product-meta-top{
  color: var(--text-muted);
  font-weight: 600;
  font-size: 13px;
}

body.single-product_card .enxoval-product-rating{
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
}

body.single-product_card .enxoval-stars{
  color: #fbbf24;
  margin-right: 0;
}

body.single-product_card .enxoval-product-price-row{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
}


body.single-product_card .enxoval-product-excerpt{
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.5;
}

body.single-product_card .enxoval-product-excerpt:empty{ display:none; }

body.single-product_card .enxoval-cta{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: var(--radius-btn);
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s;
  margin-top: 12px;
  width: 100%;
  text-align: center;
}

body.single-product_card .enxoval-cta:hover{
  transform: translateY(-2px);
}

/* Keep related section spacing consistent */
body.single-product_card .enxoval-product-related{
  margin-top: 24px;
}

/* ---------- Prime badge/pill ---------- */
.enxoval-badge--prime,
.enxoval-pill--prime{
  background: rgba(0, 102, 192, .12);
  color: #0066c0;
}


/* ---- Offer block (unified pricing for all views) ---- */
.enxoval-offer{
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.enxoval-offer__prices{
  display: flex;
  flex-direction: column;
  gap: 2px;
}

/* Discount badge: red gradient pill */
.enxoval-offer__was-row{
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.enxoval-offer__discount-badge{
  width: fit-content;
  background: linear-gradient(135deg, #dc2626, #ef4444);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  padding: 5px 8px;
  border-radius: 999px;
  box-shadow: 0 0 0 2px #fff, 0 2px 6px rgba(0,0,0,.15);
  animation: enxoval-badge-pulse 2s ease-in-out infinite;
}

@keyframes enxoval-badge-pulse{
  0%, 100%{ transform: scale(1); }
  50%{ transform: scale(1.05); }
}

@media (prefers-reduced-motion: reduce){
  .enxoval-offer__discount-badge{ animation: none; }
}

/* "Was" price: red strikethrough, prominent */
.enxoval-offer__was{
  font-size: 15px;
  font-weight: 800;
  color: #b91c1c;
  text-decoration: line-through;
}

/* Current price: big, bold */
.enxoval-offer__now{
  font-weight: 950;
  font-size: 26px;
  color: var(--text);
}

/* Savings text: "Poupa X €" */
.enxoval-offer__save{
  font-size: 13px;
  font-weight: 750;
  color: #16a34a;
}

/* ---- Card variant (smaller) ---- */
.enxoval-offer--card .enxoval-offer__was{ font-size: 13px; }
.enxoval-offer--card .enxoval-offer__now{ font-size: 20px; }
.enxoval-offer--card .enxoval-offer__save{ font-size: 12px; }

/* ---- List/deal card variant ---- */
.enxoval-offer--list{
  flex-direction: row;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}
.enxoval-offer--list .enxoval-offer__prices{
  flex-direction: row;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}
.enxoval-offer--list .enxoval-offer__discount-badge{ font-size: 13px; }
.enxoval-offer--list .enxoval-offer__was{ font-size: 14px; }
.enxoval-offer--list .enxoval-offer__now{ font-size: 18px; }

/* ---- Product page variant (largest) ---- */
.enxoval-offer--page .enxoval-offer__discount-badge{ font-size: 16px; padding: 8px 14px; }
.enxoval-offer--page .enxoval-offer__was{ font-size: 16px; }
.enxoval-offer--page .enxoval-offer__now{ font-size: 30px; }
.enxoval-offer--page .enxoval-offer__save{ font-size: 14px; }

/* Product page template override (price was inside a small pill — remove that) */
body.single-product_card .enxoval-offer--page .enxoval-offer__now{
  background: none;
  padding: 0;
  border-radius: 0;
  font-size: 28px;
}

/* ---- Mobile badge scaling ---- */
@media (max-width: 760px){
  .enxoval-offer__discount-badge{ font-size: 11px; padding: 4px 7px; }
  .enxoval-offer--page .enxoval-offer__discount-badge{ font-size: 13px; padding: 6px 10px; }
}

/* ---------- Out-of-stock ---------- */
.enxoval-badge--oos,
.enxoval-pill--oos{
  background: rgba(220, 53, 69, .12);
  color: #b02a37;
}

.enxoval-price--oos,
.enxoval-product-price-oos{
  color: var(--muted);
  font-weight: 700;
  font-size: .85em;
}
