*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smooth: always;
  text-rendering: optimizeSpeed;
}

body {
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  color: #333;
  background: #fff;
  line-height: 1.4;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

ul, ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

input {
  font-family: inherit;
  font-size: inherit;
}

/* ===== PROMO TOP BAR ===== */
.promo-bar {
  background: #f4f7f9;
  color: #1e3a5a;
  text-align: center;
  padding: 12px 12px;
  font-size: 11.5px;
  font-weight: 500;
  line-height: 1.4;
  position: relative;
  z-index: 100;
}
.promo-bar strong {
  font-weight: 800;
}

/* ===== MAIN HEADER ===== */
.main-header {
  background: #fff;
  border-bottom: 1px solid #e5e5e5;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  height: 56px;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hamburger-btn {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 6px;
  width: 36px;
  height: 36px;
  justify-content: center;
  align-items: center;
}
.hamburger-btn span {
  display: block;
  width: 20px;
  height: 2px;
  background: #004791;
  border-radius: 1px;
  transition: all 0.3s;
}

.logo-link {
  display: flex;
  align-items: center;
}
.logo-link img.logo-img {
  height: 32px;
  width: auto;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 2px;
}

.header-icon-btn {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4px;
  min-width: 34px;
  height: 34px;
}
.location-btn {
  flex-direction: column;
  align-items: center;
  gap: 1px;
  height: auto;
  padding: 3px 6px;
}
.location-label {
  font-size: 9px;
  font-weight: 600;
  color: #004791;
  white-space: nowrap;
  max-width: 72px;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1;
}
.header-icon-btn svg {
  width: 23px;
  height: 23px;
  color: #004791;
  fill: none;
  stroke: #004791;
  stroke-width: 1.5;
}
.header-icon-btn .icon-label {
  font-size: 8px;
  color: #666;
  margin-top: 1px;
  white-space: nowrap;
  max-width: 50px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cart-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: #004791;
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* ===== SEARCH BAR (Mobile) ===== */
.search-bar-mobile {
  display: none;
  padding: 8px 12px;
  background: #fff;
  border-bottom: 1px solid #e5e5e5;
}
.search-bar-mobile.active {
  display: block;
}
.search-input-wrap {
  display: flex;
  border: 2px solid #004791;
  border-radius: 6px;
  overflow: hidden;
}
.search-input-wrap input {
  flex: 1;
  padding: 10px 12px;
  border: none;
  outline: none;
  font-size: 14px;
  color: #333;
}
.search-input-wrap button {
  background: #004791;
  color: #fff;
  padding: 0 14px;
  display: flex;
  align-items: center;
}
.search-input-wrap button svg {
  width: 20px;
  height: 20px;
  stroke: #fff;
  fill: none;
}

/* ===== BREADCRUMBS ===== */
.breadcrumbs {
  padding: 12px 12px;
  font-size: 14px;
  color: #666;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  background: #fff;
  border-bottom: 1px solid #f0f0f0;
}
.breadcrumbs a {
  color: #666;
}
.breadcrumbs .sep {
  color: #999;
  font-size: 22px;
  line-height: 1;
  position: relative;
  top: -2px;
}
.breadcrumbs .current {
  color: #666;
}

/* ===== SHIPPING TOP BANNER ===== */
.shipping-banner {
  background: linear-gradient(135deg, #3a7bd5, #004791);
  color: #fff;
  text-align: center;
  padding: 8px 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.shipping-banner svg {
  width: 18px;
  height: 18px;
  fill: #fff;
  flex-shrink: 0;
}

/* ===== PRODUCT IMAGE GALLERY ===== */
.product-gallery {
  position: relative;
  background: #fff;
  padding: 12px;
  overflow: hidden;
}

.gallery-badges {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.badge-discount {
  background: #c0392b;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 3px;
}

.gallery-wishlist {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 10;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}
.gallery-wishlist svg {
  width: 18px;
  height: 18px;
  stroke: #999;
  fill: none;
  stroke-width: 2;
}

.tns-ovh {
  overflow: hidden;
  border-radius: 12px;
  position: relative;
}
.tns-inner {
  overflow: hidden;
}
.gallery-slider {
  display: flex;
  transition: transform 0.35s ease;
  touch-action: pan-y;
  will-change: transform;
}
.gallery-slide {
  min-width: 100%;
  position: relative;
}
.gallery-slide picture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.gallery-slide picture img,
.gallery-slide .w-full {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.gallery-dots {
  position: absolute;
  bottom: 12px;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  justify-content: center;
  gap: 8px;
}
.gallery-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1.5px solid #004791;
  background: transparent;
  transition: all 0.3s;
  padding: 0;
}
.gallery-dot.active {
  background: #004791;
}

/* ===== DISPATCH FLAG ===== */
.product-dispatch_flag {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 8px;
  background: rgba(74, 140, 195, 0.88);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 9px 12px;
}
.product-dispatch_flag svg {
  flex-shrink: 0;
  fill: #fff;
  stroke: none;
}
.product-dispatch_flag span {
  line-height: 1.3;
  white-space: nowrap;
}
.product-dispatch_flag strong {
  font-weight: 800;
}

/* ===== PRODUCT INTRODUCTION ===== */
.product-introduction {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  background: #fff;
  border-bottom: 1px solid #f0f0f0;
}
.product-review_resume button {
  display: flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.yv-quickreview__stars {
  display: flex;
  align-items: center;
  gap: 1px;
}
.yv-quickreview__stars__star svg {
  width: 16px;
  height: 16px;
  display: block;
}
.star-icon {
  color: #f5a623 !important;
  fill: #f5a623 !important;
}
.yv-quickreview__stars__star svg path {
  fill: #f5a623 !important;
}
.yv-quickreview__info {
  display: flex;
  align-items: center;
  gap: 3px;
  margin-left: 4px;
}
.yv-quickreview__info__total {
  font-size: 13px;
  font-weight: 700;
  color: #333;
}
.yv-quickreview__info__description {
  font-size: 12px;
  color: #666;
}
.product-introduction .product-brand {
  font-size: 12px;
  color: #666;
  border-left: 1px solid #ddd;
  padding-left: 8px;
}
.product-introduction .product-brand a {
  color: #004791;
  font-weight: 400;
}
.product-introduction_bottom {
  display: flex;
  align-items: center;
  border-left: 1px solid #ddd;
  padding-left: 8px;
}
.product-introduction_bottom .product-sku {
  font-size: 11px;
  color: #999;
}

/* ===== PRODUCT INFO ===== */
.product-info {
  padding: 16px 12px;
  background: #fff;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}
.stars {
  display: flex;
  gap: 1px;
}
.stars svg {
  width: 14px;
  height: 14px;
  fill: #f5a623;
}
.rating-count {
  font-size: 12px;
  color: #004791;
  font-weight: 600;
}

.product-brand-sku {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}
.product-brand {
  font-size: 12px;
  color: #004791;
  font-weight: 600;
}
.product-sku {
  font-size: 11px;
  color: #999;
}

.product-title {
  font-size: 18px;
  font-weight: 700;
  color: #333;
  text-transform: uppercase;
  line-height: 1.35;
  margin-bottom: 16px;
  letter-spacing: 0.2px;
}

/* ===== PRICE SECTION ===== */
.price-section {
  padding: 0 12px 16px;
  background: #fff;
  margin-top: -12px;
}

.product-price_value {
  font-size: 26px;
  font-weight: 800;
  color: #004791;
  line-height: 1.2;
  margin-bottom: 4px;
}
.product-price_value .type {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: #555;
  margin-top: 2px;
  margin-bottom: 16px;
}
.product-price_value .discount {
  color: #555;
}
.product-price_value .discount b {
  color: #27ae60;
  font-weight: 700;
}

.price-original {
  font-size: 13px;
  color: #444;
  font-weight: 400;
  margin-bottom: 4px;
}

.price-installments {
  font-size: 13px;
  color: #555;
  margin-bottom: 2px;
}
.price-installments strong {
  color: #333;
}

.payment-link {
  font-size: 12px;
  color: #004791;
  font-weight: 600;
  text-decoration: underline;
  display: inline-block;
  margin-bottom: 4px;
}

/* ===== QUANTITY & BUY ===== */
.buy-section {
  padding: 0 12px 16px;
  background: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
}

.quantity-selector {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
}
.qty-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #004791;
  font-weight: 600;
  background: #f8f8f8;
  border: none;
  transition: background 0.2s;
}
.qty-btn:active {
  background: #e0e0e0;
}
.qty-input {
  width: 50px;
  height: 40px;
  text-align: center;
  border: none;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
  font-size: 15px;
  font-weight: 600;
  color: #333;
  outline: none;
  background: #fff;
}

.btn-buy {
  flex: 1;
  height: 42px;
  padding: 0 14px;
  background: #27ae60;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 6px;
  letter-spacing: 0.5px;
  transition: background 0.2s, transform 0.1s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.btn-buy:active {
  background: #219a52;
  transform: scale(0.98);
}
.btn-buy svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}

/* ===== SHIPPING CALCULATOR ===== */
.shipping-calc {
  padding: 16px 12px;
  background: #f9f9f9;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}
.shipping-calc h3 {
  font-size: 13px;
  font-weight: 400;
  color: #333;
  margin-bottom: 10px;
}
.cep-input-wrap {
  display: flex;
  align-items: center;
  border: 1px solid #ccc;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 6px;
  background: #fff;
}
.cep-pin-icon {
  width: 18px;
  height: 18px;
  margin-left: 10px;
  flex-shrink: 0;
}
.cep-input-wrap input {
  flex: 1;
  padding: 11px 10px;
  border: none;
  font-size: 13px;
  outline: none;
  background: transparent;
  color: #333;
}
.cep-input-wrap input::placeholder {
  color: #bbb;
}
.btn-cep {
  width: 42px;
  height: 42px;
  background: #004791;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s;
}
.btn-cep svg {
  width: 18px;
  height: 18px;
}
.btn-cep:active {
  background: #003670;
}
.cep-help {
  font-size: 11px;
  color: #004791;
}
.cep-help a {
  text-decoration: underline;
}

.shipping-results {
  margin-top: 10px;
  display: none;
}
.shipping-results.active {
  display: block;
}
.shipping-address {
  font-size: 11px;
  color: #888;
  margin-bottom: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid #eee;
}
.shipping-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 8px;
  border-bottom: 1px solid #eee;
  font-size: 13px;
  background: #fff;
}
.shipping-option:nth-child(even) {
  background: #f7f7f7;
}
.shipping-option:last-child {
  border-bottom: none;
}
.shipping-name {
  font-weight: 600;
  color: #888;
  font-size: 13px;
}
.shipping-price {
  font-weight: 600;
  color: #888;
  font-size: 12px;
  margin-top: 2px;
}
.shipping-time {
  color: #666;
  font-size: 12px;
  white-space: nowrap;
  margin-left: 8px;
}
.cep-error {
  font-size: 12px;
  color: #c0392b;
  margin-top: 6px;
}

.shipping-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
}
.pickup-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 10px;
  background: #1a1a1a;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  border-radius: 4px;
  transition: background 0.2s;
  white-space: nowrap;
}
.pickup-btn:active {
  background: #333;
}
.pickup-link {
  font-size: 13px;
  color: #333;
  text-decoration: underline;
  text-align: center;
  margin-top: 8px;
}
.pickup-link a {
  font-size: 12px;
  color: #004791;
  text-decoration: underline;
}

/* ===== TAX NOTICE ===== */
.tax-notice {
  padding: 10px 12px;
  background: #fff8e1;
  border: 1px solid #ffe0b2;
  margin: 12px;
  border-radius: 4px;
  font-size: 11px;
  color: #e65100;
  line-height: 1.4;
}
.tax-notice a {
  color: #004791;
  text-decoration: underline;
}

/* ===== COMPRE JUNTO ===== */
.buy-together {
  padding: 16px 12px;
  background: #f5f5f5;
  border-top: 4px solid #eee;
}
.buy-together h3 {
  font-size: 15px;
  font-weight: 700;
  color: #004791;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.together-items {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.together-item {
  flex: 1;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  padding: 10px;
  text-align: center;
}
.together-item img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin: 0 auto 6px;
}
.together-item .item-name {
  font-size: 10px;
  color: #555;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.together-plus {
  font-size: 24px;
  font-weight: 700;
  color: #004791;
  flex-shrink: 0;
}
.together-total {
  text-align: center;
  margin-bottom: 10px;
}
.together-total .total-label {
  font-size: 12px;
  color: #666;
}
.together-total .total-price {
  font-size: 20px;
  font-weight: 800;
  color: #004791;
}
.together-total .total-installments {
  font-size: 12px;
  color: #555;
}
.btn-together {
  width: 100%;
  padding: 12px;
  background: #004791;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 6px;
  transition: background 0.2s;
}
.btn-together:active {
  background: #003670;
}

/* ===== BUY TOGETHER ===== */
.buy-together {
  background: #f5f5f5;
  padding: 20px 12px;
  text-align: center;
}
.buy-together-title {
  font-size: 14px;
  font-weight: 800;
  color: #004791;
  text-transform: uppercase;
  line-height: 1.3;
  margin-bottom: 40px;
}
.buy-together-products {
  display: flex;
  align-items: stretch;
  gap: 8px;
  justify-content: center;
}
.together-card {
  position: relative;
  background: #fff;
  border-radius: 8px;
  padding: 12px 8px;
  flex: 1;
  min-width: 0;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  overflow: visible;
}
.together-card img {
  width: 100%;
  max-width: 110px;
  height: 110px;
  object-fit: contain;
  margin: 0 auto 8px;
}
.together-card--badge {
  padding-top: 24px;
}
.together-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #004791;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 4px;
  white-space: nowrap;
}
.together-name {
  font-size: 12px;
  color: #333;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 4px;
}
.together-brand {
  font-size: 11px;
  color: #888;
  margin-bottom: 6px;
}
.together-price {
  font-size: 14px;
  font-weight: 700;
  color: #004791;
}
.together-pix {
  font-size: 10px;
  color: #555;
  line-height: 1.3;
}
.together-pix strong {
  color: #27ae60;
}
.together-dots {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-top: 8px;
}
.together-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ccc;
  display: inline-block;
}
.together-dot.active {
  background: #004791;
}
.together-plus {
  font-size: 22px;
  font-weight: 300;
  color: #004791;
  flex-shrink: 0;
  align-self: center;
}
.together-equals {
  font-size: 28px;
  font-weight: 700;
  color: #004791;
  margin: 12px 0 4px;
  letter-spacing: -2px;
}
.together-total {
  margin-bottom: 16px;
}
.together-total .total-price {
  font-size: 22px;
  font-weight: 800;
  color: #004791;
}
.together-total .total-installments {
  font-size: 12px;
  color: #555;
}
.btn-together {
  width: 100%;
  padding: 13px;
  background: #004791;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  border-radius: 6px;
  letter-spacing: 0.3px;
  transition: background 0.2s;
}
.btn-together:active {
  background: #003670;
}

/* ===== TAX NOTICE ===== */
.tax-notice {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: #f4f7fb;
  border-top: 1px solid #e8eef5;
  border-bottom: 1px solid #e8eef5;
}
.tax-notice svg {
  flex-shrink: 0;
  color: #6b8ab0;
}
.tax-notice p {
  font-size: 12px;
  color: #555;
  line-height: 1.4;
}
.tax-notice strong {
  color: #333;
}

/* ===== PRODUCT ACCORDIONS ===== */
.product-accordions {
  background: #fff;
  border-top: 4px solid #eee;
}
.accordion-item {
  border-bottom: 1px solid #eee;
}
.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 12px;
  font-size: 14px;
  font-weight: 700;
  color: #004791;
  text-transform: uppercase;
  width: 100%;
  text-align: left;
  background: #fff;
  transition: background 0.2s;
}
.accordion-header:active {
  background: #f8f8f8;
}
.accordion-chevron {
  width: 14px;
  height: 14px;
  stroke: #004791;
  fill: none;
  stroke-width: 2.5;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.accordion-item.open .accordion-chevron {
  transform: rotate(180deg);
}
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.accordion-item.open .accordion-body {
  max-height: none !important;
}
.accordion-body-inner {
  padding: 0 12px 16px;
  font-size: 13px;
  color: #555;
  line-height: 1.7;
}
.accordion-body-inner p {
  margin-bottom: 10px;
}
.accordion-body-inner ul {
  padding-left: 16px;
  list-style: disc;
}
.accordion-body-inner ul li {
  margin-bottom: 4px;
}
.accordion-body-inner table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
}
.accordion-body-inner table td {
  padding: 8px;
  border: 1px solid #e5e5e5;
  vertical-align: top;
}
.accordion-body-inner table td:first-child {
  font-weight: 600;
  background: #f9f9f9;
  width: 40%;
  color: #333;
}

