/* ===== VARIABLES ===== */
:root {
  --primary: #1a1a1a;
  --rose: #bf8075;
  --rose-dark: #a86555;
  --rose-light: #d4a99f;
  --rose-pale: #f5eeec;
  --gold: #bf8075;
  --gold-light: #d4a99f;
  --beige: #faf3f1;
  --nude: #eeddd9;
  --white: #ffffff;
  --off-white: #fdf9f8;
  --gray: #888888;
  --gray-light: #f4efee;
  --border: #e8dedd;
  --text: #2c2c2c;
  --text-light: #777777;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Montserrat', Arial, sans-serif;
  --transition: 0.3s ease;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-hover: 0 8px 40px rgba(0,0,0,0.14);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
input, select, textarea, button { font-family: inherit; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 600; line-height: 1.2; }
h1 { font-size: clamp(2rem, 4vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.5rem); }

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 8px 0;
  font-size: 0.78rem;
}
.top-bar-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.top-bar-whatsapp {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.78rem;
  transition: color var(--transition);
}
.top-bar-whatsapp:hover { color: var(--rose); }
.top-bar-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.top-bar-nav a {
  font-size: 0.72rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition);
}
.top-bar-nav a:hover { color: var(--rose); }

/* ===== ANNOUNCEMENT BAR ===== */
.announcement-bar {
  background: var(--primary);
  color: rgba(255,255,255,0.9);
  text-align: center;
  padding: 9px 16px;
  font-size: 0.78rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
}

/* ===== HEADER PRINCIPAL ===== */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }

.header-main {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  height: 90px;
  gap: 40px;
}

/* Logo */
.logo { text-decoration: none; }
.logo-text {
  font-family: var(--font-serif);
  font-size: 1.9rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--primary);
  line-height: 1;
}
.logo-subtitle {
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 3px;
  display: block;
  font-weight: 400;
}

/* Search central */
.search-form-main {
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border);
  max-width: 400px;
  gap: 8px;
}
.search-form-main input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 0.85rem;
  padding: 8px 0;
  background: transparent;
  color: var(--text);
  font-family: var(--font-sans);
}
.search-form-main input::placeholder { color: var(--text-light); font-style: italic; }
.search-form-main button {
  background: none; border: none; cursor: pointer;
  color: var(--text-light); padding: 0; transition: color var(--transition);
}
.search-form-main button:hover { color: var(--rose); }

/* Ações direita */
.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header-action-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 500;
  transition: color var(--transition);
  cursor: pointer;
  background: none;
  border: none;
}
.header-action-btn:hover { color: var(--rose); }
.header-action-btn span { white-space: nowrap; }
.admin-btn {
  background: var(--text-dark);
  color: var(--gold) !important;
  padding: 6px 14px;
  border-radius: 2px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.admin-btn:hover { background: var(--gold); color: var(--white) !important; }
.cart-icon { position: relative; }
.cart-badge {
  position: absolute;
  top: -8px; right: -8px;
  background: var(--rose);
  color: white;
  font-size: 0.6rem;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-direction: column;
  gap: 5px;
}
.menu-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

/* ===== MOBILE NAV ===== */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: var(--white);
  z-index: 2000;
  padding: 80px 40px 40px;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 1.2rem;
  font-family: var(--font-serif);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}
.mobile-nav-close {
  position: absolute;
  top: 24px; right: 24px;
  background: none; border: none;
  font-size: 1.5rem; cursor: pointer;
  color: var(--text);
}

/* ===== FLASH MESSAGES ===== */
.flash-messages {
  position: fixed;
  top: 20px; right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 360px;
}
.flash {
  padding: 14px 20px;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: var(--shadow);
  animation: slideIn 0.3s ease;
}
.flash-success { background: #1a1a1a; color: white; }
.flash-error { background: #c0392b; color: white; }
.flash-info { background: var(--rose); color: white; }
.flash-close { background: none; border: none; cursor: pointer; color: inherit; font-size: 1rem; opacity: 0.7; }
@keyframes slideIn { from { transform: translateX(100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }

/* ===== HERO CAROUSEL ===== */
.hero-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: 82vh;
  min-height: 450px;
}
.hero-carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.hero-carousel-slide {
  flex: 0 0 100%;
  position: relative;
  height: 100%;
  overflow: hidden;
  background: var(--off-white);
}
.hero-carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  background: var(--off-white);
}
.hero-slide-video {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-slide-video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.hero-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(0,0,0,0.35);
  color: #fff;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.hero-carousel-btn:hover { background: rgba(0,0,0,0.6); }
.hero-prev { left: 14px; }
.hero-next { right: 14px; }
.hero-dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}
.hero-dot.active {
  background: #fff;
  transform: scale(1.35);
}
/* keep old alias so any stale reference still works */
.hero {
  position: relative;
  height: 82vh;
  min-height: 450px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.55) 100%);
  z-index: 1;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 0 20px;
  max-width: 700px;
}
.hero-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 20px;
  display: block;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 24px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.hero-title em { font-style: italic; color: var(--gold-light); }
