/* ==========================================================================
   Design System & Theme Tokens (PPA Premium E-commerce)
   ========================================================================== */

:root {
  /* Font Families */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  
  /* Default Theme: Dark (Worth 100k BRL Premium Style) */
  --bg-body: #0b0f19;
  --bg-panel: rgba(17, 24, 39, 0.7);
  --bg-input: rgba(31, 41, 55, 0.6);
  --bg-card: rgba(17, 24, 39, 0.5);
  --border-panel: rgba(255, 255, 255, 0.08);
  --border-input: rgba(255, 255, 255, 0.1);
  --text-main: #f3f4f6;
  --text-muted: #9ca3af;
  --text-inverse: #111827;
  
  /* Brand Accents */
  --primary-accent: #3b82f6; /* Modern High-Tech Blue */
  --primary-glow: rgba(59, 130, 246, 0.15);
  --primary-hover: #2563eb;
  
  --whatsapp-green: #10b981; /* High-conversion Green */
  --whatsapp-glow: rgba(16, 185, 129, 0.2);
  --whatsapp-hover: #059669;
  
  --danger-color: #ef4444;
  --danger-hover: #dc2626;
  
  /* Shadows & Glassmorphism */
  --card-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
  --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
  --btn-text: #ffffff;
  
  /* Layout constraints */
  --header-height: 80px;
  --max-width: 1200px;
  
  /* Skeleton Loading Gradient */
  --skeleton-bg: linear-gradient(90deg, #1f2937 25%, #374151 50%, #1f2937 75%);
}

/* Light Theme Overrides */
body.light-theme {
  --bg-body: #f3f4f6;
  --bg-panel: rgba(255, 255, 255, 0.75);
  --bg-input: rgba(255, 255, 255, 0.9);
  --bg-card: rgba(255, 255, 255, 0.6);
  --border-panel: rgba(0, 0, 0, 0.08);
  --border-input: rgba(0, 0, 0, 0.1);
  --text-main: #111827;
  --text-muted: #4b5563;
  --text-inverse: #f3f4f6;
  
  --primary-accent: #2563eb;
  --primary-glow: rgba(37, 99, 235, 0.1);
  --primary-hover: #1d4ed8;
  
  --whatsapp-green: #059669;
  --whatsapp-glow: rgba(5, 150, 105, 0.15);
  --whatsapp-hover: #047857;
  
  --card-shadow: 0 10px 30px -10px rgba(31, 38, 135, 0.06);
  --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
  --skeleton-bg: linear-gradient(90deg, #e5e7eb 25%, #f3f4f6 50%, #e5e7eb 75%);
}

/* ==========================================================================
   Base CSS & Layout Reset
   ========================================================================== */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-body);
  color: var(--text-main);
  line-height: 1.6;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  transition: background-color 0.4s ease, color 0.4s ease;
}

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-body);
}
::-webkit-scrollbar-thumb {
  background: var(--border-panel);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--text-muted);
}

/* Mesh Gradient Glowing Backgrounds */
.mesh-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  pointer-events: none;
  opacity: 0.7;
  filter: blur(100px);
}

body.dark-theme .mesh-bg {
  background: radial-gradient(circle at 10% 20%, rgba(59, 130, 246, 0.12) 0%, transparent 40%),
              radial-gradient(circle at 90% 80%, rgba(16, 185, 129, 0.08) 0%, transparent 45%);
}

body.light-theme .mesh-bg {
  background: radial-gradient(circle at 15% 15%, rgba(59, 130, 246, 0.06) 0%, transparent 35%),
              radial-gradient(circle at 85% 85%, rgba(16, 185, 129, 0.05) 0%, transparent 40%);
}

/* Glassmorphism Panel Base Utility */
.glass-panel {
  background: var(--bg-panel);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-panel);
  box-shadow: var(--glass-shadow);
}

/* ==========================================================================
   Header & Floating Navigation
   ========================================================================== */

.glass-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  z-index: 100;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border-panel);
  background: var(--bg-panel);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
  gap: 20px;
}

.logo {
  font-family: var(--font-heading);
  text-decoration: none;
  font-weight: 800;
  font-size: 24px;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  transition: transform 0.2s ease;
}

.logo:hover {
  transform: scale(1.02);
}

