/* ============================================================
   VELUTTO — style.css
   Plus Jakarta Sans · Mobile-first · Clean & Professional
   ============================================================ */

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: var(--font); }
ul { list-style: none; }

/* ── Variables ──────────────────────────────────────────────── */
:root {
  --font:        'Plus Jakarta Sans', sans-serif;
  --bg:          #FFFFFF;
  --bg-soft:     #F8F6F3;
  --bg-dark:     #1C1410;
  --text:        #1A1A1A;
  --text-muted:  #6B6B6B;
  --text-light:  #9A9A9A;
  --brown:       #2C1810;
  --cream:       #F5EFE6;
  --gold:        #B8943A;
  --border:      #E8E0D8;
  --red:         #C1121F;
  --radius:      12px;
}

/* ── Layout ─────────────────────────────────────────────────── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 96px 0; }

h1 { font-size: clamp(2.4rem, 5vw, 5rem); font-weight: 700; line-height: 1.1; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; line-height: 1.2; }
h3 { font-size: 1.1rem; font-weight: 600; }
p  { font-size: 16px; line-height: 1.7; color: var(--text-muted); }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius);
  transition: background .2s ease, transform .15s ease, opacity .2s;
  white-space: nowrap;
}
.btn-dark   { background: var(--brown); color: #fff; }
.btn-dark:hover  { background: #1a0d07; }
.btn-white  { background: #fff; color: var(--text); }
.btn-white:hover { opacity: .88; }
.btn-full   { width: 100%; }
.btn-lg     { padding: 16px 36px; font-size: 15px; }

/* ── Announcement Bar ───────────────────────────────────────── */
.announcement {
  height: 36px;
  background: var(--bg-dark);
  color: rgba(255,255,255,.8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  letter-spacing: .04em;
  padding: 0 20px;
  text-align: center;
}

/* ── Header ─────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: #EDE8DC;
  border-bottom: 1px solid #D8D0C0;
  height: 64px;
  transition: transform .3s ease, box-shadow .3s ease;
}
.site-header.hidden   { transform: translateY(-100%); }
.site-header.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,.06); }

.header-inner {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: .02em;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.logo-img {
  height: 54px;
  width: auto;
  display: block;
}

.nav-desktop { display: none; }
.nav-desktop a {
  font-size: 14px;
  color: var(--text);
  transition: opacity .2s;
}
.nav-desktop a:hover { opacity: .55; }

.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.cart-btn {
  position: relative;
  display: flex;
  align-items: center;
  color: var(--text);
  padding: 4px;
}
.cart-badge {
  position: absolute;
  top: -3px;
  right: -5px;
  background: var(--text);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: all .25s;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 16px 24px 24px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 13px 0;
  font-size: 15px;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}
.mobile-nav a:last-child { border-bottom: none; }

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background: url('../img/tapete-preto-hero.webp') center/cover no-repeat;
  background-color: #C8BFB5;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.35);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 0 24px;
  width: 100%;
  text-align: center;
}

.hero-content h1 {
  color: #fff;
  font-size: clamp(2.6rem, 5.5vw, 5rem);
}

.hero-content p {
  color: rgba(255,255,255,.80);
  font-size: 16px;
  font-weight: 400;
  margin-top: 16px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.hero-content .btn {
  margin-top: 32px;
}

.hero-note {
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,.55);
  margin-top: 12px;
  letter-spacing: .02em;
}

/* ── Benefits ───────────────────────────────────────────────── */
.benefits {
  background: var(--bg-soft);
  padding: 80px 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.benefit-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px 28px;
}

.benefit-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-soft);
  border-radius: 8px;
  margin-bottom: 20px;
}

.benefit-card h3 {
  color: var(--text);
  margin-bottom: 8px;
}

.benefit-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
}

/* ── Featured Product ───────────────────────────────────────── */
.featured {
  background: var(--bg);
}

.featured-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