.hero-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 40px;
  letter-spacing: 0.5px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-logo-name {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 400;
  letter-spacing: 8px;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
  text-shadow: 0 2px 30px rgba(0,0,0,0.6);
}
.hero-logo-sub {
  font-size: 0.72rem;
  letter-spacing: 10px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 28px;
  font-weight: 400;
}
.btn-gold {
  background: var(--gold);
  color: var(--white);
  border: 2px solid var(--gold);
  padding: 14px 32px;
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.btn-gold:hover { background: transparent; color: var(--gold); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 36px;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  border-radius: 0;
}
.btn-primary {
  background: var(--rose);
  color: var(--white);
}
.btn-primary:hover { background: var(--rose-dark); transform: translateY(-1px); box-shadow: 0 4px 20px rgba(191,128,117,0.4); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.6);
}
.btn-outline:hover { background: var(--white); color: var(--primary); border-color: var(--white); }
.btn-dark {
  background: var(--primary);
  color: var(--white);
}
.btn-dark:hover { background: #333; transform: translateY(-1px); }
.btn-outline-dark {
  background: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
}
.btn-outline-dark:hover { background: var(--primary); color: var(--white); }
.btn-gold {
  background: var(--rose);
  color: white;
  width: 100%;
}
.btn-gold:hover { background: var(--rose-dark); }
.btn-sm { padding: 10px 24px; font-size: 0.7rem; }
.btn-full { width: 100%; }

/* ===== SECTIONS ===== */
.section { padding: 80px 0; }
.section-sm { padding: 50px 0; }
.container { max-width: 1400px; margin: 0 auto; padding: 0 40px; }

.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 12px;
  display: block;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--primary);
  margin-bottom: 16px;
}
.section-line {
  width: 60px;
  height: 1px;
  background: var(--rose);
  margin: 0 auto;
}

/* ===== MAIN NAV DROPDOWN ===== */
.main-nav {
  background: var(--primary);
  position: relative;
  z-index: 200;
  overflow: visible;
}
.main-nav-inner {
  display: flex;
  align-items: stretch;
  justify-content: center;
  overflow: visible;
}
.nav-group { position: relative; }
.nav-group-label {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 14px 22px;
  color: rgba(255,255,255,0.75);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  white-space: nowrap;
  border-right: 1px solid rgba(255,255,255,0.1);
  transition: all var(--transition);
}
.nav-group:first-child .nav-group-label { border-left: 1px solid rgba(255,255,255,0.1); }
.nav-group:hover .nav-group-label,
.nav-group-label.active { color: var(--white); background: rgba(255,255,255,0.08); }
.nav-chevron { transition: transform 0.2s; opacity: 0.6; }
.nav-group:hover .nav-chevron { transform: rotate(180deg); opacity: 1; }

.nav-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 160px;
  background: #fff;
  box-shadow: 0 8px 32px rgba(0,0,0,0.13);
  border-top: 2px solid var(--primary);
  z-index: 300;
}
.nav-group:hover .nav-dropdown { display: block; }
.nav-dropdown-inner { padding: 8px 0; }
.nav-drop-item {
  display: block;
  padding: 10px 24px;
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.3px;
  white-space: nowrap;
  transition: all 0.15s;
}
.nav-drop-item:hover, .nav-drop-item.active {
  background: var(--light-bg);
  color: var(--primary);
  padding-left: 30px;
}