.logo-accent {
  color: var(--primary-accent);
  padding: 2px 6px;
  border-radius: 4px;
  background: var(--primary-glow);
  margin-right: 4px;
}

.logo-text {
  color: var(--text-main);
}

/* Floating Search Bar */
.search-wrapper {
  flex: 1;
  max-width: 500px;
  display: flex;
  flex-direction: column;
}

.search-bar {
  display: flex;
  align-items: center;
  background: var(--bg-input);
  border: 1px solid var(--border-input);
  border-radius: 30px;
  padding: 8px 16px;
  width: 100%;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.search-bar:focus-within {
  border-color: var(--primary-accent);
  box-shadow: 0 0 15px var(--primary-glow);
  background: var(--bg-panel);
}

.icon-search {
  width: 18px;
  height: 18px;
  color: var(--text-muted);
  margin-right: 10px;
  flex-shrink: 0;
}

.search-bar input {
  background: transparent;
  border: none;
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  width: 100%;
  padding-right: 20px;
}

.search-bar input::placeholder {
  color: var(--text-muted);
  opacity: 0.7;
}

.btn-clear-search {
  position: absolute;
  right: 15px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 18px;
  cursor: pointer;
  padding: 2px;
}

.btn-clear-search:hover {
  color: var(--text-main);
}

.search-shortcuts {
  display: flex;
  gap: 8px;
  margin-top: 6px;
  padding-left: 10px;
  overflow-x: auto;
  scrollbar-width: none;
}
.search-shortcuts::-webkit-scrollbar {
  display: none;
}

.shortcut-tag {
  font-size: 11px;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-panel);
  border-radius: 12px;
  padding: 2px 8px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.shortcut-tag:hover {
  border-color: var(--primary-accent);
  color: var(--text-main);
  background: var(--primary-glow);
}

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

.btn-action {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-panel);
  color: var(--text-main);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-action:hover {
  background: var(--primary-glow);
  border-color: var(--primary-accent);
  color: var(--primary-accent);
  transform: translateY(-2px);
}

.btn-action svg {
  width: 20px;
  height: 20px;
  stroke-width: 2px;
}

.cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--primary-accent);
  color: var(--btn-text);
  font-size: 10px;
  font-weight: 700;
  font-family: var(--font-heading);
  min-width: 18px;
  height: 18px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  border: 2px solid var(--bg-body);
}

/* Cart Badge Bounce Animation */
@keyframes badgeBounce {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.3); }
}

.badge-animate {
  animation: badgeBounce 0.3s ease;
}

/* ==========================================================================
   Hero Landing Section
   ========================================================================== */

.hero-section {
  padding-top: calc(var(--header-height) + 50px);
  padding-bottom: 50px;
  text-align: center;
  position: relative;
}

.hero-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary-accent);
  background: var(--primary-glow);
  border: 1px solid rgba(59, 130, 246, 0.3);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.hero-section h1 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--text-main) 60%, rgba(255, 255, 255, 0.4));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-section p {
  font-size: clamp(15px, 2vw, 17px);
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.h-feature {
  background: var(--bg-card);
  border: 1px solid var(--border-panel);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  align-items: center;
  text-align: left;
  gap: 16px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.h-feature:hover {
  transform: translateY(-4px);
  border-color: var(--primary-accent);
}

.hf-icon {
  font-size: 28px;
  flex-shrink: 0;
}

.h-feature h3 {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 2px;
}

.h-feature p {
  font-size: 12px;
  color: var(--text-muted);
  margin: 0;
}

/* ==========================================================================
   Catalog, Filter Pills & Sort Row
   ========================================================================== */

.catalog-section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 40px 20px 80px 20px;
}

.catalog-header {
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.category-filters-container {
  overflow-x: auto;
  scrollbar-width: none; /* Hide standard Firefox scrollbars */
  padding-bottom: 5px;
}

.category-filters-container::-webkit-scrollbar {
  display: none; /* Hide Chrome/Safari scrollbars */
}

.category-filters {
  display: flex;
  gap: 10px;
  white-space: nowrap;
}

.filter-pill {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  background: var(--bg-card);
  color: var(--text-muted);
  border: 1px solid var(--border-panel);
  border-radius: 20px;
  padding: 8px 18px;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.filter-pill:hover {
  color: var(--text-main);
  border-color: var(--text-muted);
}

.filter-pill.active {
  background: var(--primary-accent);
  color: var(--btn-text);
  border-color: var(--primary-accent);
  box-shadow: 0 4px 15px var(--primary-glow);
}

.catalog-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  border-bottom: 1px solid var(--border-panel);
  padding-bottom: 15px;
}

.results-count {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
}

.sort-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sort-wrapper label {
  font-size: 13px;
  color: var(--text-muted);
}

.glass-select {
  background: var(--bg-input);
  border: 1px solid var(--border-input);
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 13px;
  border-radius: 20px;
  padding: 6px 14px;
  outline: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.glass-select:focus {
  border-color: var(--primary-accent);
}

.glass-select option {
  background-color: var(--bg-body);
  color: var(--text-main);
}

/* ==========================================================================
   Product Grid & Premium Cards
   ========================================================================== */

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 25px;
  margin-bottom: 40px;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border-panel);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--card-shadow);
}

