/* ==========================================================================
   ECONOMIZARE® - Ultra-Modern, High-Converting & Fully Responsive Stylesheet
   ========================================================================== */

/* --- CSS Variables & Design Tokens --- */
:root {
  --primary: #00a650;
  --primary-hover: #008f45;
  --primary-dark: #005a2b;
  --primary-light: #e8f7ee;
  --primary-gradient: linear-gradient(135deg, #00a650 0%, #00853f 100%);
  --secondary: #0284c7;
  --secondary-light: #e0f2fe;
  --accent: #f59e0b;
  --accent-light: #fef3c7;
  --gold: #d97706;
  --gold-light: #fef3c7;
  --danger: #dc2626;
  --danger-light: #fee2e2;
  
  --bg-main: #f8fafc;
  --bg-card: #ffffff;
  --bg-alt: #f1f5f9;
  
  --text-main: #0f172a;
  --text-muted: #64748b;
  --text-subtle: #94a3b8;
  
  --border-light: #e2e8f0;
  --border-focus: #00a650;
  
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 10px 25px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.03);
  --shadow-xl: 0 20px 30px -5px rgba(0, 0, 0, 0.12);
  --shadow-glow: 0 0 20px rgba(0, 166, 80, 0.35);

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --font-body: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Outfit', 'Inter', system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  width: 100%;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Permite seleção e edição total em todos os formulários, checkout e campos de texto */
input, textarea, select, [contenteditable="true"], .selectable, #pix-copy-input, .pix-copy-box, .checkout-form-grid input, .checkout-form-grid textarea, .checkout-dialog input {
  -webkit-user-select: text !important;
  -moz-user-select: text !important;
  -ms-user-select: text !important;
  user-select: text !important;
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
  -webkit-user-drag: none;
  user-drag: none;
}

button, input, select, textarea {
  font-family: inherit;
}

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

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

.text-center { text-align: center; }
.text-green { color: var(--primary) !important; }
.text-blue { color: var(--secondary) !important; }
.text-danger { color: var(--danger) !important; }
.text-success { color: var(--primary) !important; }

/* Micro-Animation Pulse for Buy Buttons */
.pulse-btn {
  position: relative;
  overflow: hidden;
  animation: pulseGlow 2.5s infinite;
}

@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 0 rgba(0, 166, 80, 0.7); }
  70% { box-shadow: 0 0 0 14px rgba(0, 166, 80, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 166, 80, 0); }
}

/* --- Top Announcement Bar --- */
.top-announcement {
  background: #09101d;
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.announcement-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.announcement-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.announcement-item i {
  width: 16px;
  height: 16px;
  color: #4ade80;
}

.timer-item {
  background: rgba(239, 68, 68, 0.2);
  padding: 2px 10px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(239, 68, 68, 0.4);
}

.pulse-timer {
  color: #f87171;
  font-family: monospace;
  font-size: 0.9rem;
}

/* --- Site Header --- */
.site-header {
  background: #ffffff;
  border-bottom: 1px solid var(--border-light);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

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

/* Logo */
.brand-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 4px;
}

.logo-eco {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.5px;
}

.logo-zare {
  color: var(--primary);
}

.logo-leaf {
  font-size: 1.3rem;
}

.logo-tagline {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-top: 3px;
}

/* Search Bar */
.header-search {
  flex: 1;
  max-width: 480px;
}

.search-input-wrap {
  display: flex;
  align-items: center;
  background: var(--bg-alt);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-full);
  padding: 4px 6px 4px 16px;
  transition: var(--transition);
}

.search-input-wrap:focus-within {
  border-color: var(--primary);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(0, 166, 80, 0.15);
}

.search-input-wrap input {
  border: none;
  background: transparent;
  width: 100%;
  font-size: 0.875rem;
  outline: none;
  color: var(--text-main);
}

.search-btn {
  background: var(--primary);
  border: none;
  color: #ffffff;
  border-radius: var(--radius-full);
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.search-btn:hover {
  background: var(--primary-hover);
}

.search-btn i {
  width: 16px;
  height: 16px;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.header-action-item {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  padding: 6px 10px;
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.header-action-item:hover {
  background: var(--bg-alt);
}

.action-icon {
  color: var(--primary);
  display: flex;
  align-items: center;
}

.action-icon i {
  width: 22px;
  height: 22px;
}

.action-text {
  display: flex;
  flex-direction: column;
}

.action-label {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.action-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-main);
}

/* Cart Button */
.cart-button {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--primary-light);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(0, 166, 80, 0.25);
  transition: var(--transition);
}

.cart-button:hover {
  background: #d1fae5;
  transform: translateY(-1px);
}

.cart-icon-wrap {
  position: relative;
  color: var(--primary);
  display: flex;
  align-items: center;
}

.cart-icon-wrap i {
  width: 22px;
  height: 22px;
}

.cart-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #ef4444;
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-info {
  display: flex;
  flex-direction: column;
}

.cart-title {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.cart-total {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-dark);
}

/* Sub Navigation */
.sub-nav {
  background: #f8fafc;
  border-top: 1px solid var(--border-light);
  font-size: 0.875rem;
}

.sub-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 20px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 22px;
}

.nav-links a {
  font-weight: 500;
  color: var(--text-muted);
  padding: 4px 2px;
  border-bottom: 2px solid transparent;
  transition: var(--transition);
  font-size: 0.88rem;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
  font-weight: 600;
}

.nav-deal-tag {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #ecfdf5;
  color: #059669;
  font-weight: 700;
  font-size: 0.78rem;
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

.nav-deal-tag i {
  width: 14px;
  height: 14px;
}

/* --- Breadcrumb Bar --- */
.breadcrumb-bar {
  padding: 14px 0 6px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 6px;
  flex-wrap: wrap;
}

.breadcrumb-list i {
  width: 12px;
  height: 12px;
  color: var(--text-subtle);
}

.breadcrumb-list a:hover {
  color: var(--primary);
  text-decoration: underline;
}

.breadcrumb-list .active {
  color: var(--text-main);
  font-weight: 600;
}

/* --- Product Hero Section --- */
.product-hero-section {
  padding: 16px 0 48px;
}

.product-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 36px;
  align-items: start;
}