/* Mobile nav groups */
.mobile-nav-group { border-bottom: 1px solid rgba(255,255,255,0.08); }
.mobile-nav-group-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 12px 0;
  background: none;
  border: none;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  font-size: 1.2rem;
  font-family: var(--font-serif);
  cursor: pointer;
}
.mobile-nav-sub { display: none; padding: 4px 0 8px 16px; }
.mobile-nav-group.open .mobile-nav-sub { display: block; }
.mobile-nav-group.open .mobile-nav-group-btn svg { transform: rotate(180deg); }
.mobile-nav-sub a { display: block; padding: 9px 0; color: var(--text-light); font-size: 0.9rem; border-bottom: none !important; }
.mobile-nav-sub a:first-child { color: var(--primary); font-size: 0.8rem; font-weight: 600; }

/* ===== CATEGORIES STRIP (legado) ===== */
.categories-strip { background: var(--primary); }
.categories-strip .container {
  display: flex;
  align-items: center;
  gap: 0;
  overflow-x: auto;
  padding-top: 0;
  padding-bottom: 0;
  scrollbar-width: none;
  justify-content: center;
}
.categories-strip .container::-webkit-scrollbar { display: none; }
.cat-link {
  display: flex;
  align-items: center;
  padding: 14px 24px;
  font-size: 0.72rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  white-space: nowrap;
  font-weight: 500;
  border-right: 1px solid rgba(255,255,255,0.1);
  transition: all var(--transition);
}
.cat-link:first-child { border-left: 1px solid rgba(255,255,255,0.1); }
.cat-link:hover, .cat-link.active { color: var(--white); background: rgba(255,255,255,0.08); }

/* ===== HOME SPOTLIGHT SECTIONS ===== */
.section-title-plain {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 10px;
}
.home-spotlight .products-grid { gap: 2px; }

/* 3 fotos centradas com mesmo tamanho de coluna do grid de 4 */
.spotlight-grid-3 {
  grid-template-columns: repeat(3, 1fr) !important;
  max-width: 75%;
  margin: 0 auto;
}
/* 4 fotos centradas */
.spotlight-grid-4 {
  max-width: 100%;
  margin: 0 auto;
}
.product-prices-detail {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.price-installment {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--text);
}
.price-pix {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
}

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

/* ===== PRODUCT CARD ===== */
.product-card {
  background: var(--white);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.product-card:hover .product-img img { transform: scale(1.06); }
.product-card:hover .product-actions { opacity: 1; transform: translateY(0); }

.product-img {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--gray-light);
}
.product-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-img-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--nude), var(--beige));
}
.product-img-placeholder svg { opacity: 0.3; }

.product-badge {
  position: absolute;
  top: 16px; left: 16px;
  padding: 4px 10px;
  font-size: 0.65rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 700;
  z-index: 2;
}
.badge-sale { background: var(--primary); color: white; }
.badge-new { background: var(--rose); color: white; }

.product-actions {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 0;
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--transition);
  z-index: 3;
}
.product-actions .btn {
  width: 100%;
  background: var(--rose);
  color: white;
  font-size: 0.7rem;
  padding: 14px;
  letter-spacing: 2px;
  border-radius: 0;
}
.product-actions .btn:hover { background: var(--rose-dark); }

.wishlist-btn {
  position: absolute;
  top: 16px; right: 16px;
  background: white;
  border: none;
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  opacity: 0;
  transition: all var(--transition);
  z-index: 3;
}
.product-card:hover .wishlist-btn { opacity: 1; }
.wishlist-btn:hover { background: var(--rose); color: white; }

.product-info {
  padding: 16px 12px 20px;
}
.product-category {
  font-size: 0.65rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 6px;
}
.product-name {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 10px;
  line-height: 1.3;
}
.product-name a:hover { color: var(--rose); }
.product-prices { display: flex; align-items: center; gap: 10px; }
.product-price {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
}
.product-original-price {
  font-size: 0.85rem;
  color: var(--gray);
  text-decoration: line-through;
}
.product-discount {
  font-size: 0.7rem;
  color: #c0392b;
  font-weight: 700;
}

/* ===== BANNER STRIP ===== */
.banner-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin: 2px 0;
}
.banner-item {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: linear-gradient(135deg, #2c1a0e, #4a3020);
  display: flex;
  align-items: flex-end;
}
.banner-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.banner-item:hover img { transform: scale(1.04); }
.banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
}
.banner-content {
  position: absolute;
  bottom: 32px; left: 40px;
  color: white;
  z-index: 2;
}
.banner-content h3 { font-family: var(--font-serif); font-size: 1.8rem; margin-bottom: 8px; }
.banner-content p { font-size: 0.8rem; opacity: 0.8; margin-bottom: 16px; }

