/* ============================================================
   WAP Ofertas de Abril — Estilos Globais
   Clone fiel do iniciowap.site
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --wap-black:   #1a1a1a;
  --wap-yellow:  #f5a623;
  --wap-orange:  #f07c00;
  --wap-green:   #27ae60;
  --wap-red:     #e74c3c;
  --wap-gray:    #6b7280;
  --wap-lgray:   #f3f4f6;
  --wap-border:  #e5e7eb;
  --wap-white:   #ffffff;
  --wap-text:    #111827;
  --wap-subtext: #6b7280;
  --radius:      8px;
  --shadow:      0 1px 3px rgba(0,0,0,.10), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md:   0 4px 6px -1px rgba(0,0,0,.10), 0 2px 4px -1px rgba(0,0,0,.06);
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--wap-text);
  background: var(--wap-white);
  line-height: 1.5;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, select, textarea { font-family: inherit; }
ul { list-style: none; }

/* ---- Announcement Bar ---- */
.announcement-bar {
  background: var(--wap-black);
  color: var(--wap-white);
  text-align: center;
  font-size: .8125rem;
  font-weight: 500;
  padding: .45rem 1rem;
  letter-spacing: .01em;
}
.announcement-bar span { color: var(--wap-yellow); }

/* ---- Header ---- */
.site-header {
  background: var(--wap-white);
  border-bottom: 1px solid var(--wap-border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: .75rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.header-logo img { height: 36px; width: auto; }
.header-logo-text {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--wap-black);
  letter-spacing: -.03em;
}
.header-logo-text span { color: var(--wap-orange); }

.header-search {
  flex: 1;
  max-width: 480px;
  position: relative;
}
.header-search input {
  width: 100%;
  border: 1.5px solid var(--wap-border);
  border-radius: 24px;
  padding: .5rem 3rem .5rem 1rem;
  font-size: .875rem;
  outline: none;
  transition: border-color .2s;
}
.header-search input:focus { border-color: var(--wap-black); }
.header-search button {
  position: absolute;
  right: .75rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--wap-gray);
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-left: auto;
}
.header-nav a {
  font-size: .8125rem;
  font-weight: 500;
  color: var(--wap-gray);
  display: flex;
  align-items: center;
  gap: .3rem;
  transition: color .2s;
}
.header-nav a:hover { color: var(--wap-black); }
.header-cart {
  background: var(--wap-black);
  color: var(--wap-white) !important;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex !important;
  align-items: center;
  justify-content: center;
}

/* ---- Breadcrumb ---- */
.breadcrumb {
  font-size: .78125rem;
  color: var(--wap-subtext);
  display: flex;
  flex-wrap: wrap;
  gap: .25rem;
  align-items: center;
  margin-bottom: 1rem;
}
.breadcrumb a { color: var(--wap-subtext); }
.breadcrumb a:hover { color: var(--wap-black); text-decoration: underline; }
.breadcrumb .sep { color: var(--wap-border); }
.breadcrumb .current { color: var(--wap-black); font-weight: 500; }

/* ---- Main Layout ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }
.section { padding: 2rem 0; }

/* ---- Product Hero ---- */
.product-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  padding: 1.5rem 0 2rem;
}
@media (max-width: 768px) {
  .product-hero { grid-template-columns: 1fr; gap: 1.25rem; }
}

/* Gallery */
.product-gallery { position: relative; }
.gallery-badge {
  position: absolute;
  top: .75rem;
  left: .75rem;
  background: var(--wap-orange);
  color: var(--wap-white);
  font-size: .75rem;
  font-weight: 700;
  padding: .25rem .6rem;
  border-radius: 4px;
  z-index: 2;
}
.gallery-main {
  border: 1.5px solid var(--wap-border);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fafafa;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1rem;
}
.gallery-thumbs {
  display: flex;
  gap: .5rem;
  margin-top: .75rem;
  overflow-x: auto;
  scrollbar-width: none;
}
.gallery-thumbs::-webkit-scrollbar { display: none; }
.gallery-thumb {
  border: 2px solid var(--wap-border);
  border-radius: 6px;
  overflow: hidden;
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  cursor: pointer;
  transition: border-color .2s;
  background: #fafafa;
}
.gallery-thumb.active,
.gallery-thumb:hover { border-color: var(--wap-black); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: contain; padding: .3rem; }

