
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Poppins:wght@400;500;600;700;800;900&display=swap');

:root {
  --font-primary: 'Poppins', sans-serif;
  --font-secondary: 'Lato', sans-serif;

  
  --color-primary: #1e3a8a;
  
  --color-secondary: #008aff;
  
  --color-success: #22c55e;
  
  --color-success-bg: rgba(34, 197, 94, 0.1);
  --color-sale: #cf2e2e;
  

  
  --bg-primary: #ffffff;
  --bg-secondary: #f8fafc;
  --text-dark: #1e293b;
  --text-light: #64748b;
  --border-light: #e2e8f0;

  
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
}

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

body {
  font-family: var(--font-secondary);
  background-color: var(--bg-secondary);
  color: var(--text-dark);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
  font-weight: 600;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
}

.header-wrapper {
  background-color: var(--bg-primary);
  border-bottom: 1px solid var(--border-light);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-top {
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.logo-container a {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 40px;
  height: 40px;
  border: 4px solid var(--color-primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-family: var(--font-primary);
  color: var(--color-primary);
}

.logo-text {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.logo-sub {
  font-size: 10px;
  color: var(--text-light);
  display: block;
  margin-top: -4px;
}

/* ===== Logo "Rei das Telas" (estetica dourado + prata) ===== */
.rt-logo {
  display: flex;
  align-items: center;
  gap: 9px;
}
.rt-crown {
  width: 34px;
  height: 34px;
  color: #e6b422;
  flex-shrink: 0;
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, .25));
}
.rt-lockup {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.rt-rei {
  font-family: var(--font-primary);
  font-size: 23px;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: linear-gradient(180deg, #f9e79a 0%, #e6b422 48%, #b8860b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.rt-telas {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-top: 2px;
  background: linear-gradient(180deg, #b0b6bd 0%, #6b7280 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

@media (max-width: 768px) {
  .rt-crown { width: 26px !important; height: 26px !important; }
  .rt-rei { font-size: 16px !important; letter-spacing: 1px !important; }
  .rt-telas { font-size: 8.5px !important; letter-spacing: 2px !important; margin-top: 1px !important; }
  .rt-logo { gap: 6px !important; }
}

.search-unified-wrapper {
  flex: 1;
  max-width: 520px;
  height: 40px;
  display: flex;
  align-items: center;
  background-color: white;
  border: 1px solid #dcdcdc;
  border-radius: 20px;
  position: relative;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}

.search-unified-wrapper:focus-within {
  border-color: var(--color-secondary);
  box-shadow: 0 0 0 3px rgba(0, 138, 255, 0.1);
}

.search-field-box {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 0 15px;
  position: relative;
}

.search-input-field {
  width: 100%;
  border: none;
  background: transparent;
  outline: none;
  font-size: 13.5px;
  color: var(--text-dark);
  font-family: var(--font-primary);
}

.search-clear-btn {
  font-size: 18px;
  color: #94a3b8;
  cursor: pointer;
  margin-left: 5px;
  user-select: none;
}

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

.search-divider {
  width: 1px;
  height: 20px;
  background-color: #e2e8f0;
}

.search-category-dropdown {
  position: relative;
}

.search-cat-toggle-btn {
  background: none;
  border: none;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 0 15px;
  font-size: 11px;
  font-weight: 700;
  color: #475569;
  text-transform: uppercase;
  cursor: pointer;
  width: 185px;
  height: 100%;
  font-family: var(--font-primary);
}

.search-cat-toggle-btn span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 145px;
}

.search-cat-toggle-btn .chevron {
  font-size: 9px;
  color: #94a3b8;
  transition: transform 0.2s;
}

.search-unified-btn {
  background: none;
  border: none;
  outline: none;
  height: 100%;
  padding: 0 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #475569;
  border-radius: 0 20px 20px 0;
  transition: color 0.2s;
}

.search-unified-btn:hover {
  color: var(--color-secondary);
}

.search-icon-svg {
  width: 18px;
  height: 18px;
  stroke: #475569;
}

.search-unified-btn:hover .search-icon-svg {
  stroke: var(--color-secondary);
}

.search-suggestions-box {
  position: absolute;
  top: 45px;
  left: 0;
  width: 100%;
  background-color: white;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  max-height: 280px;
  overflow-y: auto;
  z-index: 999;
}

.search-cat-menu-box {
  position: absolute;
  top: 45px;
  right: 0;
  width: 240px;
  background-color: white;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  max-height: 350px;
  overflow-y: auto;
  z-index: 999;
  padding: 10px 0;
  text-align: left;
}

.search-cat-brand-title {
  font-size: 11px;
  font-weight: 800;
  color: var(--color-secondary);
  padding: 8px 18px 4px;
  text-transform: uppercase;
  display: block;
}

.search-cat-size-item {
  font-size: 12px;
  color: #475569;
  padding: 6px 28px;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s;
  display: block;
  text-decoration: none;
}

.search-cat-size-item:hover {
  background-color: #f8fafc;
  color: var(--color-secondary);
}

.suggestion-item {
  padding: 10px 15px;
  font-size: 13px;
  cursor: pointer;
  border-bottom: 1px solid #f1f5f9;
  transition: background-color 0.2s;
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
}

.suggestion-item:hover {
  background-color: #f8fafc;
}

.suggestion-item img {
  width: 45px;
  height: 30px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
}

.suggestion-item span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--text-dark);
}

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

.login-register-link {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 13px;
  color: var(--text-dark);
}

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

.tool-item {
  position: relative;
  font-size: 20px;
  color: var(--text-dark);
  cursor: pointer;
}

.tool-count {
  position: absolute;
  top: -8px;
  right: -10px;
  background-color: var(--color-secondary);
  color: white;
  font-size: 10px;
  font-weight: bold;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-subtotal {
  font-size: 12px;
  font-weight: bold;
  margin-left: 5px;
}

.nav-bar {
  background-color: var(--bg-primary);
  border-bottom: 1px solid var(--border-light);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 30px;
  height: 50px;
}

.categories-dropdown {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.categories-toggle-btn {
  background-color: var(--color-secondary);
  color: white;
  border: none;
  padding: 0 20px;
  height: 100%;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.categories-toggle-btn:hover {
  background-color: var(--color-primary);
}

.categories-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--bg-primary);
  border: 1px solid var(--border-light);
  width: 230px;
  list-style: none;
  box-shadow: var(--shadow-lg);
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.categories-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.categories-menu li a {
  display: block;
  padding: 12px 20px;
  font-size: 13px;
  font-weight: 600;
  border-bottom: 1px solid var(--bg-secondary);
}

.categories-menu li a:hover,
.categories-menu li.active a {
  background-color: var(--bg-secondary);
  color: var(--color-secondary);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 20px;
  overflow-x: auto;
  white-space: nowrap;
}

.nav-links li a {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 12px;
  color: var(--text-dark);
  text-transform: uppercase;
}

.nav-links li a:hover {
  color: var(--color-secondary);
}

.home-main-section {
  max-width: 1200px;
  margin: 0 auto 30px;
  
  padding: 0 20px;
  display: flex;
  gap: 20px;
}

.home-categories-sidebar {
  width: 230px;
  
  background-color: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-top: none;
  
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  align-self: flex-start;
  box-shadow: var(--shadow-sm);
  margin-top: 0;
  z-index: 5;
}

@media (max-width: 992px) {
  .home-categories-sidebar {
    display: none;
  }
}

.home-categories-list {
  list-style: none;
}

.home-categories-list li a {
  display: block;
  padding: 11px 20px;
  font-size: 13px;
  font-weight: 600;
  border-bottom: 1px solid #f1f5f9;
  color: #334155;
  transition: all 0.2s;
}

.home-categories-list li a:hover {
  background-color: #f8fafc;
  color: var(--color-secondary);
  padding-left: 25px;
}

.hero-banner-wrapper {
  flex: 1;
  margin: 0;
  padding: 0;
}

.hero-slide-image-box {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background-color: var(--border-light);
  line-height: 0;
}

.hero-banner-img-fluid {
  width: 100%;
  height: auto;
  display: block;
}

.main-content {
  max-width: 1200px;
  margin: 30px auto;
  padding: 0 20px;
}

.section-title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  border-bottom: 2px solid var(--border-light);
  padding-bottom: 10px;
}

.section-title {
  font-size: 18px;
  color: var(--color-primary);
  text-transform: uppercase;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 60px;
  height: 2px;
  background-color: var(--color-secondary);
}

.carousel-nav-arrows {
  display: flex;
  gap: 8px;
}

.carousel-arrow {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-light);
  color: var(--text-dark);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 12px;
  transition: all 0.2s;
  user-select: none;
}

.carousel-arrow:hover {
  background-color: var(--color-secondary);
  color: white;
  border-color: var(--color-secondary);
}

.products-carousel-container {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

.products-grid.carousel {
  display: grid;
  grid-template-rows: repeat(2, 1fr);
  
  grid-auto-flow: column;
  
  grid-auto-columns: calc(20% - 12px);
  
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 15px;
  padding: 10px 5px 25px;
}

.products-grid.carousel::-webkit-scrollbar {
  display: none;
}

.products-grid.carousel .product-card {
  width: 100%;
}

@media (max-width: 1200px) {
  .products-grid.carousel {
    grid-auto-columns: calc(25% - 12px);
    
  }
}

@media (max-width: 992px) {
  .products-grid.carousel {
    grid-auto-columns: calc(33.333% - 10px);
    
  }
}

@media (max-width: 640px) {
  .products-grid.carousel {
    grid-auto-columns: calc(50% - 8px);
    
  }
}

@media (max-width: 480px) {
  .products-grid.carousel {
    grid-auto-columns: 100%;
    
  }
}

.product-card {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  position: relative;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  z-index: 1;
}

.product-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-lg);
  z-index: 10;
}

.product-image-wrapper {
  position: relative;
  padding-top: 67%;
  
  background-color: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.product-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.promo-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: var(--color-sale);
  color: white;
  font-size: 11px;
  font-weight: bold;
  padding: 3px 8px;
  border-radius: 20px;
  z-index: 1;
}

.product-info {
  padding: 15px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
  height: 40px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.product-brand-tag {
  font-size: 11px;
  font-weight: bold;
  color: var(--text-light);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.price-wrapper {
  margin-bottom: 15px;
  flex: 1;
}

.main-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 5px;
}

.original-price {
  font-size: 12px;
  color: var(--text-light);
  text-decoration: line-through;
}

.current-price {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
}

.pix-badge {
  background-color: var(--color-success-bg);
  border-left: 3px solid var(--color-success);
  padding: 5px 8px;
  font-size: 11px;
  color: #166534;
  margin-bottom: 8px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

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

.buy-btn {
  background-color: var(--color-primary);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  padding: 10px;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 12px;
  cursor: pointer;
  transition: background-color 0.2s;
  width: 100%;
}

.buy-btn:hover {
  background-color: var(--color-secondary);
}

.product-card-actions {
  position: absolute;
  bottom: -46px;
  
  left: -1px;
  
  right: -1px;
  
  background-color: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-top: none;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  display: flex;
  gap: 12px;
  justify-content: center;
  
  padding: 8px 15px 12px 15px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.45s cubic-bezier(0.16, 1, 0.3, 1), transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  z-index: 11;
}

.product-card:hover .product-card-actions {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.card-action-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 1px solid transparent;
}

.card-action-btn.favorite-btn {
  background-color: white;
  color: #ef4444;
  border-color: #fecdd3;
}

.card-action-btn.favorite-btn:hover {
  background-color: #fff1f2;
  border-color: #fda4af;
}

.card-action-btn.cart-btn {
  background-color: var(--color-secondary);
  color: white;
  border-color: var(--color-secondary);
}

.card-action-btn.cart-btn:hover {
  background-color: #0d6efd;
  border-color: #0d6efd;
}

.card-action-icon {
  width: 16px;
  height: 16px;
}

.banners-stacked-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  
  gap: 25px;
  margin: 40px 0;
}

.banner-img-box {
  width: 100%;
  max-width: 960px;
  
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: var(--border-light);
}

.banner-img-box:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.banner-fluid-img {
  width: 100%;
  height: auto;
  display: block;
}

.category-layout {
  display: flex;
  gap: 30px;
  margin-top: 20px;
}

.sidebar {
  width: 250px;
  flex-shrink: 0;
}

.sidebar-widget {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 20px;
}

.widget-title {
  font-size: 14px;
  color: var(--color-primary);
  text-transform: uppercase;
  margin-bottom: 15px;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 5px;
}

.price-filter-wrapper {
  margin-top: 10px;
}

.price-slider {
  width: 100%;
  margin-bottom: 10px;
  accent-color: var(--color-secondary);
}

.price-values-row {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  font-weight: bold;
}

.filter-checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  cursor: pointer;
}

.category-main {
  flex: 1;
}

.category-header-banner {
  background: linear-gradient(135deg, #1e3a8a 0%, #008aff 100%);
  border-radius: var(--radius-lg);
  color: white;
  padding: 30px 40px;
  margin-bottom: 20px;
}

.category-header-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 5px;
}

.category-breadcrumb {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
}

.category-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  font-size: 13px;
}

.footer {
  background-color: #0f172a;
  color: #94a3b8;
  padding: 50px 0 20px;
  margin-top: 50px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 40px;
  border-bottom: 1px solid #1e293b;
  padding-bottom: 40px;
}

.footer-col h4 {
  color: white;
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

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

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

.footer-col ul li a {
  font-size: 13px;
}

.footer-col ul li a:hover {
  color: white;
}

.footer-info-text {
  font-size: 12px;
  line-height: 1.8;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 12px;
}

.payment-icons {
  display: flex;
  gap: 8px;
}

.payment-icon {
  background-color: white;
  padding: 2px 6px;
  border-radius: var(--radius-sm);
  height: 22px;
}

.whatsapp-floating-card {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: white;
  border-radius: 12px;
  padding: 14px 20px;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 16px -6px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  gap: 15px;
  cursor: pointer;
  z-index: 9999;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
  max-width: 320px;
}

.whatsapp-floating-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 20px 30px -10px rgba(0, 0, 0, 0.15), 0 12px 20px -8px rgba(0, 0, 0, 0.08);
}

.ck-wa-text-box {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: left;
}

.ck-wa-title {
  color: #075e54;
  font-weight: 700;
  font-size: 13px;
  line-height: 1.3;
}

.ck-wa-subtitle {
  color: #475569;
  font-size: 12px;
  font-weight: 500;
}

.ck-wa-icon-box {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ck-wa-icon {
  width: 28px;
  height: 28px;
  fill: #25d366;
}

@media (max-width: 576px) {
  .whatsapp-floating-card {
    bottom: 15px;
    right: 15px;
    left: 15px;
    max-width: calc(100% - 30px);
    padding: 10px 15px;
  }

  .ck-wa-title {
    font-size: 12px;
  }

  .ck-wa-subtitle {
    font-size: 11px;
  }
}

@media (max-width: 992px) {
  .hero-slide {
    flex-direction: column;
    padding: 30px;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
    margin-bottom: 30px;
  }

  .hero-image-container {
    width: 80%;
  }

  .category-layout {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .header-top {
    flex-direction: column;
    align-items: stretch;
  }

  .search-container {
    max-width: 100%;
  }

  .header-actions {
    justify-content: space-between;
  }

  .nav-container {
    gap: 15px;
  }

  .banner-item {
    min-width: 100%;
  }
}

.policy-header-banner {
  background: linear-gradient(rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.85)), url('https://images.unsplash.com/photo-1588508065123-287b28e013da?q=80&w=1200&auto=format&fit=crop') no-repeat center center;
  background-size: cover;
  padding: 60px 20px;
  text-align: center;
  color: white;
  border-bottom: 3px solid var(--color-secondary);
}

.policy-header-title {
  font-size: 32px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.policy-breadcrumb {
  font-size: 11px;
  font-weight: 700;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.policy-container-card {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  margin: 30px auto;
  max-width: 960px;
}

.policy-subtitle {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 25px;
  border-left: 4px solid var(--color-secondary);
  padding-left: 10px;
  line-height: 1.4;
}

.policy-content-body {
  font-family: var(--font-primary);
  font-size: 14px;
  color: #334155;
  line-height: 1.7;
}

.policy-content-body h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-primary);
  margin-top: 30px;
  margin-bottom: 15px;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 5px;
  text-transform: uppercase;
}

.policy-content-body p {
  margin-bottom: 15px;
}

.policy-content-body ul {
  margin-left: 20px;
  margin-bottom: 20px;
  list-style-type: square;
}

.policy-content-body li {
  margin-bottom: 8px;
}

@media (max-width: 768px) {
  .policy-header-banner {
    padding: 40px 15px;
  }

  .policy-header-title {
    font-size: 24px;
  }

  .policy-container-card {
    padding: 20px;
    margin: 15px;
  }
}

.product-detail-breadcrumb {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 25px;
}

.product-detail-breadcrumb a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
}

.product-detail-breadcrumb a:hover {
  color: var(--color-secondary);
}

.product-detail-breadcrumb span {
  color: var(--text-dark);
}

.product-detail-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.pd-media-column {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pd-main-image-box {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  background-color: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.pd-main-img {
  max-width: 100%;
  max-height: 400px;
  object-fit: contain;
}

.pd-zoom-icon {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background-color: white;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  font-size: 14px;
  cursor: pointer;
  color: var(--text-dark);
}

.pd-thumbnails-row {
  display: flex;
  gap: 10px;
}

.pd-thumb {
  width: 70px;
  height: 50px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  background-color: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pd-thumb.active {
  border-color: var(--color-secondary);
}

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

.pd-info-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pd-title-text {
  font-size: 26px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.25;
}

.pd-price-card {
  background-color: var(--bg-secondary);
  border-radius: var(--radius-lg);
  padding: 25px;
  border: 1px solid var(--border-light);
}

.pd-price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 15px;
}

.pd-price-original {
  font-size: 16px;
  color: var(--text-light);
  text-decoration: line-through;
}

.pd-price-current {
  font-size: 28px;
  font-weight: 800;
  color: var(--text-dark);
}

.pd-pix-card {
  background-color: var(--color-success-bg);
  border-left: 4px solid var(--color-success);
  padding: 12px 18px;
  font-size: 13px;
  color: #15803d;
  font-weight: 600;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin-bottom: 15px;
}

.pd-pix-icon {
  font-size: 11px;
}

.pd-installments-info {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 15px;
}

.pd-installments-btn {
  background: none;
  border: 1px solid var(--border-light);
  color: var(--color-secondary);
  font-weight: bold;
  font-size: 11px;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-transform: uppercase;
}

.pd-installments-btn:hover {
  background-color: #f1f5f9;
}

.pd-actions-row {
  display: flex;
  gap: 15px;
  margin-top: 10px;
  align-items: center;
}

.pd-qty-selector {
  display: flex;
  align-items: center;
  border: 1px solid #cbd5e1;
  border-radius: 30px;
  overflow: hidden;
  background-color: #f8fafc;
  padding: 3px;
}

.pd-qty-btn {
  background-color: transparent;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  color: #475569;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s, color 0.2s;
}

.pd-qty-btn:hover {
  background-color: #e2e8f0;
  color: #0f172a;
}

.pd-qty-input {
  width: 38px;
  text-align: center;
  border: none;
  background: transparent;
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
}

.pd-buy-btn {
  flex: 1;
  background-color: var(--color-secondary);
  color: white;
  border: none;
  border-radius: 30px;
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background-color 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 6px -1px rgba(0, 140, 255, 0.15);
}

.pd-buy-btn:hover {
  background-color: #0c82f2;
  transform: translateY(-1px);
  box-shadow: 0 10px 15px -3px rgba(0, 140, 255, 0.25);
}

.pd-meta-links {
  font-size: 13.5px;
  color: var(--text-light);
  display: flex;
  gap: 20px;
  margin-top: 10px;
  margin-bottom: 5px;
}

.pd-meta-links span {
  cursor: pointer;
}

.pd-meta-links span:hover {
  color: var(--color-secondary);
}

.pd-payment-methods {
  border-top: 1px solid var(--border-light);
  padding-top: 20px;
  margin-top: 15px;
}

.pd-payment-title {
  font-size: 11px;
  font-weight: bold;
  color: var(--text-light);
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  display: block;
}

.pd-payment-logos-clean {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.pay-badge-img {
  background-color: white;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  width: 52px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s, border-color 0.2s;
}

.pay-badge-img:hover {
  transform: translateY(-1px);
  border-color: #cbd5e1;
}

.payment-svg-logo {
  width: 24px;
  height: 24px;
  display: block;
}

.pay-badge-img.boleto {
  color: #000000;
}

.pay-badge-img.pix {
  border-color: #e2e8f0;
}

.pay-badge-img.pix svg {
  width: 24px;
  height: 24px;
}

.pd-description-section {
  margin: 50px 0;
}

.pd-tabs-header {
  border-bottom: 2px solid var(--border-light);
  margin-bottom: 20px;
}

.pd-tab-btn {
  background: none;
  border: none;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  padding: 10px 20px;
  border-bottom: 2px solid var(--color-secondary);
  position: relative;
  bottom: -2px;
  cursor: pointer;
}

.pd-tab-content {
  font-size: 14px;
  color: #334155;
  line-height: 1.7;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 30px;
}

.pd-related-section {
  margin-top: 40px;
  border-top: 1px solid var(--border-light);
  padding-top: 40px;
}

.admin-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--border-light);
}

.admin-actions-group {
  display: flex;
  gap: 10px;
}

.admin-btn {
  padding: 10px 18px;
  border: none;
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.admin-btn.primary-btn {
  background-color: var(--color-secondary);
  color: white;
}

.admin-btn.primary-btn:hover {
  background-color: #0d6efd;
}

.admin-btn.secondary-btn {
  background-color: #f1f5f9;
  border: 1px solid var(--border-light);
  color: var(--text-dark);
}

.admin-btn.secondary-btn:hover {
  background-color: #e2e8f0;
}

.admin-btn.cancel-btn {
  background-color: #ef4444;
  color: white;
}

.admin-btn.cancel-btn:hover {
  background-color: #dc2626;
}

.admin-btn.save-btn {
  background-color: #10b981;
  color: white;
}

.admin-btn.save-btn:hover {
  background-color: #059669;
}

.admin-card-form {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-md);
  margin-bottom: 40px;
}

.admin-card-form h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.admin-grid-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

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

.form-group input[type="text"],
.form-group input[type="number"],
.form-group select,
.form-group textarea {
  padding: 10px 14px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  font-size: 13px;
  font-family: var(--font-primary);
  background-color: white;
  color: var(--text-dark);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-secondary);
  outline: none;
}

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

.form-checkboxes {
  display: flex;
  gap: 30px;
  align-items: center;
  padding: 10px 0;
}

.form-preview-container {
  margin-top: 10px;
  border: 2px dashed var(--border-light);
  border-radius: var(--radius-md);
  padding: 10px;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f8fafc;
}

.preview-placeholder {
  font-size: 12px;
  color: var(--text-light);
}

.form-actions-buttons {
  display: flex;
  justify-content: flex-end;
  gap: 15px;
  border-top: 1px solid var(--border-light);
  padding-top: 20px;
}

.admin-table-container {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow-x: auto;
  box-shadow: var(--shadow-sm);
}

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

.admin-table th,
.admin-table td {
  padding: 15px 20px;
  border-bottom: 1px solid var(--border-light);
  font-size: 13px;
}

.admin-table th {
  background-color: var(--bg-secondary);
  color: var(--text-dark);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.admin-table tr:hover {
  background-color: #f8fafc;
}

.status-badge {
  font-size: 11px;
  font-weight: bold;
  padding: 4px 8px;
  border-radius: 20px;
}

.status-badge.available {
  background-color: #d1fae5;
  color: #065f46;
}

.status-badge.out-of-stock {
  background-color: #fee2e2;
  color: #991b1b;
}

.admin-table-actions {
  display: flex;
  gap: 8px;
}

.admin-table-actions button {
  padding: 6px 12px;
  font-size: 11px;
  font-weight: bold;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: none;
  transition: all 0.2s;
}

.action-edit-btn {
  background-color: #e0f2fe;
  color: #0369a1;
}

.action-edit-btn:hover {
  background-color: #bae6fd;
}

.action-delete-btn {
  background-color: #ffe4e6;
  color: #b91c1c;
}

.action-delete-btn:hover {
  background-color: #fecdd3;
}

@media (max-width: 992px) {
  .product-detail-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

  .admin-header-row {
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
  }
}

.cart-progress-banner {
  background-color: #0f172a;
  padding: 25px 20px;
  text-align: center;
  color: white;
  border-bottom: 3px solid var(--color-secondary);
  font-family: var(--font-primary);
}

.cart-progress-text {
  font-size: 14px;
  letter-spacing: 1px;
}

.active-step {
  font-weight: 800;
  color: white;
  border-bottom: 2px solid white;
  padding-bottom: 3px;
}

.muted-step {
  color: #64748b;
  font-weight: 500;
}

.cart-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
  margin: 40px auto;
  max-width: 1200px;
}

.cart-items-column {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 25px;
  box-shadow: var(--shadow-sm);
  overflow-x: auto;
}

.cart-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.cart-table th,
.cart-table td {
  padding: 15px 10px;
  border-bottom: 1px solid var(--border-light);
  font-size: 13.5px;
  vertical-align: middle;
}

.cart-table th {
  background-color: var(--bg-secondary);
  color: var(--text-dark);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cart-remove-cross {
  font-size: 22px;
  color: #ef4444;
  cursor: pointer;
  font-weight: bold;
  user-select: none;
  transition: color 0.2s;
}

.cart-remove-cross:hover {
  color: #b91c1c;
}

.cart-item-thumbnail {
  width: 65px;
  height: 45px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
}

.cart-item-title {
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  transition: color 0.2s;
}

.cart-item-title:hover {
  color: var(--color-secondary);
}

.color-blue {
  color: var(--color-secondary);
}

.cart-actions-row {
  display: flex;
  justify-content: flex-start;
  margin-top: 20px;
}

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

.cart-totals-card {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 20px;
}

.cart-totals-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
  text-transform: uppercase;
  border-bottom: 2px solid var(--border-light);
  padding-bottom: 10px;
}

.cart-totals-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  font-size: 13.5px;
  color: var(--text-dark);
}