/* ===== PROMO BANNERS ===== */
.banner-ultimas-bg {
  background: linear-gradient(135deg, #3d2b1f 0%, #7a5c3d 40%, #b8956a 100%);
}
.banner-sale-bg {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}
.banner-overlay-dark {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.45) 0%, transparent 70%);
  z-index: 1;
}

/* ===== BANNER CAROUSEL ===== */
.banner-carousel-section { width: 100%; overflow: hidden; }
.banner-carousel { position: relative; width: 100%; overflow: hidden; }
.banner-carousel-track {
  display: flex;
  transition: transform 0.5s ease;
  will-change: transform;
}
.banner-carousel-slide { flex: 0 0 100%; }
.banner-carousel-slide img {
  width: 100%;
  display: block;
  object-fit: cover;
  max-height: 520px;
}
.banner-carousel-btn {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(0,0,0,0.35);
  color: white;
  border: none;
  font-size: 2rem;
  width: 44px; height: 44px;
  cursor: pointer;
  z-index: 10;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
  line-height: 1;
}
.banner-carousel-btn:hover { background: rgba(0,0,0,0.6); }
.banner-prev { left: 12px; }
.banner-next { right: 12px; }
.banner-dots {
  position: absolute;
  bottom: 12px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px;
}
.banner-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  padding: 0;
}
.banner-dot.active { background: white; transform: scale(1.3); }

/* Nova seção promo — retrato */
.promo-section { background: var(--white); }
.promo-banners-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 820px;
  margin: 0 auto;
}
.promo-banner-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  display: block;
  cursor: pointer;
  text-decoration: none;
}
.promo-banner-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.promo-banner-card:hover img { transform: scale(1.04); }
.promo-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.08) 55%, transparent 100%);
  z-index: 1;
}
.banner-promo-text {
  position: absolute;
  bottom: 32px;
  left: 28px;
  z-index: 2;
  color: #fff;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0;
  text-shadow: 0 2px 12px rgba(0,0,0,0.35);
}

/* ===== FEATURES STRIP ===== */
.features-strip {
  background: var(--primary);
  color: white;
  padding: 40px 0;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}
.feature-item svg { margin: 0 auto 12px; opacity: 0.7; }
.feature-item h4 {
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.feature-item p { font-size: 0.8rem; opacity: 0.6; }

/* ===== NEWSLETTER ===== */
.newsletter {
  background: var(--beige);
  text-align: center;
  padding: 80px 0;
}
.newsletter h2 { font-family: var(--font-serif); font-size: 2.2rem; margin-bottom: 12px; }
.newsletter p { color: var(--text-light); margin-bottom: 32px; font-size: 0.95rem; }
.newsletter-form {
  display: flex;
  max-width: 440px;
  margin: 0 auto;
  gap: 0;
}
.newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  border: 1px solid var(--border);
  border-right: none;
  font-size: 0.85rem;
  outline: none;
  background: white;
}
.newsletter-form input:focus { border-color: var(--rose); }
.newsletter-form button {
  background: var(--primary);
  color: white;
  border: none;
  padding: 14px 28px;
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  font-weight: 600;
  transition: background var(--transition);
}
.newsletter-form button:hover { background: var(--rose-dark); }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--primary);
  color: rgba(255,255,255,0.75);
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  justify-content: center;
  gap: 50px;
  margin-bottom: 50px;
}
.footer-brand .logo-text { color: white; font-size: 1.4rem; }
.footer-brand .logo-subtitle { color: var(--rose); }
.footer-brand p { font-size: 0.85rem; margin-top: 16px; line-height: 1.7; max-width: 340px; text-align: justify; }
.footer-social { display: flex; gap: 12px; margin-top: 24px; }
.footer-social a {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all var(--transition);
  font-size: 0.85rem;
}
.footer-social a:hover { background: var(--rose); border-color: var(--rose); }

.footer-col h5 {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 20px;
  font-weight: 600;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--white); }
