/* Porto Vinhos — store layout (header, footer, drawer, cards, product page) */

:root {
  --pv-wine: #722F37;
  --pv-wine-dark: #581820;
  --pv-gold: #f4c542;
  --pv-gold-dark: #e0a90c;
  --pv-text: #1a1a1a;
  --pv-muted: #6b7280;
  --pv-border: #e5e7eb;
  --pv-bg: #fafafa;
  --pv-success: #16a34a;
  --pv-danger: #dc2626;
}

.pv-mobile-menu[hidden],
.pv-cart-drawer[hidden],
.pv-cart-overlay[hidden] {
  display: none !important;
}

html, body { background: #ffffff; color: var(--pv-text); }
body.pv-no-scroll { overflow: hidden; }

.pv-container { max-width: 1200px; margin: 0 auto; padding: 0 1rem; }

/* ============= TOPBAR + HEADER ============= */
.pv-topbar {
  background: var(--pv-wine-dark);
  color: #fff;
  font-size: 12px;
}
.pv-topbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 1rem;
}
.pv-topbar-left { opacity: 0.85; }
.pv-topbar-right { display: flex; align-items: center; gap: 1.25rem; }
.pv-topbar-right a {
  color: #fff; text-decoration: none; opacity: 0.85; transition: opacity .15s;
}
.pv-topbar-right a:hover { opacity: 1; }

.pv-cart-toggle {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff; cursor: pointer;
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 6px 12px; border-radius: 999px;
  font-size: 12px; font-weight: 600;
}
.pv-cart-toggle:hover { background: rgba(255,255,255,0.22); }

.pv-header {
  background: #fff; border-bottom: 1px solid var(--pv-border);
  position: sticky; top: 0; z-index: 30;
}
.pv-header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 1rem; gap: 1rem;
}
.pv-logo img { height: 48px; width: auto; object-fit: contain; }
.pv-mainnav {
  display: flex; align-items: center; gap: 1.5rem;
  font-size: 14px; font-weight: 600;
}
.pv-mainnav a {
  color: var(--pv-text); text-decoration: none; padding: 6px 2px;
  border-bottom: 2px solid transparent; transition: all .15s;
}
.pv-mainnav a:hover { color: var(--pv-wine); border-color: var(--pv-wine); }
.pv-link-highlight {
  background: linear-gradient(90deg, var(--pv-gold), var(--pv-gold-dark));
  color: var(--pv-wine-dark) !important;
  padding: 6px 12px !important;
  border-radius: 999px;
  border-bottom: 0 !important;
}
.pv-mobile-menu-toggle {
  display: none; background: none; border: 0; cursor: pointer; color: var(--pv-text);
}
.pv-mobile-menu {
  display: flex; flex-direction: column;
  padding: 0.5rem 1rem 1rem;
  border-top: 1px solid var(--pv-border);
}
.pv-mobile-menu a {
  padding: 12px 0; text-decoration: none; color: var(--pv-text);
  font-weight: 600; border-bottom: 1px solid var(--pv-border);
}

@media (max-width: 820px) {
  .pv-mainnav { display: none; }
  .pv-mobile-menu-toggle { display: inline-flex; }
  .pv-topbar-left { display: none; }
}

/* ============= FOOTER ============= */
.pv-footer {
  background: #1a1a1a;
  color: #d6d6d6;
  margin-top: 4rem;
  padding: 3rem 0 1rem;
}
.pv-footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2rem;
}
.pv-footer-col h4 {
  color: #fff; font-size: 14px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  margin: 0 0 1rem;
}
.pv-footer-col ul { list-style: none; padding: 0; margin: 0; }
.pv-footer-col li { margin: 8px 0; }
.pv-footer-col a {
  color: #d6d6d6; text-decoration: none; font-size: 14px;
  transition: color .15s;
}
.pv-footer-col a:hover { color: var(--pv-gold); }
.pv-footer-col p { font-size: 14px; line-height: 1.5; margin: 0; }
.pv-footer-logo { height: 40px; margin-bottom: 1rem; filter: brightness(0) invert(1); }
.pv-pay-icons { display: flex; gap: 8px; flex-wrap: wrap; }
.pv-pay-badge {
  background: rgba(255,255,255,0.08); padding: 6px 10px;
  border-radius: 6px; font-size: 11px; font-weight: 700; letter-spacing: 0.05em;
}
.pv-social {
  display: flex; gap: 8px;
}
.pv-social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,0.08); color: #fff; font-weight: 700;
}
.pv-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 2.5rem; padding-top: 1rem;
  font-size: 12px; opacity: 0.7; text-align: center;
}
@media (max-width: 720px) {
  .pv-footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .pv-footer-grid { grid-template-columns: 1fr; }
}

/* ============= CART DRAWER ============= */
.pv-cart-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.5);
  z-index: 50; animation: pv-fade .2s ease;
}
.pv-cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: 380px; max-width: 100vw;
  background: #fff; z-index: 51;
  display: flex; flex-direction: column;
  box-shadow: -10px 0 30px rgba(0,0,0,0.2);
  animation: pv-slide-in .25s ease;
}
@keyframes pv-fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes pv-slide-in { from { transform: translateX(100%); } to { transform: translateX(0); } }
.pv-drawer-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.25rem; border-bottom: 1px solid var(--pv-border);
}
.pv-drawer-header h3 { margin: 0; font-size: 18px; font-weight: 700; }
.pv-drawer-header button {
  background: none; border: 0; cursor: pointer; font-size: 24px; line-height: 1;
}
.pv-drawer-body { flex: 1; overflow-y: auto; padding: 1rem 1.25rem; }
.pv-drawer-empty { text-align: center; color: var(--pv-muted); padding: 2rem 0; }
.pv-drawer-item {
  display: grid; grid-template-columns: 64px 1fr auto; gap: 0.75rem;
  align-items: flex-start;
  padding: 1rem 0; border-bottom: 1px solid var(--pv-border);
}
.pv-drawer-item img { width: 64px; height: 64px; object-fit: contain; }
.pv-drawer-item-info { min-width: 0; }
.pv-drawer-item-name {
  margin: 0 0 4px; font-size: 13px; font-weight: 700;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden;
}
.pv-drawer-item-price { margin: 0 0 6px; font-size: 12px; color: var(--pv-muted); }
.pv-drawer-item-sub { font-size: 14px; color: var(--pv-wine); }
.pv-qty {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600;
}
.pv-qty button {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--pv-bg); border: 1px solid var(--pv-border); cursor: pointer;
  font-weight: 700; color: var(--pv-wine);
}
.pv-drawer-remove {
  width: auto !important; border-radius: 4px !important; padding: 0 8px;
  font-size: 11px; color: var(--pv-muted) !important;
}
.pv-drawer-footer {
  padding: 1rem 1.25rem; border-top: 1px solid var(--pv-border);
  display: flex; flex-direction: column; gap: 8px;
}
.pv-drawer-totals {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 4px;
}
.pv-drawer-totals strong { font-size: 22px; color: var(--pv-wine); }