.featured-image {
  border-radius: var(--radius);
  overflow: hidden;
}
.featured-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.featured-text {}
.featured-text h2 { color: var(--text); }
.featured-text > p { margin-top: 20px; }

.feature-list {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.feature-list li {
  font-size: 15px;
  color: var(--text);
  line-height: 2;
}

.featured-text .btn { margin-top: 32px; }

/* ── Offer Section ──────────────────────────────────────────── */
.offer {
  background: var(--bg-soft);
}

.offer-inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.offer-inner h2 { color: var(--text); }
.offer-inner > p { margin-top: 12px; font-size: 17px; }

.offer-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 40px;
  margin-top: 48px;
  text-align: left;
}

.price-from {
  display: block;
  font-size: 14px;
  color: var(--text-light);
  text-decoration: line-through;
  margin-bottom: 6px;
}

.price-main {
  display: block;
  font-size: 52px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -.02em;
  line-height: 1;
}

.price-detail {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 6px;
}

.offer-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 24px 0;
}

.offer-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
}
.offer-details span {
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}
.offer-details span::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--text-light);
  flex-shrink: 0;
}

.offer-card .btn {
  margin-top: 24px;
  height: 52px;
  font-size: 15px;
}

.offer-timer {
  font-size: 12px;
  color: var(--text-light);
  text-align: center;
  margin-top: 16px;
}
.offer-timer span { font-weight: 600; color: var(--text-muted); }

.offer-stock {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: var(--red);
  font-weight: 500;
  margin-top: 8px;
}

.stock-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
  animation: pulse-dot 1.4s ease infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .4; transform: scale(.8); }
}

/* ── Gallery ────────────────────────────────────────────────── */
.gallery-section {
  background: var(--bg);
}

.gallery-section h2 {
  text-align: center;
  color: var(--text);
  margin-bottom: 40px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.gallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  transition: transform .3s ease;
}
.gallery-grid img:hover { transform: scale(1.02); }

/* ── Reviews ────────────────────────────────────────────────── */
.reviews-section {
  background: var(--bg-soft);
}

.reviews-head { text-align: center; margin-bottom: 48px; }
.reviews-head h2 { color: var(--text); }

.reviews-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
  font-size: 14px;
  color: var(--text-muted);
}
.reviews-stars { color: var(--gold); font-size: 14px; letter-spacing: 1px; }

.reviews-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.review-card {
  background: var(--bg);
  border: none;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 2px 16px rgba(44, 24, 16, 0.07);
}

.review-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.review-author { display: flex; align-items: center; gap: 12px; }

.review-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #E5E5E5;
  color: #666;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.review-name  { font-size: 14px; font-weight: 600; color: var(--text); }
.review-city  { font-size: 12px; color: var(--text-light); margin-top: 1px; }
.review-stars { color: var(--gold); font-size: 12px; letter-spacing: 1px; }

.review-text  { font-size: 14px; line-height: 1.65; color: #4A4A4A; }

.review-footer {
  margin-top: 12px;
  font-size: 11px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 5px;
}
.review-footer::before {
  content: '✓';
  color: #10B981;
  font-weight: 700;
  font-size: 12px;
}

/* ── FAQ ────────────────────────────────────────────────────── */
.faq-section {
  background: var(--bg);
}

.faq-section h2 {
  color: var(--text);
  margin-bottom: 40px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.faq-list {
  max-width: 680px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
}

.faq-item { border-bottom: 1px solid var(--border); }

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  gap: 16px;
  background: none;
  cursor: pointer;
  transition: color .2s;
}
.faq-q:hover { color: var(--brown); }

.faq-sign {
  flex-shrink: 0;
  color: var(--text-light);
  transition: transform .35s ease, color .2s;
  display: flex;
  align-items: center;
}
.faq-item.open .faq-sign { transform: rotate(180deg); color: var(--brown); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .4s;
}
.faq-item.open .faq-a { max-height: 400px; padding-bottom: 18px; }
.faq-a p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ── Footer ─────────────────────────────────────────────────── */
.site-footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,.65);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 24px;
  padding-bottom: 48px;
}