.cart-totals-row.border-bottom {
  border-bottom: 1px solid var(--border-light);
}

.cart-totals-row.promo-pix-row {
  background-color: #f0fdf4;
  padding: 12px 10px;
  border-radius: var(--radius-md);
  margin: 10px 0;
}

.cart-totals-row .pix-price {
  color: #166534;
  font-weight: bold;
  font-size: 14px;
}

.cart-totals-row.grand-total-row {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-dark);
  padding-top: 20px;
}

.cart-shipping-box {
  padding: 20px 0;
}

.cart-shipping-box.border-bottom {
  border-bottom: 1px solid var(--border-light);
}

.shipping-title {
  font-size: 12px;
  font-weight: bold;
  color: var(--text-dark);
  text-transform: uppercase;
  margin-bottom: 15px;
  display: block;
}

.shipping-options-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.shipping-option-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12.5px;
  cursor: pointer;
  color: #334155;
  user-select: none;
}

.shipping-option-item input {
  margin-top: 3px;
  accent-color: var(--color-secondary);
}

.shipping-location-text {
  font-size: 11px;
  color: var(--text-light);
  margin-top: 15px;
  margin-bottom: 5px;
}

.shipping-change-address {
  font-size: 11px;
  color: var(--color-secondary);
  font-weight: bold;
  text-decoration: none;
}

