/* ===== RESET & BASE ===== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&family=DM+Sans:wght@300;400;500;600;700&display=swap');

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg: #faf8f5;
  --bg-card: #fcfbfa;
  --header-bg: #d07020;
  --fg: #2a2320;
  --fg-light: rgba(42,35,32,0.7);
  --muted: #807872;
  --border: #e8e2dc;
  --primary: #d07020;
  --primary-dark: #b05a15;
  --primary-light: #e08a40;
  --primary-10: rgba(208,112,32,0.1);
  --cream: #f5f0ea;
  --gold: #c49a40;
  --green: #2eaa55;
  --red: #e04040;
  --white: #ffffff;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-xl: 0 10px 30px rgba(0,0,0,0.12);
  --radius: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'DM Sans', -apple-system, sans-serif;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: var(--font-serif); line-height: 1.3; }
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; }

/* ===== UTILITIES ===== */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 16px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.text-center { text-align: center; }
.line-through { text-decoration: line-through; }

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--white);
  color: var(--primary);
  text-align: center;
  font-size: 12px;
  padding: 8px 16px;
  font-weight: 500;
  letter-spacing: 0.03em;
}

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--header-bg);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
  gap: 12px;
}
.header-logo { height: 36px; width: auto; }
.header-logo-link {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.header-actions { display: flex; align-items: center; gap: 8px; }
.header-btn {
  padding: 6px;
  color: var(--fg);
  background: none;
  border: none;
  position: relative;
}
.cart-count {
  position: absolute;
  top: -2px;
  right: -2px;
  background: var(--primary);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.search-desktop {
  display: none;
  flex: 1;
  max-width: 280px;
}
.search-input {
  width: 100%;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 8px 40px 8px 16px;
  font-size: 14px;
  outline: none;
}
.search-input:focus { box-shadow: 0 0 0 2px rgba(208,112,32,0.2); }
.search-input::placeholder { color: var(--muted); }

/* Desktop Nav */
.nav-desktop {
  display: none;
  background: var(--fg);
}
.nav-desktop ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  height: 40px;
}
.nav-desktop a {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-desktop a:hover { color: var(--primary-light); }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: var(--bg);
  padding-top: 100px;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu nav { display: flex; flex-direction: column; padding: 0 24px; }
.mobile-menu a {
  padding: 12px 0;
  font-size: 16px;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--primary); }

/* Mobile Search */
.search-mobile {
  border-top: 1px solid var(--border);
  padding: 8px 16px;
  display: none;
}
.search-mobile.open { display: block; }

/* ===== HERO BANNER ===== */
.hero { position: relative; width: 100%; overflow: hidden; }
.hero-slides { position: relative; }
.hero-slide {
  display: none;
  transition: opacity 0.7s;
}
.hero-slide.active { display: block; }
.hero-slide img { width: 100%; height: auto; object-fit: cover; }
.hero-desktop { display: none; }
.hero-mobile { display: block; }
.hero-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 5;
}
.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: none;
  transition: all 0.3s;
}
.hero-dot.active { background: var(--white); width: 24px; border-radius: 5px; }
.hero-arrow {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  color: var(--white);
  border: none;
  font-size: 20px;
  align-items: center;
  justify-content: center;
  z-index: 5;
  transition: background 0.2s;
}
.hero-arrow:hover { background: rgba(255,255,255,0.4); }
.hero-arrow.prev { left: 16px; }
.hero-arrow.next { right: 16px; }

/* ===== SECTION TITLES ===== */
.section-title {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
}

/* ===== PRODUCT GRID ===== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

/* ===== PRODUCT CARD ===== */
.product-card { background: var(--bg-card); overflow: hidden; position: relative; }
.product-card-img {
  display: block;
  position: relative;
  width: 100%;
  padding-bottom: 124.7%;
  overflow: hidden;
}
.product-card-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.product-card:hover .product-card-img img { transform: scale(1.05); }
.product-card .badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: var(--primary);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 2px;
  z-index: 2;
}
.product-card-info { padding: 12px 4px 8px; }
.product-card-name {
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--fg-light);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 34px;
  margin-bottom: 8px;
}
.product-card-prices { display: flex; flex-wrap: wrap; align-items: baseline; gap: 6px; margin-bottom: 4px; }
.product-card-price { font-size: 14px; font-weight: 700; color: var(--fg); }
.product-card-discount {
  font-size: 10px;
  font-weight: 700;
  color: var(--primary);
  background: var(--primary-10);
  padding: 2px 6px;
  border-radius: 2px;
}
.product-card-old { font-size: 12px; color: var(--muted); text-decoration: line-through; display: block; margin-bottom: 8px; }
.btn-buy {
  width: 100%;
  background: var(--primary);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  padding: 8px;
  border: none;
  border-radius: 2px;
  transition: background 0.2s;
}
.btn-buy:hover { background: var(--primary-dark); }
.btn-buy:disabled, .btn-sold-out {
  background: var(--cream);
  color: var(--muted);
  cursor: not-allowed;
}