.footer-col p { font-size: 0.85rem; line-height: 1.8; }
.footer-col p strong { color: white; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
}
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { color: rgba(255,255,255,0.4); transition: color var(--transition); }
.footer-bottom-links a:hover { color: var(--rose); }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 30px; right: 30px;
  z-index: 999;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all var(--transition);
  color: white;
}
.whatsapp-float:hover { transform: scale(1.1); background: #128C7E; }
.whatsapp-float svg { width: 28px; height: 28px; }

/* ===== PRODUCT PAGE ===== */
.product-detail { padding: 60px 0 80px; }
.breadcrumb {
  font-size: 0.75rem;
  color: var(--gray);
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.breadcrumb a { color: var(--gray); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--rose); }
.breadcrumb span { color: var(--border); }

.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.product-gallery { position: sticky; top: 100px; }
.gallery-main {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--gray-light);
  margin-bottom: 12px;
  cursor: zoom-in;
}
.gallery-main img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-main:hover img { transform: scale(1.05); }
.gallery-thumbs {
  display: flex;
  gap: 8px;
}
.gallery-thumb {
  width: 80px;
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color var(--transition);
}
.gallery-thumb.active { border-color: var(--rose); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }

.product-info-page { padding: 10px 0; }
.product-info-page .product-category { font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase; color: var(--rose); margin-bottom: 12px; display: block; }
.product-info-page h1 { font-family: var(--font-serif); font-size: 2.2rem; margin-bottom: 20px; font-weight: 500; }
.product-info-page .price-area { margin-bottom: 28px; }
.price-current { font-size: 1.8rem; font-weight: 600; color: var(--primary); }
.price-original { font-size: 1.1rem; color: var(--gray); text-decoration: line-through; margin-left: 10px; }
.price-installments { font-size: 0.85rem; color: var(--text-light); margin-top: 4px; }

.product-divider { height: 1px; background: var(--border); margin: 24px 0; }

.option-label {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.option-label span { font-weight: 400; color: var(--rose); }

.size-options, .color-options { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.size-btn {
  min-width: 48px; height: 48px;
  padding: 0 12px;
  border: 1px solid var(--border);
  background: white;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 500;
  transition: all var(--transition);
  color: var(--text);
}
.size-btn:hover, .size-btn.selected { border-color: var(--primary); background: var(--primary); color: white; }
.color-swatch {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.swatch-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--swatch-color, #ccc);
  border: 2px solid transparent;
  outline: 2px solid transparent;
  transition: outline 0.15s, border 0.15s;
  display: block;
}
.swatch-label {
  font-size: 0.7rem;
  color: var(--text-light);
  font-family: var(--font-sans);
}
.color-swatch:hover .swatch-circle,
.color-swatch.selected .swatch-circle {
  outline: 2px solid var(--rose);
  outline-offset: 2px;
  border-color: white;
}

.qty-control {
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
  width: fit-content;
  margin-bottom: 24px;
}
.qty-control button {
  width: 44px; height: 44px;
  background: none; border: none;
  cursor: pointer; font-size: 1.2rem;
  color: var(--text);
  transition: background var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.qty-control button:hover { background: var(--gray-light); }
.qty-control input {
  width: 60px; height: 44px;
  text-align: center;
  border: none;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  font-size: 0.95rem;
  font-weight: 500;
  outline: none;
}

.add-to-cart-section { display: flex; gap: 12px; margin-bottom: 24px; }
.add-to-cart-section .btn { flex: 1; }

.product-meta { font-size: 0.8rem; color: var(--text-light); }
.product-meta span { margin-right: 20px; }
.product-meta strong { color: var(--text); }

.product-desc { padding: 40px 0 0; }
.product-tabs { display: flex; gap: 0; border-bottom: 1px solid var(--border); margin-bottom: 24px; }
.tab-btn {
  padding: 12px 24px;
  background: none; border: none;
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  color: var(--gray);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: all var(--transition);
  font-family: var(--font-sans);
}
.tab-btn.active { color: var(--primary); border-bottom-color: var(--primary); }
.tab-content { display: none; font-size: 0.9rem; line-height: 1.8; color: var(--text-light); }
.tab-content.active { display: block; }

/* ===== CART PAGE ===== */
.cart-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 50px;
  align-items: start;
}
.cart-items { display: flex; flex-direction: column; gap: 1px; }
.cart-item {
  background: var(--off-white);
  padding: 24px;
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 20px;
  align-items: center;
}
.cart-item-img {
  width: 100px;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--gray-light);
}
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-name { font-family: var(--font-serif); font-size: 1.1rem; margin-bottom: 6px; }
.cart-item-meta { font-size: 0.78rem; color: var(--text-light); margin-bottom: 12px; }
.cart-item-price { font-size: 1rem; font-weight: 600; color: var(--primary); }
.cart-item-actions { display: flex; flex-direction: column; align-items: flex-end; gap: 12px; }
.cart-remove {
  background: none; border: none; cursor: pointer;
  font-size: 0.7rem; color: var(--gray);
  letter-spacing: 1px; text-transform: uppercase;
  transition: color var(--transition);
}
.cart-remove:hover { color: #c0392b; }

.cart-summary {
  background: var(--off-white);
  padding: 36px;
  position: sticky;
  top: 100px;
}
.cart-summary h3 { font-family: var(--font-serif); font-size: 1.4rem; margin-bottom: 28px; }
.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--border);
}
.summary-total {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  padding: 16px 0 0;
  border: none;
}
.summary-total .label { font-family: var(--font-serif); }
.coupon-form { display: flex; gap: 0; margin: 20px 0; }
.coupon-form input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-right: none;
  font-size: 0.85rem;
  outline: none;
}
.coupon-form button {
  padding: 12px 20px;
  background: var(--primary);
  color: white;
  border: none;
  cursor: pointer;
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
  transition: background var(--transition);
}
.coupon-form button:hover { background: var(--rose-dark); }