.shipping-change-address:hover {
  text-decoration: underline;
}

.cart-checkout-btn-style {
  width: 100%;
  background-color: var(--color-secondary);
  color: white;
  border: none;
  border-radius: var(--radius-md);
  padding: 15px;
  font-size: 13px;
  font-weight: bold;
  cursor: pointer;
  text-transform: uppercase;
  margin-top: 20px;
  transition: background-color 0.2s;
}

.cart-checkout-btn-style:hover {
  background-color: #0d6efd;
}

.cart-checkout-btn-style:disabled {
  background-color: #cbd5e1;
  color: #94a3b8;
  cursor: not-allowed;
}

@media (max-width: 992px) {
  .cart-layout {
    grid-template-columns: 1fr;
    margin: 20px;
  }

  .cart-totals-card {
    position: static;
  }
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 20px;
}

.tool-link-badge {
  text-decoration: none;
  color: #334155;
  display: flex;
  align-items: center;
  transition: all 0.2s ease;
}

.tool-link-badge:hover {
  color: var(--color-secondary);
}

.icon-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.header-icon {
  width: 24px;
  height: 24px;
  stroke: #334155;
  transition: stroke 0.2s ease;
}

.tool-link-badge:hover .header-icon {
  stroke: var(--color-secondary);
}