/* Card hover effect (3D Translation & Glow) */
.product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(59, 130, 246, 0.3);
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.6), 
              0 0 25px var(--primary-glow);
}

.card-img-wrapper {
  aspect-ratio: 1;
  background: rgba(255, 255, 255, 0.02);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  padding: 20px;
  border-bottom: 1px solid var(--border-panel);
  cursor: pointer;
}

.product-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover img {
  transform: scale(1.08);
}

/* Card tags overlays */
.card-badge-overlay {
  position: absolute;
  top: 15px;
  left: 15px;
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: rgba(17, 24, 39, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text-main);
  padding: 3px 8px;
  border-radius: 6px;
  pointer-events: none;
  backdrop-filter: blur(4px);
}

.product-card:hover .card-badge-overlay {
  border-color: var(--primary-accent);
}

.card-btn-detail {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(17, 24, 39, 0.85);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--border-panel);
  color: var(--text-main);
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 8px;
  text-align: center;
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.product-card:hover .card-btn-detail {
  transform: translateY(0);
}

/* Card Info Body */
.card-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-code {
  font-family: var(--font-heading);
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}

.card-title {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 12px;
  color: var(--text-main);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 40px;
  cursor: pointer;
  transition: color 0.2s ease;
}

.card-title:hover {
  color: var(--primary-accent);
}

.card-price-box {
  margin-top: auto;
  margin-bottom: 15px;
}

.card-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.card-price {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  color: var(--text-main);
}