/* Gallery Column */
.product-gallery {
  position: sticky;
  top: 110px;
  background: #ffffff;
  padding: 24px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.gallery-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.badge {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.badge-sale {
  background: #fee2e2;
  color: #dc2626;
}

.badge-tv {
  background: #fef3c7;
  color: #b45309;
}

.badge-shark {
  background: #e0f2fe;
  color: #0369a1;
}

.main-image-container {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #f1f5f9;
}

.main-image-container img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.main-video-container {
  width: 100%;
  height: 100%;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-video-container video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.video-live-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #ffffff;
  padding: 5px 12px;
  border-radius: 99px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.3px;
  z-index: 10;
  border: 1px solid rgba(255, 255, 255, 0.2);
  pointer-events: none;
}

.video-live-dot {
  width: 7px;
  height: 7px;
  background: #ef4444;
  border-radius: 50%;
  animation: pulseLiveDot 1.2s infinite;
}

@keyframes pulseLiveDot {
  0% { transform: scale(0.9); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.4; }
  100% { transform: scale(0.9); opacity: 1; }
}

.video-unmute-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 20;
  cursor: pointer;
  width: 90%;
  max-width: 360px;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.unmute-pill-pulse {
  background: rgba(15, 23, 42, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 2px solid #10b981;
  color: #ffffff;
  padding: 14px 18px;
  border-radius: 99px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 800;
  text-align: center;
  box-shadow: 0 0 25px rgba(16, 185, 129, 0.45), 0 10px 25px rgba(0, 0, 0, 0.5);
  animation: pillPulseGlow 1.8s infinite;
}

@keyframes pillPulseGlow {
  0% { transform: scale(0.98); box-shadow: 0 0 15px rgba(16, 185, 129, 0.35); }
  50% { transform: scale(1.03); box-shadow: 0 0 30px rgba(16, 185, 129, 0.7); }
  100% { transform: scale(0.98); box-shadow: 0 0 15px rgba(16, 185, 129, 0.35); }
}

.unmute-sound-bars {
  display: inline-flex;
  align-items: flex-end;
  gap: 3px;
  height: 16px;
}

.unmute-sound-bars span {
  width: 3px;
  background: #10b981;
  border-radius: 2px;
  animation: soundBarsBounce 1s infinite ease-in-out alternate;
}
.unmute-sound-bars span:nth-child(1) { height: 8px; animation-delay: 0.1s; }
.unmute-sound-bars span:nth-child(2) { height: 16px; animation-delay: 0.3s; }
.unmute-sound-bars span:nth-child(3) { height: 11px; animation-delay: 0.2s; }

@keyframes soundBarsBounce {
  0% { height: 4px; }
  100% { height: 16px; }
}

.video-sound-toggle-btn {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 14px;
  border-radius: 99px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
  transition: all 0.2s ease;
}

.video-sound-toggle-btn:hover {
  background: rgba(2, 132, 199, 0.95);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

.video-sound-toggle-btn.sound-active {
  background: rgba(16, 185, 129, 0.92);
  border-color: #34d399;
}

.video-sound-toggle-btn svg {
  width: 16px;
  height: 16px;
}

.btn-zoom {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  border: 1px solid var(--border-light);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-main);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.btn-zoom:hover {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
}

.btn-zoom i {
  width: 18px;
  height: 18px;
}

/* Thumbnails */
.gallery-thumbnails {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  margin-top: 16px;
}

.thumb-btn {
  position: relative;
  background: #ffffff;
  border: 2px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 3px;
  cursor: pointer;
  aspect-ratio: 1 / 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: var(--transition);
}

.thumb-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.thumb-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.75);
  color: #ffffff;
  font-size: 0.55rem;
  font-weight: 600;
  padding: 2px;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.thumb-btn:hover {
  border-color: var(--primary-light);
  transform: translateY(-2px);
}

.thumb-btn.active {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(0, 166, 80, 0.2);
}

.thumb-video {
  border-color: #38bdf8;
}

.video-thumb-overlay {
  position: absolute;
  inset: 0;
  background: rgba(2, 132, 199, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  z-index: 2;
}

.video-thumb-overlay i {
  width: 20px;
  height: 20px;
}

/* Security Strip below gallery */
.gallery-security-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 16px;
  background: #f8fafc;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 10px 14px;
}

.sec-strip-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.74rem;
  color: #334155;
  line-height: 1.3;
}

.sec-strip-item i {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.sec-strip-item strong {
  display: block;
  color: #0f172a;
}

.gallery-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--border-light);
}

.share-btn, .wishlist-btn {
  background: transparent;
  border: none;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
  padding: 6px 10px;
  border-radius: var(--radius-sm);
}

.share-btn:hover, .wishlist-btn:hover {
  background: var(--bg-alt);
  color: var(--text-main);
}

.share-btn i, .wishlist-btn i {
  width: 16px;
  height: 16px;
}

.wishlist-btn.active {
  color: var(--danger);
}

.wishlist-btn.active i {
  fill: var(--danger);
}

/* --- Right Column: Product Buy Info --- */
.product-info-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.product-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.brand-rating-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.brand-badge {
  background: #ecfdf5;
  color: var(--primary-dark);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  letter-spacing: 0.5px;
}

.brand-badge i {
  width: 14px;
  height: 14px;
  color: var(--primary);
}

.rating-stars {
  display: flex;
  align-items: center;
  gap: 8px;
}

.stars {
  display: flex;
  gap: 2px;
  color: #eab308;
}

.stars i {
  width: 16px;
  height: 16px;
}

.stars i.fill {
  fill: #eab308;
}

.rating-count {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.rating-count:hover {
  color: var(--primary);
  text-decoration: underline;
}

.product-title {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.25;
}

.product-subtitle-tag {
  display: block;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-top: 6px;
  line-height: 1.4;
}

.product-meta-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  color: var(--text-muted);
  flex-wrap: wrap;
}

.product-meta-row .divider {
  color: var(--border-light);
}

.status-stock {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-weight: 600;
}

.status-stock.in-stock {
  color: #16a34a;
}

.status-stock i {
  width: 14px;
  height: 14px;
}

.warranty-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.warranty-tag i {
  width: 14px;
  height: 14px;
}

/* Urgency Banner */
.urgency-banner {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  padding: 10px 14px;
  border-radius: var(--radius-md);
  font-size: 0.82rem;
  color: #9a3412;
}

.urgency-icon {
  color: #ea580c;
  display: flex;
  align-items: center;
}

.urgency-icon i {
  width: 20px;
  height: 20px;
  animation: pulseFlame 1.5s infinite alternate;
}

@keyframes pulseFlame {
  0% { transform: scale(1); }
  100% { transform: scale(1.18); }
}

/* Direct Guarantee Badge Box inside buy area */
.direct-guarantee-badge-box {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f0fdf4;
  border: 1.5px solid #86efac;
  border-radius: var(--radius-md);
  padding: 12px 14px;
}

.guarantee-box-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.guarantee-box-icon i {
  width: 20px;
  height: 20px;
}

.guarantee-box-text {
  display: flex;
  flex-direction: column;
  font-size: 0.78rem;
  color: #14532d;
  line-height: 1.35;
}

.guarantee-box-text strong {
  font-size: 0.85rem;
  color: #065f46;
}

/* Pricing Card */
.pricing-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.price-from {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.price-from del {
  color: #94a3b8;
}

.save-tag {
  background: #fee2e2;
  color: #dc2626;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--radius-full);
}

.price-main {
  display: flex;
  align-items: baseline;
  gap: 4px;
  color: #0f172a;
}

.currency {
  font-size: 1.3rem;
  font-weight: 700;
}

.price-value {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 1;
  color: #0f172a;
}

.price-cents {
  font-size: 1.4rem;
  font-weight: 700;
}

.price-badge-pix {
  background: #10b981;
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: var(--radius-full);
  margin-left: 8px;
  letter-spacing: 0.3px;
  box-shadow: 0 2px 6px rgba(16, 185, 129, 0.25);
  display: inline-flex;
  align-items: center;
  align-self: center;
}

.price-sub-details {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: #475569;
  flex-wrap: wrap;
}

.normal-price-tag {
  color: #64748b;
}

.normal-price-tag del {
  color: #94a3b8;
  font-weight: 600;
}

.price-sub-details .divider {
  color: #cbd5e1;
}

.economy-highlight-tag {
  color: #16a34a;
  font-weight: 700;
  background: #dcfce7;
  padding: 2px 8px;
  border-radius: var(--radius-full);
}

/* PIX Discount Box */
.pix-highlight-box {
  background: linear-gradient(135deg, #ecfdf5 0%, #f0fdf4 100%);
  border: 1.5px dashed #10b981;
  border-radius: var(--radius-md);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.pix-badge {
  font-size: 0.72rem;
  font-weight: 800;
  background: #00a650;
  color: #ffffff;
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 4px;
}

.pix-badge i {
  width: 12px;
  height: 12px;
}

.pix-price {
  font-size: 1.25rem;
  font-weight: 800;
  color: #065f46;
}

.pix-sub {
  font-size: 0.75rem;
  font-weight: 500;
  color: #047857;
  display: block;
}

.pix-right {
  font-size: 0.75rem;
  font-weight: 600;
  color: #047857;
  text-align: right;
  display: flex;
  align-items: center;
  gap: 6px;
}

.pix-truck-icon {
  width: 18px;
  height: 18px;
  color: var(--primary);
}

/* Bundles Selection */
.bundles-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.section-label {
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #1e293b;
}

.section-label i {
  width: 16px;
  height: 16px;
  color: var(--primary);
}

.bundle-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bundle-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
  border: 2px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  cursor: pointer;
  transition: var(--transition);
}

.bundle-card input[type="radio"] {
  accent-color: var(--primary);
  width: 18px;
  height: 18px;
  margin-right: 12px;
  cursor: pointer;
}

.bundle-card:hover {
  border-color: #cbd5e1;
}

.bundle-card.active {
  border-color: var(--primary);
  background: #f0fdf4;
  box-shadow: 0 0 0 1px var(--primary);
}

.bundle-card.highlight-bundle {
  border-color: #10b981;
}

.popular-ribbon {
  position: absolute;
  top: -10px;
  right: 14px;
  background: #f59e0b;
  color: #ffffff;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  letter-spacing: 0.3px;
  box-shadow: var(--shadow-sm);
}

.bundle-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.bundle-title {
  font-weight: 700;
  font-size: 0.92rem;
  color: #0f172a;
}

.bundle-desc {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.bundle-badge {
  align-self: flex-start;
  font-size: 0.65rem;
  font-weight: 700;
  background: #f1f5f9;
  color: #475569;
  padding: 2px 6px;
  border-radius: 4px;
  margin-top: 4px;
}

.bundle-badge.green {
  background: #dcfce7;
  color: #15803d;
}

.bundle-badge.blue {
  background: #e0f2fe;
  color: #0369a1;
}

.bundle-price-col {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}

.bundle-normal-strike {
  font-size: 0.75rem;
  color: #94a3b8;
  text-decoration: line-through;
  font-weight: 500;
}

.bundle-price {
  font-size: 1.05rem;
  font-weight: 800;
  color: #0f172a;
}

.bundle-pix {
  font-size: 0.95rem;
  font-weight: 800;
  color: #16a34a;
}

.bundle-save-tag {
  font-size: 0.68rem;
  font-weight: 700;
  color: #dc2626;
  background: #fee2e2;
  padding: 1px 6px;
  border-radius: var(--radius-full);
  margin-top: 2px;
  display: inline-block;
}

.bundle-save-tag.green {
  color: #15803d;
  background: #dcfce7;
}

.bundle-save-tag.blue {
  color: #0369a1;
  background: #e0f2fe;
}

/* Purchase Action Group */
.purchase-action-group {
  display: flex;
  gap: 12px;
  align-items: stretch;
}

.quantity-controller {
  display: flex;
  align-items: center;
  background: #ffffff;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 4px;
  width: 120px;
}

.qty-btn {
  background: transparent;
  border: none;
  width: 32px;
  height: 38px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-main);
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.qty-btn:hover {
  background: var(--bg-alt);
}

.quantity-controller input {
  width: 40px;
  border: none;
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
  background: transparent;
  outline: none;
}

.btn-buy-primary {
  flex: 1;
  background: var(--primary-gradient);
  color: #ffffff;
  border: none;
  border-radius: var(--radius-md);
  padding: 14px 20px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-glow), 0 4px 12px rgba(0, 166, 80, 0.3);
  transition: var(--transition);
}

.btn-buy-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(0, 166, 80, 0.5), 0 8px 18px rgba(0, 166, 80, 0.4);
}

.btn-buy-text {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.15rem;
  letter-spacing: 0.5px;
}

.btn-buy-text i {
  width: 22px;
  height: 22px;
}

.btn-buy-sub {
  font-size: 0.72rem;
  opacity: 0.95;
  font-weight: 500;
}

/* Conversion Safe Strip */
.conversion-safe-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  background: #f8fafc;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 10px;
}

.safe-badge-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
}