/* ============= BUTTONS ============= */
.pv-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 20px; border-radius: 999px;
  font-weight: 700; font-size: 14px; text-decoration: none;
  text-transform: uppercase; letter-spacing: 0.05em;
  cursor: pointer; border: 0; transition: all .15s;
}
.pv-btn-primary {
  background: linear-gradient(90deg, var(--pv-wine), var(--pv-wine-dark));
  color: #fff;
  box-shadow: 0 8px 20px rgba(114,47,55,0.25);
}
.pv-btn-primary:hover { transform: translateY(-1px); box-shadow: 0 12px 24px rgba(114,47,55,0.35); }
.pv-btn-secondary {
  background: #fff; color: var(--pv-wine);
  border: 2px solid var(--pv-wine);
}
.pv-btn-ghost {
  background: transparent; color: var(--pv-muted);
  border: 1px solid var(--pv-border);
}
.pv-btn-block { width: 100%; }

/* ============= BREADCRUMBS ============= */
.pv-breadcrumb {
  background: var(--pv-bg); border-bottom: 1px solid var(--pv-border);
  font-size: 13px; color: var(--pv-muted);
}
.pv-breadcrumb-inner {
  padding: 12px 1rem; display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
}
.pv-breadcrumb a { color: var(--pv-muted); text-decoration: none; }
.pv-breadcrumb a:hover { color: var(--pv-wine); }
.pv-breadcrumb .pv-breadcrumb-sep { opacity: 0.5; }

/* ============= PRODUCT CARD (grids) ============= */
.pv-product-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem;
}
@media (max-width: 1024px) { .pv-product-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px) { .pv-product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px) { .pv-product-grid { grid-template-columns: 1fr; } }

