/* 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;
}

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-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; }

/* ============= 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; }