.safe-badge-item i {
  width: 18px;
  height: 18px;
  color: var(--primary);
}

.safe-badge-item span {
  font-size: 0.68rem;
  font-weight: 600;
  color: #334155;
}

/* WhatsApp Direct Button */
.btn-whatsapp-direct {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #ffffff;
  color: #16a34a;
  border: 1.5px solid #86efac;
  border-radius: var(--radius-md);
  padding: 10px 14px;
  font-size: 0.82rem;
  font-weight: 600;
  transition: var(--transition);
}

.btn-whatsapp-direct:hover {
  background: #f0fdf4;
  border-color: #22c55e;
}

.btn-whatsapp-direct i {
  width: 18px;
  height: 18px;
}

/* Shipping Card */
.shipping-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.shipping-title {
  font-size: 0.82rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #334155;
}

.shipping-title i {
  width: 16px;
  height: 16px;
  color: var(--primary);
}

.shipping-input-group {
  display: flex;
  gap: 8px;
}

.shipping-input-group input {
  flex: 1;
  background: var(--bg-alt);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  font-size: 0.875rem;
  outline: none;
}

.shipping-input-group input:focus {
  border-color: var(--primary);
  background: #ffffff;
}

.btn-calc-shipping {
  background: #334155;
  color: #ffffff;
  border: none;
  border-radius: var(--radius-sm);
  padding: 0 16px;
  font-weight: 600;
  font-size: 0.82rem;
  cursor: pointer;
  transition: var(--transition);
}

.btn-calc-shipping:hover {
  background: #0f172a;
}

.shipping-result {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
  border-top: 1px dashed var(--border-light);
  padding-top: 10px;
}

.shipping-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-alt);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
}

.shipping-option.free {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
}

.shipping-opt-info {
  display: flex;
  align-items: center;
  gap: 8px;
}

.shipping-opt-info i {
  width: 16px;
  height: 16px;
}

.shipping-opt-info span {
  display: block;
  color: var(--text-muted);
  font-size: 0.72rem;
}

.tag-free {
  font-weight: 800;
  color: #16a34a;
  background: #dcfce7;
  padding: 2px 6px;
  border-radius: 4px;
}

.tag-paid {
  font-weight: 700;
  color: #334155;
}

.cep-lookup-link {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-decoration: underline;
}

/* Fast Highlights Box */
.fast-highlights-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  background: #f8fafc;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 16px;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.highlight-item i {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.highlight-item strong {
  display: block;
  font-size: 0.8rem;
  color: #0f172a;
}