.pv-product-card {
  display: block; background: #fff; border: 1px solid var(--pv-border);
  border-radius: 12px; overflow: hidden; text-decoration: none; color: inherit;
  transition: all .2s;
}
.pv-product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  border-color: var(--pv-wine);
}
.pv-card-imgwrap {
  position: relative; background: linear-gradient(180deg, #fafafa, #f0f0f0);
  height: 220px; display: flex; align-items: center; justify-content: center;
}
.pv-card-imgwrap img { max-width: 70%; max-height: 90%; object-fit: contain; }
.pv-card-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--pv-danger); color: #fff; padding: 4px 10px;
  border-radius: 999px; font-size: 11px; font-weight: 700;
}
.pv-card-info { padding: 1rem; }
.pv-card-region {
  margin: 0; font-size: 10px; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--pv-muted);
}
.pv-card-name {
  margin: 6px 0; font-size: 15px; font-weight: 700; line-height: 1.3;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden; min-height: 2.6em;
}
.pv-card-rating { font-size: 12px; color: #f59e0b; margin-bottom: 8px; }
.pv-card-rating span { color: var(--pv-muted); margin-left: 4px; }
.pv-card-price { display: flex; align-items: baseline; gap: 8px; margin-bottom: 8px; }
.pv-card-original { text-decoration: line-through; color: #999; font-size: 12px; }
.pv-card-final { color: var(--pv-wine); font-weight: 800; font-size: 18px; }
.pv-card-payment { font-size: 11px; color: var(--pv-muted); margin: 0 0 8px; }
.pv-card-cta { font-size: 12px; color: var(--pv-wine); font-weight: 700; }

/* ============= PRODUCT PAGE ============= */
.pv-product-hero {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem;
  padding: 2rem 1rem;
  max-width: 1200px; margin: 0 auto;
}
@media (max-width: 820px) {
  .pv-product-hero { grid-template-columns: 1fr; gap: 1.5rem; padding: 1.5rem 1rem; }
}
.pv-product-gallery {
  position: relative; background: linear-gradient(180deg, #fafafa, #f0f0f0);
  border-radius: 16px; padding: 2rem; min-height: 400px;
  display: flex; align-items: center; justify-content: center;
}
.pv-product-gallery img { max-width: 80%; max-height: 480px; object-fit: contain; }
.pv-product-gallery .pv-card-badge { font-size: 14px; padding: 6px 14px; top: 16px; left: 16px; }
.pv-product-region {
  margin: 0 0 4px; font-size: 12px; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--pv-muted); font-weight: 600;
}
.pv-product-title {
  margin: 0; font-size: 28px; font-weight: 800; line-height: 1.15;
}
.pv-product-subtitle { margin: 4px 0 0; font-size: 16px; color: var(--pv-muted); font-style: italic; }
.pv-product-code { margin-top: 6px; font-size: 11px; color: var(--pv-muted); }
.pv-product-rating { display: flex; align-items: center; gap: 8px; margin: 1rem 0; }
.pv-product-rating .pv-stars { color: #f59e0b; font-size: 16px; }
.pv-product-rating a { font-size: 13px; color: var(--pv-muted); text-decoration: underline; }

.pv-price-block { margin: 1.25rem 0; }
.pv-price-original { color: #999; text-decoration: line-through; font-size: 16px; }
.pv-price-current { color: var(--pv-wine); font-size: 36px; font-weight: 900; line-height: 1; }
.pv-price-save { font-size: 13px; color: var(--pv-success); font-weight: 700; margin-top: 4px; }

.pv-section-label {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.15em; color: var(--pv-muted); margin: 1.25rem 0 8px;
}

.pv-variants { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
@media (max-width: 480px) { .pv-variants { grid-template-columns: 1fr; } }
.pv-variant-card {
  border: 2px solid var(--pv-border); border-radius: 10px;
  padding: 12px; cursor: pointer; background: #fff;
  text-align: left; transition: all .15s;
}
.pv-variant-card.selected {
  border-color: var(--pv-wine); background: rgba(114,47,55,0.04);
}
.pv-variant-card .pv-vlabel { font-size: 13px; font-weight: 700; }
.pv-variant-card .pv-vqty { font-size: 11px; color: var(--pv-muted); }
.pv-variant-card .pv-vprice { font-size: 14px; font-weight: 800; color: var(--pv-wine); margin-top: 4px; }

.pv-qty-selector {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--pv-bg); padding: 6px 10px; border-radius: 10px;
}
.pv-qty-selector button {
  width: 32px; height: 32px; border-radius: 50%;
  background: #fff; border: 1px solid var(--pv-border);
  cursor: pointer; font-size: 18px; font-weight: 700; color: var(--pv-wine);
}
.pv-qty-selector span { min-width: 24px; text-align: center; font-weight: 700; }

.pv-cta-row { display: flex; flex-direction: column; gap: 10px; margin-top: 1.25rem; }

.pv-trust-list {
  list-style: none; padding: 0; margin: 1.5rem 0 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
}
@media (max-width: 480px) { .pv-trust-list { grid-template-columns: 1fr; } }
.pv-trust-list li {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 13px; color: #333;
}
.pv-trust-list .pv-tick { color: var(--pv-success); font-weight: 900; }

/* ============= PRODUCT SECTIONS ============= */
.pv-section {
  max-width: 1200px; margin: 0 auto; padding: 2rem 1rem;
  border-top: 1px solid var(--pv-border);
}
.pv-section h2 {
  font-size: 22px; font-weight: 800; margin: 0 0 1.25rem;
}

.pv-spec-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px 2rem;
}
@media (max-width: 600px) { .pv-spec-grid { grid-template-columns: 1fr; } }
.pv-spec-row {
  display: flex; justify-content: space-between; gap: 1rem;
  padding: 10px 0; border-bottom: 1px dashed var(--pv-border); font-size: 14px;
}
.pv-spec-row span:first-child { color: var(--pv-muted); }
.pv-spec-row span:last-child { font-weight: 600; text-align: right; }

.pv-longdesc h3 {
  margin: 1.25rem 0 6px; font-size: 16px; font-weight: 700; color: var(--pv-wine);
}
.pv-longdesc p { margin: 0 0 1rem; line-height: 1.6; color: #333; font-size: 15px; }

/* ============= REVIEWS ============= */
.pv-reviews-summary {
  display: grid; grid-template-columns: 220px 1fr; gap: 2rem;
  background: var(--pv-bg); border-radius: 12px; padding: 1.5rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 600px) { .pv-reviews-summary { grid-template-columns: 1fr; gap: 1rem; } }
.pv-reviews-score { text-align: center; }
.pv-reviews-score .pv-bigscore { font-size: 56px; font-weight: 900; color: var(--pv-wine); line-height: 1; }
.pv-reviews-score .pv-stars { color: #f59e0b; font-size: 22px; margin: 8px 0; }
.pv-reviews-score p { margin: 0; font-size: 13px; color: var(--pv-muted); }
.pv-reviews-bars { display: flex; flex-direction: column; gap: 6px; }
.pv-reviews-bar {
  display: grid; grid-template-columns: 50px 1fr 40px; gap: 8px;
  align-items: center; font-size: 12px;
}
.pv-reviews-bar .pv-track {
  background: var(--pv-border); height: 8px; border-radius: 4px; overflow: hidden;
}
.pv-reviews-bar .pv-fill { background: #f59e0b; height: 100%; }

.pv-review-list { display: flex; flex-direction: column; gap: 1rem; }
.pv-review {
  background: #fff; border: 1px solid var(--pv-border); border-radius: 10px;
  padding: 1rem;
}
.pv-review-head {
  display: flex; align-items: center; gap: 8px; justify-content: space-between;
  font-size: 13px; margin-bottom: 6px;
}
.pv-review-head .pv-author { font-weight: 700; }
.pv-review-head .pv-date { color: var(--pv-muted); font-size: 12px; }
.pv-review-head .pv-verified {
  font-size: 11px; background: rgba(22,163,74,0.1); color: var(--pv-success);
  padding: 2px 8px; border-radius: 999px; font-weight: 700;
}
.pv-review .pv-stars { color: #f59e0b; font-size: 14px; margin-bottom: 6px; }
.pv-review p { margin: 0 0 8px; font-size: 14px; line-height: 1.5; color: #333; }
.pv-review-microratings {
  display: flex; gap: 1rem; font-size: 12px; color: var(--pv-muted); flex-wrap: wrap;
}

/* ============= HOMEPAGE / HERO ============= */
.pv-hero {
  background: linear-gradient(135deg, var(--pv-wine), var(--pv-wine-dark));
  color: #fff; padding: 3.5rem 1rem;
}
.pv-hero-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: center;
}
@media (max-width: 820px) { .pv-hero-inner { grid-template-columns: 1fr; text-align: center; } }
.pv-hero h1 {
  font-size: 36px; line-height: 1.1; margin: 0 0 1rem; text-transform: uppercase;
  letter-spacing: -0.02em;
}
.pv-hero h1 .pv-hero-accent {
  background: linear-gradient(90deg, var(--pv-gold), var(--pv-gold-dark));
  color: var(--pv-wine-dark); padding: 2px 12px; border-radius: 8px;
  display: inline-block;
}
.pv-hero p { font-size: 16px; opacity: 0.92; line-height: 1.5; max-width: 480px; }
.pv-hero-img { display: flex; justify-content: center; }
.pv-hero-img img { max-width: 320px; max-height: 360px; filter: drop-shadow(0 20px 30px rgba(0,0,0,0.4)); }

.pv-banner {
  background: linear-gradient(90deg, var(--pv-wine), var(--pv-wine-dark));
  color: #fff; padding: 1.25rem 1rem; text-align: center;
  margin: 2rem auto; max-width: 1200px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap;
}
.pv-banner b { font-size: 18px; }
.pv-banner .pv-btn { padding: 10px 18px; font-size: 13px; background: var(--pv-gold); color: var(--pv-wine-dark); }

.pv-page-header {
  max-width: 1200px; margin: 0 auto; padding: 2rem 1rem 1rem;
}
.pv-page-header h1 { font-size: 28px; font-weight: 800; margin: 0 0 4px; }
.pv-page-header p { color: var(--pv-muted); margin: 0; }

/* Stars unicode helper */
.pv-stars-mini { letter-spacing: 1px; }

/* ============= WHATSAPP FLOAT ============= */
.pv-whatsapp-float {
  position: fixed; bottom: 20px; right: 20px;
  background: #25d366; color: #fff;
  border-radius: 999px; padding: 12px 18px;
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: 14px; text-decoration: none;
  box-shadow: 0 10px 30px rgba(37,211,102,0.4);
  z-index: 40; transition: transform .15s;
}
.pv-whatsapp-float:hover { transform: scale(1.05); }
@media (max-width: 480px) {
  .pv-whatsapp-float span { display: none; }
  .pv-whatsapp-float { padding: 14px; }
}

/* ============= HOMEPAGE — HERO BANNER ============= */
.pv-hero-banner {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--pv-wine-dark), var(--pv-wine));
  color: #fff;
  min-height: 380px;
  display: flex; align-items: center;
}
.pv-hero-banner-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.35; mix-blend-mode: overlay;
}
.pv-hero-banner-inner {
  position: relative; z-index: 1;
  max-width: 1200px; margin: 0 auto; padding: 3rem 1rem;
  width: 100%; text-align: center;
}
.pv-hero-banner h1 {
  font-size: 48px; line-height: 1.05; margin: 0;
  letter-spacing: 0.05em; text-transform: uppercase; font-weight: 900;
  text-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
.pv-hero-banner p {
  font-size: 18px; margin: 1rem auto 1.75rem;
  max-width: 540px; opacity: 0.95;
}
@media (max-width: 600px) {
  .pv-hero-banner { min-height: 280px; }
  .pv-hero-banner h1 { font-size: 32px; }
  .pv-hero-banner p { font-size: 15px; }
}

/* ============= 3 CARDS DE BENEFÍCIOS ============= */
.pv-benefits {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
  max-width: 1200px; margin: 2rem auto; padding: 0 1rem;
}
@media (max-width: 720px) { .pv-benefits { grid-template-columns: 1fr; } }
.pv-benefit-card {
  background: #fff; border: 1px solid var(--pv-border);
  border-radius: 12px; padding: 1.25rem 1.5rem;
  display: flex; align-items: center; gap: 1rem;
}
.pv-benefit-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: rgba(114,47,55,0.08); color: var(--pv-wine);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 22px;
}
.pv-benefit-card strong { display: block; font-size: 14px; }
.pv-benefit-card span { display: block; font-size: 12px; color: var(--pv-muted); }

/* ============= BANNER ÚLTIMAS UNIDADES + COUNTDOWN ============= */
.pv-offers-banner {
  background: linear-gradient(135deg, #1a1a1a, var(--pv-wine-dark));
  color: #fff; padding: 2rem 1rem; text-align: center; margin: 2rem 0;
}
.pv-offers-banner .pv-stock-tag {
  display: inline-block; background: rgba(244,197,66,0.2); color: var(--pv-gold);
  padding: 4px 12px; border-radius: 999px; font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 8px;
}
.pv-offers-banner h2 {
  font-size: 28px; font-weight: 900; text-transform: uppercase;
  margin: 0; letter-spacing: 0.05em;
}
.pv-offers-banner p {
  margin: 6px 0 1rem; opacity: 0.85; font-size: 14px;
}
.pv-countdown {
  display: inline-flex; gap: 0.5rem; font-family: 'Courier New', monospace;
  font-size: 28px; font-weight: 800;
  background: rgba(0,0,0,0.3); padding: 8px 18px; border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.1);
}
.pv-countdown b {
  color: var(--pv-gold); min-width: 2.2ch; display: inline-block;
}
.pv-countdown small {
  display: block; font-size: 9px; opacity: 0.7; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  font-family: inherit;
}
.pv-countdown-unit { text-align: center; }
.pv-countdown-sep { opacity: 0.4; }

/* ============= DESTAQUES 2 GRANDES ============= */
.pv-featured-two {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem;
  max-width: 1200px; margin: 0 auto 2rem; padding: 0 1rem;
}
@media (max-width: 720px) { .pv-featured-two { grid-template-columns: 1fr; } }

/* ============= MARIDAGENS ============= */
.pv-harmonizacao-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
  max-width: 1200px; margin: 0 auto; padding: 0 1rem;
}
@media (max-width: 720px) { .pv-harmonizacao-grid { grid-template-columns: repeat(2, 1fr); } }
.pv-harm-card {
  background: #fff; border: 1px solid var(--pv-border);
  border-radius: 12px; padding: 1.5rem 1rem; text-align: center;
  text-decoration: none; color: var(--pv-text);
  transition: all .15s;
}
.pv-harm-card:hover {
  border-color: var(--pv-wine);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.06);
}
.pv-harm-icon { font-size: 36px; margin-bottom: 8px; }
.pv-harm-name { font-size: 14px; font-weight: 700; }

/* ============= QUICK FACTS (Sobre o vinho) ============= */
.pv-quickfacts-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
  margin: 1.25rem 0;
}
.pv-quickfact {
  display: flex; flex-direction: column; align-items: center;
  gap: 2px; padding: 12px 8px;
  background: var(--pv-bg); border-radius: 12px;
  text-align: center;
}
.pv-qf-icon { font-size: 20px; }
.pv-qf-label { font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--pv-muted); font-weight: 600; }
.pv-qf-value { font-size: 13px; font-weight: 700; color: var(--pv-text); }
@media (max-width: 480px) { .pv-quickfacts-grid { grid-template-columns: repeat(2, 1fr); } }