/* ===== PRODUCT SLIDER ===== */
.product-slider {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.product-slider::-webkit-scrollbar { display: none; }
.product-slider .product-card {
  flex: 0 0 42%;
  scroll-snap-align: start;
}

/* ===== SECTION SPACING ===== */
.section { padding: 24px 0; }
.section-alt { background: var(--cream); }

/* ===== PROMO HIGHLIGHT ===== */
.promo-section { padding: 24px 0; }

/* ===== BENEFITS ===== */
.benefits {
  padding: 32px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.benefit-item { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 8px; }
.benefit-icon { font-size: 28px; color: var(--fg); }
.benefit-title { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: var(--fg); }
.benefit-desc { font-size: 11px; color: var(--muted); }

/* ===== TESTIMONIALS ===== */
.testimonials { padding: 40px 0; }
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
}
.testimonial-stars { color: var(--gold); font-size: 14px; margin-bottom: 12px; }
.testimonial-text { font-size: 14px; color: var(--muted); line-height: 1.6; margin-bottom: 12px; }
.testimonial-name { font-size: 14px; font-weight: 600; color: var(--fg); }

/* ===== FAQ ===== */
.faq { padding: 40px 0; background: var(--cream); }
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--fg);
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--primary); }
.faq-question .arrow { transition: transform 0.3s; font-size: 12px; }
.faq-item.open .faq-question .arrow { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 20px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}
.faq-item.open .faq-answer { max-height: 200px; padding: 0 20px 16px; }

/* ===== FOOTER ===== */
.footer {
  background: var(--fg);
  color: rgba(255,255,255,0.7);
  padding: 40px 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.footer-brand { grid-column: 1 / -1; }
.footer-logo { height: 40px; filter: brightness(10); margin-bottom: 8px; }
.footer-desc { font-size: 12px; color: rgba(255,255,255,0.4); line-height: 1.6; }
.footer-heading {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 12px;
  font-family: var(--font-sans);
}
.footer-links { display: flex; flex-direction: column; gap: 6px; }
.footer-links a { font-size: 12px; transition: color 0.2s; }
.footer-links a:hover { color: var(--primary-light); }
.footer-social { display: flex; gap: 8px; margin-top: 12px; }
.footer-social a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  transition: background 0.2s;
}
.footer-social a:hover { background: var(--primary); }
.footer-bottom {
  margin-top: 32px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  font-size: 10px;
  color: rgba(255,255,255,0.25);
}

/* ===== WHATSAPP BUTTON ===== */
.whatsapp-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 50;
  width: 56px;
  height: 56px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-xl);
  transition: transform 0.2s, background 0.2s;
  color: var(--white);
  font-size: 28px;
}
.whatsapp-btn:hover { transform: scale(1.1); background: #25a045; }

/* ===== CATEGORY PAGE ===== */
.category-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}
.category-title { font-size: 24px; font-weight: 700; }
.category-count { font-size: 14px; color: var(--muted); margin-top: 4px; }
.category-sort {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px 16px;
  font-size: 14px;
  color: var(--fg);
  outline: none;
}
.category-sort:focus { box-shadow: 0 0 0 2px rgba(208,112,32,0.2); }
.empty-state { text-align: center; padding: 80px 0; color: var(--muted); font-size: 16px; }

/* ===== PRODUCT PAGE ===== */
.product-detail { padding: 24px 0; }
.breadcrumb { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--muted); margin-bottom: 24px; }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb .sep { font-size: 10px; }
.product-layout { display: grid; grid-template-columns: 1fr; gap: 32px; }
.product-gallery .main-image {
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--cream);
  border: 1px solid var(--border);
}
.product-gallery .main-image img { width: 100%; height: 100%; object-fit: cover; }
.product-gallery .thumbnails { display: flex; gap: 8px; margin-top: 8px; }
.product-gallery .thumb {
  width: 60px; height: 60px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid var(--border);
  cursor: pointer;
  transition: border-color 0.2s;
}
.product-gallery .thumb.active, .product-gallery .thumb:hover { border-color: var(--primary); }
.product-gallery .thumb img { width: 100%; height: 100%; object-fit: cover; }