/* Product Info */
.product-info {}
.product-ref {
  font-size: .75rem;
  color: var(--wap-subtext);
  margin-bottom: .5rem;
}
.product-title {
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--wap-black);
  margin-bottom: .75rem;
}
.product-stars {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: .75rem;
}
.stars-icons { color: var(--wap-yellow); font-size: .9rem; letter-spacing: -.05em; }
.stars-count { font-size: .8125rem; color: var(--wap-subtext); }
.stars-count a { color: var(--wap-black); text-decoration: underline; }

.product-tagline {
  font-size: .875rem;
  color: var(--wap-subtext);
  margin-bottom: 1rem;
  font-style: italic;
}

.product-price-block {
  background: var(--wap-lgray);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin-bottom: 1.25rem;
}
.price-pix {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--wap-black);
  line-height: 1;
}
.price-pix small { font-size: 1rem; font-weight: 600; }
.price-pix-label {
  font-size: .75rem;
  color: var(--wap-subtext);
  margin-top: .25rem;
}
.price-discount {
  display: inline-block;
  background: var(--wap-green);
  color: var(--wap-white);
  font-size: .6875rem;
  font-weight: 700;
  padding: .15rem .5rem;
  border-radius: 4px;
  margin-top: .4rem;
}

.product-voltage {
  margin-bottom: 1rem;
}
.voltage-label {
  font-size: .8125rem;
  font-weight: 600;
  margin-bottom: .5rem;
}
.voltage-options {
  display: flex;
  gap: .5rem;
}
.voltage-btn {
  border: 2px solid var(--wap-border);
  border-radius: 6px;
  padding: .35rem .9rem;
  font-size: .8125rem;
  font-weight: 500;
  transition: all .2s;
  background: var(--wap-white);
}
.voltage-btn.active,
.voltage-btn:hover {
  border-color: var(--wap-black);
  background: var(--wap-black);
  color: var(--wap-white);
}

.product-qty {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1rem;
}
.qty-control {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--wap-border);
  border-radius: 8px;
  overflow: hidden;
}
.qty-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--wap-black);
  transition: background .15s;
}
.qty-btn:hover { background: var(--wap-lgray); }
.qty-val {
  width: 40px;
  text-align: center;
  font-size: .875rem;
  font-weight: 600;
  border: none;
  outline: none;
}