.highlight-item span {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.icon-water { color: #0284c7; }
.icon-gauge { color: #16a34a; }
.icon-wrench { color: #eab308; }
.icon-shield { color: #8b5cf6; }

/* Trust Seals Row */
.trust-seals-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 6px;
  border-top: 1px solid var(--border-light);
  gap: 8px;
}

.seal-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
}

.seal-item i {
  width: 16px;
  height: 16px;
  color: var(--primary);
}

/* --- Credibility Banner --- */
.credibility-banner {
  background: linear-gradient(135deg, #064e3b 0%, #022c22 100%);
  color: #ffffff;
  padding: 40px 0;
  margin: 30px 0;
}

.credibility-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 36px;
  align-items: center;
}

.cred-badge .badge-tag {
  background: rgba(255, 255, 255, 0.15);
  color: #6ee7b7;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  letter-spacing: 0.8px;
}

.cred-badge h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  margin: 10px 0 8px;
}

.cred-badge h3 strong {
  color: #34d399;
}

.cred-badge p {
  color: #d1fae5;
  font-size: 0.95rem;
  line-height: 1.5;
}

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

.stat-box {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 16px;
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 900;
  color: #34d399;
}

.stat-lbl {
  font-size: 0.78rem;
  color: #e2e8f0;
  margin-top: 2px;
}

/* --- Dedicated Guarantee Section --- */
.guarantee-dedicated-section {
  background: #f0fdf4;
  border-top: 1px solid #bbf7d0;
  border-bottom: 1px solid #bbf7d0;
}

.guarantee-box-card {
  background: #ffffff;
  border: 2px solid #86efac;
  border-radius: var(--radius-xl);
  padding: 40px;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 36px;
  align-items: center;
  box-shadow: var(--shadow-lg);
}

.guar-seal-col {
  display: flex;
  justify-content: center;
}

.guar-seal-badge {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: linear-gradient(135deg, #10b981 0%, #047857 100%);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 12px;
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.35);
  border: 4px dashed rgba(255, 255, 255, 0.6);
}

.guar-seal-badge i {
  width: 42px;
  height: 42px;
}

.guar-seal-days {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1.1;
  margin-top: 2px;
}

.guar-seal-sub {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.8px;
}

.guar-text-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.guar-text-col h2 {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 800;
  color: #065f46;
  line-height: 1.25;
}

.guar-text-col p {
  font-size: 0.95rem;
  color: #334155;
  line-height: 1.55;
}

.guar-features-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin: 6px 0 10px;
}

.guar-f-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #047857;
  background: #ecfdf5;
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

.guar-f-item i {
  width: 16px;
  height: 16px;
  color: #10b981;
}

/* --- General Section Layout --- */
.section {
  padding: 60px 0;
}

.section-header {
  max-width: 760px;
  margin: 0 auto 40px;
}

.section-badge {
  display: inline-block;
  background: #ecfdf5;
  color: var(--primary-dark);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  letter-spacing: 0.8px;
  margin-bottom: 10px;
}

.section-badge.green {
  background: #dcfce7;
  color: #15803d;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: 2.1rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.25;
}

.section-lead {
  font-size: 1rem;
  color: var(--text-muted);
  margin-top: 10px;
}

/* --- Comparison Grid (Sem vs Com) --- */
.comparison-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.comparison-card {
  background: #ffffff;
  border-radius: var(--radius-xl);
  padding: 32px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.comparison-card.bad {
  border-top: 5px solid #ef4444;
}

.comparison-card.good {
  border-top: 5px solid #10b981;
  background: linear-gradient(180deg, #ffffff 0%, #f0fdf4 100%);
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.12);
}

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

.card-status-header i {
  width: 28px;
  height: 28px;
}

.comparison-card.bad .card-status-header i { color: #ef4444; }
.comparison-card.good .card-status-header i { color: #10b981; }

.card-status-header h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
}

.comp-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comp-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.92rem;
  color: #334155;
  line-height: 1.45;
}

.comp-list li i {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* --- 3-in-1 Pillars Section --- */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pillar-card {
  position: relative;
  background: #ffffff;
  border-radius: var(--radius-xl);
  padding: 32px 24px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.pillar-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.pillar-card.highlight {
  border: 2px solid var(--primary);
  background: #fafdfb;
}

.pillar-badge-top {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 3px 12px;
  border-radius: var(--radius-full);
}

.pillar-icon-box {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.pillar-icon-box.blue {
  background: #e0f2fe;
  color: #0284c7;
}

.pillar-icon-box.green {
  background: #dcfce7;
  color: #16a34a;
}

.pillar-icon-box.teal {
  background: #ccfbf1;
  color: #0d9488;
}

.pillar-icon-box i {
  width: 28px;
  height: 28px;
}

.pillar-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.pillar-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
  flex: 1;
}

.pillar-highlight {
  margin-top: 20px;
  padding-top: 14px;
  border-top: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--primary-dark);
}

.pillar-highlight i {
  width: 16px;
  height: 16px;
  color: var(--primary);
}

/* --- Installation Tabs Section --- */
.installation-section {
  background: #ffffff;
}

.install-tabs-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.tab-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-alt);
  border: 1px solid var(--border-light);
  padding: 12px 20px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}

.tab-btn i {
  width: 18px;
  height: 18px;
}

.tab-btn:hover {
  background: #e2e8f0;
  color: var(--text-main);
}

.tab-btn.active {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
  box-shadow: 0 4px 14px rgba(0, 166, 80, 0.3);
}

.install-tab-content {
  display: none;
  animation: fadeInTab 0.4s ease;
}

.install-tab-content.active {
  display: block;
}

@keyframes fadeInTab {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.tab-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
  background: var(--bg-main);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 36px;
}

.img-responsive {
  width: 100%;
  max-height: 480px;
  object-fit: contain;
  background: #ffffff;
  padding: 12px;
}

.rounded-shadow {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}

.tab-info-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.step-badge {
  display: inline-block;
  align-self: flex-start;
  background: #e0f2fe;
  color: #0369a1;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: var(--radius-full);
}

.tab-info-col h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: #0f172a;
}

.tab-info-col > p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.install-steps-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.install-step-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--primary);
  color: #ffffff;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.install-step-item strong {
  display: block;
  font-size: 0.92rem;
  color: #0f172a;
}

.install-step-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.tip-box {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f1f5f9;
  border-left: 4px solid #64748b;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  color: #334155;
}

.tip-box.success {
  background: #f0fdf4;
  border-left-color: var(--primary);
  color: #065f46;
}

.tip-box i {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.regulation-guide-boxes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.reg-box {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 14px;
}

.reg-header {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  margin-bottom: 6px;
}

.reg-box.clockwise .reg-header { color: #dc2626; }
.reg-box.counter-clockwise .reg-header { color: #16a34a; }

.reg-box p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.specs-table td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--border-light);
}

.specs-table tr:nth-child(even) {
  background: #ffffff;
}

/* --- Video Demonstration Section --- */
.video-showcase-section {
  background: #0f172a;
  color: #ffffff;
}

.video-showcase-card {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
  align-items: center;
}

.video-text-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.video-text-content .section-badge {
  background: rgba(255, 255, 255, 0.15);
  color: #6ee7b7;
}

.video-text-content h2 {
  font-family: var(--font-heading);
  font-size: 2.1rem;
  font-weight: 800;
  line-height: 1.25;
}

.video-text-content p {
  color: #cbd5e1;
  font-size: 1rem;
}

.video-bullet-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.video-bullet-points li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  color: #e2e8f0;
}

.video-bullet-points i {
  width: 18px;
  height: 18px;
  color: #34d399;
}

.btn-cta-green {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: #ffffff;
  padding: 14px 24px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 1rem;
  align-self: flex-start;
  box-shadow: 0 4px 14px rgba(0, 166, 80, 0.4);
  transition: var(--transition);
}

.btn-cta-green:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
}

.video-container-styled {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.15);
  background: #000;
  aspect-ratio: 16 / 9;
}

.video-container-styled video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- Appliances Protection Grid --- */
.appliances-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.appliance-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: var(--transition);
}

.appliance-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: #86efac;
}