.product-title { font-size: 24px; font-weight: 700; line-height: 1.3; }
.product-rating { display: flex; align-items: center; gap: 6px; margin-top: 12px; }
.product-rating .stars { color: var(--gold); font-size: 14px; }
.product-rating .count { font-size: 12px; color: var(--muted); }
.product-price-box { margin-top: 16px; display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; }
.product-price { font-size: 28px; font-weight: 700; color: var(--primary); }
.product-old-price { font-size: 16px; color: var(--muted); text-decoration: line-through; }
.product-discount-badge {
  background: var(--primary);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
}
.product-installments { font-size: 14px; color: var(--muted); margin-top: 8px; }
.product-pix-price { font-size: 12px; color: var(--primary); font-weight: 600; margin-top: 4px; }
.product-short-desc { font-size: 14px; color: var(--muted); margin-top: 24px; line-height: 1.6; }

/* Fragrance Notes */
.fragrance-notes {
  margin-top: 20px;
  background: var(--cream);
  border-radius: var(--radius);
  padding: 16px;
}
.fragrance-notes h3 { font-size: 14px; font-weight: 600; color: var(--fg); margin-bottom: 12px; font-family: var(--font-sans); }
.fragrance-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; font-size: 12px; }
.fragrance-grid .label { font-weight: 600; color: var(--fg); margin-bottom: 4px; }
.fragrance-grid .note { color: var(--muted); }

/* Qty selector */
.qty-row { display: flex; gap: 12px; margin-top: 24px; flex-wrap: wrap; }
.qty-selector {
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.qty-selector button {
  padding: 10px 12px;
  color: var(--muted);
  font-size: 16px;
  transition: color 0.2s;
}
.qty-selector button:hover { color: var(--fg); }
.qty-selector .qty-val { padding: 10px 16px; font-size: 14px; font-weight: 500; min-width: 40px; text-align: center; }
.btn-add-cart {
  flex: 1;
  background: var(--primary);
  color: var(--white);
  font-weight: 600;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.2s;
}
.btn-add-cart:hover { background: var(--primary-dark); }
.btn-buy-now {
  width: 100%;
  background: var(--fg);
  color: var(--white);
  font-weight: 600;
  padding: 12px;
  border-radius: var(--radius);
  font-size: 14px;
  margin-top: 12px;
  transition: opacity 0.2s;
}
.btn-buy-now:hover { opacity: 0.9; }

/* Benefits list */
.product-benefits { margin-top: 24px; display: flex; flex-direction: column; gap: 8px; }
.product-benefits li { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--muted); }
.product-benefits li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--primary); flex-shrink: 0; }

/* Accordion (product page) */
.product-accordion { margin-top: 32px; display: flex; flex-direction: column; gap: 8px; }
.accordion-item { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.accordion-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--fg);
  background: none;
  border: none;
  cursor: pointer;
}
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  font-size: 14px;
  color: var(--muted);
  padding: 0 16px;
}
.accordion-item.open .accordion-content { max-height: 200px; padding: 0 16px 12px; }
.accordion-item.open .accordion-trigger .arrow { transform: rotate(180deg); }

/* Related products */
.related-section { margin-top: 64px; }
.related-section h2 { font-size: 24px; font-weight: 700; margin-bottom: 24px; }

/* ===== CART PAGE ===== */
.cart-page { padding: 32px 0; }
.cart-layout { display: grid; grid-template-columns: 1fr; gap: 32px; }
.cart-empty { text-align: center; padding: 80px 0; }
.cart-empty-icon { font-size: 48px; color: var(--muted); opacity: 0.3; margin-bottom: 16px; }
.cart-empty h1 { font-size: 24px; font-weight: 700; }
.cart-empty p { color: var(--muted); margin-top: 8px; }
.btn-continue {
  display: inline-block;
  margin-top: 24px;
  background: var(--primary);
  color: var(--white);
  font-weight: 600;
  padding: 12px 32px;
  border-radius: 50px;
  transition: background 0.2s;
}
.btn-continue:hover { background: var(--primary-dark); }