.btn-buy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  width: 100%;
  background: var(--wap-black);
  color: var(--wap-white);
  font-size: 1rem;
  font-weight: 700;
  padding: .9rem 1.5rem;
  border-radius: var(--radius);
  transition: background .2s, transform .1s;
  margin-bottom: .75rem;
  letter-spacing: .01em;
}
.btn-buy:hover { background: #333; transform: translateY(-1px); }
.btn-buy:active { transform: translateY(0); }

.btn-cart {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  width: 100%;
  background: var(--wap-white);
  color: var(--wap-black);
  font-size: .9rem;
  font-weight: 600;
  padding: .75rem 1.5rem;
  border-radius: var(--radius);
  border: 2px solid var(--wap-black);
  transition: all .2s;
  margin-bottom: 1rem;
}
.btn-cart:hover { background: var(--wap-lgray); }

.freight-calc { margin-top: .5rem; }
.freight-calc-label {
  font-size: .8125rem;
  font-weight: 500;
  color: var(--wap-subtext);
  margin-bottom: .4rem;
  display: flex;
  align-items: center;
  gap: .35rem;
}
.freight-calc-row {
  display: flex;
  gap: .5rem;
}
.freight-input {
  flex: 1;
  border: 1.5px solid var(--wap-border);
  border-radius: 6px;
  padding: .45rem .75rem;
  font-size: .875rem;
  outline: none;
  transition: border-color .2s;
}
.freight-input:focus { border-color: var(--wap-black); }
.freight-btn {
  background: none;
  border: 1.5px solid var(--wap-black);
  border-radius: 6px;
  padding: .45rem 1rem;
  font-size: .8125rem;
  font-weight: 600;
  transition: all .2s;
}
.freight-btn:hover { background: var(--wap-black); color: var(--wap-white); }
.freight-link {
  display: block;
  font-size: .75rem;
  color: var(--wap-subtext);
  margin-top: .3rem;
  text-decoration: underline;
}

/* ---- Specs Bar ---- */
.specs-bar {
  background: var(--wap-lgray);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-around;
  gap: 1rem;
  margin: .5rem 0 1.5rem;
}
.spec-item {
  display: flex;
  align-items: center;
  gap: .6rem;
}
.spec-icon { font-size: 1.25rem; }
.spec-label { font-size: .6875rem; color: var(--wap-subtext); }
.spec-value { font-size: .9375rem; font-weight: 700; }

/* ---- Tabs ---- */
.product-tabs { border-bottom: 2px solid var(--wap-border); margin-bottom: 1.5rem; }
.tabs-nav {
  display: flex;
  gap: 0;
}
.tab-btn {
  padding: .75rem 1.25rem;
  font-size: .875rem;
  font-weight: 500;
  color: var(--wap-subtext);
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: all .2s;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
}
.tab-btn.active,
.tab-btn:hover { color: var(--wap-black); border-bottom-color: var(--wap-black); }

.tab-pane { display: none; }
.tab-pane.active { display: block; }
.tab-content-text {
  font-size: .875rem;
  line-height: 1.7;
  color: var(--wap-text);
}
.tab-content-text p { margin-bottom: 1rem; }
.tab-content-text strong { font-weight: 600; }

/* ---- Reviews ---- */
.reviews-section { padding: 2rem 0; }
.section-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}
.reviews-summary {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 1.5rem;
}
.reviews-avg {
  text-align: center;
  min-width: 100px;
}
.avg-score {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
}
.avg-stars { color: var(--wap-yellow); font-size: 1.1rem; }
.avg-label { font-size: .75rem; color: var(--wap-subtext); margin-top: .25rem; }
.reviews-bars { flex: 1; }
.bar-row {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: .4rem;
  font-size: .8125rem;
}
.bar-label { width: 50px; color: var(--wap-subtext); text-align: right; white-space: nowrap; }
.bar-track {
  flex: 1;
  height: 8px;
  background: var(--wap-border);
  border-radius: 4px;
  overflow: hidden;
}
.bar-fill {
  height: 100%;
  background: var(--wap-yellow);
  border-radius: 4px;
  transition: width .4s;
}
.bar-count { width: 20px; color: var(--wap-subtext); }

.review-card { border-bottom: 1px solid var(--wap-border); padding: 1.25rem 0; }
.review-header {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  margin-bottom: .5rem;
}
.review-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--wap-lgray);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .875rem;
  color: var(--wap-black);
  flex-shrink: 0;
}
.review-meta { flex: 1; }
.review-author {
  font-size: .875rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: .4rem;
}
.review-verified {
  font-size: .7rem;
  font-weight: 500;
  color: var(--wap-green);
  background: #ecfdf5;
  padding: .1rem .4rem;
  border-radius: 4px;
}
.review-date { font-size: .75rem; color: var(--wap-subtext); }
.review-stars { color: var(--wap-yellow); font-size: .8rem; }
.review-title { font-size: .875rem; font-weight: 600; margin: .4rem 0 .25rem; }
.review-text { font-size: .8125rem; color: var(--wap-text); line-height: 1.6; }
.review-helpful {
  margin-top: .6rem;
  font-size: .75rem;
  color: var(--wap-subtext);
  display: flex;
  align-items: center;
  gap: .4rem;
}
.review-helpful button {
  font-size: .75rem;
  color: var(--wap-subtext);
  text-decoration: underline;
}

.reviews-more {
  text-align: center;
  margin-top: 1.25rem;
}
.btn-more {
  border: 1.5px solid var(--wap-border);
  border-radius: 6px;
  padding: .6rem 1.5rem;
  font-size: .875rem;
  font-weight: 500;
  transition: all .2s;
  background: none;
}
.btn-more:hover { background: var(--wap-lgray); border-color: var(--wap-black); }