/* ===== RELATED PRODUCTS ===== */
.related-products {
  padding: 16px 0;
  background: #fff;
  border-top: 4px solid #eee;
}
.related-products h3 {
  font-size: 15px;
  font-weight: 700;
  color: #004791;
  text-transform: uppercase;
  padding: 0 12px;
  margin-bottom: 12px;
}

/* Slider wrapper */
.related-products .tns-ovh {
  overflow-x: auto;
  overflow-y: hidden;
  border-radius: 0;
  scrollbar-width: none;
}
.related-products .tns-ovh::-webkit-scrollbar { display: none; }
.related-products .tns-inner { overflow: visible; }

/* ===== PRODUCT REVIEWS ===== */
.review-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 10px 4px;
}
.review-card {
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}
.review-photo {
  width: 100%;
  max-width: 100%;
  border-radius: 8px;
  margin-bottom: 12px;
  object-fit: cover;
  max-height: 300px;
}
.review-header {
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
}
.review-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 4px;
}
.review-stars svg {
  width: 14px !important;
  height: 14px !important;
}
.review-author-wrap {
  display: flex;
  align-items: center;
  gap: 6px;
}
.review-author {
  font-size: 14px;
  font-weight: 700;
  color: #333;
}
.review-verified {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 600;
  color: #27ae60;
}
.review-verified svg {
  width: 12px;
  height: 12px;
  fill: #27ae60;
}
.review-date {
  font-size: 11px;
  color: #999;
  margin-top: 2px;
}
.review-body {
  font-size: 13px;
  color: #555;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }
}