.footer-logo-text {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  letter-spacing: .02em;
}

.footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,.4);
  margin-top: 8px;
  line-height: 1.5;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}
.social-link {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.55);
  transition: border-color .2s, color .2s;
}
.social-link:hover { border-color: rgba(255,255,255,.5); color: #fff; }

.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 14px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 13px;
  color: rgba(255,255,255,.55);
  transition: color .2s;
}
.footer-col a:hover { color: #fff; }

.payment-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.payment-pill {
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.55);
  border-radius: 3px;
  padding: 4px 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .03em;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
  font-size: 12px;
  color: rgba(255,255,255,.3);
  text-align: center;
}

/* ── Responsive: 768px ──────────────────────────────────────── */
@media (min-width: 768px) {
  /* Header */
  .nav-desktop  { display: flex; align-items: center; gap: 28px; }
  .hamburger    { display: none; }
  .mobile-nav   { display: none !important; }

  /* Hero: left-aligned */
  .hero-content {
    text-align: left;
    padding-left: 8vw;
    padding-right: 8vw;
    max-width: 700px;
  }
  .hero-content p { margin-left: 0; margin-right: 0; }

  /* Benefits */
  .benefits-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }

  /* Featured */
  .featured-grid {
    grid-template-columns: 55fr 45fr;
    gap: 80px;
  }
  .featured-image img { height: 580px; }

  /* Offer details */
  .offer-details { grid-template-columns: 1fr 1fr; }

  /* Reviews */
  .reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  /* Footer */
  .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 0 48px; }
}

/* ── Responsive: mobile reviews scroll ─────────────────────── */
@media (max-width: 767px) {
  .reviews-grid {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    gap: 12px;
    padding-bottom: 12px;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
  }
  .reviews-grid::-webkit-scrollbar { height: 4px; }
  .reviews-grid::-webkit-scrollbar-track { background: var(--border); border-radius: 2px; }
  .reviews-grid::-webkit-scrollbar-thumb { background: var(--text-light); border-radius: 2px; }
  .review-card { min-width: 280px; scroll-snap-align: start; flex-shrink: 0; }

  .hero-content { padding: 80px 24px 60px; }

  section { padding: 64px 0; }

  .offer-card { padding: 28px 20px; }
  .price-main { font-size: 40px; }
}

/* ============================================================
   PRODUCT PAGE
   ============================================================ */

/* ── Breadcrumb ── */
.breadcrumb {
  font-size: 12px;
  color: var(--text-light);
  padding: 14px 0 0;
}
.breadcrumb a { color: var(--text-light); }
.breadcrumb a:hover { color: var(--text); }
.breadcrumb span { color: var(--text-muted); }

/* ── Product layout ── */
.product-page { padding: 24px 0 96px; }
.product-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}

/* ── Gallery ── */
.prod-main-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-soft);
}
.prod-main-wrap img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: opacity .2s;
}
.prod-thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
  margin-top: 8px;
}
.prod-thumb {
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color .15s;
}
.prod-thumb.active, .prod-thumb:hover { border-color: var(--brown); }
.prod-thumb img { width: 100%; aspect-ratio: 1; object-fit: cover; display: block; }

/* ── Product info panel ── */
.product-badge {
  display: inline-block;
  background: #FEF3CD;
  color: #92400E;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .02em;
  padding: 5px 10px;
  border-radius: 3px;
  margin-bottom: 16px;
}