.app-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: #ecfdf5;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.app-icon i {
  width: 24px;
  height: 24px;
}

.appliance-card h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.appliance-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.45;
}

/* --- Savings Calculator --- */
.savings-calculator-section {
  background: linear-gradient(180deg, #ffffff 0%, #f1f5f9 100%);
}

.calc-wrapper {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  max-width: 900px;
  margin: 0 auto;
}

.calc-slider-group {
  margin: 30px 0;
}

.slider-label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.slider-label-row label {
  font-weight: 700;
  font-size: 1rem;
  color: #1e293b;
}

.current-bill-badge {
  background: var(--primary-light);
  color: var(--primary-dark);
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 900;
  padding: 4px 16px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(0, 166, 80, 0.2);
}

input[type="range"]#bill-slider {
  width: 100%;
  height: 10px;
  border-radius: 5px;
  background: #cbd5e1;
  outline: none;
  accent-color: var(--primary);
  cursor: pointer;
}

.slider-ticks {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--text-subtle);
  margin-top: 6px;
}

.calc-results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 30px 0;
}

.result-card {
  background: var(--bg-alt);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.result-card.highlight {
  background: #ecfdf5;
  border-color: #86efac;
  transform: scale(1.04);
  box-shadow: 0 8px 20px rgba(0, 166, 80, 0.15);
}

.res-title {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-muted);
}

.res-value {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 900;
  margin: 6px 0;
}

.res-sub {
  font-size: 0.72rem;
  color: var(--text-subtle);
}

.btn-buy-calc {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-gradient);
  color: #ffffff;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-weight: 800;
  font-size: 1.05rem;
  box-shadow: var(--shadow-glow);
  transition: var(--transition);
}

.btn-buy-calc:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(0, 166, 80, 0.5);
}

/* --- Customer Reviews Section --- */
.reviews-summary-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.summary-score {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 900;
  color: #0f172a;
}