.cart-items { display: flex; flex-direction: column; gap: 16px; }
.cart-item {
  display: flex;
  gap: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 16px;
}
.cart-item-img {
  width: 80px; height: 80px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--cream);
  flex-shrink: 0;
}
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name {
  font-size: 14px;
  font-weight: 500;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.cart-item-price { font-size: 16px; font-weight: 700; color: var(--primary); margin-top: 6px; }
.cart-item-old { font-size: 12px; color: var(--muted); text-decoration: line-through; margin-left: 8px; }
.cart-item-actions { display: flex; align-items: center; justify-content: space-between; margin-top: 12px; }
.cart-qty {
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.cart-qty button { padding: 6px 10px; color: var(--muted); font-size: 14px; }
.cart-qty button:hover { color: var(--fg); }
.cart-qty span { padding: 6px 12px; font-size: 14px; font-weight: 500; }
.btn-remove { color: var(--muted); font-size: 14px; transition: color 0.2s; background: none; border: none; }
.btn-remove:hover { color: var(--red); }

/* Cart Summary */
.cart-summary {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  height: fit-content;
}
.cart-summary h2 { font-size: 18px; font-weight: 600; margin-bottom: 16px; font-family: var(--font-sans); }
.summary-row { display: flex; justify-content: space-between; font-size: 14px; color: var(--muted); margin-bottom: 12px; }
.summary-row .free { color: var(--primary); font-weight: 500; }
.summary-total {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 700;
  color: var(--fg);
  padding-top: 12px;
  border-top: 1px solid var(--border);
  margin-top: 12px;
}
.summary-pix { font-size: 12px; color: var(--primary); font-weight: 500; margin-top: 4px; }
.btn-checkout {
  display: block;
  width: 100%;
  background: var(--primary);
  color: var(--white);
  font-weight: 600;
  padding: 14px;
  border-radius: var(--radius);
  font-size: 14px;
  margin-top: 24px;
  text-align: center;
  transition: background 0.2s;
}
.btn-checkout:hover { background: var(--primary-dark); }
.cart-continue {
  display: block;
  text-align: center;
  font-size: 14px;
  color: var(--muted);
  margin-top: 12px;
  transition: color 0.2s;
}
.cart-continue:hover { color: var(--primary); }

/* ===== CHECKOUT PAGE ===== */
.checkout-page { padding: 32px 0; max-width: 960px; margin: 0 auto; }
.checkout-layout { display: grid; grid-template-columns: 1fr; gap: 32px; }
.checkout-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.checkout-card h2 { font-size: 18px; font-weight: 600; margin-bottom: 16px; font-family: var(--font-sans); }
.form-group { margin-bottom: 16px; }
.form-label { display: block; font-size: 14px; font-weight: 500; margin-bottom: 6px; }
.form-input {
  width: 100%;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 14px;
  outline: none;
  transition: box-shadow 0.2s;
}
.form-input:focus { box-shadow: 0 0 0 2px rgba(208,112,32,0.2); }
.form-error { font-size: 12px; color: var(--red); margin-top: 4px; }

/* Payment methods */
.payment-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  cursor: pointer;
  margin-bottom: 12px;
  transition: border-color 0.2s, background 0.2s;
}
.payment-option.selected { border-color: var(--primary); background: var(--primary-10); }
.payment-option.disabled { opacity: 0.5; cursor: not-allowed; }
.payment-option input[type="radio"] { accent-color: var(--primary); }
.payment-label { font-size: 14px; font-weight: 600; }
.payment-desc { font-size: 12px; color: var(--muted); }
.payment-price { font-size: 14px; font-weight: 700; color: var(--primary); margin-left: auto; }

.btn-submit {
  width: 100%;
  background: var(--primary);
  color: var(--white);
  font-weight: 600;
  padding: 14px;
  border-radius: var(--radius);
  font-size: 14px;
  margin-top: 24px;
  transition: background 0.2s;
}
.btn-submit:hover { background: var(--primary-dark); }
.btn-submit:disabled { opacity: 0.5; cursor: not-allowed; }
.secure-badge { display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: 16px; font-size: 12px; color: var(--muted); }

/* Order summary in checkout */
.order-items { max-height: 240px; overflow-y: auto; display: flex; flex-direction: column; gap: 12px; }
.order-item { display: flex; gap: 12px; font-size: 14px; }
.order-item-img {
  width: 48px; height: 48px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--cream);
  flex-shrink: 0;
}
.order-item-img img { width: 100%; height: 100%; object-fit: cover; }
.order-item-info { flex: 1; min-width: 0; }
.order-item-name { font-size: 12px; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden; }
.order-item-qty { font-size: 12px; color: var(--muted); }
.order-item-price { font-size: 12px; font-weight: 500; white-space: nowrap; }

/* ===== PIX PAYMENT (in checkout.html) ===== */
.pix-container {
  max-width: 480px;
  margin: 0 auto;
  padding: 40px 0;
  text-align: center;
}
.pix-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 24px 32px;
}
.pix-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--primary-10);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 32px;
  color: var(--primary);
}
.pix-title { font-size: 24px; font-weight: 700; }
.pix-subtitle { font-size: 14px; color: var(--muted); margin-top: 8px; }
.pix-qr {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 16px;
  display: inline-block;
  margin-top: 24px;
}
.pix-qr canvas, .pix-qr img { width: 220px !important; height: 220px !important; }
.pix-amount-label { font-size: 14px; color: var(--muted); margin-top: 24px; }
.pix-amount { font-size: 28px; font-weight: 700; color: var(--primary); }
.pix-timer { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 16px; font-size: 14px; color: var(--muted); }
.pix-timer.expired { color: var(--red); font-weight: 600; }
.pix-code-label { font-size: 12px; color: var(--muted); margin-top: 24px; margin-bottom: 8px; }
.pix-code-box {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 12px;
  font-size: 12px;
  font-family: monospace;
  word-break: break-all;
  max-height: 80px;
  overflow-y: auto;
}
.btn-copy {
  width: 100%;
  background: var(--primary);
  color: var(--white);
  font-weight: 600;
  padding: 12px;
  border-radius: var(--radius);
  font-size: 14px;
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.2s;
}
.btn-copy:hover { background: var(--primary-dark); }
.pix-waiting {
  margin-top: 24px;
  background: rgba(208,112,32,0.08);
  border-radius: var(--radius);
  padding: 16px;
}
.pix-waiting .pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--primary);
  display: inline-block;
  animation: pulse 1.5s infinite;
  margin-right: 8px;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