.product-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.25;
  margin: 0 0 12px;
}
.product-name span {
  font-weight: 400;
  font-size: 1.1rem;
  color: var(--text-muted);
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.product-rating .p-stars { color: var(--gold); font-size: 14px; }
.product-rating .p-score { font-weight: 600; color: var(--text); }
.product-rating .p-sep   { color: #D0D0D0; }
.product-rating .p-count { color: var(--text-muted); text-decoration: underline; cursor: pointer; }
.product-rating .p-sold  { color: var(--text-muted); }

.product-divider { height: 1px; background: var(--border); margin: 20px 0; }

/* ── Price block ── */
.product-price-block { margin: 4px 0 20px; }

.price-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.price-discount-badge {
  background: var(--red);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 3px;
}
.price-current {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -.02em;
}
.price-original {
  font-size: 1rem;
  color: var(--text-light);
  text-decoration: line-through;
}
.price-copy {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}
.price-copy strong { color: var(--text); font-weight: 600; }

/* ── Color selectors ── */
.color-selector { margin-bottom: 4px; }
.color-selector + .color-selector { margin-top: 20px; }

.color-selector-label {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.color-selector-label strong {
  color: var(--text);
  font-weight: 600;
}
.free-label {
  color: #2D6A4F;
  font-weight: 600;
  font-size: 12px;
  background: #D1FAE5;
  padding: 1px 6px;
  border-radius: 2px;
}

.color-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}

.color-swatch {
  cursor: pointer;
  text-align: center;
  border: 2px solid transparent;
  border-radius: 4px;
  padding: 2px;
  transition: border-color .15s;
}
.color-swatch img,
.color-swatch .swatch-color {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 2px;
  display: block;
}
.color-swatch span {
  display: block;
  font-size: 10px;
  color: var(--text-muted);
  margin-top: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.color-swatch.active { border-color: var(--brown); }
.color-swatch.active span { color: var(--brown); font-weight: 600; }
.color-swatch:hover:not(.active) { border-color: #C8BFB5; }

/* ── Product action buttons ── */
.product-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
}
.btn-buy-primary {
  display: block;
  width: 100%;
  background: var(--brown);
  color: #fff;
  text-align: center;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  padding: 18px 24px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: background .2s, transform .15s;
  text-decoration: none;
  letter-spacing: .01em;
}
.btn-buy-primary:hover { background: #1A0F0A; transform: translateY(-1px); }

.btn-buy-secondary {
  display: block;
  width: 100%;
  background: transparent;
  color: var(--brown);
  text-align: center;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  padding: 14px;
  border-radius: var(--radius);
  border: 1.5px solid var(--brown);
  cursor: pointer;
  transition: background .15s;
  text-decoration: none;
}
.btn-buy-secondary:hover { background: #F5EFE6; }

/* ── Trust bar ── */
.product-trust {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  font-size: 12px;
  color: var(--text-light);
  flex-wrap: wrap;
}
.trust-dot { color: #D0D0D0; }

/* ── Gallery tabs ── */
.gallery-tabs {
  display: flex;
  border-bottom: 1px solid var(--border);
  margin-bottom: 14px;
  gap: 4px;
}
.gallery-tab {
  padding: 10px 20px 10px 0;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-light);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  cursor: pointer;
  transition: color .15s, border-color .15s;
}
.gallery-tab.active { color: var(--text); border-bottom-color: var(--brown); }
.gallery-tab:hover:not(.active) { color: var(--text-muted); }

/* ── Gallery panels ── */
.gallery-photos.hidden { display: none; }
.gallery-video { display: none; }
.gallery-video.visible { display: block; }

/* ── Video player ── */
.video-player-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  background: #0a0a0a;
  max-width: 360px;
  margin: 0 auto;
}
.video-player-wrap video {
  width: 100%;
  display: block;
  aspect-ratio: 9 / 16;
  object-fit: contain;
}
.video-caption {
  text-align: center;
  font-size: 13px;
  color: var(--text-light);
  margin-top: 12px;
  font-style: italic;
}

/* ── Desktop product layout ── */
@media (min-width: 768px) {
  .product-layout { grid-template-columns: 55fr 45fr; gap: 64px; }
  .product-info { position: sticky; top: 80px; }
}

/* ============================================================
   PRODUCT PAGE — EXTENDED COMPONENTS
   ============================================================ */

/* Announcement bar rotation */
.ann-msg         { display: none; }
.ann-msg.active  { display: inline; }

/* Badges row */
.product-badges-row { display: flex; gap: 8px; margin-bottom: 14px; flex-wrap: wrap; }
.badge-stock {
  background: #C1121F;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .02em;
  padding: 4px 10px;
  border-radius: 4px;
}
.badge-promo {
  background: #FEF3CD;
  color: #92400E;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .02em;
  padding: 4px 10px;
  border-radius: 4px;
}

/* Product subtitle */
.product-subtitle {
  font-size: 13px;
  color: var(--text-muted);
  margin: -8px 0 12px;
  font-style: italic;
}

/* Stock alert */
.stock-alert {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  background: #FEFAF7;
  border: 1px solid #E8D5C4;
  border-radius: 6px;
  padding: 10px 12px;
  margin-bottom: 16px;
}
.stock-alert strong { color: #C1121F; }

.stock-dot-pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #C1121F;
  flex-shrink: 0;
}

/* Offer timer blocks */
.offer-timer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  padding: 14px 16px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 4px;
  flex-wrap: wrap;
}
.timer-label { font-size: 12px; color: var(--text-muted); flex-shrink: 0; }
.timer-display { display: flex; align-items: center; gap: 4px; }
.timer-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--brown);
  color: #fff;
  border-radius: 3px;
  padding: 6px 10px;
  min-width: 40px;
}
.timer-block span {
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .02em;
  font-variant-numeric: tabular-nums;
}
.timer-block small {
  font-size: 9px;
  font-weight: 500;
  color: rgba(255,255,255,.55);
  letter-spacing: .08em;
  margin-top: 2px;
}
.timer-colon {
  font-size: 18px;
  font-weight: 700;
  color: var(--brown);
  padding-bottom: 10px;
  line-height: 1;
}

/* btn-sub */
.btn-sub {
  text-align: center;
  font-size: 12px;
  color: var(--text-light);
  margin: 8px 0 0;
}

/* Trust grid */
.product-trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-muted);
}
.trust-item svg { flex-shrink: 0; }