.badge-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background-color: var(--color-secondary);
  color: white;
  font-size: 10px;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

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

.cart-subtotal {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
}

@keyframes viewFadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

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

#home-view,
#category-view,
#policy-view,
#product-detail-view,
#admin-view,
#checkout-view,
#login-view,
#cart-view {
  animation: viewFadeIn 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.checkout-layout {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 30px;
  margin-top: 20px;
}

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

.checkout-details-column {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.checkout-section-card {
  background-color: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  border: 1px solid var(--border-light);
}

.checkout-section-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-transform: none;
  letter-spacing: 0;
}

.step-badge {
  background-color: var(--color-primary);
  color: white;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
}

.checkout-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

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

.form-group.full-width {
  grid-column: span 2;
}

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

  .form-group.half-width,
  .form-group.full-width {
    grid-column: span 1;
  }
}

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

.form-group input {
  padding: 12px 16px;
  border: 1px solid var(--border-medium);
  border-radius: 8px;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  background-color: #fafafa;
}

.form-group input:focus {
  border-color: var(--color-secondary);
  box-shadow: 0 0 0 3px rgba(0, 140, 255, 0.15);
  background-color: white;
}

.checkout-payment-options {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.ck-payment-option-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  border: 1px solid var(--border-medium);
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  color: var(--text-dark);
  transition: background-color 0.2s, border-color 0.2s;
}