/* ===== CHECKOUT ===== */
.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 50px;
  align-items: start;
  padding: 50px 0 80px;
}
.checkout-form h2 { font-family: var(--font-serif); font-size: 1.6rem; margin-bottom: 28px; }
.form-section { margin-bottom: 40px; }
.form-section h3 { font-size: 0.75rem; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 20px; color: var(--rose); padding-bottom: 10px; border-bottom: 1px solid var(--border); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-row-3 { grid-template-columns: 1fr 1fr 1fr; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 0.72rem; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 600; color: var(--text); }
.form-group input, .form-group select, .form-group textarea {
  padding: 13px 16px;
  border: 1px solid var(--border);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition);
  background: white;
  color: var(--text);
  font-family: var(--font-sans);
}
.form-group input:focus, .form-group select:focus { border-color: var(--rose); }

.payment-options { display: flex; flex-direction: column; gap: 12px; }
.payment-option {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all var(--transition);
}
.payment-option:has(input:checked) { border-color: var(--rose); background: rgba(184,151,90,0.05); }
.payment-option input { accent-color: var(--rose); }
.payment-option-info h4 { font-size: 0.9rem; font-weight: 600; }
.payment-option-info p { font-size: 0.78rem; color: var(--text-light); }

.order-summary-box { background: var(--off-white); padding: 36px; position: sticky; top: 100px; }
.order-summary-box h3 { font-family: var(--font-serif); font-size: 1.3rem; margin-bottom: 24px; }
.order-item-row { display: flex; align-items: center; gap: 14px; padding: 12px 0; border-bottom: 1px solid var(--border); }
.order-item-img { width: 60px; aspect-ratio: 3/4; background: var(--gray-light); overflow: hidden; flex-shrink: 0; }
.order-item-img img { width: 100%; height: 100%; object-fit: cover; }
.order-item-name { font-size: 0.85rem; font-weight: 600; }
.order-item-meta { font-size: 0.75rem; color: var(--text-light); }
.order-item-price { font-size: 0.9rem; font-weight: 600; margin-left: auto; }