/* Reviews — 2-col product page */
.product-reviews { background: var(--bg-soft); }
.product-reviews .reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  overflow-x: unset;
  flex-direction: unset;
  padding-bottom: 0;
}
@media (max-width: 768px) {
  .product-reviews .reviews-grid {
    grid-template-columns: 1fr;
  }
}

/* Review photo */
.review-photo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  filter: saturate(.9);
}

/* Review color badge */
.review-color-badge {
  display: inline-block;
  font-size: 11px;
  color: #8A7A6E;
  background: #F5EFE6;
  padding: 3px 8px;
  border-radius: 2px;
  margin: 8px 0 6px;
}

/* Rating bars */
.rating-bars {
  max-width: 280px;
  margin: 16px 0 40px;
}
.rating-bar-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 5px;
  font-size: 12px;
  color: var(--text-muted);
}
.rating-bar-row > span:first-child { width: 28px; text-align: right; flex-shrink: 0; }
.rating-bar-row > span:last-child  { width: 28px; flex-shrink: 0; }
.rbar-track {
  flex: 1;
  height: 6px;
  background: var(--border);
  border-radius: 3px;
  overflow: hidden;
}
.rbar-fill { height: 100%; background: var(--gold); border-radius: 3px; }

/* Specs section */
.specs-section {
  padding: 72px 0;
  border-top: 1px solid var(--border);
}
.specs-section h2 { font-size: 1.4rem; font-weight: 700; margin-bottom: 28px; color: var(--text); }
.specs-grid { max-width: 600px; }
.spec-row {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  gap: 16px;
}
.spec-label { color: var(--text-muted); flex-shrink: 0; }
.spec-value { color: var(--text); font-weight: 500; text-align: right; }