.pix-waiting p { font-size: 14px; color: var(--muted); }
.pix-waiting .sub { font-size: 12px; margin-top: 8px; }

/* ===== CONFIRMATION PAGE ===== */
.confirmation { padding: 64px 0; max-width: 480px; margin: 0 auto; text-align: center; }
.confirm-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px 40px;
}
.confirm-icon {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--primary-10);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 44px;
  color: var(--primary);
}
.confirm-title { font-size: 24px; font-weight: 700; }
.confirm-text { font-size: 14px; color: var(--muted); margin-top: 12px; line-height: 1.6; }
.confirm-tracking {
  margin-top: 32px;
  background: var(--cream);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: left;
}
.confirm-tracking .icon { font-size: 28px; color: var(--primary); flex-shrink: 0; }
.confirm-tracking .label { font-size: 14px; font-weight: 600; }
.confirm-tracking .desc { font-size: 12px; color: var(--muted); margin-top: 2px; }
.btn-back-store {
  display: inline-block;
  margin-top: 32px;
  background: var(--primary);
  color: var(--white);
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 50px;
  transition: background 0.2s;
}
.btn-back-store:hover { background: var(--primary-dark); }

/* ===== CART DRAWER ===== */
.cart-drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.cart-drawer-overlay.open { opacity: 1; visibility: visible; }
.cart-drawer {
  position: fixed;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 61;
  width: 100%;
  max-width: 380px;
  background: var(--bg);
  box-shadow: var(--shadow-xl);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
.cart-drawer.open { transform: translateX(0); }
.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
}
.drawer-header-title { font-size: 14px; font-weight: 600; display: flex; align-items: center; gap: 8px; }
.drawer-close { padding: 4px; color: var(--muted); font-size: 20px; }
.drawer-close:hover { color: var(--fg); }
.drawer-added {
  margin: 12px 16px 0;
  padding: 12px;
  background: var(--primary-10);
  border: 1px solid rgba(208,112,32,0.2);
  border-radius: var(--radius);
  font-size: 12px;
}
.drawer-added .title { font-weight: 500; color: var(--primary); }
.drawer-added .name { color: var(--muted); margin-top: 2px; }
.drawer-items {
  flex: 1;
  overflow-y: auto;
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.drawer-empty { display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100%; color: var(--muted); }
.drawer-empty .icon { font-size: 40px; opacity: 0.3; margin-bottom: 12px; }
.drawer-item {
  display: flex;
  gap: 12px;
  padding: 8px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.drawer-item-img { width: 64px; height: 80px; border-radius: 4px; overflow: hidden; flex-shrink: 0; }
.drawer-item-img img { width: 100%; height: 100%; object-fit: cover; }
.drawer-item-info { flex: 1; min-width: 0; }
.drawer-item-name { font-size: 12px; font-weight: 500; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.drawer-item-price { font-size: 14px; font-weight: 700; margin-top: 4px; }
.drawer-item-actions { display: flex; align-items: center; gap: 8px; margin-top: 6px; }
.drawer-qty-btn {
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--muted);
}
.drawer-qty-btn:hover { background: var(--cream); }
.drawer-qty-val { font-size: 12px; font-weight: 500; width: 20px; text-align: center; }
.drawer-remove { margin-left: auto; font-size: 10px; color: var(--muted); }
.drawer-remove:hover { color: var(--red); }
.drawer-footer {
  border-top: 1px solid var(--border);
  padding: 16px;
}
.drawer-total { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.drawer-total .label { font-size: 14px; font-weight: 500; }
.drawer-total .value { font-size: 18px; font-weight: 700; }
.btn-drawer-checkout {
  display: block;
  width: 100%;
  background: var(--primary);
  color: var(--white);
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  padding: 12px;
  border-radius: 2px;
  transition: opacity 0.2s;
}
.btn-drawer-checkout:hover { opacity: 0.9; }
.drawer-keep { display: block; width: 100%; text-align: center; font-size: 12px; color: var(--muted); margin-top: 8px; padding: 4px; }
.drawer-keep:hover { color: var(--fg); }

/* ===== TOAST ===== */
.toast {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 100;
  background: var(--fg);
  color: var(--white);
  padding: 12px 20px;
  border-radius: var(--radius);
  font-size: 14px;
  box-shadow: var(--shadow-xl);
  transform: translateX(120%);
  transition: transform 0.3s;
  max-width: 320px;
}
.toast.show { transform: translateX(0); }
.toast.error { background: var(--red); }
.toast.success { background: var(--green); }

/* ===== LOADING SPINNER ===== */
.spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ===== "VER TODOS" LINK ===== */
.see-all { display: block; text-align: center; margin-top: 24px; font-size: 14px; font-weight: 500; color: var(--primary); }
.see-all:hover { text-decoration: underline; }

/* ===== MODERN CHECKOUT ===== */
.checkout-page {
  padding: 32px 0 56px;
}
.checkout-hero {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}
.checkout-kicker {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(208,112,32,0.10);
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.checkout-title {
  font-size: 30px;
  line-height: 1.1;
  margin-bottom: 8px;
}
.checkout-subtitle {
  color: var(--muted);
  max-width: 640px;
}
.checkout-pill {
  flex-shrink: 0;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid rgba(208,112,32,0.16);
  box-shadow: 0 12px 30px rgba(35,25,20,0.06);
  font-size: 13px;
  font-weight: 600;
}
.modern-checkout-layout {
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.8fr);
  align-items: start;
}
.checkout-main-stack {
  display: grid;
  gap: 20px;
}
.checkout-card-elevated {
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(252,251,250,0.98));
  border: 1px solid rgba(208,112,32,0.10);
  box-shadow: 0 16px 40px rgba(35,25,20,0.06);
}
.checkout-section-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}
.checkout-section-head > div {
  display: flex;
  align-items: center;
  gap: 12px;
}
.checkout-section-head h2 {
  margin-bottom: 0;
}
.checkout-section-head p {
  color: var(--muted);
  font-size: 13px;
  max-width: 280px;
  text-align: right;
}
.section-step {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(208,112,32,0.12);
  color: var(--primary);
  font-weight: 700;
}
.form-grid {
  display: grid;
  gap: 16px;
}
.form-grid.two-cols {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.col-span-2 {
  grid-column: span 2;
}
.form-input {
  background: #fff;
  border: 1px solid rgba(35,25,20,0.12);
  border-radius: 14px;
  min-height: 50px;
}
.form-input:focus {
  border-color: rgba(208,112,32,0.55);
  box-shadow: 0 0 0 4px rgba(208,112,32,0.10);
}
.form-helper {
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
}
.input-with-action {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}
.btn-inline-action {
  min-width: 102px;
  padding: 0 14px;
  border-radius: 14px;
  border: 1px solid rgba(208,112,32,0.16);
  background: rgba(208,112,32,0.08);
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
}
.shipping-empty-state {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border-radius: 16px;
  background: rgba(208,112,32,0.06);
  border: 1px dashed rgba(208,112,32,0.22);
}
.shipping-empty-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  font-size: 22px;
}
.shipping-empty-state p {
  color: var(--muted);
  font-size: 13px;
  margin-top: 4px;
}
.shipping-options {
  display: grid;
  gap: 12px;
}
.shipping-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border-radius: 16px;
  border: 1px solid rgba(35,25,20,0.10);
  background: #fff;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.shipping-option:hover {
  transform: translateY(-1px);
  border-color: rgba(208,112,32,0.22);
  box-shadow: 0 10px 24px rgba(35,25,20,0.05);
}
.shipping-option.selected {
  border-color: rgba(208,112,32,0.45);
  background: rgba(208,112,32,0.06);
  box-shadow: 0 10px 24px rgba(208,112,32,0.08);
}
.shipping-option input {
  accent-color: var(--primary);
}
.shipping-main {
  flex: 1;
}
.shipping-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.shipping-name {
  font-size: 14px;
  font-weight: 700;
}
.shipping-desc {
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
}
.shipping-price {
  font-size: 14px;
  font-weight: 700;
}
.summary-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}
.summary-badge {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(208,112,32,0.08);
  color: var(--primary);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}