/* ============= REVIEWS — bloco recomenda + agg micros ============= */
.pv-recommend {
  margin: 0 0 1rem; padding: 10px 12px;
  background: rgba(22,163,74,0.08); border-left: 3px solid var(--pv-success);
  border-radius: 6px; font-size: 13px; color: #1a3a1a;
}
.pv-recommend b { color: var(--pv-success); }

.pv-agg-micros {
  display: flex; flex-direction: column; gap: 4px;
  margin-top: 1rem; font-size: 12px; color: var(--pv-muted);
}
.pv-agg-micros span b { color: var(--pv-text); font-weight: 700; }

/* ============= HERO SLIDER ============= */
.pv-hero-slider {
  position: relative; overflow: hidden;
  min-height: 420px;
  background: #1a1a1a;
}
.pv-slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 0.8s ease;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
}
.pv-slide.active { opacity: 1; position: relative; pointer-events: auto; }
.pv-slide-bg {
  position: absolute; inset: 0;
}
.pv-slide-content {
  position: relative; z-index: 1;
  text-align: center; color: #fff;
  padding: 3rem 1rem;
  max-width: 700px;
}
.pv-slide-accent {
  display: inline-block;
  background: linear-gradient(90deg, var(--pv-gold), var(--pv-gold-dark));
  color: var(--pv-wine-dark);
  padding: 6px 20px; border-radius: 999px;
  font-size: 12px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.2em;
  margin-bottom: 1.25rem;
}
.pv-slide-content h1 {
  font-size: 36px; font-weight: 900;
  text-transform: uppercase; letter-spacing: 0.02em;
  line-height: 1.1; margin: 0 0 1.5rem;
  text-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
.pv-slider-dots {
  position: absolute; bottom: 20px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 5;
}
.pv-dot {
  width: 12px; height: 12px; border-radius: 50%;
  background: rgba(255,255,255,0.4); border: 0;
  cursor: pointer; transition: all .2s;
}
.pv-dot.active { background: var(--pv-gold); transform: scale(1.2); }
@media (max-width: 600px) {
  .pv-hero-slider { min-height: 320px; }
  .pv-slide-content h1 { font-size: 26px; }
  .pv-slide-accent { font-size: 10px; padding: 4px 14px; }
}

/* ============= ÚLTIMAS UNIDADES BANNER ============= */
.pv-ultimas-banner {
  max-width: 1200px; margin: 0 auto 2rem; padding: 0 1rem;
}
.pv-ultimas-inner {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; text-decoration: none; color: #fff;
  background: linear-gradient(135deg, #dc2626, #b91c1c, #991b1b);
  padding: 2rem 1.5rem; border-radius: 16px;
  transition: transform .15s;
}
.pv-ultimas-inner:hover { transform: translateY(-2px); }
.pv-ultimas-tag {
  display: inline-block; background: rgba(255,255,255,0.2);
  padding: 4px 14px; border-radius: 999px;
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.15em; margin-bottom: 8px;
}
.pv-ultimas-inner h2 {
  font-size: 28px; font-weight: 900; text-transform: uppercase;
  margin: 0; letter-spacing: 0.05em;
}
.pv-ultimas-inner p {
  margin: 6px 0 0; opacity: 0.9; font-size: 14px;
}

/* ============= FEATURED PRODUCT CARDS (2 grandes) ============= */
.pv-featured-card {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #1a1a1a, #2a1015, #581820);
  border-radius: 16px;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center;
  text-decoration: none; color: #fff;
  min-height: 320px;
  transition: transform .15s, box-shadow .15s;
}
.pv-featured-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.pv-featured-card-bg {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 50%, rgba(114,47,55,0.3) 0%, transparent 60%);
}
.pv-featured-card-content {
  position: relative; z-index: 1;
  padding: 2rem;
}
.pv-featured-tagline {
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.2em;
  opacity: 0.7; margin: 0 0 0.75rem; line-height: 1.5;
}
.pv-featured-card-content h3 {
  font-size: 20px; font-weight: 800; line-height: 1.2;
  margin: 0 0 1rem;
}
.pv-featured-prices {
  display: flex; align-items: flex-end; gap: 1rem;
  margin-bottom: 0.5rem;
}
.pv-featured-original {
  font-size: 14px; text-decoration: line-through; opacity: 0.6;
}
.pv-featured-promo {
  font-size: 14px; line-height: 1.2;
}
.pv-featured-promo b {
  font-size: 32px; font-weight: 900; color: var(--pv-gold);
  display: block;
}
.pv-featured-payment {
  font-size: 11px; opacity: 0.7; margin: 0.5rem 0 1rem;
}
.pv-featured-card-img {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: center;
  padding: 1rem;
}
.pv-featured-card-img img {
  max-width: 180px; max-height: 260px; object-fit: contain;
  filter: drop-shadow(0 20px 30px rgba(0,0,0,0.5));
}
@media (max-width: 720px) {
  .pv-featured-card { grid-template-columns: 1fr; min-height: auto; }
  .pv-featured-card-img { padding: 0 2rem 2rem; }
  .pv-featured-card-img img { max-width: 140px; }
  .pv-featured-card-content h3 { font-size: 17px; }
  .pv-featured-promo b { font-size: 26px; }
}

/* ============= URGENCY BANNER + BREADCRUMB CURRENT ============= */
.pv-urgency-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(90deg, #722F37, #581820);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 10px 14px;
  border-radius: 10px;
  margin: 0.75rem 0 1rem;
  box-shadow: 0 4px 12px rgba(114, 47, 55, 0.25);
}

.pv-breadcrumb-current {
  color: var(--pv-text);
  font-weight: 600;
}

/* ============= W-022 SCOPED OVERRIDES (Pêra-Manca) ============= */
body[data-product-id="w-022"] .pv-card-badge.pv-badge-off {
  background: var(--pv-wine-dark);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  padding: 6px 12px;
  border-radius: 999px;
  letter-spacing: 0.04em;
  top: 16px; left: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.18);
}