.ck-payment-option-item:has(input:checked) {
  background-color: #f0fdfa;
  border-color: #32BCAD;
}

.ck-payment-option-item input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: #32BCAD;
}

.ck-payment-label {
  display: flex;
  align-items: center;
  font-size: 15px;
  flex-wrap: wrap;
  width: 100%;
}

.ck-pix-discount-tag {
  background-color: #2dd4bf;
  color: white;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 11px;
  margin-left: 8px;
  font-weight: 700;
}

.ck-pix-instruction-box {
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 25px;
  margin-top: -5px;
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ck-pix-subtitle {
  font-size: 14px;
  color: var(--text-medium);
  text-align: center;
  font-style: italic;
  margin: 0;
}

.ck-pix-logo-centered {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.ck-pix-steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ck-step-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.ck-step-number {
  background-color: #2dd4bf;
  color: white;
  min-width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}

.ck-step-desc {
  font-size: 13.5px;
  color: var(--text-dark);
  line-height: 1.4;
}

.ck-privacy-text {
  font-size: 12.5px;
  color: var(--text-light);
  line-height: 1.5;
  margin-top: 20px;
  margin-bottom: 20px;
}

.ck-final-btn {
  width: 100%;
  background-color: var(--color-secondary);
  color: white;
  border: none;
  border-radius: 30px;
  padding: 16px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background-color 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 6px -1px rgba(0, 140, 255, 0.15);
}

.ck-final-btn:hover {
  background-color: #0c82f2;
  transform: translateY(-1px);
  box-shadow: 0 10px 15px -3px rgba(0, 140, 255, 0.25);
}

.checkout-summary-column {
  position: relative;
}

.summary-card-sticky {
  position: sticky;
  top: 100px;
}

.ck-summary-table {
  width: 100%;
  border-collapse: collapse;
}

.ck-summary-table th,
.ck-summary-table td {
  padding: 12px 0;
  font-size: 14px;
  color: var(--text-dark);
  border-bottom: 1px solid var(--border-light);
}

.ck-summary-table th {
  font-weight: 700;
  color: var(--text-medium);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.5px;
}

.ck-summary-row {
  font-weight: 500;
}

.ck-summary-row.border-top {
  border-top: 1px solid var(--border-medium);
}

.ck-summary-row.total-row {
  border-top: 2px solid var(--color-primary);
  font-weight: 700;
  font-size: 16px;
}

.ck-summary-row.total-row td {
  font-size: 18px;
}

.ck-selected-shipping-name {
  font-size: 12px;
  color: var(--text-medium);
  font-weight: 400;
}

.discount-text {
  color: #10b981;
  font-weight: 700;
}

.total-text {
  color: var(--color-primary);
  font-weight: 800;
}

#login-view {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f8fafc;
  padding: 20px;
  box-sizing: border-box;
}

#login-view .main-content {
  width: 100%;
  max-width: 450px;
  margin: 0 !important;
}

#toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.toast-item {
  background-color: #0f172a;
  color: white;
  padding: 14px 20px;
  border-radius: 8px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  font-size: 13.5px;
  font-weight: 600;
  min-width: 250px;
  max-width: 350px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  pointer-events: auto;
  border-left: 4px solid var(--color-secondary);
  transform: translateX(120%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
  opacity: 0;
}

.toast-item.show {
  transform: translateX(0);
  opacity: 1;
}

.toast-item.toast-success {
  border-left-color: #10b981;
}

.toast-item.toast-error {
  border-left-color: #ef4444;
}

.toast-close-btn {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  transition: color 0.2s;
}

.toast-close-btn:hover {
  color: white;
}

.pix-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(4px);
  z-index: 11000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
}

.pix-modal-card {
  background-color: white;
  width: 100%;
  max-width: 440px;
  border-radius: 16px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  position: relative;
  padding: 35px 30px;
  box-sizing: border-box;
  text-align: center;
  animation: modalScaleUp 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modalScaleUp {
  from {
    transform: scale(0.9);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.pix-modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--text-light);
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}

.pix-modal-close:hover {
  color: var(--text-dark);
}

.pix-modal-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.pix-modal-instructions {
  font-size: 13.5px;
  color: var(--text-medium);
  line-height: 1.5;
  margin-bottom: 20px;
}

.pix-qr-container {
  background-color: #f8fafc;
  padding: 15px;
  border-radius: 12px;
  border: 1px solid var(--border-light);
  display: inline-block;
  margin-bottom: 20px;
}

.pix-qr-container img {
  width: 200px;
  height: 200px;
  display: block;
}

.pix-copia-cola-box {
  display: flex;
  gap: 8px;
  margin-bottom: 25px;
}

.pix-copia-cola-box input {
  flex: 1;
  padding: 12px;
  border: 1px solid var(--border-medium);
  border-radius: 8px;
  font-size: 12.5px;
  color: var(--text-medium);
  background-color: #f1f5f9;
  text-overflow: ellipsis;
}

.pix-copia-cola-box button {
  background-color: var(--color-primary);
  color: white;
  border: none;
  padding: 0 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s;
}

.pix-copia-cola-box button:hover {
  background-color: #1e3a8a;
}

.pix-status-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--color-secondary);
  font-weight: 600;
  font-size: 14px;
}

.pix-spinner {
  width: 18px;
  height: 18px;
  border: 3px solid rgba(59, 130, 246, 0.2);
  border-top-color: #3b82f6;
  border-radius: 50%;
  animation: pixSpin 0.8s linear infinite;
}

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

.pix-success-icon-box {
  color: #10b981;
  margin-bottom: 15px;
}

.pix-success-icon {
  width: 60px;
  height: 60px;
}

.pix-modal-wa-btn {
  background-color: #25d366;
  color: white;
  border: none;
  width: 100%;
  padding: 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.2s;
  box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
}

.pix-modal-wa-btn:hover {
  background-color: #128c7e;
}