/* ---- Trust Badges ---- */
.trust-section {
  background: var(--wap-lgray);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin: 1.5rem 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 1.25rem;
}
@media (max-width: 600px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: .4rem;
}
.trust-icon { font-size: 1.75rem; }
.trust-title { font-size: .8125rem; font-weight: 600; }
.trust-desc { font-size: .6875rem; color: var(--wap-subtext); }
.trust-divider {
  height: 1px;
  background: var(--wap-border);
  margin: 1rem 0;
}
.trust-payment {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.trust-payment-title { font-size: .8125rem; font-weight: 600; }
.payment-icons {
  display: flex;
  gap: .5rem;
  align-items: center;
}
.payment-icon {
  background: var(--wap-white);
  border: 1px solid var(--wap-border);
  border-radius: 4px;
  padding: .2rem .6rem;
  font-size: .75rem;
  font-weight: 700;
  color: var(--wap-black);
}
.security-badges {
  display: flex;
  gap: .75rem;
  align-items: center;
  margin-left: auto;
}
.sec-badge {
  display: flex;
  align-items: center;
  gap: .3rem;
  font-size: .6875rem;
  color: var(--wap-subtext);
}
.sec-badge span { font-size: .9rem; }

/* ---- Related Products ---- */
.related-section { padding: 2rem 0; }
.related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
@media (max-width: 900px) { .related-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .related-grid { grid-template-columns: 1fr 1fr; gap: .65rem; } }

.product-card {
  border: 1.5px solid var(--wap-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow .2s, transform .2s;
}
.product-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.card-img-wrap {
  position: relative;
  background: #fafafa;
  padding: .75rem;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-badge {
  position: absolute;
  top: .5rem;
  left: .5rem;
  background: var(--wap-orange);
  color: var(--wap-white);
  font-size: .65rem;
  font-weight: 700;
  padding: .15rem .45rem;
  border-radius: 3px;
}
.card-img-wrap img { width: 100%; height: 100%; object-fit: contain; }
.card-body { padding: .75rem; }
.card-name {
  font-size: .8125rem;
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: .35rem;
  color: var(--wap-black);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-stars { color: var(--wap-yellow); font-size: .7rem; margin-bottom: .35rem; }
.card-price {
  font-size: 1rem;
  font-weight: 800;
  color: var(--wap-black);
  margin-bottom: .25rem;
}
.card-installment {
  font-size: .6875rem;
  color: var(--wap-subtext);
  margin-bottom: .5rem;
}
.card-voltage { font-size: .6875rem; color: var(--wap-subtext); margin-bottom: .6rem; }
.btn-card-buy {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--wap-orange);
  color: var(--wap-white);
  font-size: .8125rem;
  font-weight: 700;
  padding: .55rem;
  border-radius: 6px;
  transition: background .2s;
  margin-bottom: .4rem;
}
.btn-card-buy:hover { background: var(--wap-black); }
.btn-card-add {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .3rem;
  width: 100%;
  font-size: .75rem;
  font-weight: 500;
  color: var(--wap-subtext);
  padding: .3rem;
  border: 1px solid var(--wap-border);
  border-radius: 6px;
  transition: all .2s;
  background: none;
}
.btn-card-add:hover { background: var(--wap-lgray); color: var(--wap-black); }

/* ---- Footer ---- */
.site-footer {
  background: var(--wap-black);
  color: var(--wap-white);
  margin-top: 3rem;
  padding: 2.5rem 0 1rem;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  .footer-top { grid-template-columns: 1fr; }
}
.footer-brand-text {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -.02em;
  margin-bottom: .75rem;
}
.footer-brand-text span { color: var(--wap-yellow); }
.footer-desc {
  font-size: .8125rem;
  color: rgba(255,255,255,.6);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.footer-social {
  display: flex;
  gap: .6rem;
}
.social-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  transition: background .2s;
}
.social-btn:hover { background: var(--wap-yellow); color: var(--wap-black); }

.footer-col-title {
  font-size: .875rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--wap-white);
}
.footer-links { display: flex; flex-direction: column; gap: .5rem; }
.footer-links a {
  font-size: .8125rem;
  color: rgba(255,255,255,.6);
  transition: color .2s;
}
.footer-links a:hover { color: var(--wap-white); }

.footer-bottom {
  padding-top: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .75rem;
  font-size: .75rem;
  color: rgba(255,255,255,.45);
}

/* ---- Checkout Page ---- */
.checkout-page { max-width: 900px; margin: 0 auto; padding: 1.5rem 1.25rem; }
.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 2rem;
  align-items: start;
}
@media (max-width: 768px) {
  .checkout-grid { grid-template-columns: 1fr; }
}

.checkout-section {
  background: var(--wap-white);
  border: 1.5px solid var(--wap-border);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1.25rem;
}
.checkout-section-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid var(--wap-border);
  display: flex;
  align-items: center;
  gap: .5rem;
}
.field-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
}
@media (max-width: 500px) { .field-group { grid-template-columns: 1fr; } }
.field-group.full { grid-template-columns: 1fr; }
.field-group.trio { grid-template-columns: 1fr 1fr 1fr; }