body[data-product-id="w-022"] .pv-product-title {
  font-size: 26px;
  line-height: 1.2;
  color: var(--pv-text);
}
body[data-product-id="w-022"] .pv-product-subtitle {
  font-style: normal;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  color: var(--pv-muted);
  margin-top: 6px;
}

body[data-product-id="w-022"] .pv-variants {
  grid-template-columns: 1fr;
  gap: 10px;
}
body[data-product-id="w-022"] .pv-variant-card {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 12px;
  align-items: center;
  padding: 10px 14px;
}
body[data-product-id="w-022"] .pv-variant-card .pv-vthumb {
  width: 56px; height: 56px;
  background: #fafafa;
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
body[data-product-id="w-022"] .pv-variant-card .pv-vthumb img {
  max-width: 100%; max-height: 100%; object-fit: contain;
}
body[data-product-id="w-022"] .pv-variant-card .pv-vinfo {
  display: flex; flex-direction: column; gap: 2px;
}
body[data-product-id="w-022"] .pv-variant-card .pv-vqty {
  font-size: 11px;
}

body[data-product-id="w-022"] .pv-w022-single-cta #pv-buy-now {
  display: none;
}
body[data-product-id="w-022"] .pv-w022-single-cta #pv-add-cart {
  background: var(--pv-wine);
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  padding: 14px 20px;
  width: 100%;
  border: 0;
  border-radius: 10px;
  text-transform: none;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: background .15s;
}
body[data-product-id="w-022"] .pv-w022-single-cta #pv-add-cart:hover {
  background: var(--pv-wine-dark);
}

body[data-product-id="w-022"] .pv-trust-pill {
  margin: 1.25rem 0 0;
  padding: 12px 16px;
  background: #f8f5f0;
  border: 1px solid #ead9c0;
  border-radius: 8px;
  font-size: 13px;
  color: #4a3a20;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}
body[data-product-id="w-022"] .pv-trust-pill .pv-trust-sep {
  opacity: 0.5;
}

body[data-product-id="w-022"] .pv-section-eyebrow {
  max-width: 1200px;
  margin: 2rem auto 0;
  padding: 0 1rem;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--pv-muted);
}
body[data-product-id="w-022"] .pv-section-eyebrow + .pv-section {
  border-top: 0;
  padding-top: 0.5rem;
}

body[data-product-id="w-022"] .pv-desc-sub {
  margin: 0 0 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--pv-wine);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

body[data-product-id="w-022"] .pv-quickfacts-grid.pv-w022-plain {
  grid-template-columns: 1fr 1fr;
  gap: 0 2rem;
}
body[data-product-id="w-022"] .pv-quickfacts-grid.pv-w022-plain .pv-quickfact {
  flex-direction: row;
  justify-content: space-between;
  align-items: baseline;
  background: transparent;
  border-bottom: 1px dashed var(--pv-border);
  border-radius: 0;
  padding: 10px 0;
  text-align: left;
}
body[data-product-id="w-022"] .pv-quickfacts-grid.pv-w022-plain .pv-qf-label {
  font-size: 13px;
  color: var(--pv-muted);
  letter-spacing: 0.05em;
}
body[data-product-id="w-022"] .pv-quickfacts-grid.pv-w022-plain .pv-qf-value {
  font-size: 14px;
  font-weight: 700;
  text-align: right;
}

@media (max-width: 600px) {
  body[data-product-id="w-022"] .pv-quickfacts-grid.pv-w022-plain {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* ----- W-022 polish (final round) ----- */

body[data-product-id="w-022"] .pv-product-gallery {
  background: #f5f5f5;
  padding: 2.5rem;
  min-height: 460px;
}

body[data-product-id="w-022"] .pv-product-rating .pv-stars {
  font-size: 18px;
}

body[data-product-id="w-022"] .pv-section {
  border-top: 1px solid rgba(0,0,0,0.06);
}

body[data-product-id="w-022"] .pv-quickfacts-grid.pv-w022-plain .pv-qf-value {
  color: var(--pv-wine);
  font-weight: 700;
}

body[data-product-id="w-022"] .pv-trust-pill {
  gap: 6px;
}

body[data-product-id="w-022"] section.pv-product-hero {
  animation: pv-w022-fade-in .4s ease-out both;
}
@keyframes pv-w022-fade-in {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

body[data-product-id="w-022"] .pv-review {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 12px;
  align-items: start;
}
body[data-product-id="w-022"] .pv-review-avatar {
  grid-row: span 5;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--pv-wine-dark);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  user-select: none;
}

body[data-product-id="w-022"] .pv-verified.pv-verified-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #ecfdf5;
  border: 1px solid #bbf7d0;
  color: #16a34a;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 999px;
  text-transform: none;
  letter-spacing: 0;
}

/* ============= W-022 SCREENSHOT-FAITHFUL OVERRIDES ============= */

/* Hide legacy bits */
body[data-product-id="w-022"] .pv-product-code,
body[data-product-id="w-022"] .pv-urgency-banner,
body[data-product-id="w-022"] .pv-trust-pill,
body[data-product-id="w-022"] .pv-w022-single-cta,
body[data-product-id="w-022"] .pv-review-avatar,
body[data-product-id="w-022"] .pv-section-eyebrow { display: none !important; }

/* Card wrapper that hosts hero on the reference */
body[data-product-id="w-022"] .pv-w022-hero {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04), 0 8px 24px rgba(0,0,0,0.04);
  padding: 1.5rem;
  max-width: 1200px;
  margin: 1rem auto 0;
}
body[data-product-id="w-022"] .pv-w022-hero .pv-product-gallery {
  background: #f7f7f7;
  border-radius: 12px;
  padding: 2rem;
}

/* Yellow star palette */
.pv-stars.pv-stars-yellow { color: #f59e0b; letter-spacing: 1px; }

/* Hero rating block */
body[data-product-id="w-022"] .pv-w022-rating { margin-top: 0; margin-bottom: 10px; }
body[data-product-id="w-022"] .pv-w022-rating .pv-stars { font-size: 18px; }
body[data-product-id="w-022"] .pv-w022-rating a {
  font-size: 13px;
  color: var(--pv-muted);
  text-decoration: none;
  margin-left: 4px;
}

body[data-product-id="w-022"] .pv-product-title {
  color: #1a1a1a;
  font-weight: 800;
  font-size: 28px;
  line-height: 1.2;
}
body[data-product-id="w-022"] .pv-product-subtitle {
  font-style: normal;
  font-size: 14px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--pv-muted);
  margin: 8px 0 1rem;
  font-weight: 500;
}