.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(8px);
  z-index: 12000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInOverlay 0.25s ease;
}

@keyframes fadeInOverlay {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.loading-box {
  text-align: center;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.loading-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(255, 255, 255, 0.2);
  border-top-color: #3b82f6;
  border-radius: 50%;
  animation: loadingSpin 1s linear infinite;
}

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

.loading-text {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
  font-family: var(--font-primary);
}

@media (max-width: 768px) {

  
  .mobile-menu-toggle-btn {
    display: flex !important;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    cursor: pointer;
  }

  
  .header-top {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 10px 15px !important;
    gap: 0 !important;
    flex-wrap: nowrap !important;
    width: 100% !important;
  }

  
  .logo-container {
    order: 2 !important;
    display: flex !important;
    justify-content: center !important;
    flex: 1 !important;
    margin: 0 !important;
  }

  .logo-container a {
    justify-content: center !important;
    gap: 5px !important;
  }

  .logo-icon {
    width: 28px !important;
    height: 28px !important;
    font-size: 11px !important;
    border-width: 2px !important;
  }

  .logo-text {
    font-size: 14px !important;
    letter-spacing: 0.5px !important;
  }

  .logo-sub {
    font-size: 9px !important;
  }

  
  .search-unified-wrapper,
  .login-register-link,
  .nav-bar,
  .home-categories-sidebar {
    display: none !important;
  }

  
  .header-actions {
    order: 3 !important;
    display: flex !important;
    flex: 0 0 auto !important;
    justify-content: flex-end !important;
    margin-left: 0 !important;
  }

  .header-tools {
    gap: 5px;
    display: flex;
    align-items: center;
  }

  
  .header-tools a[href="#/favoritos"] {
    display: none !important;
  }

  
  .cart-unified {
    display: flex !important;
    align-items: center;
    gap: 6px;
  }

  .cart-subtotal {
    font-size: 13px;
    font-weight: 700;
    color: var(--color-primary);
  }

  
  .hero-banner-wrapper {
    width: 100% !important;
    height: auto !important;
  }

  .hero-slide-image-box {
    aspect-ratio: 1 / 1 !important;
    width: 100% !important;
    height: auto !important;
    border-radius: 0 !important;
  }

  .hero-banner-img-fluid {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }

  
  .products-grid.carousel {
    grid-auto-columns: 160px !important;
  }

  .product-card {
    flex: 0 0 160px !important;
    max-width: 160px !important;
    min-width: 160px !important;
    padding: 8px !important;
  }

  .product-card-image {
    height: 110px !important;
  }

  .product-card-title {
    font-size: 11px !important;
    line-height: 1.3 !important;
    height: 28px !important;
  }

  .product-card-price {
    font-size: 13px !important;
  }

  .pix-price-badge {
    font-size: 10px !important;
    padding: 3px 6px !important;
  }

  .installments-text {
    font-size: 9px !important;
  }

  .product-actions-btn {
    padding: 6px !important;
    font-size: 10px !important;
  }

  
  .mobile-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
  }

  .mobile-drawer-content {
    width: 80%;
    max-width: 320px;
    height: 100%;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    padding: 20px;
    overflow-y: auto;
    animation: drawerSlideIn 0.3s ease-out;
  }

  @keyframes drawerSlideIn {
    from {
      transform: translateX(-100%);
    }

    to {
      transform: translateX(0);
    }
  }

  .mobile-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 15px;
    margin-bottom: 15px;
  }

  .mobile-drawer-title {
    font-weight: 700;
    font-family: var(--font-primary);
    font-size: 18px;
    color: var(--color-primary);
  }

  .mobile-drawer-close-btn {
    background: none;
    border: none;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    color: var(--text-light);
  }

  .mobile-drawer-search {
    margin-bottom: 20px;
  }

  .mobile-search-box {
    display: flex;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    overflow: hidden;
  }

  .mobile-search-input {
    flex: 1;
    border: none;
    padding: 10px;
    font-size: 14px;
    outline: none;
  }

  .mobile-search-btn {
    background: var(--color-primary);
    color: #fff;
    border: none;
    padding: 0 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .mobile-drawer-links {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
  }

  .mobile-drawer-links li {
    margin-bottom: 15px;
  }

  .mobile-drawer-links a {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    display: block;
  }

  .drawer-divider {
    height: 1px;
    background-color: var(--border-light);
    margin: 15px 0;
  }

  .mobile-drawer-categories .drawer-section-title {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-light);
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
  }

  .mobile-drawer-categories ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .mobile-drawer-categories li {
    margin-bottom: 10px;
    padding-left: 10px;
    border-left: 2px solid var(--color-secondary);
  }

  .mobile-drawer-categories a {
    font-size: 14px;
    color: var(--text-dark);
    font-weight: 500;
  }

  
  .home-main-section {
    display: block !important;
  }

  .home-hero-slider {
    margin-left: 0 !important;
    width: 100% !important;
  }
}