.card-discount {
  font-size: 10px;
  font-weight: 700;
  color: var(--whatsapp-green);
  background: var(--whatsapp-glow);
  padding: 1px 5px;
  border-radius: 4px;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.card-cash {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 1px;
}

.card-cash strong {
  color: var(--text-main);
}

.card-installments {
  font-size: 11px;
  color: var(--text-muted);
}

/* Buy buttons */
.btn-card-buy {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: var(--primary-accent);
  color: var(--btn-text);
  border: none;
  border-radius: 12px;
  padding: 10px;
  cursor: pointer;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-card-buy:hover {
  background: var(--primary-hover);
  box-shadow: 0 4px 15px var(--primary-glow);
  transform: scale(1.02);
}

.btn-card-buy svg {
  width: 16px;
  height: 16px;
}

.btn-card-buy.added {
  background: var(--whatsapp-green);
  cursor: default;
}
.btn-card-buy.added:hover {
  background: var(--whatsapp-green);
  box-shadow: none;
  transform: none;
}

/* Skeleton Loading Card Animation */
.skeleton-card {
  height: 380px;
  background: var(--bg-card);
  border: 1px solid var(--border-panel);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.skeleton-card::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: var(--skeleton-bg);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
}

@keyframes loading {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Load More Button Wrapper */
.pagination-container {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.btn-load-more {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  padding: 12px 32px;
  border-radius: 30px;
  border: 1px solid var(--border-panel);
  background: var(--bg-panel);
  color: var(--text-main);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-load-more:hover:not(:disabled) {
  border-color: var(--primary-accent);
  color: var(--primary-accent);
  background: var(--primary-glow);
  transform: translateY(-2px);
}

.btn-load-more:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ==========================================================================
   Shopping Cart Drawer (Slide-Out Side Panel)
   ========================================================================== */

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 200;
  pointer-events: none;
  visibility: hidden;
  transition: visibility 0.4s;
}

.cart-drawer.active {
  pointer-events: auto;
  visibility: visible;
}

.cart-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.cart-drawer.active .cart-backdrop {
  opacity: 1;
}

.cart-content {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 450px;
  height: 100%;
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--border-panel);
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cart-drawer.active .cart-content {
  transform: translateX(0);
}

.cart-header {
  padding: 24px;
  border-bottom: 1px solid var(--border-panel);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-title {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cart-title h2 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-main);
}

.cart-title svg {
  color: var(--primary-accent);
}

.btn-close {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 28px;
  cursor: pointer;
  transition: color 0.2s ease;
  line-height: 1;
}

.btn-close:hover {
  color: var(--text-main);
}

.cart-items-list {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Empty Cart State */
.cart-empty-state {
  text-align: center;
  margin-top: 60px;
  padding: 0 20px;
}

.empty-icon {
  font-size: 48px;
  margin-bottom: 15px;
  opacity: 0.6;
}

.cart-empty-state p {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 6px;
}

.cart-empty-state span {
  font-size: 12px;
  color: var(--text-muted);
  display: block;
}

/* Cart Item Cards */
.cart-item {
  display: flex;
  gap: 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-panel);
  border-radius: 12px;
  padding: 12px;
  position: relative;
  animation: slideInItem 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideInItem {
  from { transform: translateX(30px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

.cart-item-img {
  width: 70px;
  height: 70px;
  background: #ffffff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  flex-shrink: 0;
}

.cart-item-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

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

.cart-item-title {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: var(--text-main);
}

.cart-item-price {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  margin-top: auto;
}

.cart-item-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
}

.qty-counter {
  display: flex;
  align-items: center;
  background: var(--bg-input);
  border: 1px solid var(--border-input);
  border-radius: 15px;
  overflow: hidden;
}

.btn-qty {
  background: none;
  border: none;
  color: var(--text-main);
  width: 28px;
  height: 28px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.btn-qty:hover {
  background: rgba(255, 255, 255, 0.05);
}

.qty-val {
  width: 30px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
}

.btn-remove-item {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  transition: color 0.2s;
}

.btn-remove-item:hover {
  color: var(--danger-color);
}

.btn-remove-item svg {
  width: 16px;
  height: 16px;
}

/* Cart Summary & Checkout CTAs */
.cart-summary {
  padding: 24px;
  border-top: 1px solid var(--border-panel);
  background: rgba(17, 24, 39, 0.4);
}

.summary-line {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 14px;
  color: var(--text-muted);
}

.summary-line.highlight {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  color: var(--whatsapp-green);
  margin-top: 4px;
}

.summary-line.installments {
  font-size: 11px;
  margin-bottom: 16px;
  text-align: right;
  display: block;
}

/* Shipping Calculation block */
.shipping-estimator {
  border-top: 1px solid var(--border-panel);
  padding-top: 15px;
  margin-bottom: 20px;
}

.shipping-estimator label {
  font-size: 12px;
  color: var(--text-muted);
  display: block;
  margin-bottom: 6px;
}

.cep-wrapper {
  display: flex;
  gap: 8px;
}

.cep-wrapper input {
  flex: 1;
  background: var(--bg-input);
  border: 1px solid var(--border-input);
  border-radius: 8px;
  color: var(--text-main);
  padding: 8px 12px;
  font-family: var(--font-body);
  font-size: 13px;
  outline: none;
}

.cep-wrapper input:focus {
  border-color: var(--primary-accent);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-panel);
  color: var(--text-main);
  border-radius: 8px;
  padding: 8px 16px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--text-muted);
}

.cep-result-msg {
  margin-top: 8px;
  font-size: 11px;
  font-weight: 500;
  color: var(--whatsapp-green);
}

.cart-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn-cta {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  border-radius: 12px;
  padding: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-whatsapp {
  background: var(--whatsapp-green);
  color: var(--btn-text);
  box-shadow: 0 4px 15px var(--whatsapp-glow);
}

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

.btn-primary-accent {
  background: var(--primary-accent);
  color: var(--btn-text);
  box-shadow: 0 4px 15px var(--primary-glow);
}

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

/* ==========================================================================
   Modal Dialog Layouts (Product Details & Checkout)
   ========================================================================== */

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 250;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.modal-content {
  width: 100%;
  max-width: 750px;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 24px;
  position: relative;
  padding: 40px;
  transform: scale(0.95);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active .modal-content {
  transform: scale(1);
}

.btn-close-modal {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-panel);
  color: var(--text-muted);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s;
}

.btn-close-modal:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-main);
}

/* Product Detail Grid Layout */
.modal-body-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 30px;
}

@media (max-width: 650px) {
  .modal-body-layout {
    grid-template-columns: 1fr;
  }
}

.modal-img-col {
  display: flex;
  flex-direction: column;
  background: transparent;
  padding: 0;
  gap: 15px;
  width: 100%;
  max-width: 320px;
  min-width: 0;
}

.modal-img-col img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.modal-info-col {
  display: flex;
  flex-direction: column;
}

.modal-code {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.modal-info-col h2 {
  font-family: var(--font-heading);
  font-size: clamp(20px, 3vw, 24px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 15px;
}

.modal-price-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-panel);
  border-radius: 16px;
  padding: 16px;
  margin-bottom: 20px;
}

.modal-price {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1;
}

.modal-cash-desc {
  font-size: 14px;
  color: var(--whatsapp-green);
  font-weight: 600;
  margin-top: 4px;
}

.modal-installments {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 2px;
}

.modal-features-list {
  margin-bottom: 25px;
}

.modal-features-list h3 {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.modal-features-list ul {
  list-style: none;
}

.modal-features-list li {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.modal-features-list li::before {
  content: "✦";
  color: var(--primary-accent);
}

.modal-actions {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 12px;
  margin-top: auto;
}

@media (max-width: 500px) {
  .modal-actions {
    grid-template-columns: 1fr;
  }
}

.btn-outline {
  background: transparent !important;
  border: 1px solid var(--border-panel) !important;
  color: var(--text-main) !important;
  box-shadow: none !important;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.05) !important;
  border-color: var(--text-muted) !important;
}

.modal-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
  align-items: center;
}

.modal-badge {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border-radius: 6px;
  border: 1px solid var(--border-panel);
  background: rgba(255, 255, 255, 0.02);
}

.modal-badge.brand {
  border-color: var(--primary-accent);
  color: var(--primary-accent);
  background: var(--primary-glow);
}

.modal-badge.category {
  border-color: var(--whatsapp-green);
  color: var(--whatsapp-green);
  background: var(--whatsapp-glow);
}

.modal-description {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.modal-description p,
.modal-description span,
.modal-description object {
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 8px;
  display: block;
}

.modal-description h3,
.modal-description h4 {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 20px;
  margin-bottom: 10px;
  color: var(--text-main);
  border-bottom: 1px solid var(--border-panel);
  padding-bottom: 4px;
}

body.dark-theme .modal-description span,
body.dark-theme .modal-description p {
  color: var(--text-muted) !important;
}

body.dark-theme .modal-description strong,
body.dark-theme .modal-description strong span {
  color: var(--text-main) !important;
}

body.light-theme .modal-description span,
body.light-theme .modal-description p {
  color: var(--text-muted) !important;
}

body.light-theme .modal-description strong,
body.light-theme .modal-description strong span {
  color: var(--text-main) !important;
}

/* Checkout Modal Styling */
.checkout-box {
  max-width: 850px;
}

.checkout-box h2 {
  font-family: var(--font-heading);
  font-weight: 800;
  margin-bottom: 4px;
}

.checkout-sub {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 30px;
}

.checkout-split {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
}

@media (max-width: 750px) {
  .checkout-split {
    grid-template-columns: 1fr;
  }
}

.checkout-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
}

.form-group input {
  background: var(--bg-input);
  border: 1px solid var(--border-input);
  color: var(--text-main);
  border-radius: 8px;
  padding: 10px 14px;
  font-family: var(--font-body);
  font-size: 13px;
  outline: none;
  transition: border-color 0.2s;
}

.form-group input:focus {
  border-color: var(--primary-accent);
}

.payment-method-selector {
  margin-top: 10px;
}

.payment-method-selector > label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  display: block;
  margin-bottom: 8px;
}

.payment-pills {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.payment-pill {
  border: 1px solid var(--border-input);
  background: var(--bg-card);
  padding: 12px;
  border-radius: 10px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s;
}

.payment-pill.active {
  border-color: var(--primary-accent);
  background: var(--primary-glow);
  color: var(--primary-accent);
}

.pay-icon {
  font-size: 16px;
}

/* Checkout Right Column Summary */
.checkout-summary-col {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid var(--border-panel);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.checkout-summary-col h3 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 15px;
}

.checkout-items-mini {
  max-height: 180px;
  overflow-y: auto;
  margin-bottom: 15px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-right: 5px;
}

.checkout-item-mini {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
}

.mini-title {
  color: var(--text-main);
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-width: 180px;
}

.mini-qty {
  color: var(--text-muted);
}

.mini-price {
  font-weight: 600;
}

.summary-divider {
  border: 0;
  border-top: 1px solid var(--border-panel);
  margin-bottom: 15px;
}

.summary-line.checkout-total {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  color: var(--text-main);
  margin-top: 8px;
}

.discount-line {
  color: var(--whatsapp-green);
}

/* Mock PIX Details Box */
.pix-payment-box {
  margin-top: 20px;
  background: rgba(16, 185, 129, 0.05);
  border: 1px dashed rgba(16, 185, 129, 0.3);
  border-radius: 12px;
  padding: 16px;
  text-align: center;
}

.pix-payment-box p {
  font-size: 12px;
  font-weight: 600;
  color: var(--whatsapp-green);
  margin-bottom: 12px;
}

.qr-placeholder {
  background: #ffffff;
  padding: 10px;
  width: 140px;
  height: 140px;
  border-radius: 8px;
  margin: 0 auto 12px auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qr-svg {
  width: 100%;
  height: 100%;
  color: #111827;
}

.btn-copy-pix-code {
  background: var(--bg-panel);
  border: 1px solid var(--border-panel);
  color: var(--text-main);
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  border-radius: 8px;
  padding: 8px 12px;
  cursor: pointer;
  width: 100%;
  transition: all 0.2s;
}

.btn-copy-pix-code:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--text-muted);
}

.pix-expire-warn {
  font-size: 10px;
  color: var(--text-muted);
  display: block;
  margin-top: 6px;
}

/* Mock CARD Details Box */
.card-payment-box {
  margin-top: 20px;
  animation: fadeIn 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ==========================================================================
   Footer Styling
   ========================================================================== */

.footer {
  background: rgba(17, 24, 39, 0.85);
  border-top: 1px solid var(--border-panel);
  padding: 60px 20px 30px 20px;
  margin-top: auto;
}

.footer-container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

@media (max-width: 650px) {
  .footer-container {
    grid-template-columns: 1fr;
  }
}

.footer-brand .logo {
  margin-bottom: 15px;
}

.footer-brand p {
  font-size: 13px;
  color: var(--text-muted);
  max-width: 400px;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.footer-links h4 {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 15px;
  color: var(--text-main);
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--primary-accent);
}

.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  border-top: 1px solid var(--border-panel);
  padding-top: 20px;
  text-align: center;
}

.footer-bottom p {
  font-size: 11px;
  color: var(--text-muted);
}

/* ==========================================================================
   Toast Notifications System
   ========================================================================== */

.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 300;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 320px;
}

.toast {
  background: var(--bg-panel);
  border: 1px solid var(--border-panel);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--text-main);
  padding: 12px 20px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  gap: 10px;
  transform: translateY(20px);
  opacity: 0;
  animation: toastShow 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes toastShow {
  to { transform: translateY(0); opacity: 1; }
}

.toast.toast-remove {
  animation: toastHide 0.3s ease forwards;
}

@keyframes toastHide {
  to { transform: translateY(20px); opacity: 0; }
}

.toast-success-icon {
  color: var(--whatsapp-green);
  font-size: 16px;
}

/* Responsive adjustments for headers & screens */
@media (max-width: 768px) {
  :root {
    --header-height: 120px;
  }
  
  .header-container {
    flex-direction: column;
    padding: 10px 15px;
    gap: 10px;
  }
  
  .search-wrapper {
    max-width: 100%;
    order: 3;
    width: 100%;
  }
  
  .header-actions {
    position: absolute;
    top: 10px;
    right: 15px;
  }
  
  .logo {
    font-size: 20px;
    align-self: flex-start;
  }
}

/* ==========================================================================
   Product Detail Gallery (Worth 100k BRL Premium Style)
   ========================================================================== */

@media (max-width: 650px) {
  .modal-img-col {
    max-width: 100%;
    margin: 0 auto;
  }
}

.modal-main-img {
  background: #ffffff;
  border-radius: 16px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border: 1px solid var(--border-panel);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.modal-main-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-thumbs-row {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  width: 100%;
  max-width: 100%;
  padding: 8px 2px;
  box-sizing: border-box;
}

/* Custom scrollbar for thumbnails navigation */
.modal-thumbs-row::-webkit-scrollbar {
  height: 5px;
}

.modal-thumbs-row::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 3px;
}

.modal-thumbs-row::-webkit-scrollbar-thumb {
  background: var(--border-panel);
  border-radius: 3px;
}

.modal-thumbs-row::-webkit-scrollbar-thumb:hover {
  background: var(--text-muted);
}

.modal-thumb-item {
  width: 62px;
  height: 62px;
  background: #ffffff;
  border: 2px solid var(--border-panel);
  border-radius: 10px;
  padding: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-thumb-item:hover {
  border-color: var(--text-muted);
  transform: translateY(-2px);
}

.modal-thumb-item.active {
  border-color: var(--primary-accent);
  box-shadow: 0 0 10px var(--primary-glow);
}

.modal-thumb-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* ==========================================================================
   Admin Panel & Dashboard Styles
   ========================================================================== */

.admin-dashboard-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(6, 9, 19, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 500;
  display: none;
  overflow-y: auto;
  padding: 40px 20px;
  box-sizing: border-box;
}

.admin-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 40px;
  border-radius: 28px;
  background: var(--bg-panel);
  border: 1px solid var(--border-panel);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-panel);
  padding-bottom: 25px;
  margin-bottom: 35px;
  flex-wrap: wrap;
  gap: 20px;
}

.admin-logo {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
}

.admin-version {
  font-size: 10px;
  background: var(--primary-glow);
  color: var(--primary-accent);
  border: 1px solid var(--primary-accent);
  padding: 3px 8px;
  border-radius: 6px;
  margin-left: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.admin-header-actions {
  display: flex;
  gap: 15px;
  align-items: center;
}

.admin-metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.metric-card {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid var(--border-panel);
  border-radius: 20px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.metric-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary-accent);
  box-shadow: 0 10px 25px var(--primary-glow);
}

.metric-icon {
  font-size: 32px;
  background: rgba(255, 255, 255, 0.02);
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  border: 1px solid var(--border-panel);
}

.metric-info h4 {
  font-size: 11px;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.metric-info p {
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1;
}

.admin-layout-split {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 30px;
}

@media (max-width: 1100px) {
  .admin-layout-split {
    grid-template-columns: 1fr;
  }
}

.admin-section-box {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid var(--border-panel);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.admin-section-box h3 {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
  color: var(--text-main);
  border-bottom: 1px solid var(--border-panel);
  padding-bottom: 10px;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 12px;
}

.admin-table th {
  padding: 14px 10px;
  border-bottom: 2px solid var(--border-panel);
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.admin-table td {
  padding: 14px 10px;
  border-bottom: 1px solid var(--border-panel);
  color: var(--text-main);
  vertical-align: middle;
  line-height: 1.5;
}

.admin-table tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}

.lead-type-badge {
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-block;
}

.lead-type-badge.whatsapp {
  background: var(--whatsapp-glow);
  color: var(--whatsapp-green);
  border: 1px solid var(--whatsapp-green);
}

.lead-type-badge.direto {
  background: var(--primary-glow);
  color: var(--primary-accent);
  border: 1px solid var(--primary-accent);
}

.btn-whatsapp-direct {
  background: var(--whatsapp-green) !important;
  color: #ffffff !important;
  border: none !important;
  box-shadow: 0 4px 14px var(--whatsapp-glow) !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-whatsapp-direct:hover {
  background: #20ba5a !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--whatsapp-glow) !important;
}