/* País / Ano / Volume row */
body[data-product-id="w-022"] .pv-w022-specrow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 1.5rem;
  margin: 0.5rem 0 1rem;
  font-size: 14px;
}
body[data-product-id="w-022"] .pv-w022-specrow > div { display: flex; gap: 6px; align-items: baseline; }
body[data-product-id="w-022"] .pv-w022-specrow span { color: var(--pv-muted); }
body[data-product-id="w-022"] .pv-w022-specrow b { color: #1a1a1a; font-weight: 700; }

/* Price block tweaks for w-022 */
body[data-product-id="w-022"] .pv-price-original { font-size: 14px; }
body[data-product-id="w-022"] .pv-price-current { font-size: 42px; }
body[data-product-id="w-022"] .pv-price-block { margin: 0.75rem 0 0.5rem; }

/* Payment text with green links */
body[data-product-id="w-022"] .pv-w022-paytext {
  font-size: 13px;
  color: var(--pv-muted);
  margin: 0 0 1rem;
}
.pv-pay-link {
  color: var(--pv-success);
  font-weight: 700;
  text-decoration: none;
}
.pv-pay-link:hover { text-decoration: underline; }

/* Variants — vertical stacked with radio */
body[data-product-id="w-022"] .pv-w022-variants {
  grid-template-columns: 1fr;
  gap: 10px;
}
body[data-product-id="w-022"] .pv-w022-variants .pv-variant-card {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr 24px;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1.5px solid var(--pv-border);
}
body[data-product-id="w-022"] .pv-w022-variants .pv-variant-card.selected {
  border-color: var(--pv-wine);
  background: rgba(114,47,55,0.04);
}
body[data-product-id="w-022"] .pv-w022-variants .pv-vradio {
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 1.5px solid #cfcfcf;
  background: #fff;
  position: relative;
  justify-self: end;
  transition: all .15s ease;
}
body[data-product-id="w-022"] .pv-w022-variants .pv-variant-card.selected .pv-vradio {
  border-color: var(--pv-wine);
  background: var(--pv-wine);
}
body[data-product-id="w-022"] .pv-w022-variants .pv-variant-card.selected .pv-vradio::after {
  content: '';
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: #fff;
}
body[data-product-id="w-022"] .pv-w022-variants .pv-vthumb {
  background: #f7f7f7;
  border-radius: 6px;
}

/* Inline qty row */
body[data-product-id="w-022"] .pv-w022-qty-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 1.25rem 0;
}
body[data-product-id="w-022"] .pv-w022-qty-label {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
}
body[data-product-id="w-022"] .pv-w022-qty-row .pv-qty-selector {
  background: #fff;
  border: 1.5px solid var(--pv-border);
  padding: 4px 8px;
  border-radius: 10px;
}

/* CTA + icon buttons */
body[data-product-id="w-022"] .pv-cta-with-icons {
  display: grid;
  grid-template-columns: 1fr 44px 44px;
  gap: 8px;
  align-items: stretch;
  margin: 0.5rem 0 1rem;
}
body[data-product-id="w-022"] .pv-w022-cta {
  background: var(--pv-wine);
  color: #fff;
  border: 0;
  border-radius: 999px;
  padding: 14px 20px;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  transition: background .15s;
}
body[data-product-id="w-022"] .pv-w022-cta:hover { background: var(--pv-wine-dark); }
body[data-product-id="w-022"] .pv-w022-cta svg { width: 18px; height: 18px; }
body[data-product-id="w-022"] .pv-icon-btn {
  width: 44px; height: 44px;
  border-radius: 999px;
  background: #fff;
  border: 1.5px solid var(--pv-border);
  color: #1a1a1a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .15s;
}
body[data-product-id="w-022"] .pv-icon-btn svg { width: 18px; height: 18px; }
body[data-product-id="w-022"] .pv-icon-btn:hover {
  border-color: var(--pv-wine);
  color: var(--pv-wine);
}
body[data-product-id="w-022"] .pv-fav-btn.is-active {
  border-color: var(--pv-wine);
  background: rgba(114,47,55,0.06);
  color: var(--pv-wine);
}
body[data-product-id="w-022"] .pv-fav-btn.is-active svg { fill: currentColor; }
body[data-product-id="w-022"] .pv-share-btn.is-copied {
  border-color: var(--pv-success);
  color: var(--pv-success);
}

/* Trust list — vertical with icons */
body[data-product-id="w-022"] .pv-w022-trust {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
body[data-product-id="w-022"] .pv-w022-trust li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #1a1a1a;
}
body[data-product-id="w-022"] .pv-w022-trust-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(114,47,55,0.08);
  color: var(--pv-wine);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
body[data-product-id="w-022"] .pv-w022-trust-icon svg { width: 16px; height: 16px; }

/* ===== Ficha do Vinho ===== */
body[data-product-id="w-022"] .pv-w022-ficha {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04), 0 8px 24px rgba(0,0,0,0.04);
  margin: 2rem auto;
  padding: 0;
  border-top: 0;
  overflow: hidden;
}
body[data-product-id="w-022"] .pv-ficha-banner {
  background: linear-gradient(90deg, var(--pv-wine), var(--pv-wine-dark));
  color: #fff;
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
body[data-product-id="w-022"] .pv-ficha-banner h2 {
  margin: 0;
  color: #fff;
  font-size: 22px;
  font-weight: 800;
}
body[data-product-id="w-022"] .pv-ficha-banner-icon { color: rgba(255,255,255,0.7); }
body[data-product-id="w-022"] .pv-ficha-banner-icon svg { width: 28px; height: 28px; }

body[data-product-id="w-022"] .pv-ficha-sub {
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--pv-muted);
  text-transform: uppercase;
  font-weight: 600;
  margin: 1.25rem 2rem 1rem;
}
body[data-product-id="w-022"] .pv-ficha-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 0 2rem 2rem;
}
body[data-product-id="w-022"] .pv-ficha-card {
  background: #fafafa;
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  position: relative;
}
body[data-product-id="w-022"] .pv-ficha-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(114,47,55,0.08);
  color: var(--pv-wine);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}
body[data-product-id="w-022"] .pv-ficha-icon svg { width: 16px; height: 16px; }
body[data-product-id="w-022"] .pv-ficha-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--pv-muted);
  margin-bottom: 4px;
}
body[data-product-id="w-022"] .pv-ficha-value {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.4;
}

/* ===== Sobre o Produtor ===== */
body[data-product-id="w-022"] .pv-w022-produtor-section {
  border-top: 0;
  padding: 0 1rem;
  margin: 2rem auto;
}
body[data-product-id="w-022"] .pv-w022-producer-card {
  background: #faf8f4;
  border-radius: 16px;
  padding: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
body[data-product-id="w-022"] .pv-w022-producer-card h2 {
  font-size: 28px;
  font-weight: 800;
  margin: 0.25rem 0 0.5rem;
  color: #1a1a1a;
}
body[data-product-id="w-022"] .pv-w022-producer-sub {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--pv-muted);
  text-transform: uppercase;
  margin: 0 0 1rem;
}
body[data-product-id="w-022"] .pv-w022-producer-body {
  font-size: 15px;
  line-height: 1.7;
  color: #2a2a2a;
  margin: 0;
}