/* Slider track */
.spot-slider {
  display: flex !important;
  gap: 12px;
  padding: 4px 12px 16px;
  width: max-content;
}

/* Card */
.spot {
  width: 190px;
  min-width: 190px;
  flex-shrink: 0;
}

.spot-box {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}
.spot-box:hover {
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}

/* Imagem */
.spot-image_box {
  display: flex;
  justify-content: center;
  padding: 14px;
  background: #f8f8f8;
}
.spot-image_box img {
  width: 100%;
  height: 140px;
  object-fit: contain;
}

/* Conteúdo */
.spot-bottom {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 10px 12px 6px;
}
.spot-title {
  font-size: 12px;
  font-weight: 500;
  color: #333;
  line-height: 1.4;
  margin-bottom: 5px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  width: 100%;
}
.spot-title a { color: inherit; }
.spot-brand {
  font-size: 10px;
  font-weight: 600;
  color: #004791;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.spot-bottom .yv-quickreview__stars {
  margin-bottom: 2px;
}
.spot-bottom .yv-quickreview__stars__star svg {
  width: 11px;
  height: 11px;
}
.spot-bottom .yv-quickreview__info {
  display: none;
}

/* Preço */
.spot-price {
  width: 100%;
  padding: 6px 12px 4px;
  border-top: 1px solid #f0f0f0;
}
.spot-price .product-price_value {
  font-size: 15px;
  font-weight: 700;
  color: #222;
  line-height: 1.2;
}
.product-price_value .type {
  font-size: 9px;
  font-weight: 400;
  color: #666;
}
.product-price_value .discount {
  color: #27ae60;
  font-weight: 600;
}
.spot-price .product-installment {
  font-size: 11px;
  color: #666;
  margin-top: 3px;
}
.spot-price .product-installment .until {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.spot-price .product-installment .until::before {
  content: '';
  display: inline-block;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23666'%3E%3Cpath d='M20 4H4c-1.11 0-2 .89-2 2v12c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V6c0-1.11-.89-2-2-2zm0 14H4v-6h16v6zm0-10H4V6h16v2z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

/* Botão */
.spot-buttons {
  padding: 6px 12px 10px;
}
.btn-buy_add {
  width: 100%;
  background: #004791;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 10px 0;
  border-radius: 6px;
  letter-spacing: 0.04em;
  transition: background 0.2s;
}
.btn-buy_add:hover { background: #003570; }
.related-card {
  min-width: 160px;
  max-width: 160px;
  scroll-snap-align: start;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  padding: 10px;
  display: flex;
  flex-direction: column;
}
.related-card img {
  width: 100%;
  height: 120px;
  object-fit: contain;
  margin-bottom: 8px;
}
.related-card .related-name {
  font-size: 11px;
  color: #333;
  line-height: 1.3;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}
.related-card .related-price-old {
  font-size: 10px;
  color: #999;
  text-decoration: line-through;
}
.related-card .related-price {
  font-size: 13px;
  font-weight: 700;
  color: #004791;
  margin-bottom: 2px;
}
.related-card .related-installments {
  font-size: 10px;
  color: #666;
}
.related-card .related-discount {
  position: absolute;
  top: 6px;
  left: 6px;
  background: #c0392b;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 3px;
}

/* ===== FOOTER ===== */
.site-footer {
  background: #1a1a1a;
  color: #ccc;
  padding-top: 20px;
}

.footer-about {
  padding: 0 12px 16px;
  font-size: 11px;
  line-height: 1.6;
  color: #999;
  border-bottom: 1px solid #333;
}
.footer-about .footer-logo {
  margin-bottom: 12px;
}
.footer-about .footer-logo img {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-social {
  padding: 12px;
  text-align: center;
  border-bottom: 1px solid #333;
}
.footer-social h4 {
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}
.social-icons {
  display: flex;
  justify-content: center;
  gap: 14px;
}
.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #333;
  transition: background 0.2s;
}
.social-icons a:active {
  background: #555;
}
.social-icons a svg {
  width: 16px;
  height: 16px;
  fill: #fff;
}

.footer-contact {
  padding: 12px;
  border-bottom: 1px solid #333;
  background: #fff;
}
.footer-contact-item {
  margin-bottom: 8px;
  font-size: 12px;
}
.footer-contact-item .contact-label {
  font-weight: 700;
  color: #333;
  font-size: 11px;
  text-transform: uppercase;
}
.footer-contact-item a {
  color: #1a3a6b;
}

.footer-accordion {
  border-bottom: 1px solid #eee;
  background: #fff;
}
.footer-accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 12px;
  font-size: 13px;
  font-weight: 700;
  color: #333;
  text-transform: uppercase;
  width: 100%;
  text-align: left;
}
.footer-accordion-header .accordion-chevron {
  stroke: #333;
}
.footer-accordion.open .accordion-chevron {
  transform: rotate(180deg);
}
.footer-accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.footer-accordion-body ul {
  padding: 0 12px 12px;
}
.footer-accordion-body ul li {
  padding: 5px 0;
}
.footer-accordion-body ul li a {
  font-size: 12px;
  color: #999;
  transition: color 0.2s;
}
.footer-accordion-body ul li a:active {
  color: #fff;
}

.footer-payments {
  padding: 16px 12px;
  border-bottom: 1px solid #333;
  background: #fff;
}
.footer-payments h4 {
  font-size: 11px;
  font-weight: 700;
  color: #333;
  text-transform: uppercase;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}
.footer-pay_icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
}
.footer-pay_icons img {
  width: 36px;
  height: 24px;
  object-fit: contain;
}
.payment-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.payment-icon {
  background: #fff;
  border-radius: 4px;
  padding: 4px 8px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  font-size: 10px;
  font-weight: 700;
  color: #333;
}

.footer-seals {
  padding: 16px 12px;
  border-bottom: 1px solid #333;
}
.footer-seals h4 {
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}
.footer-seals ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-seals ul li img {
  max-height: 60px;
  width: auto;
  display: block;
}
.footer-seals ul li:first-child img {
  max-height: 38px;
}
.seal-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.seal-icon {
  background: #fff;
  border-radius: 4px;
  padding: 6px 10px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 700;
  color: #333;
}

.footer-bottom {
  padding: 16px 12px;
  text-align: center;
  font-size: 10px;
  color: #666;
  line-height: 1.5;
}
.footer-bottom p {
  margin-bottom: 6px;
}

/* ===== CART MODAL ===== */
.cart-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.35);
  z-index: 2000;
  justify-content: flex-end;
  align-items: stretch;
}
.cart-modal-overlay.active {
  display: flex;
}
.cart-modal {
  background: #fff;
  width: 420px;
  max-width: 100%;
  height: 100vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  padding: 16px 15px 15px;
  position: relative;
  animation: slideInRight 0.3s ease;
  box-shadow: -5px 0 15px rgba(0,0,0,0.1);
}
@media (max-width: 480px) {
  .cart-modal {
    width: 100%;
    padding: 12px 12px 12px;
  }
}
@keyframes slideInRight {
  from { transform: translateX(100%); }
  to   { transform: translateX(0); }
}
.cart-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: #555;
}
.cart-modal-close svg {
  width: 20px;
  height: 20px;
  stroke: #555;
}
.cart-modal-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  color: #222;
  margin-bottom: 15px;
  padding-right: 28px;
}
.cart-modal-check {
  width: 22px;
  height: 22px;
  stroke: #27ae60;
  fill: none;
  stroke-width: 2.5;
  flex-shrink: 0;
}
.cart-modal-items {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-bottom: 12px;
  border-bottom: 1px solid #eee;
  margin-bottom: 10px;
  flex: 1;
  overflow-y: auto;
}
.cart-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid #f0f0f0;
}
.cart-item:last-child { border-bottom: none; }
.cart-item img {
  width: 75px;
  height: 75px;
  object-fit: contain;
  flex-shrink: 0;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 5px;
}
.cart-item-info {
  flex: 1;
  min-width: 0;
}
.cart-item-name {
  font-size: 14px;
  font-weight: 500;
  color: #222;
  line-height: 1.4;
  margin-bottom: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.cart-item-price {
  font-size: 16px;
  font-weight: 800;
  color: #004791;
}
.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.cart-item-qty button {
  width: 32px;
  height: 32px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background: #fdfdfd;
  font-size: 18px;
  font-weight: 700;
  color: #004791;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  line-height: 1;
}
.cart-item-qty span {
  font-size: 16px;
  font-weight: 700;
  min-width: 24px;
  text-align: center;
}
.cart-item-qty span {
  font-size: 13px;
  font-weight: 600;
  min-width: 16px;
  text-align: center;
}
.cart-empty {
  text-align: center;
  color: #999;
  font-size: 13px;
  padding: 20px 0;
}
.cart-modal-together {
  padding-bottom: 12px;
  border-bottom: 1px solid #eee;
  margin-bottom: 12px;
}
.cart-modal-together-title {
  font-size: 13px;
  font-weight: 600;
  color: #333;
  text-align: center;
  margin-bottom: 12px;
}
.cart-modal-together-slider {
  display: flex;
  align-items: center;
  gap: 8px;
}
.cart-together-arrow {
  font-size: 22px;
  color: #999;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
  line-height: 1;
}
.cart-together-card {
  flex: 1;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  padding: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 0; /* Garante que o flexbox não estoure */
}
.cart-together-card img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  margin-bottom: 6px;
}
.cart-together-card p {
  font-size: 12px;
  color: #333;
  line-height: 1.35;
  margin-bottom: 4px;
}
.cart-together-price {
  font-weight: 700 !important;
  color: #333 !important;
  margin-bottom: 8px !important;
}
.cart-together-add {
  width: 100%;
  background: #004791;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 8px 0;
  border-radius: 5px;
  letter-spacing: 0.05em;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.cart-together-add:hover { background: #003670; }
.cart-upsell-insurance {
  border: 1.5px solid #e0e8f5;
  border-radius: 8px;
  background: #f4f8ff;
  padding: 10px 12px;
  margin-bottom: 12px;
}
.cart-upsell-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.cart-upsell-check {
  margin-top: 0;
  width: 16px;
  height: 16px;
  accent-color: #004791;
  flex-shrink: 0;
  cursor: pointer;
}
.cart-upsell-content {
  display: flex;
  align-items: center;
  gap: 8px;
}
.cart-upsell-icon svg {
  width: 22px;
  height: 22px;
  stroke: #004791;
  flex-shrink: 0;
}
.cart-upsell-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.cart-upsell-text strong {
  font-size: 12px;
  font-weight: 700;
  color: #1a2e52;
}
.cart-upsell-text span {
  font-size: 11px;
  color: #555;
  line-height: 1.4;
}
.cart-upsell-text b {
  color: #004791;
  font-weight: 700;
}
.cart-upsell-divider {
  border: none;
  border-top: 1px solid #e5e5e5;
  margin: 12px 0 0;
}
.cart-modal-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 4px 6px;
  border-bottom: 2px solid #f0f0f0;
  margin-bottom: 0;
}
.cart-total-label {
  font-size: 14px;
  font-weight: 600;
  color: #666;
}
.cart-total-value {
  font-size: 18px;
  font-weight: 800;
  color: #004791;
}

.cart-modal-footer {
  margin-top: auto;
  display: flex;
  flex-direction: column;
}
.cart-modal-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 0;
}
.cart-btn-continue {
  width: 100%;
  background: #1a2e52;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 14px 0;
  border-radius: 6px;
  letter-spacing: 0.05em;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  transition: background 0.2s;
}
.cart-btn-continue:hover { background: #0f1e38; }
.cart-btn-go {
  width: 100%;
  background: #27ae60;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 14px 0;
  border-radius: 6px;
  letter-spacing: 0.05em;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  transition: background 0.2s;
}
.cart-btn-go:hover { background: #1e8449; }
.cart-payment-methods {
  margin: 25px 0;
  text-align: center;
  padding: 0 5px;
}
.cart-payment-methods img {
  width: 100%;
  max-width: 280px;
  height: auto;
  opacity: 0.9;
}

/* Ajustes extras para telas muito pequenas (iPhone SE / etc) */
@media (max-width: 360px) {
  .cart-modal-header { font-size: 13px; }
  .cart-item img { width: 48px; height: 48px; }
  .cart-upsell-text strong { font-size: 11px; }
  .cart-upsell-text span { font-size: 10px; }
  .cart-total-value { font-size: 16px; }
  .cart-btn-go, .cart-btn-continue { padding: 12px 0; font-size: 12px; }
}

/* ===== WHATSAPP FAB ===== */
.whatsapp-fab {
  position: fixed;
  bottom: 20px;
  right: 16px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 10px rgba(0,0,0,0.25);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.2s;
}
.whatsapp-fab.visible {
  opacity: 1;
  pointer-events: auto;
}
.whatsapp-fab:active {
  transform: scale(0.92);
}
.whatsapp-fab svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}


/* ===== MOBILE MENU OVERLAY ===== */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 85%;
  max-width: 320px;
  height: 100%;
  background: #fff;
  z-index: 1002;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mobile-menu.active {
  transform: translateX(0);
}

.menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid #eee;
  background: #004791;
}
.menu-header .menu-title {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}
.menu-close {
  color: #fff;
  font-size: 24px;
  line-height: 1;
  padding: 4px;
}