.form-field { margin-bottom: .75rem; }
.form-label {
  display: block;
  font-size: .8125rem;
  font-weight: 500;
  margin-bottom: .35rem;
  color: var(--wap-black);
}
.form-label .req { color: var(--wap-red); margin-left: .15rem; }
.form-input,
.form-select {
  width: 100%;
  border: 1.5px solid var(--wap-border);
  border-radius: 6px;
  padding: .6rem .875rem;
  font-size: .875rem;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  background: var(--wap-white);
  color: var(--wap-text);
}
.form-input:focus,
.form-select:focus {
  border-color: var(--wap-black);
  box-shadow: 0 0 0 3px rgba(0,0,0,.06);
}
.form-input.error { border-color: var(--wap-red); }
.form-error {
  font-size: .75rem;
  color: var(--wap-red);
  margin-top: .25rem;
  display: none;
}
.form-error.show { display: block; }

/* Order Summary */
.order-summary {
  background: var(--wap-white);
  border: 1.5px solid var(--wap-border);
  border-radius: var(--radius);
  overflow: hidden;
  position: sticky;
  top: 80px;
}
.order-summary-header {
  background: var(--wap-black);
  color: var(--wap-white);
  padding: 1rem 1.25rem;
  font-size: .9375rem;
  font-weight: 700;
}
.order-summary-body { padding: 1.25rem; }
.order-prod-img-wrap {
  background: var(--wap-lgray);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: .5rem;
  height: 100px;
  margin-bottom: 1rem;
}
.order-prod-img-wrap img {
  max-height: 80px;
  object-fit: contain;
}
.order-prod-name {
  font-size: .875rem;
  font-weight: 600;
  margin-bottom: .75rem;
  line-height: 1.3;
}
.order-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .8125rem;
  padding: .4rem 0;
  color: var(--wap-subtext);
}
.order-line.total {
  border-top: 2px solid var(--wap-border);
  margin-top: .5rem;
  padding-top: .75rem;
  font-size: 1rem;
  font-weight: 800;
  color: var(--wap-black);
}
.btn-checkout-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  width: 100%;
  background: var(--wap-black);
  color: var(--wap-white);
  font-size: 1rem;
  font-weight: 700;
  padding: .9rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  margin-top: 1.25rem;
  transition: background .2s;
  letter-spacing: .01em;
}
.btn-checkout-submit:hover { background: #333; }
.btn-checkout-submit:disabled {
  background: var(--wap-gray);
  cursor: not-allowed;
}

/* ---- PIX Page ---- */
.pix-page {
  max-width: 520px;
  margin: 2rem auto;
  padding: 0 1.25rem;
  text-align: center;
}
.pix-card {
  background: var(--wap-white);
  border: 1.5px solid var(--wap-border);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: var(--shadow);
}
.pix-status {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: #fef9ec;
  border: 1px solid #f5a623;
  color: #92400e;
  font-size: .8125rem;
  font-weight: 600;
  padding: .4rem 1rem;
  border-radius: 20px;
  margin-bottom: 1.25rem;
}
.pix-status .dot {
  width: 8px;
  height: 8px;
  background: var(--wap-yellow);
  border-radius: 50%;
  animation: pulse 1.2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .6; transform: scale(1.2); }
}

.pix-title { font-size: 1.125rem; font-weight: 700; margin-bottom: .4rem; }
.pix-subtitle { font-size: .875rem; color: var(--wap-subtext); margin-bottom: 1.5rem; }

.pix-qrcode {
  border: 2px solid var(--wap-border);
  border-radius: 10px;
  padding: .75rem;
  display: inline-block;
  margin-bottom: 1.25rem;
  background: var(--wap-white);
}
.pix-qrcode img { width: 200px; height: 200px; }