.checkout-summary-sticky {
  position: sticky;
  top: 90px;
}
.summary-divider {
  height: 1px;
  background: rgba(35,25,20,0.08);
  margin: 16px 0;
}
.summary-row, .summary-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.summary-row {
  font-size: 14px;
  margin-bottom: 10px;
}
.summary-discount {
  color: var(--primary);
  font-weight: 600;
}
.summary-total {
  padding-top: 6px;
  font-size: 20px;
  font-weight: 700;
}
.btn-submit-modern {
  min-height: 54px;
  border-radius: 16px;
  box-shadow: 0 18px 30px rgba(208,112,32,0.24);
}
.btn-submit-modern:hover {
  transform: translateY(-1px);
}
.toast {
  position: fixed;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%) translateY(20px);
  opacity: 0;
  pointer-events: none;
  background: #231914;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 13px;
  z-index: 9999;
  transition: all 0.25s ease;
  box-shadow: 0 18px 30px rgba(35,25,20,0.18);
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.toast.success { background: #1e7f4f; }
.toast.error { background: #9d2a20; }
.spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255,255,255,0.35);
  border-top-color: #fff;
  border-radius: 50%;
  display: inline-block;
  animation: spin 0.8s linear infinite;
  vertical-align: middle;
  margin-right: 8px;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

@media (max-width: 980px) {
  .modern-checkout-layout {
    grid-template-columns: 1fr;
  }
  .checkout-summary-sticky {
    position: static;
    top: auto;
  }
}
@media (max-width: 720px) {
  .checkout-hero,
  .checkout-section-head {
    flex-direction: column;
    align-items: flex-start;
  }
  .checkout-section-head p {
    text-align: left;
    max-width: none;
  }
  .form-grid.two-cols {
    grid-template-columns: 1fr;
  }
  .col-span-2 {
    grid-column: auto;
  }
  .shipping-title-row {
    flex-direction: column;
    align-items: flex-start;
  }
}


/* ===== MOBILE / LAYOUT POLISH ===== */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}
body {
  min-width: 320px;
}
a, button, input, select, textarea {
  -webkit-tap-highlight-color: transparent;
}
img, svg {
  max-width: 100%;
}
.container,
.product-layout,
.cart-layout,
.checkout-layout,
.modern-checkout-layout,
.footer-grid,
.benefits-grid,
.testimonials-grid,
.form-grid,
.shipping-options,
.order-item,
.cart-item,
.drawer-item,
.checkout-section-head,
.summary-row,
.summary-total,
.shipping-title-row {
  min-width: 0;
}
.product-card,
.checkout-card,
.confirm-card,
.cart-summary,
.cart-item,
.testimonial-card,
.faq-item,
.shipping-option,
.payment-option,
.drawer-item {
  border-radius: 18px;
}
.product-card {
  border: 1px solid rgba(35,25,20,0.06);
  box-shadow: 0 10px 24px rgba(35,25,20,0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(35,25,20,0.08);
}
.btn-buy,
.btn-add-cart,
.btn-buy-now,
.btn-checkout,
.btn-submit,
.btn-submit-modern,
.btn-drawer-checkout,
.btn-continue,
.btn-back-store {
  transition: transform 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn-buy:active,
.btn-add-cart:active,
.btn-buy-now:active,
.btn-checkout:active,
.btn-submit:active,
.btn-submit-modern:active,
.btn-drawer-checkout:active {
  transform: scale(0.98);
}
.header {
  backdrop-filter: blur(12px);
}
.header-inner {
  position: relative;
}
.header-logo-link {
  z-index: 2;
}
.top-bar {
  border-bottom: 1px solid rgba(208,112,32,0.08);
}
.section-title,
.product-title,
.checkout-title,
.category-title,
.confirm-title,
.footer-heading,
.shipping-name,
.payment-label,
.order-item-name,
.cart-item-name,
.product-card-name,
.summary-total {
  overflow-wrap: anywhere;
}
.product-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.product-slider {
  padding-bottom: 4px;
}
.product-slider .product-card {
  flex: 0 0 min(46vw, 240px);
}
.product-card-info {
  padding: 12px 10px 12px;
}
.product-card-name {
  min-height: 38px;
}
.product-gallery .thumbnails {
  flex-wrap: wrap;
}
.qty-row > * {
  min-width: 0;
}
.form-input,
.category-sort,
.search-input,
.qty-selector,
.payment-option,
.shipping-option,
.btn-inline-action {
  width: 100%;
}
.input-with-action .btn-inline-action {
  width: auto;
}
.checkout-card,
.cart-summary,
.confirm-card {
  overflow: hidden;
}
.footer-grid {
  align-items: start;
}
.footer-links a,
.footer-desc,
.confirm-text,
.checkout-subtitle,
.shipping-desc,
.payment-desc,
.product-short-desc,
.testimonial-text,
.faq-answer,
.benefit-desc {
  overflow-wrap: anywhere;
}

/* ===== PAGE TRANSITION / ACTION OVERLAY ===== */
.checkout-overlay {
  position: fixed;
  inset: 0;
  background: rgba(255,255,255,0.98);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 9999;
}
.checkout-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.checkout-overlay .loader {
  position: relative;
  width: 60px;
  height: 60px;
}
.checkout-overlay .circle {
  width: 60px;
  height: 60px;
  border: 4px solid #eee;
  border-top-color: #000;
  border-radius: 50%;
  animation: tb-spin 1s linear infinite;
}
.checkout-overlay .lock-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 28px;
  height: 28px;
  transform: translate(-50%, -50%);
  animation: tb-pulse 1.6s ease-in-out infinite;
}
.checkout-text {
  font-size: 1.3rem;
  color: #111;
  font-weight: 700;
  text-align: center;
}
.checkout-text .brand {
  font-weight: 600;
  color: #fd9800;
}
.checkout-subtext {
  color: #666;
  font-size: 0.95rem;
  text-align: center;
  padding: 0 20px;
}
.cart-bump {
  animation: cartBump 0.55s ease;
}
.product-clicked {
  animation: productPulse 0.55s ease;
}
@keyframes tb-spin { to { transform: rotate(360deg); } }
@keyframes tb-pulse {
  0%, 100% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.7; transform: translate(-50%, -50%) scale(1.15); }
}
@keyframes cartBump {
  0% { transform: scale(1); }
  25% { transform: scale(1.06); }
  60% { transform: scale(0.96); }
  100% { transform: scale(1); }
}
@keyframes productPulse {
  0% { transform: scale(1); box-shadow: 0 0 0 rgba(208,112,32,0); }
  50% { transform: scale(0.985); box-shadow: 0 0 0 8px rgba(208,112,32,0.09); }
  100% { transform: scale(1); box-shadow: 0 0 0 rgba(208,112,32,0); }
}