.menu-login {
  padding: 14px 16px;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
  gap: 8px;
}
.menu-login svg {
  width: 20px;
  height: 20px;
  stroke: #004791;
  fill: none;
}
.menu-login a {
  color: #004791;
  font-size: 14px;
  font-weight: 600;
}

.menu-categories {
  padding: 0;
}
.menu-categories li {
  border-bottom: 1px solid #f0f0f0;
}
.menu-categories li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  font-size: 13px;
  color: #333;
  font-weight: 500;
  transition: background 0.2s;
}
.menu-categories li a:active {
  background: #f5f5f5;
}
.menu-categories li a svg {
  width: 12px;
  height: 12px;
  stroke: #999;
  fill: none;
  stroke-width: 2;
}

/* ===== STORES MODAL ===== */
.pickup-stores_modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1100;
  align-items: flex-end;
  justify-content: center;
}
.pickup-stores_modal.active {
  display: flex;
}
.stores-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}
.stores-modal-content {
  position: relative;
  background: #fff;
  width: 100%;
  max-height: 80vh;
  border-radius: 16px 16px 0 0;
  overflow-y: auto;
  padding: 20px 16px 32px;
}
.stores-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0f0f0;
  border-radius: 50%;
  color: #333;
}
.stores-modal-header {
  margin-bottom: 16px;
  padding-right: 40px;
}
.stores-modal-title {
  font-size: 16px;
  font-weight: 700;
  color: #333;
}
.store-info {
  padding: 14px 0;
  border-bottom: 1px solid #eee;
}
.store-info:last-child {
  border-bottom: none;
}
.store-info .title {
  font-size: 14px;
  font-weight: 700;
  color: #004791;
  margin-bottom: 4px;
}
.store-info p {
  font-size: 13px;
  color: #555;
  line-height: 1.5;
}
.store-info .obs {
  font-size: 11px;
  color: #888;
  margin-top: 8px;
  line-height: 1.5;
}