.pix-copy-label {
  font-size: .8125rem;
  font-weight: 600;
  margin-bottom: .5rem;
  color: var(--wap-subtext);
}
.pix-copy-row {
  display: flex;
  gap: .5rem;
  margin-bottom: 1.25rem;
}
.pix-copy-input {
  flex: 1;
  border: 1.5px solid var(--wap-border);
  border-radius: 6px;
  padding: .55rem .75rem;
  font-size: .75rem;
  background: var(--wap-lgray);
  outline: none;
  color: var(--wap-subtext);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.btn-copy {
  background: var(--wap-black);
  color: var(--wap-white);
  border-radius: 6px;
  padding: .55rem 1rem;
  font-size: .8125rem;
  font-weight: 600;
  transition: background .2s;
  white-space: nowrap;
}
.btn-copy:hover { background: #333; }
.btn-copy.copied { background: var(--wap-green); }

.pix-timer {
  font-size: .875rem;
  color: var(--wap-subtext);
  margin-bottom: 1.25rem;
}
.pix-timer strong { color: var(--wap-red); font-size: 1rem; }

.pix-steps {
  text-align: left;
  background: var(--wap-lgray);
  border-radius: 8px;
  padding: 1rem 1.25rem;
  margin-bottom: 1.25rem;
}
.pix-steps-title {
  font-size: .8125rem;
  font-weight: 700;
  margin-bottom: .6rem;
  color: var(--wap-black);
}
.pix-step {
  display: flex;
  gap: .75rem;
  font-size: .8125rem;
  color: var(--wap-text);
  margin-bottom: .4rem;
}
.pix-step-num {
  width: 20px;
  height: 20px;
  background: var(--wap-black);
  color: var(--wap-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .625rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: .1rem;
}

.pix-amount {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 8px;
  padding: .75rem 1rem;
  margin-bottom: 1rem;
  font-size: .875rem;
  font-weight: 600;
  color: #166534;
}
.pix-amount span { font-size: 1.25rem; }

/* ---- Obrigado Page ---- */
.obrigado-page {
  max-width: 520px;
  margin: 3rem auto;
  padding: 0 1.25rem;
  text-align: center;
}
.obrigado-icon {
  width: 80px;
  height: 80px;
  background: var(--wap-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.25rem;
  color: white;
}
.obrigado-title {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: .5rem;
}
.obrigado-subtitle { font-size: .9375rem; color: var(--wap-subtext); margin-bottom: 1.5rem; }
.obrigado-card {
  background: var(--wap-lgray);
  border-radius: 10px;
  padding: 1.25rem;
  margin-bottom: 1.25rem;
  text-align: left;
}
.obrigado-card-title { font-size: .875rem; font-weight: 700; margin-bottom: .75rem; }
.btn-home {
  display: inline-block;
  background: var(--wap-black);
  color: var(--wap-white);
  font-size: .9375rem;
  font-weight: 700;
  padding: .85rem 2rem;
  border-radius: var(--radius);
  transition: background .2s;
}
.btn-home:hover { background: #333; }

/* ---- Alerts / Toast ---- */
.toast {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  background: var(--wap-black);
  color: var(--wap-white);
  padding: .7rem 1.5rem;
  border-radius: 8px;
  font-size: .875rem;
  font-weight: 500;
  z-index: 999;
  transition: transform .3s cubic-bezier(.34,1.56,.64,1);
  white-space: nowrap;
}
.toast.show { transform: translateX(-50%) translateY(0); }
.toast.success { background: var(--wap-green); }
.toast.error   { background: var(--wap-red); }

/* ---- Loading Spinner ---- */
.spinner {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2.5px solid rgba(255,255,255,.3);
  border-top-color: var(--wap-white);
  border-radius: 50%;
  animation: spin .7s linear infinite;
  flex-shrink: 0;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---- Responsive Misc ---- */
@media (max-width: 768px) {
  .announcement-bar { font-size: .75rem; }
  .product-title { font-size: 1.125rem; }
  .price-pix { font-size: 1.5rem; }
  .specs-bar { gap: .5rem; padding: .75rem; }
  .spec-value { font-size: .8125rem; }
}