/* ===== Pagina de produto: melhorias visuais (aprox. do print) ===== */
.pd-promo-badge {
  display: inline-block;
  background: #111827;
  color: #ffd60a;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .3px;
  padding: 6px 12px;
  border-radius: 6px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.pd-price-current {
  color: #1a73e8;
}

.pd-installments {
  display: block;
  color: #475569;
  font-size: 14px;
  margin: 4px 0 12px;
}
.pd-installments strong { color: #0f172a; }

/* Botao Comprar Agora azul (igual print) */
.pd-buy-btn {
  background: #1a73e8;
  border: none;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s;
}
.pd-buy-btn:hover { background: #1558b8; }

/* Botao WhatsApp abaixo do comprar */
.pd-whatsapp-btn {
  width: 100%;
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #fff;
  color: #16a34a;
  border: 1.5px solid #16a34a;
  border-radius: 30px;
  padding: 13px 20px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all .2s;
}
.pd-whatsapp-btn:hover { background: #16a34a; color: #fff; }

/* Selos de confianca */
.pd-trust-row {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pd-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: #475569;
}
.pd-trust-item svg { color: #1a73e8; flex-shrink: 0; }
.pd-trust-item strong { color: #0f172a; }

/* Caixa de calculo de frete */
.pd-shipping-box {
  margin-top: 18px;
  border: 1px solid var(--border-light, #e2e8f0);
  border-radius: 12px;
  padding: 16px;
  background: #f8fafc;
}
.pd-shipping-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.pd-shipping-title { font-size: 15px; font-weight: 700; color: #0f172a; }
.pd-shipping-form { display: flex; gap: 8px; }
.pd-cep-input {
  flex: 1;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  padding: 11px 14px;
  font-size: 14px;
  outline: none;
}
.pd-cep-input:focus { border-color: #1a73e8; }
.pd-cep-btn {
  background: #0f172a;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 0 22px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s;
}
.pd-cep-btn:hover { background: #1e293b; }
.pd-shipping-result {
  margin-top: 12px;
  padding: 12px;
  border-radius: 8px;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  font-size: 13.5px;
  color: #065f46;
}
.pd-shipping-result .frete-nome { font-weight: 700; }
.pd-shipping-result.erro { background: #fef2f2; border-color: #fecaca; color: #b91c1c; }

/* Opcoes de frete: preco riscado + "Gratis" (promocao de frete gratis) */
.ship-old {
  color: #94a3b8;
  text-decoration: line-through;
  font-weight: 500;
  margin-right: 4px;
}
.ship-free {
  color: #16a34a;
  font-weight: 700;
}

/* ===== Dashboard de Campanhas (Admin) ===== */
.admin-dash {
  margin-bottom: 28px;
  padding: 20px;
  border-radius: var(--radius-lg, 12px);
  border: 1px solid var(--border-light, #e2e8f0);
  background: var(--bg-primary, #fff);
}
.admin-dash-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}
.admin-dash-head h3 { margin: 0; font-size: 16px; font-weight: 800; color: var(--text-dark, #0f172a); }
.admin-dash-controls { display: flex; gap: 10px; align-items: center; }
.dash-select, .dash-search {
  padding: 9px 12px;
  border: 1px solid var(--border-light, #cbd5e1);
  border-radius: 8px;
  font-size: 13px;
  font-family: var(--font-primary, inherit);
  background: #fff;
  color: #0f172a;
}
.dash-search { min-width: 260px; }

.dash-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
  margin-bottom: 24px;
}
.dash-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-top: 3px solid #1a73e8;
  border-radius: 10px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.dash-card-label { font-size: 12px; font-weight: 700; color: #64748b; text-transform: uppercase; letter-spacing: .3px; }
.dash-card-value { font-size: 28px; font-weight: 800; color: #0f172a; line-height: 1.1; }
.dash-card-sub { font-size: 12px; color: #94a3b8; }

.dash-block { margin-top: 22px; }
.dash-block-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
}
.dash-block-head h4 { margin: 0; font-size: 14px; font-weight: 700; color: #0f172a; }

.dash-table-wrap { overflow-x: auto; border: 1px solid #e2e8f0; border-radius: 10px; }
.dash-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.dash-table thead th {
  background: #f1f5f9;
  text-align: left;
  padding: 10px 12px;
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .3px;
  color: #475569;
  white-space: nowrap;
}
.dash-table tbody td { padding: 10px 12px; border-top: 1px solid #eef2f7; color: #0f172a; vertical-align: middle; }
.dash-table tbody tr:hover { background: #f8fafc; }
.dash-num { text-align: center; font-weight: 700; }

.dash-badge {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 20px;
  margin: 1px 2px;
  white-space: nowrap;
}
.dash-badge.visita { background: #eef2ff; color: #4338ca; }
.dash-badge.zap    { background: #dcfce7; color: #15803d; }
.dash-badge.pix    { background: #cffafe; color: #0e7490; }
.dash-badge.boleto { background: #ede9fe; color: #6d28d9; }
.dash-badge.retirada { background: #fef3c7; color: #b45309; }
.dash-badge.agendou  { background: #fee2e2; color: #b91c1c; }

.dash-empty, .dash-loading {
  padding: 24px;
  text-align: center;
  color: #94a3b8;
  font-size: 13.5px;
}
.dash-muted { color: #94a3b8; }

@media (max-width: 600px) {
  .dash-search { min-width: 0; width: 100%; }
  .dash-card-value { font-size: 22px; }
}

/* Botao "Retirada na loja" na pagina de produto */
.pd-pickup-btn {
  width: 100%;
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #fff;
  color: #0f172a;
  border: 1.5px solid #cbd5e1;
  border-radius: 30px;
  padding: 13px 20px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all .2s;
}
.pd-pickup-btn:hover { background: #0f172a; color: #fff; border-color: #0f172a; }

/* ===== Pagina de agendamento de retirada ===== */
.pickup-wrapper {
  max-width: 720px;
  margin: 0 auto;
  padding: 24px 16px 48px;
}
.pickup-back-top {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  color: #475569;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  padding: 8px 0;
  margin-bottom: 12px;
}
.pickup-back-top:hover { color: #0f172a; }
.pickup-card {
  background: #fff;
  border: 1px solid var(--border-light, #e2e8f0);
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: 0 8px 30px rgba(15, 23, 42, .06);
}
.pickup-title {
  font-size: 24px;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 6px;
}
.pickup-subtitle {
  font-size: 14.5px;
  color: #64748b;
  margin: 0 0 20px;
}
.pickup-product-box {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 12px;
  margin-bottom: 18px;
}
.pickup-product-box img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}
.pickup-product-info { display: flex; flex-direction: column; gap: 4px; }
.pickup-product-info strong { font-size: 14px; color: #0f172a; line-height: 1.3; }
.pickup-product-info span { font-size: 15px; font-weight: 700; color: #1a73e8; }

.pickup-banner-pay {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #111827;
  color: #ffd60a;
  font-weight: 800;
  letter-spacing: .5px;
  font-size: 15px;
  padding: 14px;
  border-radius: 12px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.pickup-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 20px;
}
.pickup-info-item {
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.pickup-info-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .3px;
  color: #1a73e8;
  margin-bottom: 2px;
}
.pickup-info-value { font-size: 15px; font-weight: 600; color: #0f172a; line-height: 1.35; }
.pickup-info-sub { font-size: 13px; color: #64748b; }

.pickup-alert {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #fffbeb;
  border: 1.5px solid #fcd34d;
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 22px;
  font-size: 14px;
  line-height: 1.5;
  color: #92400e;
}
.pickup-alert svg { color: #d97706; margin-top: 1px; }
.pickup-alert strong { color: #78350f; }

.pickup-schedule-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #16a34a;
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 15px 20px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s;
}
.pickup-schedule-btn:hover { background: #128a3e; }
.pickup-back-link {
  width: 100%;
  margin-top: 12px;
  background: none;
  border: none;
  color: #64748b;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  padding: 10px;
}
.pickup-back-link:hover { color: #0f172a; text-decoration: underline; }

@media (max-width: 600px) {
  .pickup-info-grid { grid-template-columns: 1fr; }
  .pickup-title { font-size: 21px; }
}

/* Checkout: mostra apenas um layout por vez (evita campos duplicados).
   Breakpoint 768px alinhado com a logica do renderCheckoutPage(). */
.checkout-layout-mobile {
  display: none;
}

@media (max-width: 768px) {
  .checkout-layout-desktop {
    display: none;
  }
  .checkout-layout-mobile {
    display: block;
  }
}

/* ===== Landing Page (/lp) ===== */
#lp-view {
  background: #fff;
  min-height: 100vh;
  color: #0f172a;
}
.lp2 {
  font-family: 'Poppins', sans-serif;
  padding-bottom: 88px;
}
.lp2-nav {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 20px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #eef2f6;
}
.lp2-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #0f172a;
  min-width: 0;
}
.lp2-mark {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #111;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .4px;
  flex-shrink: 0;
}
.lp2-brand-name,
.lp2-brand strong {
  font-weight: 800;
  font-size: 16px;
  letter-spacing: -.2px;
}
.lp2-nav-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #111;
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}
.lp2-nav-wa svg { width: 16px; height: 16px; }
.lp2-hero {
  max-width: 1120px;
  margin: 0 auto;
  padding: 36px 20px 20px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 40px;
  align-items: center;
}
.lp2-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f1f5f9;
  color: #475569;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .6px;
  margin-bottom: 16px;
}
.lp2-pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34,197,94,.16);
}
.lp2-hero-copy h1 {
  font-size: 48px;
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -1.2px;
  margin: 0 0 16px;
  color: #0b1220;
}
.lp2-hero-copy h1 em {
  font-style: normal;
  color: #e6b422;
}
.lp2-hero-copy > p {
  font-size: 16px;
  line-height: 1.6;
  color: #64748b;
  margin: 0 0 24px;
  max-width: 540px;
}
.lp2-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}
.lp2-btn-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #25D366;
  color: #052e16;
  border: none;
  border-radius: 999px;
  padding: 14px 20px;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(37,211,102,.28);
}
.lp2-btn-wa svg { width: 18px; height: 18px; }
.lp2-btn-wa:hover { filter: brightness(1.04); }
.lp2-btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #0f172a;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  padding: 14px 20px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
}
.lp2-btn-ghost:hover { background: #f8fafc; }
.lp2-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
  list-style: none;
  margin: 0;
  padding: 0;
  color: #64748b;
  font-size: 13px;
  font-weight: 600;
}
.lp2-trust li { display: flex; align-items: center; gap: 6px; }
.lp2-trust svg { width: 16px; height: 16px; color: #94a3b8; }
.lp2-hero-visual {
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 1px 2px rgba(0,0,0,.06), 0 18px 40px -18px rgba(0,0,0,.28);
  padding: 18px;
  overflow: hidden;
}
.lp2-hero-visual img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
  object-fit: contain;
  background: #fff;
}
.lp2-section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 64px 20px;
  text-align: center;
}
.lp2-muted { background: #f8fafc; max-width: none; }
.lp2-muted > h2,
.lp2-muted > .lp2-lead,
.lp2-muted > .lp2-why-grid,
.lp2-muted > .lp2-quotes {
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}
.lp2-section h2 {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -.6px;
  margin: 0 0 10px;
  color: #0b1220;
}
.lp2-lead {
  color: #64748b;
  font-size: 16px;
  margin: 0 auto 32px;
  max-width: 560px;
}
.lp2-cat-grid,
.lp2-why-grid,
.lp2-quotes,
.lp2-steps {
  display: grid;
  gap: 16px;
  text-align: left;
}
.lp2-cat-grid { grid-template-columns: repeat(3, 1fr); }
.lp2-why-grid,
.lp2-quotes,
.lp2-steps { grid-template-columns: repeat(3, 1fr); }
.lp2-why-grid { grid-template-columns: repeat(4, 1fr); }
.lp2-card,
.lp2-why,
.lp2-quote,
.lp2-step {
  background: #fff;
  border: 1px solid #eef2f6;
  border-radius: 20px;
  padding: 22px;
}
.lp2-card-ico,
.lp2-why-ico {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #f1f5f9;
  color: #0f172a;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.lp2-card-ico svg,
.lp2-why-ico svg { width: 22px; height: 22px; }
.lp2-card h3,
.lp2-why h3,
.lp2-step h3 {
  font-size: 18px;
  font-weight: 800;
  margin: 0 0 8px;
}
.lp2-card p,
.lp2-why p,
.lp2-step p,
.lp2-quote p {
  color: #64748b;
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
}
.lp2-card-link {
  display: inline-block;
  margin-top: 16px;
  background: none;
  border: none;
  padding: 0;
  color: #16a34a;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}
.lp2-card-link:hover { text-decoration: underline; }
.lp2-step-n {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-weight: 800;
  margin-bottom: 12px;
}
.lp2-quote p { font-size: 15px; color: #334155; }
.lp2-quote footer {
  margin-top: 16px;
  font-size: 13px;
  color: #64748b;
}
.lp2-quote footer strong { display: block; color: #0f172a; font-size: 14px; }
.lp2-band {
  background: #0b1220;
  color: #fff;
  text-align: center;
  padding: 64px 20px 72px;
}
.lp2-band h2 {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -.6px;
  margin: 0 0 12px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.lp2-band p {
  color: #94a3b8;
  max-width: 560px;
  margin: 0 auto 24px;
  line-height: 1.6;
}
.lp2-band-phone {
  display: block;
  margin-top: 14px;
  color: #94a3b8;
  font-size: 14px;
}
.lp2-foot {
  max-width: 1120px;
  margin: 0 auto;
  padding: 28px 20px 24px;
}
.lp2-foot-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.lp2-foot small {
  display: block;
  color: #64748b;
  font-size: 12px;
  font-weight: 500;
  margin-top: 2px;
}
.lp2-foot-phone {
  background: none;
  border: none;
  color: #0f172a;
  font-weight: 700;
  cursor: pointer;
  font-size: 14px;
}
.lp2-store-link {
  display: inline-block;
  margin-top: 14px;
  color: #64748b;
  font-size: 13px;
}
.lp2-sticky {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 1200;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #25D366;
  color: #052e16;
  border: none;
  border-radius: 999px;
  padding: 14px 18px;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(37,211,102,.4);
}
.lp2-sticky svg { width: 18px; height: 18px; }
@media (max-width: 980px) {
  .lp2-hero { grid-template-columns: 1fr; padding-top: 24px; }
  .lp2-hero-copy h1 { font-size: 36px; }
  .lp2-hero-visual { max-width: 520px; }
  .lp2-cat-grid,
  .lp2-quotes,
  .lp2-steps { grid-template-columns: 1fr; }
  .lp2-why-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .lp2-sticky { display: inline-flex; }
  .lp2-why-grid { grid-template-columns: 1fr; }
  .lp2-hero-copy h1 { font-size: 30px; letter-spacing: -.6px; }
  .lp2-section { padding: 48px 16px; }
  .lp2-section h2,
  .lp2-band h2 { font-size: 26px; }
  .lp2-btn-wa { width: 100%; }
  .lp2-hero-actions { flex-direction: column; }
  .lp2-btn-ghost { width: 100%; }
  .lp2-foot-row { flex-direction: column; align-items: flex-start; }
}

/* ===== Modal de boas-vindas ===== */
.welcome-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 12, 0.6);
  backdrop-filter: blur(3px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 3000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.welcome-modal-overlay.show { opacity: 1; visibility: visible; }
.welcome-modal {
  position: relative;
  background: #fff;
  border-radius: 20px;
  max-width: 400px;
  width: 100%;
  padding: 34px 26px 26px;
  text-align: center;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  transform: translateY(16px) scale(0.98);
  transition: transform 0.28s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.welcome-modal-overlay.show .welcome-modal { transform: translateY(0) scale(1); }
.welcome-modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: none;
  border: none;
  font-size: 26px;
  line-height: 1;
  color: #9aa0a6;
  cursor: pointer;
}
.welcome-modal-close:hover { color: #444; }
.welcome-modal-icon {
  width: 68px;
  height: 68px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: #e8f9ef;
  color: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
}
.welcome-modal-icon svg { width: 36px; height: 36px; }
.welcome-modal-title {
  font-size: 22px;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0 0 10px;
}
.welcome-modal-text {
  font-size: 15px;
  line-height: 1.55;
  color: #5f6368;
  margin: 0 0 22px;
}
.welcome-modal-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: #25D366;
  color: #06310f;
  border: none;
  border-radius: 12px;
  padding: 15px 18px;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.35);
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.welcome-modal-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(37, 211, 102, 0.45); }
.welcome-modal-dismiss {
  display: block;
  width: 100%;
  margin-top: 12px;
  background: none;
  border: none;
  color: #80868b;
  font-size: 13px;
  cursor: pointer;
  text-decoration: underline;
}
.welcome-modal-dismiss:hover { color: #444; }