/* ===== PAYMENT MODAL ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1003;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}
.modal-content {
  background: #fff;
  border-radius: 12px 12px 0 0;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 20px 16px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.modal-overlay.active .modal-content {
  transform: translateY(0);
}
.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.modal-header h3 {
  font-size: 16px;
  font-weight: 700;
  color: #333;
}
.modal-close {
  font-size: 20px;
  color: #999;
  padding: 4px;
  line-height: 1;
}
.payment-tabs {
  display: flex;
  border-bottom: 1px solid #eee;
  margin-bottom: 0;
}
.payment-tab {
  flex: 1;
  padding: 10px 4px;
  font-size: 13px;
  font-weight: 500;
  color: #666;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}
.payment-tab.active {
  color: #004791;
  border-bottom-color: #004791;
  font-weight: 700;
}
.payment-tab-content {
  display: none;
}
.payment-tab-content.active {
  display: block;
}
.installments-table {
  width: 100%;
  border-collapse: collapse;
}
.installments-table tr {
  border-bottom: 1px solid #f0f0f0;
}
.installments-table tr:last-child {
  border-bottom: none;
}
.installments-table td {
  padding: 10px 4px;
  font-size: 13px;
  color: #444;
  line-height: 1.4;
}
.installments-table td:last-child {
  text-align: right;
  font-weight: 600;
  color: #333;
  white-space: nowrap;
}
.installment-off {
  font-size: 12px;
  color: #27ae60;
}
.pix-price {
  font-size: 15px;
  font-weight: 700;
  color: #333;
  margin: 12px 0 16px;
}
.pix-price span {
  font-size: 13px;
  font-weight: 400;
  color: #666;
}
.pix-title {
  font-size: 13px;
  font-weight: 700;
  color: #333;
  margin-bottom: 12px;
}
.pix-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pix-features li {
  font-size: 13px;
  color: #444;
  line-height: 1.5;
  padding-left: 20px;
  position: relative;
}
.pix-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #27ae60;
  font-weight: 700;
}

/* ===== LOADING SKELETON ===== */
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
.skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 4px;
}

/* ===== RESPONSIVE ===== */
@media (min-width: 768px) {
  .header-content {
    max-width: 768px;
    margin: 0 auto;
  }
  .product-info, .price-section, .buy-section {
    max-width: 768px;
    margin: 0 auto;
  }
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
  position: fixed;
  bottom: 80px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #004791;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  z-index: 997;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}
.scroll-top:active {
  background: #003670;
}
.scroll-top svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}

/* ===== DESCRIPTION IMAGES ===== 
.description-images {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.description-images img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

/* Standard width payment methods in cart modal */
.cart-payment-methods {
  width: 100%;
  margin-top: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cart-payment-methods img {
  max-width: 100%;
  height: auto;
  display: block;
}