/* W-022 eyebrow with dash */
body[data-product-id="w-022"] .pv-w022-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 0.5rem;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--pv-wine);
  text-transform: uppercase;
}
body[data-product-id="w-022"] .pv-eyebrow-dash {
  width: 24px;
  height: 2px;
  background: var(--pv-wine);
  display: inline-block;
}

/* ===== Sobre o vinho — 2-col ===== */
body[data-product-id="w-022"] .pv-w022-sobre-section {
  border-top: 0;
  padding: 0 1rem;
  margin: 2rem auto;
}
body[data-product-id="w-022"] .pv-w022-sobre-grid {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04), 0 8px 24px rgba(0,0,0,0.04);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 820px) {
  body[data-product-id="w-022"] .pv-w022-sobre-grid { grid-template-columns: 1fr; }
}
body[data-product-id="w-022"] .pv-w022-sobre-left h2 {
  font-size: 26px;
  font-weight: 800;
  margin: 0.25rem 0 0.75rem;
}
body[data-product-id="w-022"] .pv-w022-sobre-text {
  font-size: 15px;
  line-height: 1.6;
  color: #2a2a2a;
  margin: 0 0 1.5rem;
}
body[data-product-id="w-022"] .pv-w022-facts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
body[data-product-id="w-022"] .pv-w022-fact-card {
  background: #fafafa;
  border-radius: 10px;
  padding: 0.85rem 1rem;
}
body[data-product-id="w-022"] .pv-w022-fact-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--pv-muted);
  margin-bottom: 4px;
}
body[data-product-id="w-022"] .pv-w022-fact-value {
  font-size: 14px;
  font-weight: 700;
  color: #1a1a1a;
}
body[data-product-id="w-022"] .pv-w022-sub {
  border-left: 3px solid var(--pv-wine);
  padding: 0.25rem 0 0.25rem 1rem;
  margin-bottom: 1.5rem;
}
body[data-product-id="w-022"] .pv-w022-sub:last-child { margin-bottom: 0; }
body[data-product-id="w-022"] .pv-w022-sub h4 {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: #1a1a1a;
}
body[data-product-id="w-022"] .pv-w022-sub p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--pv-muted);
  margin: 0;
}