/* ===== ORDERS PAGE ===== */
.orders-list { display: flex; flex-direction: column; gap: 16px; padding: 50px 0 80px; }
.order-card {
  border: 1px solid var(--border);
  padding: 28px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
}
.order-number { font-family: var(--font-serif); font-size: 1.2rem; }
.order-date { font-size: 0.8rem; color: var(--text-light); margin-top: 4px; }
.order-status {
  display: inline-block;
  padding: 4px 14px;
  font-size: 0.68rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 2px;
  margin-top: 8px;
}
.status-pending { background: #fff3cd; color: #856404; }
.status-processing { background: #cfe2ff; color: #0a3f6e; }
.status-shipped { background: #d1ecf1; color: #0c5460; }
.status-delivered { background: #d4edda; color: #155724; }
.status-cancelled { background: #f8d7da; color: #721c24; }

/* ===== AUTH PAGES ===== */
.auth-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  background: var(--off-white);
}
.auth-box {
  background: white;
  padding: 56px;
  width: 100%;
  max-width: 480px;
  box-shadow: var(--shadow);
}
.auth-logo { text-align: center; margin-bottom: 36px; }
.auth-box h2 { font-family: var(--font-serif); font-size: 2rem; text-align: center; margin-bottom: 8px; }
.auth-box p { text-align: center; color: var(--text-light); font-size: 0.88rem; margin-bottom: 32px; }
.auth-footer { text-align: center; margin-top: 24px; font-size: 0.85rem; color: var(--text-light); }
.auth-footer a { color: var(--rose); font-weight: 600; }

/* ===== CATEGORY PAGE ===== */
.category-hero {
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
  padding: 50px 0;
  text-align: center;
}
.category-hero h1 { font-family: var(--font-serif); font-size: 2.8rem; margin-bottom: 8px; }
.category-hero p { color: var(--text-light); font-size: 0.9rem; }

.category-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
  padding: 50px 0 80px;
  align-items: start;
}
.filters-panel { position: sticky; top: 100px; }
.filter-drawer-header { display: none; }
.mobile-filter-bar { display: none; }
.filter-drawer-overlay { display: none; }
.filter-group { margin-bottom: 32px; border-bottom: 1px solid var(--border); padding-bottom: 24px; }
.filter-title {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}
.sort-select {
  padding: 10px 14px;
  border: 1px solid var(--border);
  font-size: 0.85rem;
  outline: none;
  background: white;
  cursor: pointer;
  width: 100%;
  font-family: var(--font-sans);
}

.products-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.products-count { font-size: 0.85rem; color: var(--text-light); }
.category-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

/* ===== PAGINATION ===== */
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--border); }
.page-btn {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--text);
  transition: all var(--transition);
  cursor: pointer;
  background: white;
  text-decoration: none;
}
.page-btn:hover, .page-btn.active { background: var(--primary); color: white; border-color: var(--primary); }

/* ===== PAGE TITLE ===== */
.page-hero {
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
  padding: 48px 0;
}
.page-hero h1 { font-family: var(--font-serif); font-size: 2.4rem; }

