:root {
  --white: #ffffff;
  --black: #000000;
  --gray-dark: #1a1a1a;
  --gray-medium: #4a4a4a;
  --gray-light: #9ca3af;
  --orange: #e85d04;
  --orange-light: #f97316;
  --orange-badge: #ea580c;
  --beige-badge: #fef3c7;
  --green: #16a34a;
  --green-pix: #0d9488;
  --yellow-icon: #eab308;
  --gold: #ca8a04;
  --blue: #1e40af;
  --red-banner: #b91c1c;
  --footer-bg: #0f0f0f;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-box: 0 2px 8px rgba(0,0,0,0.06);
  --radius: 8px;
  --radius-sm: 6px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
  color: var(--gray-dark);
  background: var(--white);
  min-height: 100vh;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

a {
  color: inherit;
  text-decoration: underline;
}

.announcement-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #000000;
  color: #ffffff;
  padding: 12px 16px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.announcement-arrow {
  color: #b8b8b8;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
}

.announcement-arrow svg {
  filter: drop-shadow(0 0 6px rgba(200, 200, 200, 0.5));
  transition: color 0.2s ease;
}

.announcement-arrow:hover svg {
  color: #e0e0e0;
}

.announcement-carousel {
  flex: 1;
  position: relative;
  min-height: 2.5em;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.announcement-slide {
  position: absolute;
  left: 0;
  right: 0;
  text-align: center;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.announcement-slide.active {
  position: relative;
  opacity: 1;
  pointer-events: auto;
}

.announcement-icon {
  flex-shrink: 0;
  color: #ffffff;
}

.header {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 14px 16px;
  background: #ffffff;
  border-bottom: 1px solid #eeeeee;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 4px;
}

.header-icon {
  padding: 8px;
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  text-decoration: none;
  margin-left: 1px;
}

.logo img {
  display: block;
  max-height: 35px;
  width: auto;
  object-fit: contain;
}

.header-cart {
  position: relative;
  justify-self: end;
}

.cart-badge {
  position: absolute;
  top: 0;
  right: 0;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  background: var(--orange);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(25%, -25%);
}

.main {
  max-width: 480px;
  margin: 0 auto;
  padding: 0 16px 32px;
  padding-bottom: 60px;
}

.product-gallery {
  margin: 0 -16px 16px;
}

.main-image-wrap {
  position: relative;
  background: #ffffff;
  aspect-ratio: 1;
  overflow: hidden;
}

.main-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.22s ease;
}

.main-image-wrap.changing .main-image {
  opacity: 0;
}

.zoom-btn {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 44px;
  height: 44px;
  background: #ffffff;
  border: 1px solid #d1d5db;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #374151;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.zoom-btn:hover {
  background: #f9fafb;
  border-color: #9ca3af;
  color: #111827;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transform: scale(1.05);
}

.zoom-btn:active {
  transform: scale(0.98);
  transition-duration: 0.1s;
}

.thumbnails {
  display: flex;
  gap: 8px;
  padding: 12px 16px;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.2) transparent;
}

.thumbnails::-webkit-scrollbar {
  height: 5px;
}

.thumbnails::-webkit-scrollbar-track {
  background: transparent;
}

.thumbnails::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.18);
  border-radius: 10px;
}

.thumbnails::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.28);
}

.thumbnail {
  flex: 0 0 72px;
  width: 72px;
  height: 72px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid transparent;
  padding: 0;
  background: #f0f0f0;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thumbnail.active {
  border-color: #000000;
  border-width: 2px;
  transform: scale(1.03);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.product-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 8px;
}

.badge {
  display: inline-block;
  padding: 5px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
}

.badge-sold {
  background: #fb923c;
  color: #000000;
}

.badge-exclusive {
  background: #ea580c;
  color: #ffffff;
}

.badge-discount {
  background: var(--orange);
  color: var(--white);
  font-size: 12px;
  padding: 4px 8px;
  margin-left: 6px;
}