/* Sticky mobile CTA */
.sticky-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 12px 20px;
  z-index: 990;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 -4px 16px rgba(0,0,0,.08);
}
.sticky-cta-info { display: flex; flex-direction: column; }
.sticky-price { font-size: 18px; font-weight: 700; color: var(--text); }
.sticky-label { font-size: 11px; color: var(--text-light); }
.sticky-cta-btn {
  background: var(--brown);
  color: #fff;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  padding: 13px 24px;
  border-radius: 50px;
  white-space: nowrap;
  text-decoration: none;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .sticky-mobile-cta { display: flex; }
}
@media (min-width: 769px) {
  .sticky-mobile-cta { display: none !important; }
}

/* ============================================================
   PRODUCT PAGE — V2 ADDITIONS
   ============================================================ */

/* Badge frete */
.badge-frete {
  background: #D1FAE5;
  color: #065F46;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .02em;
  padding: 4px 10px;
  border-radius: 4px;
}

/* Hook line */
.product-hook-line {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 14px;
  border-left: 2px solid #D4C4B0;
  padding-left: 10px;
}

/* Price anchor context */
.price-anchor-context {
  font-size: 12px;
  color: var(--text-light);
  margin: 6px 0 16px;
  line-height: 1.5;
}

/* Offer benefits */
.offer-benefits {
  display: flex;
  flex-direction: column;
  gap: 9px;
  background: #F0FDF4;
  border: 1px solid #BBF7D0;
  border-radius: 4px;
  padding: 14px 16px;
  margin-bottom: 16px;
}
.offer-benefit {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--text);
  line-height: 1.4;
}
.offer-benefit svg { flex-shrink: 0; margin-top: 1px; }
.offer-benefit strong { font-weight: 600; }

/* Price reason (details) */
.price-reason {
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 12px 14px;
  margin-bottom: 16px;
  font-size: 13px;
}
.price-reason summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--brown);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.price-reason summary::-webkit-details-marker { display: none; }
.price-reason summary::after {
  content: '+';
  font-size: 16px;
  color: var(--text-light);
  transition: transform .2s;
}
.price-reason[open] summary::after { content: '−'; }
.price-reason p { margin: 10px 0 0; color: var(--text-muted); line-height: 1.65; }

/* Order bump */
.order-bump {
  border: 2px dashed var(--gold);
  border-radius: 4px;
  padding: 16px;
  margin-bottom: 20px;
  background: #FFFBF0;
  cursor: pointer;
}
.bump-label { display: flex; gap: 12px; align-items: flex-start; cursor: pointer; }
.bump-checkbox {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--brown);
  cursor: pointer;
}
.bump-content { flex: 1; }
.bump-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; }
.bump-badge {
  background: var(--gold);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
  padding: 2px 7px;
  border-radius: 2px;
}
.bump-price { font-size: 15px; font-weight: 700; color: var(--brown); }
.bump-title { font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 3px; }
.bump-sub   { font-size: 12px; color: var(--text-muted); }
.bump-color-row { display: flex; gap: 8px; margin-top: 12px; flex-wrap: wrap; }
.bump-swatch {
  cursor: pointer;
  text-align: center;
  border: 2px solid transparent;
  border-radius: 3px;
  padding: 2px;
  width: 52px;
  transition: border-color .15s;
}
.bump-swatch img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 2px; display: block; }
.bump-swatch span { font-size: 9px; color: var(--text-muted); display: block; margin-top: 3px; }
.bump-swatch.active { border-color: var(--brown); }
.bump-swatch:hover:not(.active) { border-color: #C8BFB5; }

/* Updated review photo filter */
.review-photo { filter: saturate(.85) contrast(1.05); }

/* ── Price original wrap — stacks label + strikethrough vertically ── */
.price-original-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1px;
  margin-left: auto;
}

/* ── Price anchor context ── */
.price-anchor-context {
  display: block;
  font-size: 0.68rem;
  color: #9CA3AF;
  font-weight: 400;
}

/* ── Offer benefits (new — inside product-actions, plain checkmarks) ── */
.product-actions .offer-benefits {
  background: #F0FDF4;
  border: 1px solid #BBF7D0;
  border-radius: 6px;
  padding: 16px;
  margin-bottom: 16px;
  gap: 8px;
}
.product-actions .offer-benefit {
  font-size: 0.875rem;
  font-weight: 500;
  color: #166534;
}
.benefit-check {
  font-weight: 700;
  font-size: 1rem;
}