/* ===== PAGES DE CONTEÚDO ===== */
.page-content-wrap {
  max-width: 800px;
  margin: 0 auto;
  padding: 64px 24px 80px;
}
.page-content-title {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 40px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}
.page-text p {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--text);
  margin-bottom: 16px;
  text-align: justify;
}
.page-text h2 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
  margin: 36px 0 12px;
}
.page-text ul {
  padding-left: 20px;
  margin-bottom: 16px;
}
.page-text ul li {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--text);
  margin-bottom: 10px;
  text-align: justify;
}
.page-text a { color: var(--rose); text-decoration: underline; }
.page-content-back {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.page-content-back a {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* ===== EMPTY STATE ===== */
.empty-state {
  text-align: center;
  padding: 80px 40px;
  color: var(--text-light);
}
.empty-state svg { margin: 0 auto 24px; opacity: 0.3; }
.empty-state h3 { font-family: var(--font-serif); font-size: 1.8rem; margin-bottom: 12px; color: var(--text); }
.empty-state p { margin-bottom: 28px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px 48px; }
}

@media (max-width: 1024px) {
  .header-main { padding: 0 24px; gap: 20px; }
  .top-bar-inner { padding: 0 24px; }
  .container { padding: 0 24px; }
  .product-layout { grid-template-columns: 1fr; gap: 40px; }
  .product-gallery { position: static; }
  .cart-layout { grid-template-columns: 1fr; }
  .checkout-layout { grid-template-columns: 1fr; }
  .category-layout { grid-template-columns: 1fr; }
  /* drawer mode no mobile */
  .filters-panel {
    position: fixed;
    top: 0; left: 0;
    width: 300px;
    height: 100vh;
    background: #fff;
    z-index: 1200;
    overflow-y: auto;
    padding: 24px 20px 40px;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    box-shadow: 4px 0 24px rgba(0,0,0,0.12);
  }
  .filters-panel.open { transform: translateX(0); }
  .filter-drawer-overlay {
    display: none;
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 1100;
  }
  .filter-drawer-overlay.open { display: block; }
  .filter-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
  }
  .filter-drawer-header h3 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 500;
  }
  .filter-drawer-close {
    background: none; border: none; cursor: pointer;
    padding: 4px; color: var(--text-light);
  }
  .mobile-filter-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    margin-bottom: 16px;
  }
  .mobile-filter-btn {
    display: flex; align-items: center; gap: 8px;
    padding: 9px 18px;
    border: 1px solid var(--border);
    background: #fff;
    font-size: 0.82rem;
    font-family: var(--font-sans);
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    color: var(--text);
  }
  .mobile-sort-select {
    flex: 1;
    padding: 9px 10px;
    border: 1px solid var(--border);
    font-size: 0.82rem;
    font-family: var(--font-sans);
    background: #fff;
    color: var(--text);
    outline: none;
  }
  .filter-drawer-header { display: flex; }
  .mobile-filter-bar { display: flex; }
  .products-header { display: none; }
  .category-layout > div { order: 1; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .category-products-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .top-bar { display: none; }
  .header-main {
    grid-template-columns: auto 1fr auto;
    height: 64px;
    padding: 0 16px;
    gap: 12px;
  }
  .search-form-main { display: none; }
  .menu-toggle { display: flex; }
  .header-actions { gap: 12px; }
  .header-action-btn span { display: none; }
  .logo-text { font-size: 1.3rem; letter-spacing: 2px; }
  .logo-subtitle { display: none; }
  .categories-strip { display: none; }
  .main-nav { display: none; }
  .hero, .hero-carousel { height: 55vh; min-height: 360px; }
  .banner-strip { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .auth-box { padding: 36px 28px; }
  .form-row { grid-template-columns: 1fr; }
  .form-row-3 { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  /* spotlight como carrossel horizontal no mobile */
  .spotlight-grid-3, .spotlight-grid-4 {
    display: flex !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 12px !important;
    max-width: 100% !important;
    padding-bottom: 8px;
    scrollbar-width: none;
  }
  .spotlight-grid-3::-webkit-scrollbar,
  .spotlight-grid-4::-webkit-scrollbar { display: none; }
  .spotlight-grid-3 .product-card,
  .spotlight-grid-4 .product-card {
    flex: 0 0 62vw;
    max-width: 220px;
    scroll-snap-align: start;
  }
  .cart-item { grid-template-columns: 80px 1fr; }
  .cart-item-actions { grid-column: 1/-1; flex-direction: row; justify-content: space-between; }
  .section { padding: 50px 0; }
  .section-header { margin-bottom: 36px; }
  .banner-promo-text { font-size: clamp(1.8rem, 7vw, 2.8rem); bottom: 20px; left: 20px; }
  .promo-banners-grid { gap: 12px; max-width: 100%; }
  .newsletter { padding: 50px 0; }
  .home-spotlight .products-grid-3 { gap: 12px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form input { border-right: 1px solid var(--border); }
  .newsletter-form button { padding: 14px; }
  .products-grid { gap: 1px; }
  .header-main { padding: 0 12px; }
}
/* ===== TELAS LARGAS (1440px+, inclui 1920px) ===== */
@media (min-width: 1440px) {
  .container { max-width: 1760px; padding: 0 80px; }
  .top-bar-inner { max-width: 1760px; padding: 0 80px; }
  .header-main { max-width: 1760px; padding: 0 80px; }
  .products-grid { grid-template-columns: repeat(5, 1fr); }
  .products-grid-3 { grid-template-columns: repeat(4, 1fr); }
  .home-spotlight .products-grid { gap: 2px; }
  .category-products-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .nav-group-label { padding: 14px 28px; font-size: 0.72rem; letter-spacing: 2px; }
}

/* ===== VIEWPORT BAIXO (700px alt. — ex.: 1920×700) ===== */
@media (max-height: 780px) and (min-width: 769px) {
  .hero, .hero-carousel { height: 65vh; min-height: 360px; }
  .hero-logo-name { font-size: clamp(2rem, 5vw, 4rem); }
  .hero-logo-sub { font-size: 0.65rem; margin-bottom: 18px; }
  .hero-desc { margin-bottom: 24px; font-size: 0.9rem; }
  .header-main { height: 72px; }
  .main-nav .nav-group-label { padding: 10px 18px; }
  .section { padding: 48px 0; }
  .section-header { margin-bottom: 32px; }
  .top-bar { padding: 5px 0; }
  .newsletter { padding: 48px 0; }
}

.size-esgotado { opacity: 0.4; cursor: not-allowed !important; text-decoration: line-through; }