.product-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--black);
  line-height: 1.3;
  margin-bottom: 9px;
}

.product-price {
  margin-bottom: 8px;
}

.product-rating-line {
  font-size: 14px;
  color: var(--gray-dark);
  margin-bottom: 8px;
}

.product-rating-highlight {
  font-size: 18px;
  font-weight: 600;
  color: var(--gray-dark);
}

.product-rating-line .stars {
  color: var(--gold);
  letter-spacing: 2px;
  font-weight: 400;
}


.price-row {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 6px;
}

.price-current {
  font-size: 24px;
  font-weight: 700;
  color: var(--black);
}

.price-old {
  font-size: 14px;
  color: var(--gray-light);
  text-decoration: line-through;
}

.installments {
  font-size: 14px;
  color: var(--gray-dark);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.icon-inline {
  flex-shrink: 0;
  color: var(--gray-medium);
}

.pix-shipping-badge {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  padding: 8px 10px;
  background: #e5e7eb;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
  max-width: 100%;
}

.pix-part {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  padding: 0;
}

.pix-icon {
  flex-shrink: 0;
  font-size: 1.1rem;
  color: #0d9488;
}

.pix-text {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0 4px;
}

.pix-discount {
  font-size: 11px;
  font-weight: 700;
  color: #1f2937;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.pix-label {
  font-size: 11px;
  font-weight: 400;
  color: #6b7280;
  text-transform: lowercase;
}

.shipping-part {
  flex-shrink: 0;
  padding: 5px 10px;
  background: #ea580c;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.promo-banner-wrap {
  display: none;
  position: relative;
  width: 100%;
  margin-top: 16px;
}

.promo-banner-img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

.promo-banner-title {
  position: absolute;
  left: 35%;
  top: 15%;
  pointer-events: none;
}

.promo-title-num {
  font-weight: 700;
  font-size: clamp(14px, 3.2vw, 19px);
  color: #ff8400;
  line-height: 1.1;
}

.promo-countdown {
  position: absolute;
  left: 11%;
  top: 51%;
  width: 38%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 29%;
  pointer-events: none;
}

.countdown-cell {
  flex: 1;
  min-width: 0;
  text-align: center;
  font-size: clamp(10px, 2.4vw, 15px);
  font-weight: 700;
  color: #fff;
}

@media (max-width: 480px) {
  .promo-banner-title {
    position: absolute;
    left: 35%;
    top: 12%;
    pointer-events: none;
  }

  .promo-title-num {
    font-size: clamp(15px, 3.2vw, 19px);
  }

  .promo-countdown {
    position: absolute;
    left: 11%;
    top: 52%;
    width: 38%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 29%;
    pointer-events: none;
  }

  .countdown-cell {
    font-size: clamp(12px, 2vw, 14px);
  }
}

@media (max-width: 350px) {
  .promo-banner-title {
    position: absolute;
    left: 35%;
    top: 8%;
    pointer-events: none;
  }
  .promo-title-num {
    font-size: clamp(12px, 3.2vw, 19px);
  }

  .promo-countdown {
    position: absolute;
    left: 11%;
    top: 52%;
    width: 38%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32%;
    pointer-events: none;
  }

  .countdown-cell {
    font-size: clamp(9px, 1.8vw, 11px);
  }
}

.gift-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  margin-bottom: 16px;
  background: #f0fdf4;
  border: 1.5px dashed #86efac;
  border-radius: 12px;
}

.gift-card-media {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 10px;
  overflow: hidden;
  background: #111111;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gift-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gift-card-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.gift-card-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #16a34a;
}

.gift-card-icon {
  flex-shrink: 0;
  color: #16a34a;
}

.gift-card-title {
  font-size: 15px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.3;
  margin: 0;
}

.gift-card-sub {
  font-size: 13px;
  color: #9ca3af;
  line-height: 1.3;
  margin: 0;
}

.product-options {
  margin-bottom: 16px;
}