/* ── Order bump (new label structure) ── */
label.order-bump {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 2px dashed #C4A265;
  border-radius: 6px;
  margin-bottom: 16px;
  cursor: pointer;
  background: #FEFCE8;
}
label.order-bump input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #C4A265;
  flex-shrink: 0;
}
label.order-bump .bump-content {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
}
.bump-icon {
  font-size: 1.4rem;
  font-weight: 700;
  color: #C4A265;
  line-height: 1;
}
.bump-text { flex: 1; }
label.order-bump .bump-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: #2C1810;
}
.bump-subtitle {
  font-size: 0.72rem;
  color: #6B7280;
}
label.order-bump .bump-price {
  font-size: 0.85rem;
  font-weight: 700;
  color: #2C1810;
  white-space: nowrap;
}

/* ── CTA sub text ── */
.cta-sub {
  font-size: 0.72rem;
  color: #9CA3AF;
  text-align: center;
  margin-top: 8px;
  margin-bottom: 0;
}

/* ── Urgency block ── */
.urgency-block {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.urgency-timer {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: #C1121F;
  font-weight: 600;
}
.urgency-timer-label { color: #6B7280; font-weight: 400; }
.timer-unit { display: inline-flex; align-items: baseline; gap: 2px; }
.timer-digit {
  font-size: 1rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: #C1121F;
  min-width: 22px;
  text-align: right;
}
.timer-sep { font-size: 0.75rem; color: #9CA3AF; }
.stock-bar-wrap {
  height: 5px;
  background: #E5E7EB;
  border-radius: 99px;
  margin-bottom: 6px;
  overflow: hidden;
}
.stock-bar-fill {
  height: 100%;
  background: #C1121F;
  border-radius: 99px;
  transition: width 0.5s ease;
}
.stock-text {
  font-size: 0.78rem;
  color: #C1121F;
  font-weight: 500;
}

/* ── Sticky mobile CTA (new class names) ── */
.sticky-cta-mobile {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid #E5E7EB;
  padding: 12px 16px;
  z-index: 999;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.08);
}
.sticky-cta-mobile.visible { display: flex; }
.sticky-offer { font-size: 0.82rem; font-weight: 700; color: #2C1810; }
.sticky-shipping { font-size: 0.68rem; color: #6B7280; }
@media (min-width: 768px) {
  .sticky-cta-mobile { display: none !important; }
}

/* ── Roundness refinements ─────────────────────────────────── */

/* offer-benefits box */
.offer-benefits {
  border-radius: 14px !important;
}

/* order bump */
label.order-bump {
  border-radius: 14px;
}

/* trust grid items */
.product-trust-grid {
  gap: 12px;
}
.trust-item {
  border-radius: 10px;
  background: var(--bg-soft);
  padding: 12px 14px;
  border: 1px solid var(--border);
}

/* color swatches — more organic */
.color-swatch {
  border-radius: 10px !important;
}
.color-swatch img,
.color-swatch .swatch-color {
  border-radius: 7px !important;
}

/* index hero button */
.hero-content .btn {
  border-radius: 50px;
}

/* gallery tabs */
.gallery-tab {
  border-radius: 50px;
}

/* price-reason accordion */
.price-reason {
  border-radius: 10px;
}

/* announce bar softer */
.announcement {
  letter-spacing: .01em;
}

/* stock alert softer */
.stock-alert {
  border-radius: 10px;
}

/* offer card index.html */
.offer-card {
  border-radius: 18px;
}

/* btn-buy-secondary pill */
.btn-buy-secondary {
  border-radius: 50px;
}

/* ── Economia destacada (bloco de preço) ── */
.price-savings {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--success, #2D6A4F);
  background: #EDF7F1;
  border-radius: 8px;
  padding: 8px 12px;
  margin-top: 10px;
  display: inline-block;
}