.summary-stars {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.summary-rec {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #166534;
  font-size: 0.85rem;
  padding: 6px 14px;
  border-radius: var(--radius-full);
}

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

.review-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.rev-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.rev-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #e2e8f0;
  color: #334155;
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rev-user-meta {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.rev-user-meta strong {
  font-size: 0.9rem;
  color: #0f172a;
}

.rev-user-meta span {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.verified-badge {
  color: #16a34a;
  font-weight: 600;
}

.rev-date {
  font-size: 0.7rem;
  color: var(--text-subtle);
}

.rev-rating {
  display: flex;
  gap: 2px;
  color: #eab308;
}

.rev-rating i {
  width: 14px;
  height: 14px;
  fill: #eab308;
}

.rev-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0f172a;
}

.rev-body {
  font-size: 0.85rem;
  color: #475569;
  line-height: 1.5;
}

/* --- FAQ Section --- */
.faq-container {
  max-width: 800px;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active {
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(0, 166, 80, 0.08);
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  cursor: pointer;
  text-align: left;
  font-weight: 700;
  font-size: 0.95rem;
  color: #0f172a;
}

.faq-icon {
  width: 20px;
  height: 20px;
  color: var(--text-muted);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: var(--primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  background: #fafafa;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 20px 20px 20px;
}

.faq-answer p {
  font-size: 0.88rem;
  color: #475569;
  line-height: 1.6;
}

/* --- Final CTA Section --- */
.final-cta-section {
  background: linear-gradient(135deg, #059669 0%, #064e3b 100%);
  color: #ffffff;
  padding: 70px 0;
}

.final-cta-inner {
  max-width: 800px;
  margin: 0 auto;
}

.cta-mini-tag {
  background: rgba(255, 255, 255, 0.2);
  color: #fef08a;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  letter-spacing: 0.8px;
}

.final-cta-inner h2 {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 900;
  margin: 16px 0 10px;
  line-height: 1.2;
}

.final-cta-inner p {
  font-size: 1.05rem;
  color: #d1fae5;
  margin-bottom: 28px;
}

.btn-cta-giant {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  color: #065f46;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 900;
  padding: 18px 36px;
  border-radius: var(--radius-full);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
}

.btn-cta-giant:hover {
  background: #f0fdf4;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.btn-cta-giant i {
  width: 24px;
  height: 24px;
}

.final-cta-benefits {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 24px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #a7f3d0;
}

.final-cta-benefits span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.final-cta-benefits i {
  width: 16px;
  height: 16px;
}

/* --- Security Certifications Strip --- */
.security-certifications-strip {
  background: #ffffff;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 24px 0;
}

.cert-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.cert-box {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cert-icon {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
}

.cert-icon.green { color: #16a34a; }
.cert-icon.blue { color: #0284c7; }
.cert-icon.gold { color: #d97706; }

.cert-box strong {
  display: block;
  font-size: 0.85rem;
  color: #0f172a;
}

.cert-box span {
  font-size: 0.74rem;
  color: var(--text-muted);
}

/* --- Site Footer --- */
.site-footer {
  background: #09101d;
  color: #cbd5e1;
  padding: 60px 0 0;
  font-size: 0.85rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
  gap: 36px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col h4 {
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a:hover {
  color: #34d399;
  text-decoration: underline;
}

.footer-desc {
  margin: 14px 0 18px;
  font-size: 0.82rem;
  line-height: 1.5;
  color: #94a3b8;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: var(--transition);
}

.footer-socials a:hover {
  background: var(--primary);
}

.footer-socials i {
  width: 18px;
  height: 18px;
}

.footer-contact-list li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-contact-list i {
  width: 16px;
  height: 16px;
  color: #34d399;
}

.payment-methods-grid {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.pay-badge {
  background: rgba(255, 255, 255, 0.1);
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #ffffff;
}

.security-badges-footer {
  display: flex;
  gap: 12px;
}

.sec-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: #94a3b8;
}

.sec-item i {
  width: 14px;
  height: 14px;
  color: #34d399;
}

.footer-bottom {
  padding: 20px 0;
  font-size: 0.75rem;
  color: #64748b;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

/* --- Modals: Lightbox & Checkout --- */
.lightbox-modal, .checkout-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 16px;
}

.lightbox-modal.active, .checkout-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-backdrop, .checkout-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(6px);
}

.lightbox-container {
  position: relative;
  z-index: 2;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-container img {
  max-width: 85vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
}

.lightbox-caption {
  color: #ffffff;
  font-size: 0.9rem;
  margin-top: 10px;
  background: rgba(0, 0, 0, 0.6);
  padding: 6px 16px;
  border-radius: var(--radius-full);
}

.lightbox-close, .checkout-close {
  position: absolute;
  top: -40px;
  right: -10px;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 2rem;
  cursor: pointer;
}

.checkout-dialog {
  position: relative;
  z-index: 2;
  background: #ffffff;
  width: 100%;
  max-width: 860px;
  border-radius: var(--radius-xl);
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.25);
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.checkout-dialog .checkout-close {
  top: 16px;
  right: 20px;
  color: #64748b;
  font-size: 1.6rem;
  z-index: 10;
  background: #f1f5f9;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: all 0.2s;
}

.checkout-dialog .checkout-close:hover {
  background: #e2e8f0;
  color: #0f172a;
}

.checkout-header {
  background: #f8fafc;
  padding: 16px 24px 12px;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
}

.checkout-header-info {
  text-align: left;
}

.checkout-header h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0;
}

.checkout-secure {
  font-size: 0.72rem;
  color: #16a34a;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 2px;
}

.checkout-secure i {
  width: 13px;
  height: 13px;
}

/* Container de Rolagem do Checkout */
.checkout-scroll-area {
  overflow-y: auto;
  padding: 20px 24px;
  flex: 1;
}

/* Barra de Progresso / Stepper */
.checkout-stepper-wrap {
  margin-bottom: 20px;
}

.desktop-stepper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.step-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  position: relative;
  z-index: 2;
  cursor: pointer;
}

.step-circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #f1f5f9;
  color: #64748b;
  border: 2px solid #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 800;
  transition: all 0.25s ease;
}

.step-node span {
  font-size: 0.7rem;
  font-weight: 700;
  color: #64748b;
  transition: all 0.25s ease;
}

.step-node.active .step-circle {
  background: #0284c7;
  color: #ffffff;
  border-color: #0284c7;
  box-shadow: 0 0 0 4px rgba(2, 132, 199, 0.2);
}

.step-node.active span {
  color: #0284c7;
}

.step-node.completed .step-circle {
  background: #10b981;
  color: #ffffff;
  border-color: #10b981;
}

.step-node.completed span {
  color: #059669;
}

.step-connector {
  flex: 1;
  height: 2px;
  background: #e2e8f0;
  margin: 0 6px -16px;
  position: relative;
  top: -8px;
  z-index: 1;
  transition: background 0.25s ease;
}

.step-connector.completed {
  background: #10b981;
}

/* Stepper Mobile */
.mobile-stepper {
  display: none;
  background: #f8fafc;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  margin-bottom: 16px;
}

.mobile-step-text {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 6px;
}

.mobile-step-bar-bg {
  width: 100%;
  height: 6px;
  background: #e2e8f0;
  border-radius: 99px;
  overflow: hidden;
}

.mobile-step-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #0284c7, #10b981);
  border-radius: 99px;
  transition: width 0.3s ease;
}

/* Grid de Layout (2 Colunas Desktop) */
.checkout-grid-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 24px;
  align-items: start;
}

/* Coluna Principal (Wizard) */
.checkout-main-col {
  min-width: 0;
}

.step-view {
  display: none !important;
  animation: viewFade 0.25s ease forwards;
}

.step-view.active {
  display: block !important;
}

@keyframes viewFade {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.step-heading {
  margin-bottom: 16px;
}

.step-heading h2 {
  font-size: 1.2rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 4px;
}

.step-heading p {
  font-size: 0.82rem;
  color: #64748b;
  margin: 0;
}

/* Cards de Escolha (Garantia & Instalação) */
.option-cards-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.selection-card {
  background: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: var(--radius-md);
  padding: 16px;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.selection-card:hover {
  border-color: #94a3b8;
  background: #f8fafc;
}

.selection-card.selected {
  border-color: #0284c7;
  background: #f0f9ff;
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.12);
}

.selection-card.selected.recommended-card {
  border-color: #10b981;
  background: #f0fdf4;
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.15);
}

.card-radio-circle {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #cbd5e1;
  background: #ffffff;
  margin-top: 2px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.selection-card.selected .card-radio-circle {
  border-color: #0284c7;
  background: #0284c7;
}

.selection-card.selected.recommended-card .card-radio-circle {
  border-color: #10b981;
  background: #10b981;
}

.card-radio-circle::after {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ffffff;
  display: none;
}

.selection-card.selected .card-radio-circle::after {
  display: block;
}

.card-content-wrap {
  flex: 1;
}

.card-top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.card-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: #0f172a;
}

.card-price-tag {
  font-size: 0.95rem;
  font-weight: 800;
  color: #0f172a;
}

.card-price-tag.add-price {
  color: #16a34a;
}

.card-desc {
  font-size: 0.78rem;
  color: #64748b;
  margin-top: 4px;
  line-height: 1.35;
}

.card-benefits-list {
  list-style: none;
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.card-benefits-list li {
  font-size: 0.75rem;
  font-weight: 600;
  color: #059669;
  display: flex;
  align-items: center;
  gap: 5px;
}

.badge-recommended {
  position: absolute;
  top: -10px;
  right: 14px;
  background: #fef08a;
  color: #854d0e;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 99px;
  border: 1px solid #fde047;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Revisão do Pedido (Passo 4) */
.review-items-table {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.review-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

.review-row span {
  color: #475569;
}

.review-row strong {
  color: #0f172a;
}

.review-highlight-box {
  background: linear-gradient(135deg, #ecfdf5 0%, #f0fdf4 100%);
  border: 2px solid #86efac;
  border-radius: 12px;
  padding: 18px;
  margin-bottom: 20px;
  text-align: center;
}

.pix-save-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #15803d;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 99px;
  margin-bottom: 8px;
}

.pix-final-price-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  margin: 6px 0;
}

.pix-old-price {
  font-size: 1rem;
  color: #94a3b8;
  text-decoration: line-through;
}

.pix-new-price {
  font-size: 1.8rem;
  font-weight: 900;
  color: #15803d;
}

.pix-economy-text {
  font-size: 0.85rem;
  font-weight: 700;
  color: #166534;
}

/* Tela de Pagamento PIX (Passo 5) */
.pix-ready-box {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 20px;
  text-align: center;
}

.pix-values-summary {
  background: #f8fafc;
  border-radius: 10px;
  padding: 12px 16px;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.85rem;
}

.pix-values-summary .val-row {
  display: flex;
  justify-content: space-between;
}

.pix-values-summary .val-total {
  border-top: 1px dashed #cbd5e1;
  padding-top: 6px;
  font-size: 1.1rem;
  font-weight: 900;
  color: #15803d;
}

.pix-qr-container-card {
  display: inline-flex;
  padding: 14px;
  background: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: 16px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  margin-bottom: 14px;
}

.pix-qr-container-card canvas, .pix-qr-container-card img {
  display: block;
  border-radius: 8px;
}

.pix-copy-button-large {
  background: #10b981;
  color: #ffffff;
  border: none;
  border-radius: 12px;
  padding: 14px 20px;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.35);
  transition: all 0.2s ease;
  margin: 10px 0 16px;
}

.pix-copy-button-large:hover {
  background: #059669;
  transform: translateY(-2px);
}

.pix-copy-button-large.copied {
  background: #0284c7;
}

.pix-instructions-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 14px 16px;
  text-align: left;
  margin-top: 14px;
}

.pix-instructions-card h4 {
  font-size: 0.8rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 8px;
}

.pix-instructions-card ol {
  padding-left: 18px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pix-instructions-card li {
  font-size: 0.76rem;
  color: #475569;
}

.pix-status-indicator {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f0f9ff;
  border: 1px solid #bae6fd;
  color: #0369a1;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 99px;
  margin-top: 14px;
}

.pix-timer-alert {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #b91c1c;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 99px;
}

.pix-copy-box {
  width: 100%;
}

.pix-copy-box input {
  width: 100%;
  background: #f1f5f9;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  padding: 10px 14px;
  color: #0f172a;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #0284c7;
  animation: pulseDotAnim 1.5s infinite;
}

@keyframes pulseDotAnim {
  0% { transform: scale(0.9); opacity: 0.7; }
  50% { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.7; }
}

.pix-spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #ffffff;
  animation: spin 0.8s linear infinite;
  vertical-align: middle;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.btn-edit-data {
  background: transparent;
  border: none;
  color: #64748b;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  padding: 6px 12px;
  text-decoration: underline;
  transition: color 0.2s;
}

.btn-edit-data:hover {
  color: #0284c7;
}

/* Botões de Ação do Wizard */
.wizard-actions-row {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.btn-wizard-next {
  flex: 1;
  background: #0284c7;
  color: #ffffff;
  border: none;
  border-radius: 12px;
  padding: 15px 24px;
  font-size: 0.95rem;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.35);
  transition: all 0.2s ease;
}

.btn-wizard-next:hover {
  background: #0369a1;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(2, 132, 199, 0.45);
}

.btn-wizard-pix-submit {
  flex: 1;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #ffffff;
  border: none;
  border-radius: 12px;
  padding: 16px 24px;
  font-size: 1.05rem;
  font-weight: 900;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.4);
  transition: all 0.2s ease;
}

.btn-wizard-pix-submit:hover:not(:disabled) {
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(16, 185, 129, 0.5);
}

.btn-wizard-pix-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.btn-wizard-back {
  background: #f1f5f9;
  color: #475569;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  padding: 15px 20px;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.2s ease;
}

.btn-wizard-back:hover {
  background: #e2e8f0;
  color: #0f172a;
}

/* Sidebar Resumo Lateral (Desktop) */
.checkout-sidebar-col {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 18px;
  position: sticky;
  top: 0;
}

.sidebar-title {
  font-size: 0.88rem;
  font-weight: 800;
  color: #0f172a;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.sidebar-summary-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.82rem;
  margin-bottom: 14px;
}

.sidebar-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sidebar-row span {
  color: #64748b;
}

.sidebar-row strong {
  color: #0f172a;
}

.sidebar-divider {
  height: 1px;
  background: #e2e8f0;
  margin: 12px 0;
}

.sidebar-total-normal {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: #64748b;
}

.sidebar-pix-box {
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  border-radius: 10px;
  padding: 12px;
  margin-top: 10px;
  text-align: center;
}

.sidebar-pix-tag {
  display: inline-block;
  background: #16a34a;
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 99px;
  margin-bottom: 4px;
}

.sidebar-pix-price {
  font-size: 1.4rem;
  font-weight: 900;
  color: #15803d;
  line-height: 1.1;
}

.sidebar-pix-economy {
  font-size: 0.75rem;
  font-weight: 700;
  color: #166534;
  margin-top: 4px;
}

.sidebar-trust-badges {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  color: #64748b;
  font-weight: 600;
}

.trust-badge-item i {
  width: 14px;
  height: 14px;
  color: #10b981;
}

/* Mobile Accordion para o Resumo */
.mobile-summary-toggle {
  display: none;
  width: 100%;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #0f172a;
  cursor: pointer;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

/* Responsividade Mobile */
@media (max-width: 768px) {
  .checkout-dialog {
    max-width: 100%;
    height: 100%;
    max-height: 100vh;
    border-radius: 0;
  }

  .desktop-stepper {
    display: none;
  }

  .mobile-stepper {
    display: block;
  }

  .checkout-grid-layout {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .mobile-summary-toggle {
    display: flex;
  }

  .checkout-sidebar-col {
    display: none;
  }

  .checkout-sidebar-col.mobile-open {
    display: block;
    margin-bottom: 16px;
  }

  .checkout-scroll-area {
    padding: 14px 16px;
  }

  .pix-new-price {
    font-size: 1.5rem;
  }
}

.checkout-form-grid {
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
  width: 100% !important;
}

.form-group {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  width: 100% !important;
  margin-bottom: 2px !important;
}

.form-group label {
  display: block !important;
  font-size: 0.8rem !important;
  font-weight: 700 !important;
  color: #1e293b !important;
  margin-bottom: 6px !important;
  text-align: left !important;
  width: 100% !important;
}

.form-group input, .form-group select, .form-group textarea {
  display: block !important;
  width: 100% !important;
  box-sizing: border-box !important;
  height: 44px !important;
  background: #f8fafc !important;
  border: 1.5px solid #cbd5e1 !important;
  border-radius: 10px !important;
  padding: 10px 14px !important;
  font-size: 0.9rem !important;
  color: #0f172a !important;
  outline: none !important;
  transition: all 0.2s ease !important;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: #0284c7 !important;
  background: #ffffff !important;
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.15) !important;
}

.form-row-2 {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 12px !important;
  width: 100% !important;
}

@media (max-width: 520px) {
  .form-row-2 {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }
}

.btn-finalize-card {
  background: var(--primary-gradient);
  color: #ffffff;
  border: none;
  border-radius: var(--radius-md);
  padding: 12px;
  font-weight: 800;
  font-size: 0.95rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 6px;
  box-shadow: var(--shadow-glow);
}

/* --- Sticky Bottom Bar --- */
.sticky-buy-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  border-top: 1px solid var(--border-light);
  padding: 10px 0;
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.08);
  z-index: 99;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.sticky-buy-bar.show {
  transform: translateY(0);
}

.sticky-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sticky-product-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sticky-thumb {
  width: 46px;
  height: 46px;
  object-fit: contain;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
  background: #ffffff;
}

.sticky-title {
  display: block;
  font-size: 0.88rem;
  color: #0f172a;
}

.sticky-price-tag {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.sticky-price-tag strong {
  color: var(--primary-dark);
}

.btn-sticky-buy {
  background: var(--primary-gradient);
  color: #ffffff;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  font-weight: 800;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: var(--shadow-glow);
}

.btn-sticky-buy:hover {
  transform: translateY(-2px);
}

/* --- Floating WhatsApp --- */
.floating-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
  transition: var(--transition);
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

.floating-whatsapp i {
  width: 32px;
  height: 32px;
}

.whatsapp-badge-pulse {
  position: absolute;
  top: -2px;
  right: -2px;
  background: #ef4444;
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0% { transform: scale(1); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  background: #0f172a;
  color: #ffffff;
  padding: 6px 12px;
  border-radius: var(--radius-md);
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.floating-whatsapp:hover .whatsapp-tooltip {
  opacity: 1;
}

/* --- Live Sale Toast --- */
.sale-toast {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 95;
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-xl);
  transform: translateY(150%);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  max-width: 340px;
}

.sale-toast.show {
  transform: translateY(0);
}

.sale-toast img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
}

.toast-content {
  display: flex;
  flex-direction: column;
  font-size: 0.75rem;
  line-height: 1.35;
}

.toast-content strong {
  color: #0f172a;
}

.toast-time {
  font-size: 0.68rem;
  color: var(--text-subtle);
  margin-top: 2px;
}

.toast-close {
  background: transparent;
  border: none;
  color: var(--text-subtle);
  font-size: 1.2rem;
  cursor: pointer;
  align-self: flex-start;
}

/* ==========================================================================
   Comprehensive Responsive & Mobile-First Excellence (Smartphones & Tablets)
   ========================================================================== */

/* Medium Devices (Tablets, Laptops < 1024px) */
@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .product-gallery {
    position: static;
  }

  .tab-grid, .video-showcase-card, .credibility-inner, .guarantee-box-card {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .cert-strip-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Small Devices (Smartphones < 768px) - Full Mobile Overhaul */
@media (max-width: 768px) {
  .hidden-mobile {
    display: none !important;
  }

  body {
    font-size: 15px;
  }

  .container {
    padding-left: 14px;
    padding-right: 14px;
  }

  /* Header Mobile */
  .top-announcement {
    font-size: 0.75rem;
    padding: 6px 10px;
    line-height: 1.3;
  }

  .header-inner {
    padding: 10px 14px;
    gap: 8px;
    flex-wrap: wrap;
  }

  .brand-logo {
    order: 1;
    font-size: 1.15rem;
  }

  .header-actions {
    order: 2;
    gap: 8px;
  }

  .header-search {
    order: 3;
    max-width: 100%;
    width: 100%;
    margin-top: 2px;
  }

  .sub-nav-inner {
    overflow-x: auto;
    padding: 8px 14px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .sub-nav-inner::-webkit-scrollbar {
    display: none;
  }

  .nav-links {
    white-space: nowrap;
    gap: 14px;
    font-size: 0.82rem;
  }

  /* Gallery & Autoplay Video on Mobile */
  .product-hero-section {
    padding: 6px 0 24px;
  }

  .product-gallery {
    padding: 12px;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  }

  .gallery-badges {
    gap: 6px;
    margin-bottom: 10px;
  }

  .badge {
    font-size: 0.68rem;
    padding: 4px 8px;
  }

  .main-image-container {
    border-radius: 12px;
    aspect-ratio: 1 / 1;
  }

  .video-live-badge {
    top: 10px;
    left: 10px;
    font-size: 0.68rem;
    padding: 4px 10px;
  }

  .video-sound-toggle-btn {
    bottom: 10px;
    left: 10px;
    padding: 6px 12px;
    font-size: 0.75rem;
  }

  /* Swipeable Thumbnails Row on Mobile */
  .gallery-thumbnails {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 8px;
    margin-top: 10px;
    padding-bottom: 4px;
    scrollbar-width: none;
  }
  .gallery-thumbnails::-webkit-scrollbar {
    display: none;
  }

  .thumb-btn {
    flex: 0 0 68px;
    width: 68px;
    height: 68px;
    scroll-snap-align: start;
    border-radius: 10px;
  }

  .gallery-footer {
    flex-direction: column;
    gap: 8px;
    margin-top: 12px;
  }

  .share-btn, .wishlist-btn {
    width: 100%;
    justify-content: center;
    padding: 8px 12px;
    font-size: 0.8rem;
  }

  /* Product Buy Box & Meta on Mobile */
  .product-info-col {
    padding-top: 8px;
  }

  .product-title {
    font-size: 1.28rem;
    line-height: 1.35;
  }

  .product-subtitle-tag {
    font-size: 0.82rem;
    margin-top: 4px;
  }

  .product-meta-row {
    flex-wrap: wrap;
    gap: 8px;
    font-size: 0.78rem;
    margin: 10px 0;
  }

  .urgency-banner {
    padding: 10px 12px;
    font-size: 0.8rem;
    gap: 8px;
    border-radius: 10px;
  }

  .direct-guarantee-badge-box {
    padding: 10px 12px;
    gap: 10px;
    font-size: 0.8rem;
  }

  /* Price Block on Mobile */
  .pricing-card {
    padding: 16px;
    border-radius: 14px;
  }

  .price-main {
    margin: 6px 0;
  }

  .price-value {
    font-size: 2.3rem;
  }

  .price-cents {
    font-size: 1.1rem;
  }

  .pix-highlight-box {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 12px;
  }

  .pix-price {
    font-size: 1.35rem;
  }

  /* Bundle Cards on Mobile */
  .bundles-section {
    margin-top: 18px;
  }

  .bundle-card {
    padding: 14px 12px;
    border-radius: 12px;
    gap: 10px;
  }

  .bundle-title {
    font-size: 0.9rem;
  }

  .bundle-desc {
    font-size: 0.78rem;
  }

  .bundle-price {
    font-size: 0.95rem;
  }

  .bundle-pix {
    font-size: 0.92rem;
    font-weight: 800;
  }

  .popular-ribbon {
    font-size: 0.65rem;
    padding: 3px 8px;
    top: -9px;
    right: 8px;
  }

  /* Action Buttons & Quantity */
  .purchase-action-group {
    flex-direction: column;
    gap: 10px;
    margin-top: 16px;
  }

  .quantity-controller {
    width: 100%;
    justify-content: space-between;
    height: 46px;
  }

  .qty-btn {
    width: 46px;
    height: 46px;
    font-size: 1.2rem;
  }

  .btn-buy-primary {
    width: 100%;
    padding: 14px 18px;
    border-radius: 12px;
  }

  .btn-buy-text {
    font-size: 1.1rem;
  }

  .btn-buy-sub {
    font-size: 0.75rem;
  }

  .conversion-safe-strip {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 14px;
  }

  .safe-badge-item {
    font-size: 0.72rem;
    padding: 6px;
  }

  /* Other Landing Page Sections */
  .pillars-grid, .appliances-grid, .reviews-grid, .calc-results-grid, .cert-strip-inner, .comparison-cards-grid, .regulation-guide-boxes, .fast-highlights-box {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .section-header h2 {
    font-size: 1.45rem;
  }

  .section-header p {
    font-size: 0.88rem;
  }

  .calc-wrapper {
    padding: 18px 14px;
    border-radius: 14px;
  }

  .guarantee-box-card {
    padding: 18px 14px;
    border-radius: 14px;
  }

  .final-cta-inner {
    padding: 24px 16px;
  }

  .final-cta-inner h2 {
    font-size: 1.5rem;
  }

  /* Sticky Bottom Bar on Mobile */
  .sticky-bottom-bar {
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom, 8px)) 14px;
  }

  .sticky-title {
    max-width: 140px;
    font-size: 0.78rem;
  }

  .sticky-price {
    font-size: 0.88rem;
  }

  .btn-sticky-buy {
    padding: 10px 18px;
    font-size: 0.88rem;
    border-radius: 10px;
  }

  /* Floating WhatsApp on Mobile */
  .floating-whatsapp {
    bottom: 76px;
    right: 14px;
    width: 50px;
    height: 50px;
  }

  /* CHECKOUT MODAL FULL MOBILE OPTIMIZATION */
  .checkout-dialog {
    width: 100% !important;
    max-width: 100% !important;
    height: 100vh !important;
    max-height: 100vh !important;
    border-radius: 0 !important;
    margin: 0 !important;
  }

  .checkout-header {
    padding: 14px 16px !important;
  }

  .checkout-dialog-content {
    flex-direction: column !important;
    height: calc(100vh - 60px) !important;
    overflow-y: auto !important;
  }

  .checkout-main-col {
    padding: 16px 14px 40px 14px !important;
  }

  .checkout-sidebar-col {
    border-left: none !important;
    border-top: 1px solid var(--border-light) !important;
    width: 100% !important;
    padding: 16px 14px !important;
  }

  .form-group input {
    font-size: 16px !important; /* Prevents auto-zoom on iOS */
    height: 48px !important;
  }

  .form-row-2 {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .wizard-actions-row {
    margin-top: 24px !important;
    flex-direction: column-reverse !important;
    gap: 10px !important;
  }

  .btn-wizard-next, .btn-wizard-pix-submit {
    width: 100% !important;
    height: 52px !important;
    font-size: 1rem !important;
  }

  .btn-wizard-back {
    width: 100% !important;
    justify-content: center !important;
    height: 44px !important;
  }

  .selection-card {
    padding: 14px 12px !important;
  }

  .pix-qr-container-card {
    padding: 14px !important;
  }

  .pix-copy-action-btn {
    height: 50px !important;
    font-size: 0.95rem !important;
  }
}

/* Extra Small Phones (< 380px) */
@media (max-width: 380px) {
  .price-value {
    font-size: 2rem;
  }

  .sticky-title {
    max-width: 110px;
    font-size: 0.72rem;
  }

  .btn-sticky-buy {
    padding: 8px 12px;
    font-size: 0.8rem;
  }

  .btn-buy-text {
    font-size: 0.98rem;
  }
}