/* ===== Reviews ===== */
body[data-product-id="w-022"] .pv-w022-reviews-eyebrow {
  max-width: 1200px;
  margin: 2rem auto 0.5rem;
  padding: 0 1rem;
}
body[data-product-id="w-022"] .pv-w022-reviews {
  border-top: 0;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04), 0 8px 24px rgba(0,0,0,0.04);
  padding: 2rem;
  margin: 0 auto 2rem;
  max-width: 1200px;
}
body[data-product-id="w-022"] .pv-w022-reviews h2 {
  font-size: 30px;
  font-weight: 800;
  margin: 0 0 1.5rem;
  color: #1a1a1a;
}
body[data-product-id="w-022"] .pv-w022-reviews-summary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 820px) {
  body[data-product-id="w-022"] .pv-w022-reviews-summary { grid-template-columns: 1fr; gap: 2rem; }
}
body[data-product-id="w-022"] .pv-w022-resumo-title {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 4px;
  color: #1a1a1a;
}
body[data-product-id="w-022"] .pv-w022-resumo-sub {
  font-size: 13px;
  color: var(--pv-muted);
  margin: 0 0 1rem;
}
body[data-product-id="w-022"] .pv-w022-bars {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
body[data-product-id="w-022"] .pv-w022-bar-row {
  display: grid;
  grid-template-columns: 90px 1fr 40px;
  gap: 12px;
  align-items: center;
}
body[data-product-id="w-022"] .pv-w022-bar-label {
  font-size: 13px;
  color: #1a1a1a;
}
body[data-product-id="w-022"] .pv-w022-track {
  height: 10px;
  background: #f1f1f1;
  border-radius: 999px;
  overflow: hidden;
}
body[data-product-id="w-022"] .pv-w022-fill {
  height: 100%;
  background: #f5b842;
  border-radius: 999px;
  transition: width .6s ease;
}
body[data-product-id="w-022"] .pv-w022-bar-count {
  text-align: right;
  font-size: 13px;
  font-weight: 600;
  color: #1a1a1a;
}
body[data-product-id="w-022"] .pv-w022-right-eyebrow {
  font-size: 13px;
  color: var(--pv-muted);
  margin: 0 0 6px;
}
body[data-product-id="w-022"] .pv-w022-bigscore-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 1rem;
}
body[data-product-id="w-022"] .pv-w022-bigscore {
  font-size: 56px;
  font-weight: 900;
  color: #1a1a1a;
  line-height: 1;
}
body[data-product-id="w-022"] .pv-w022-bigscore-side .pv-stars { font-size: 18px; }
body[data-product-id="w-022"] .pv-w022-total {
  font-size: 13px;
  color: var(--pv-muted);
  margin: 4px 0 0;
}
body[data-product-id="w-022"] .pv-w022-divider {
  border: 0;
  height: 1px;
  background: var(--pv-border);
  margin: 1rem 0;
}
body[data-product-id="w-022"] .pv-w022-recommend {
  font-size: 14px;
  color: #1a1a1a;
  margin: 0 0 1.25rem;
  padding: 0;
  background: transparent;
  border-left: 0;
  border-radius: 0;
}
body[data-product-id="w-022"] .pv-w022-recommend b { color: var(--pv-wine); font-weight: 800; }
body[data-product-id="w-022"] .pv-w022-class-media {
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 0.75rem;
  color: #1a1a1a;
}
body[data-product-id="w-022"] .pv-w022-aggbars {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
body[data-product-id="w-022"] .pv-w022-aggbar-row {
  display: grid;
  grid-template-columns: minmax(140px, 1fr) 2fr auto;
  gap: 12px;
  align-items: center;
}
body[data-product-id="w-022"] .pv-w022-aggbar-label {
  font-size: 13px;
  color: #1a1a1a;
}
body[data-product-id="w-022"] .pv-w022-aggbar {
  height: 10px;
  background: #f1f1f1;
  border-radius: 999px;
  overflow: hidden;
}
body[data-product-id="w-022"] .pv-w022-aggbar-fill {
  height: 100%;
  background: #f5b842;
  border-radius: 999px;
  transition: width .6s ease;
}
body[data-product-id="w-022"] .pv-w022-aggbar-value {
  font-size: 13px;
  font-weight: 600;
  color: #1a1a1a;
  min-width: 28px;
  text-align: right;
}

body[data-product-id="w-022"] .pv-w022-filter {
  border: 1px solid var(--pv-border);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  margin: 0.5rem 0;
  font-size: 14px;
  font-weight: 600;
  background: #fff;
}
body[data-product-id="w-022"] .pv-w022-filter summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
body[data-product-id="w-022"] .pv-w022-filter summary::after {
  content: '⌄';
  font-size: 18px;
  color: var(--pv-muted);
}
body[data-product-id="w-022"] .pv-w022-filter[open] summary::after { transform: rotate(180deg); }
body[data-product-id="w-022"] .pv-w022-filter-opts {
  display: flex;
  gap: 12px 16px;
  flex-wrap: wrap;
  padding-top: 0.75rem;
  margin-top: 0.5rem;
  border-top: 1px solid var(--pv-border);
}
body[data-product-id="w-022"] .pv-w022-filter-opt {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: #1a1a1a;
  cursor: pointer;
}
body[data-product-id="w-022"] .pv-w022-pagination {
  text-align: center;
  font-size: 13px;
  color: var(--pv-muted);
  margin: 1rem 0;
  padding-top: 0.5rem;
  border-top: 1px solid var(--pv-border);
}

/* Review cards */
body[data-product-id="w-022"] .pv-w022-review-list {
  display: flex;
  flex-direction: column;
}
body[data-product-id="w-022"] .pv-w022-review {
  display: block;
  padding: 1.5rem 0;
  border-top: 1px solid var(--pv-border);
}
body[data-product-id="w-022"] .pv-w022-review:first-child { border-top: 0; padding-top: 0.5rem; }
body[data-product-id="w-022"] .pv-w022-r-stars { font-size: 16px; margin-bottom: 0.5rem; }
body[data-product-id="w-022"] .pv-w022-r-author {
  margin: 0 0 6px;
  font-size: 15px;
  font-weight: 700;
  color: var(--pv-wine);
}
body[data-product-id="w-022"] .pv-w022-verified-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--pv-success);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
body[data-product-id="w-022"] .pv-w022-verified-pill svg { width: 14px; height: 14px; }
body[data-product-id="w-022"] .pv-w022-r-date {
  font-size: 13px;
  color: var(--pv-muted);
  margin: 0 0 0.75rem;
}
body[data-product-id="w-022"] .pv-w022-r-text {
  font-size: 14.5px;
  line-height: 1.55;
  color: #1a1a1a;
  margin: 0 0 1rem;
}
body[data-product-id="w-022"] .pv-w022-helpful {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--pv-muted);
  margin-bottom: 1rem;
}
body[data-product-id="w-022"] .pv-w022-thumb {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: transparent;
  border: 0;
  cursor: pointer;
  color: var(--pv-muted);
  font-size: 13px;
  padding: 4px 6px;
  border-radius: 6px;
}
body[data-product-id="w-022"] .pv-w022-thumb svg { width: 16px; height: 16px; }
body[data-product-id="w-022"] .pv-w022-thumb:hover { color: var(--pv-wine); }
body[data-product-id="w-022"] .pv-w022-thumb.is-voted { color: var(--pv-wine); cursor: default; }
body[data-product-id="w-022"] .pv-w022-thumb.pv-w022-thumb-up.is-voted { color: var(--pv-success); }
body[data-product-id="w-022"] .pv-w022-thumb.pv-w022-thumb-down.is-voted { color: var(--pv-danger); }
body[data-product-id="w-022"] .pv-w022-review-micros {
  background: #fafafa;
  border-radius: 10px;
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
body[data-product-id="w-022"] .pv-w022-r-micro {
  display: grid;
  grid-template-columns: minmax(140px, 1fr) 2fr auto;
  gap: 12px;
  align-items: center;
}
body[data-product-id="w-022"] .pv-w022-r-micro-label {
  font-size: 13px;
  color: #1a1a1a;
}
body[data-product-id="w-022"] .pv-w022-r-micro-value {
  font-size: 13px;
  font-weight: 600;
  color: #1a1a1a;
  min-width: 28px;
  text-align: right;
}

/* ===== Cross-sell ===== */
body[data-product-id="w-022"] .pv-w022-xsell-section {
  border-top: 0;
  padding: 0 1rem;
  margin: 2rem auto;
  max-width: 1200px;
}
body[data-product-id="w-022"] .pv-w022-xsell-section h2 {
  font-size: 24px;
  font-weight: 800;
  margin: 0 0 1.5rem;
}
body[data-product-id="w-022"] .pv-w022-xsell-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
@media (max-width: 1024px) { body[data-product-id="w-022"] .pv-w022-xsell-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { body[data-product-id="w-022"] .pv-w022-xsell-grid { grid-template-columns: 1fr; } }

body[data-product-id="w-022"] .pv-w022-xcard {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04), 0 8px 24px rgba(0,0,0,0.04);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: transform .15s, box-shadow .15s;
}
body[data-product-id="w-022"] .pv-w022-xcard:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.06), 0 16px 32px rgba(0,0,0,0.08);
}
body[data-product-id="w-022"] .pv-w022-xtop {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding: 12px;
  z-index: 1;
}
body[data-product-id="w-022"] .pv-w022-xbadge {
  background: var(--pv-wine);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  padding: 6px 12px;
  border-radius: 999px;
  letter-spacing: 0.04em;
}
body[data-product-id="w-022"] .pv-w022-xcountry {
  background: rgba(255,255,255,0.95);
  border: 1px solid var(--pv-border);
  color: var(--pv-wine);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px 4px 8px;
  border-radius: 999px;
  letter-spacing: 0.06em;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
body[data-product-id="w-022"] .pv-w022-xcountry svg { width: 12px; height: 12px; }

body[data-product-id="w-022"] .pv-w022-ximg-wrap {
  background: #fff;
  padding: 0.5rem 1.5rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -32px;
  min-height: 220px;
}
body[data-product-id="w-022"] .pv-w022-ximg {
  max-width: 100%;
  max-height: 240px;
  object-fit: contain;
}
body[data-product-id="w-022"] .pv-w022-xbody {
  padding: 0 1.25rem 1.25rem;
}
body[data-product-id="w-022"] .pv-w022-xeyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--pv-muted);
  text-transform: uppercase;
  margin: 0 0 6px;
}
body[data-product-id="w-022"] .pv-w022-xname {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 0.5rem;
  min-height: 2.6em;
  color: #1a1a1a;
}
body[data-product-id="w-022"] .pv-w022-xrating {
  font-size: 13px;
  color: var(--pv-muted);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 6px;
}
body[data-product-id="w-022"] .pv-w022-xrating .pv-stars { font-size: 13px; letter-spacing: 1px; }
body[data-product-id="w-022"] .pv-w022-xorig {
  text-decoration: line-through;
  color: var(--pv-muted);
  font-size: 13px;
  margin: 0;
}
body[data-product-id="w-022"] .pv-w022-xpor {
  margin: 2px 0 0.5rem;
  display: flex;
  align-items: baseline;
  gap: 6px;
}
body[data-product-id="w-022"] .pv-w022-por-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--pv-muted);
  text-transform: uppercase;
}
body[data-product-id="w-022"] .pv-w022-xfinal {
  font-size: 22px;
  font-weight: 900;
  color: var(--pv-wine);
}
body[data-product-id="w-022"] .pv-w022-xpay {
  font-size: 11px;
  color: var(--pv-muted);
  margin: 0 0 0.75rem;
}
body[data-product-id="w-022"] .pv-w022-xbtn {
  background: var(--pv-wine);
  color: #fff;
  border: 0;
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  cursor: pointer;
  transition: background .15s;
}
body[data-product-id="w-022"] .pv-w022-xbtn:hover { background: var(--pv-wine-dark); }
body[data-product-id="w-022"] .pv-w022-xbtn svg { width: 14px; height: 14px; }

/* ============= END W-022 SCREENSHOT-FAITHFUL OVERRIDES ============= */