.option-label {
  font-size: 14px;
  color: #000000;
  margin-bottom: 8px;
}

.voltage-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.voltage-option {
  cursor: pointer;
}

.voltage-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.voltage-box {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border: 1px solid #ea580c;
  border-radius: var(--radius);
  background: #f3f4f6;
  font-size: 15px;
  font-weight: 500;
  color: #000000;
}

.voltage-option.selected .voltage-box,
.voltage-option input:checked + .voltage-box {
  border-color: #ea580c;
  background: #f3f4f6;
}

.check-icon {
  color: var(--orange);
  flex-shrink: 0;
}

.shipping-box {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius);
  margin-bottom: 12px;
}

.shipping-icon-box {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
}

.shipping-icon-img {
  display: block;
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.shipping-package {
  display: block;
}

.shipping-package .ship-icon-blue {
  stroke: #1e40af;
}

.shipping-package .ship-icon-yellow {
  stroke: #eab308;
}

.shipping-icon {
  flex-shrink: 0;
  color: var(--blue);
}

.shipping-box p {
  font-size: 14px;
  color: var(--gray-dark);
}

.shipping-region {
  color: var(--green);
  font-weight: 600;
}

.cta-button {
  width: 100%;
  padding: 16px 24px;
  background: var(--orange);
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: var(--radius);
  margin-bottom: 24px;
  transition: background 0.2s;
}

.cta-button:hover {
  background: var(--orange-light);
}

.cta-after-shipping {
  margin-top: 0;
}

.cta-fixed-wrap {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  padding: 12px 16px;
  padding-bottom: max(12px, env(safe-area-inset-bottom));
  background: transparent;
  box-shadow: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.cta-fixed-wrap.cta-fixed-wrap--visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.cta-fixed-wrap .cta-button {
  max-width: 480px;
  margin: 0 auto;
  margin-bottom: 0;
  display: block;
}

.payment-methods {
  margin-bottom: 24px;
  text-align: center;
}

.security__payment {
  margin: -4px 0 0;
  color: #3A2A2F;
}

.security__payment p {
  margin: 0 0 10px;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.payment-list2 {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.payment-list2 .payment-list__item {
  width: 38px;
  height: 24px;
  flex-shrink: 0;
  display: inline-block;
  vertical-align: middle;
}

.payment-list2 img {
  width: 38px;
  height: 24px;
  display: block;
  object-fit: contain;
}

.payment-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 10px;
}

.payment-title .payment-card-icon {
  color: #374151;
  flex-shrink: 0;
}

.payment-title .icon-inline {
  color: #9ca3af;
}

.payment-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.payment-icons .pay-ico {
  font-size: 1.25rem;
  line-height: 1;
}

.pay-ico-visa { color: #1a1f71; }
.pay-ico-mastercard { color: #eb001b; }
.pay-ico-amex { color: #006fcf; }
.pay-ico-discover { color: #ff6000; }
.pay-ico-diners { color: #0079be; }
.pay-ico-qr { color: #1a1a1a; }
.pay-ico-boleto { color: #00a650; }
.pay-ico-apple { color: #000000; }
.pay-ico-google { color: #4285f4; }
.pay-ico-pix { color: #0d9488; }

.payment-icon {
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-medium);
}

.payment-pix {
  color: var(--green-pix);
}

.description-section {
  border-top: 1px solid #eee;
  padding-top: 16px;
  margin-bottom: 24px;
}

.description-heading {
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
  margin: 0 0 16px;
  padding: 12px 0 0;
}

.description-content {
  padding-bottom: 16px;
}

.description-block {
  border-bottom: 1px solid #e5e7eb;
  padding-bottom: 24px;
  margin-bottom: 24px;
}

.description-block:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.description-title {
  font-size: 20px;
  font-weight: 800;
  color: #000000;
  margin: 0 0 12px;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.description-block .description-title:first-child {
  margin-top: 0;
}

.description-block:not(:first-child) .description-title {
  margin-top: 4px;
}

.description-block-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
}

.description-lead {
  font-size: 15px;
  font-weight: 400;
  color: var(--gray-dark);
  margin-bottom: 8px;
}

.description-content p {
  margin-bottom: 10px;
  font-size: 15px;
  color: var(--gray-dark);
}

.description-placeholder {
  color: var(--gray-medium);
  font-size: 14px;
}

.section-headline {
  font-size: 17px;
  font-weight: 700;
  color: var(--gray-dark);
  margin: 12px 0 10px;
}

.description-content .check-list {
  margin: 8px 0 12px;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
  margin: 12px 0 16px;
  font-size: 14px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.specs-table th,
.specs-table td {
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
  color: var(--gray-dark);
  border-bottom: 1px solid #e5e7eb;
  line-height: 1.45;
}

.specs-table tr:last-child th,
.specs-table tr:last-child td {
  border-bottom: none;
}

.specs-table th {
  font-weight: 700;
  width: 45%;
  background: #f3f4f6;
}

.specs-table td {
  background: var(--white);
}

.reviews-section {
  border-top: 1px solid #eee;
  padding-top: 24px;
  margin-bottom: 24px;
}

.reviews-rating-summary {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-bottom: 24px;
  padding: 20px;
  background: #f9fafb;
  border-radius: var(--radius);
  border: 1px solid #e5e7eb;
}

.reviews-rating-number {
  font-size: 36px;
  font-weight: 800;
  color: var(--black);
  line-height: 1;
}

.reviews-rating-stars {
  font-size: 22px;
  color: var(--gold);
  letter-spacing: 2px;
}

.reviews-rating-count,
.reviews-rating-total {
  font-size: 13px;
  color: var(--gray-medium);
  font-weight: 400;
}

.reviews-rating-total {
  margin-top: 2px;
}

.reviews-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 20px;
}

.reviews-list-wrap {
  max-height: none;
  overflow: visible;
  padding-right: 0;
}

.reviews-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.review-card {
  background: #f9fafb;
  border-radius: var(--radius);
  padding: 16px;
  border: 1px solid #e5e7eb;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background: #e5e7eb;
}

.review-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.review-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--black);
}

.review-stars {
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 1px;
}

.review-date {
  font-size: 12px;
  color: var(--gray-light);
}

.review-text {
  font-size: 14px;
  color: var(--gray-dark);
  line-height: 1.5;
  margin: 0;
}

.review-product-img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
  margin-top: 12px;
  object-fit: cover;
}

.testimonials-block {
  margin-bottom: 32px;
}

.testimonials-collage {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.testimonial-item {
  padding: 16px;
  background: #f9fafb;
  border-radius: var(--radius);
  font-size: 13px;
  color: var(--gray-dark);
  min-height: 60px;
}

.chega-mangueira {
  font-size: 22px;
  font-weight: 700;
  color: var(--gray-dark);
  margin-bottom: 16px;
}

.feature-section {
  margin-bottom: 28px;
}

.feature-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}

.feature-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon-yellow {
  color: var(--yellow-icon);
}

.feature-icon-blue {
  color: var(--blue);
}

.feature-icon-dark {
  color: var(--gray-dark);
}

.feature-icon-gold {
  color: var(--gold);
}

.feature-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--black);
  line-height: 1.25;
}

.feature-sub {
  font-size: 15px;
  color: var(--gray-dark);
  margin: 8px 0 6px;
}

.feature-slogan {
  font-size: 15px;
  color: var(--gray-dark);
  margin-bottom: 8px;
}

.feature-section p {
  font-size: 15px;
  color: var(--gray-dark);
  margin-bottom: 6px;
}

.feature-footer {
  font-size: 15px;
  color: var(--gray-dark);
  margin-top: 10px;
}

.feature-footer.light {
  color: var(--gray-medium);
  font-size: 14px;
}

.section-divider {
  border: none;
  border-top: 1px solid #e5e7eb;
  margin-top: 20px;
}

.check-list {
  list-style: none;
  margin: 8px 0 12px;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 8px;
  font-size: 15px;
  color: var(--gray-dark);
}

.check-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  width: 18px;
  height: 18px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2316a34a' stroke-width='2.5'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
}

.check-list.check-green li::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2316a34a' stroke-width='2.5'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
}

.check-list:not(.check-green) li::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.5'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
}

.footer {
  background: var(--footer-bg);
  color: var(--white);
  padding: 32px 16px 24px;
  margin-top: 24px;
}

.footer-inner {
  max-width: 480px;
  margin: 0 auto;
}

.footer-block {
  margin-bottom: 32px;
}

.footer-block h3 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  color: var(--white);
}

.footer-block p {
  font-size: 14px;
  margin-bottom: 8px;
  color: rgba(255,255,255,0.9);
}

.footer-icon {
  vertical-align: middle;
  margin-right: 8px;
  display: inline-block;
}

.footer-block a {
  color: rgba(255,255,255,0.9);
  text-decoration: underline;
}

.newsletter-form {
  display: flex;
  margin-top: 12px;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 14px;
  border: none;
  background: transparent;
  color: var(--white);
  font-size: 14px;
}

.newsletter-form input::placeholder {
  color: rgba(255,255,255,0.6);
}

.newsletter-form button {
  padding: 12px 16px;
  color: var(--white);
  border-left: 1px solid rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.social-icons .social-icon {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #ffffff;
  text-decoration: none;
  cursor: default;
}

.social-icons .social-icon i {
  color: inherit;
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.2);
  margin-top: 16px;
  text-align: center;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 6px;
}

.main-image-wrap img[src=""],
.main-image-wrap img:not([src]),
.thumbnail img[src=""],
.thumbnail img:not([src]) {
  background: #e5e7eb;
  min-height: 100px;
}

.image-viewer {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
}

.image-viewer[hidden] {
  display: none;
}

.image-viewer-backdrop {
  position: absolute;
  inset: 0;
  background: #ffffff;
  cursor: pointer;
  transition: opacity 0.15s ease;
}

.image-viewer.changing .image-viewer-backdrop {
  opacity: 0;
}

.image-viewer-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 1002;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: var(--orange);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.image-viewer-close:hover {
  filter: brightness(1.05);
}

.image-viewer-img {
  position: relative;
  z-index: 1001;
  max-width: 90vw;
  max-height: 85vh;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: opacity 0.15s ease;
}

.image-viewer.changing .image-viewer-img {
  opacity: 0;
}

.image-viewer-prev,
.image-viewer-next {
  position: absolute;
  bottom: 32px;
  z-index: 1002;
  width: 48px;
  height: 48px;
  border: none;
  background: transparent;
  color: #374151;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: var(--radius-sm);
}

.image-viewer-prev:hover,
.image-viewer-next:hover {
  background: rgba(0, 0, 0, 0.06);
  color: #000000;
}

.image-viewer-prev {
  left: 16px;
}

.image-viewer-next {
  right: 16px;
}

.image-viewer-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1002;
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
}

.image-viewer-dot {
  width: 10px;
  height: 10px;
  border: 2px solid #9ca3af;
  background: transparent;
  border-radius: 2px;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.image-viewer-dot.active {
  background: #000000;
  border-color: #000000;
}

.image-viewer-dot:hover {
  border-color: #6b7280;
}

@media (min-width: 481px) {
  .main {
    padding-left: 24px;
    padding-right: 24px;
  }
  .product-gallery {
    margin-left: -24px;
    margin-right: -24px;
  }
  .thumbnails {
    padding-left: 24px;
    padding-right: 24px;
  }
}

/* ============ Drawers (menu + carrinho) ============ */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 200;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.drawer-backdrop.open { opacity: 1; }

.side-drawer {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 88%;
  max-width: 380px;
  background: #fff;
  z-index: 210;
  display: flex;
  flex-direction: column;
  box-shadow: 0 0 40px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}
.side-drawer--left { left: 0; transform: translateX(-100%); }
.side-drawer--right { right: 0; transform: translateX(100%); }
.side-drawer.open { transform: translateX(0); }

.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid #eee;
}
.drawer-title { font-size: 18px; font-weight: 700; color: #1a1a1a; }
.drawer-close {
  background: none;
  border: none;
  color: #4a4a4a;
  cursor: pointer;
  padding: 4px;
  display: flex;
}
.drawer-close:hover { color: var(--orange); }

/* menu */
.drawer-menu { list-style: none; padding: 8px 0; flex: 1; }
.drawer-menu li { border-bottom: 1px solid #f2f2f2; }
.drawer-menu a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  color: #1a1a1a;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
}
.drawer-menu a:hover { background: #f9fafb; color: var(--orange); }
.drawer-menu a svg { color: var(--orange); flex: none; }
.drawer-menu-foot {
  padding: 20px;
  border-top: 1px solid #eee;
  font-size: 13px;
  color: #6b7280;
  line-height: 1.7;
}
.drawer-foot-title { font-weight: 700; color: #1a1a1a; margin-bottom: 6px; letter-spacing: 0.03em; }

/* carrinho */
.cart-body { flex: 1; overflow-y: auto; padding: 20px; }
.cart-item { display: flex; gap: 14px; }
.cart-item-img {
  width: 84px; height: 84px; border-radius: 8px;
  object-fit: cover; border: 1px solid #eee; flex: none;
}
.cart-item-info { flex: 1; }
.cart-item-name { font-size: 13px; font-weight: 600; color: #1a1a1a; line-height: 1.4; }
.cart-item-price { font-size: 16px; font-weight: 700; color: var(--orange); margin: 6px 0 10px; }
.cart-qty { display: inline-flex; align-items: center; }
.cart-qty button {
  width: 34px; height: 34px; border: 1px solid #d7d9dd; background: #fff;
  cursor: pointer; font-size: 18px; color: #374151;
  display: flex; align-items: center; justify-content: center;
}
.cart-qty button:first-child { border-radius: 6px 0 0 6px; }
.cart-qty button:last-child { border-radius: 0 6px 6px 0; }
.cart-qty span {
  min-width: 46px; height: 34px; border-top: 1px solid #d7d9dd; border-bottom: 1px solid #d7d9dd;
  display: flex; align-items: center; justify-content: center; font-weight: 600;
}
.cart-foot { padding: 20px; border-top: 1px solid #eee; }
.cart-subtotal {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 17px; margin-bottom: 16px; color: #1a1a1a;
}
.cart-subtotal strong { font-size: 20px; color: var(--orange); }
.cart-checkout { margin-bottom: 10px; }
.cart-continue {
  width: 100%; background: none; border: none; color: #6b7280;
  font-size: 14px; font-weight: 600; cursor: pointer; padding: 6px;
}
.cart-continue:hover { color: var(--orange); }

body.drawer-open { overflow: hidden; }



/* ===================================================================
   Clima festivo — Dia dos Pais
   =================================================================== */

/* Bandeirinhas de festa */
.fest-flags {
  height: 26px;
  display: flex;
  overflow: hidden;
  background: #000;
  position: relative;
}
.fest-flags::before {
  content: "";
  position: absolute;
  top: 3px; left: 0; right: 0;
  height: 2px;
  background: rgba(255,255,255,0.35);
}
.fest-flag {
  flex: 1 0 auto;
  width: 22px;
  height: 20px;
  margin-top: 4px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  transform-origin: top center;
  animation: fest-flag-sway 3s ease-in-out infinite;
}
@keyframes fest-flag-sway {
  0%, 100% { transform: rotate(-2deg); }
  50% { transform: rotate(2deg); }
}

/* Saudação clicável */
.fest-greeting {
  width: 100%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 11px 16px;
  cursor: pointer;
  background: linear-gradient(90deg, #fff7ed 0%, #ffedd5 45%, #ffe4c4 55%, #fff7ed 100%);
  background-size: 200% 100%;
  border-bottom: 1px solid #fbcf9a;
  color: #9a3412;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.01em;
  text-align: center;
  animation: fest-shimmer 6s linear infinite;
}
@keyframes fest-shimmer {
  0% { background-position: 0% 0; }
  100% { background-position: 200% 0; }
}
.fest-greeting:active { transform: scale(0.99); }
.fest-greeting .fest-emoji {
  font-size: 19px;
  display: inline-block;
  animation: fest-bob 2.2s ease-in-out infinite;
}
.fest-greeting .fest-emoji:last-of-type { animation-delay: 0.5s; }
.fest-greeting .fest-text {
  background: linear-gradient(90deg, #ea580c, #d97706, #ea580c);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.fest-hint {
  flex-basis: 100%;
  font-size: 11px;
  font-weight: 600;
  color: #c2703a;
  letter-spacing: 0.02em;
  text-transform: none;
}
@keyframes fest-bob {
  0%, 100% { transform: translateY(0) rotate(-6deg); }
  50% { transform: translateY(-4px) rotate(6deg); }
}

/* Confete */
.confetti-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 9999;
}
.confetti-piece {
  position: absolute;
  top: -14px;
  width: 10px;
  height: 15px;
  border-radius: 2px;
  opacity: 0.95;
  will-change: transform, opacity;
  animation: confetti-fall linear forwards;
}
@keyframes confetti-fall {
  0% { transform: translateY(-20px) rotate(0deg); opacity: 1; }
  100% { transform: translateY(106vh) rotate(720deg); opacity: 0.9; }
}

/* Balões subindo */
.balloon-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 9998;
}
.balloon {
  position: absolute;
  bottom: -80px;
  width: 34px;
  height: 44px;
  border-radius: 50% 50% 48% 48%;
  opacity: 0.85;
  will-change: transform;
  animation: balloon-rise linear forwards;
}
.balloon::after {
  content: "";
  position: absolute;
  bottom: -22px;
  left: 50%;
  width: 1px;
  height: 22px;
  background: rgba(0,0,0,0.18);
  transform: translateX(-50%);
}
@keyframes balloon-rise {
  0% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-55vh) translateX(14px); }
  100% { transform: translateY(-115vh) translateX(-8px); }
}

@media (prefers-reduced-motion: reduce) {
  .fest-greeting, .fest-greeting .fest-emoji, .fest-flag { animation: none; }
  .confetti-layer, .balloon-layer { display: none; }
}

   FAQ (perguntas frequentes)
   =================================================================== */
.faq-section {
  border-top: 1px solid #eee;
  padding-top: 24px;
  margin-bottom: 28px;
}
.faq-title {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #000;
  margin: 0 0 16px;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.faq-item.open {
  border-color: var(--orange);
  box-shadow: 0 2px 10px rgba(232, 93, 4, 0.08);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 15px 16px;
  font-size: 15px;
  font-weight: 600;
  color: var(--gray-dark);
  text-align: left;
  line-height: 1.35;
}
.faq-chevron {
  flex-shrink: 0;
  color: var(--gray-light);
  transition: transform 0.25s ease, color 0.2s;
}
.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  color: var(--orange);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
}
.faq-answer p {
  padding: 0 16px 16px;
  margin: 0;
  font-size: 14px;
  color: var(--gray-medium);
  line-height: 1.6;
}
.faq-answer a { color: var(--orange); font-weight: 600; }
.faq-help {
  margin-top: 16px;
  font-size: 13.5px;
  color: var(--gray-medium);
  text-align: center;
  line-height: 1.6;
}
.faq-help strong { color: var(--gray-dark); }

@media (max-width: 360px) {
  .fd-cell { min-width: 46px; padding: 7px 7px; }
  .fd-cell b { font-size: 19px; }
}