@media (max-width: 767px) {
  .container {
    padding-left: 14px;
    padding-right: 14px;
  }
  .top-bar {
    font-size: 11px;
    padding: 8px 14px;
  }
  .header-inner {
    height: 58px;
    gap: 8px;
  }
  .header-btn {
    min-width: 34px;
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .header-logo {
    height: 30px;
  }
  .hero-dots {
    bottom: 8px;
  }
  .section,
  .promo-section,
  .benefits,
  .testimonials,
  .faq,
  .product-detail,
  .cart-page,
  .checkout-page,
  .confirmation {
    padding-left: 0;
    padding-right: 0;
  }
  .section-title {
    font-size: 18px;
    margin-bottom: 16px;
    padding: 0 4px;
  }
  .product-grid {
    gap: 10px;
  }
  .product-slider .product-card {
    flex-basis: 64%;
  }
  .product-card-info {
    padding: 10px 8px 10px;
  }
  .product-card-name {
    font-size: 11px;
    min-height: 32px;
  }
  .product-card-price,
  .product-card-old,
  .product-card-discount {
    line-height: 1.3;
  }
  .btn-buy {
    font-size: 11px;
    padding: 9px 8px;
  }
  .benefits-grid,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .testimonial-card,
  .faq-question,
  .faq-answer,
  .checkout-card,
  .cart-item,
  .cart-summary,
  .confirm-card {
    padding-left: 14px;
    padding-right: 14px;
  }
  .product-layout,
  .cart-layout,
  .checkout-layout,
  .modern-checkout-layout {
    gap: 20px;
  }
  .product-title {
    font-size: 21px;
  }
  .fragrance-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .qty-row {
    flex-direction: column;
  }
  .qty-selector,
  .btn-add-cart {
    width: 100%;
  }
  .cart-item {
    display: grid;
    grid-template-columns: 84px minmax(0,1fr);
    gap: 12px;
    align-items: start;
  }
  .cart-item-img {
    width: 84px;
    height: 84px;
  }
  .cart-item-actions {
    flex-wrap: wrap;
    gap: 10px;
  }
  .summary-row,
  .summary-total,
  .checkout-section-head > div,
  .shipping-title-row,
  .summary-head {
    gap: 8px;
  }
  .checkout-title {
    font-size: 24px;
  }
  .checkout-subtitle {
    font-size: 14px;
  }
  .checkout-pill {
    width: 100%;
    text-align: center;
  }
  .input-with-action {
    grid-template-columns: 1fr;
  }
  .btn-inline-action {
    min-height: 48px;
  }
  .shipping-option,
  .payment-option,
  .order-item {
    align-items: flex-start;
  }
  .order-item {
    display: grid;
    grid-template-columns: 56px minmax(0,1fr) auto;
  }
  .order-item-price {
    text-align: right;
  }
  .pix-card,
  .confirm-card {
    border-radius: 20px;
  }
  .checkout-overlay .loader {
    width: 56px;
    height: 56px;
  }
  .checkout-overlay .circle {
    width: 56px;
    height: 56px;
  }
  .checkout-text {
    font-size: 1.15rem;
    padding: 0 18px;
  }
  .checkout-subtext {
    font-size: 0.9rem;
  }
}
