/* Páscoa Feliz - Estilos principais */

/* ===================== RESET & BASE ===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', sans-serif;
  color: #222;
  background: #fff;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ===================== VARIABLES ===================== */
:root {
  --purple: #8B5CF6;
  --purple-dark: #6D28D9;
  --purple-light: #DDD6FE;
  --purple-pale: #F5F3FF;
  --gold: #D97706;
  --gold-light: #FEF3C7;
  --black: #111111;
  --gray: #555555;
  --gray-light: #f5f5f5;
  --white: #ffffff;
  --radius: 12px;
  --shadow: 0 4px 20px rgba(0,0,0,0.10);
  --transition: 0.3s ease;
}

/* ===================== TYPOGRAPHY ===================== */
h1, h2, h3 { font-family: 'Playfair Display', serif; }

/* ===================== COOKIE BANNER ===================== */
#cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--black); color: #fff;
  padding: 14px 24px;
  display: flex; align-items: center; justify-content: center; gap: 20px;
  z-index: 9999; font-size: 13px;
  flex-wrap: wrap; text-align: center;
}
#cookie-banner a { color: var(--purple); text-decoration: underline; }
#cookie-banner button {
  background: var(--purple); color: #fff;
  padding: 8px 22px; border-radius: 30px;
  font-size: 13px; font-weight: 600; white-space: nowrap;
}
#cookie-banner button:hover { background: var(--purple-dark); }

/* ===================== TOPBAR ===================== */
.topbar {
  background: var(--purple);
  color: #fff;
  text-align: center;
  font-size: 13px;
  padding: 8px 16px;
  font-weight: 500;
}
.topbar strong { font-weight: 700; }

/* ===================== HEADER ===================== */
header {
  background: var(--black);
  position: sticky; top: 0; z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.header-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 24px; height: 70px; gap: 16px;
}

/* Logo */
.logo {
  display: flex; align-items: center; gap: 10px;
  flex-shrink: 0;
}
.logo-icon {
  width: 44px; height: 44px;
  background: var(--purple);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
}
.logo-text { color: #fff; }
.logo-text .name {
  font-family: 'Playfair Display', serif;
  font-size: 20px; font-weight: 700;
  line-height: 1.1;
}
.logo-text .sub {
  font-size: 10px; letter-spacing: 2px;
  color: var(--purple); text-transform: uppercase;
}

/* Search bar */
.header-search {
  flex: 1; max-width: 420px;
  position: relative;
}
.header-search input {
  width: 100%; padding: 10px 44px 10px 16px;
  border-radius: 30px; border: 2px solid transparent;
  background: #2a2a2a; color: #fff;
  font-size: 14px; font-family: inherit;
  outline: none; transition: var(--transition);
}
.header-search input::placeholder { color: #888; }
.header-search input:focus { border-color: var(--purple); background: #1a1a1a; }
.header-search .search-btn {
  position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
  color: var(--purple); font-size: 18px; line-height: 1;
}

/* Header actions */
.header-actions {
  display: flex; align-items: center; gap: 8px;
}
.header-btn {
  display: flex; align-items: center; gap: 6px;
  color: #fff; padding: 8px 14px;
  border-radius: 30px; font-size: 13px;
  transition: var(--transition); white-space: nowrap;
}
.header-btn:hover { background: #2a2a2a; }
.header-btn svg { width: 20px; height: 20px; flex-shrink: 0; }
.header-btn .btn-label { display: flex; flex-direction: column; line-height: 1.2; }
.header-btn .btn-label small { font-size: 10px; color: #aaa; }
.header-btn .btn-label span { font-size: 13px; font-weight: 500; }

/* Cart btn */
.cart-btn {
  position: relative;
  background: var(--purple); color: #fff !important;
  padding: 10px 18px; border-radius: 30px;
  font-weight: 600;
}
.cart-btn:hover { background: var(--purple-dark) !important; }
.cart-count {
  position: absolute; top: -4px; right: -4px;
  background: #fff; color: var(--purple);
  border-radius: 50%; width: 20px; height: 20px;
  font-size: 11px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  padding: 8px; cursor: pointer;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: #fff; border-radius: 2px;
  transition: var(--transition);
}

/* ===================== NAV ===================== */
nav {
  background: #fff;
  border-bottom: 2px solid var(--purple-light);
}
.nav-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  padding: 0 24px;
  gap: 4px;
  overflow-x: auto;
}
.nav-inner::-webkit-scrollbar { height: 0; }
.nav-link {
  white-space: nowrap;
  padding: 14px 18px;
  font-size: 14px; font-weight: 500;
  color: #333;
  border-bottom: 3px solid transparent;
  transition: var(--transition);
}
.nav-link:hover, .nav-link.active {
  color: var(--purple);
  border-bottom-color: var(--purple);
}
.nav-especial { color: var(--gold) !important; font-weight: 700 !important; }

/* ===================== MOBILE MENU ===================== */
.mobile-menu {
  display: none;
  position: fixed; top: 0; left: 0; bottom: 0;
  width: 300px; background: #fff;
  z-index: 2000; flex-direction: column;
  box-shadow: 4px 0 30px rgba(0,0,0,0.2);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-header {
  background: var(--black); padding: 20px 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.mobile-menu-header .logo-text .name { color: #fff; font-size: 18px; }
.close-menu { color: #fff; font-size: 24px; line-height: 1; }
.mobile-nav { flex: 1; overflow-y: auto; padding: 16px 0; }
.mobile-nav a {
  display: block; padding: 14px 24px;
  font-size: 15px; border-bottom: 1px solid #f0f0f0;
  transition: var(--transition);
}
.mobile-nav a:hover { background: var(--purple-pale); color: var(--purple); }
.mobile-menu-footer {
  padding: 20px 24px; background: var(--gray-light);
}
.mobile-menu-footer .mobile-login-btn {
  width: 100%; padding: 12px;
  background: var(--purple); color: #fff;
  border-radius: 30px; font-size: 15px; font-weight: 600;
  text-align: center; margin-bottom: 12px; display: block;
}
.mobile-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1999;
}
.mobile-overlay.open { display: block; }

/* ===================== HERO CAROUSEL ===================== */
.hero {
  position: relative; overflow: hidden;
  background: var(--black);
}
.hero-slides { display: flex; transition: transform 0.6s ease; }
.hero-slide {
  min-width: 100%;
  height: 480px;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
}
.hero-slide-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.hero-slide-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.72) 40%, rgba(0,0,0,0.1) 100%);
}
.hero-content {
  position: relative; z-index: 1;
  padding: 0 60px; max-width: 600px;
  color: #fff;
}
.hero-tag {
  display: inline-block;
  background: var(--purple); color: #fff;
  padding: 4px 16px; border-radius: 30px;
  font-size: 12px; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: 16px;
}
.hero-content h1 {
  font-size: 48px; line-height: 1.15;
  margin-bottom: 16px;
}
.hero-content p {
  font-size: 17px; color: rgba(255,255,255,0.85);
  margin-bottom: 28px; line-height: 1.6;
}
.hero-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.15); color: #fff;
  padding: 10px 22px; border-radius: 6px;
  font-size: 14px; font-weight: 600;
  border: 1.5px solid rgba(255,255,255,0.55);
  transition: var(--transition);
  backdrop-filter: blur(4px);
}
.hero-cta:hover { background: rgba(255,255,255,0.28); }
.hero-dots {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 2;
}
.hero-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.4); transition: var(--transition);
  cursor: pointer;
}
.hero-dot.active { background: var(--purple); width: 24px; border-radius: 4px; }

/* ===================== SECTION HEADER ===================== */
.section-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 28px; padding: 0 8px;
}
.section-title { font-size: 28px; color: var(--black); line-height: 1.2; }
.section-title span { color: var(--purple); }
.see-all {
  font-size: 14px; color: var(--purple); font-weight: 600;
  white-space: nowrap; padding: 8px 20px;
  border: 2px solid var(--purple); border-radius: 30px;
  transition: var(--transition);
}
.see-all:hover { background: var(--purple); color: #fff; }

/* ===================== PRODUCT SECTIONS ===================== */
.products-section { padding: 60px 24px; }
.products-section:nth-child(even) { background: var(--gray-light); }
.products-inner { max-width: 1280px; margin: 0 auto; }

/* Carousel */
.carousel-wrapper { position: relative; }
.carousel-track-outer { overflow: hidden; }
.carousel-track {
  display: flex; gap: 20px;
  transition: transform 0.4s ease;
}
.carousel-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: #fff; box-shadow: var(--shadow);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--black);
  z-index: 10; transition: var(--transition);
  border: 1px solid #eee;
}
.carousel-arrow:hover { background: var(--purple); color: #fff; border-color: var(--purple); }
.carousel-arrow.left { left: -22px; }
.carousel-arrow.right { right: -22px; }

/* Product card */
.product-card {
  flex: 0 0 calc(25% - 15px);
  background: #fff; border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative; cursor: pointer;
}
.product-card:hover { transform: translateY(-6px); box-shadow: 0 12px 36px rgba(0,0,0,0.15); }
.product-img-wrap { position: relative; overflow: hidden; height: 220px; }
.product-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.product-card:hover .product-img-wrap img { transform: scale(1.08); }
.product-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--purple); color: #fff;
  padding: 4px 12px; border-radius: 20px; font-size: 11px; font-weight: 700;
  text-transform: uppercase;
}
.product-badge.new { background: #2ecc71; }
.product-badge.off { background: #e74c3c; }
.product-fav {
  position: absolute; top: 12px; right: 12px;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.9);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: #ccc; transition: var(--transition);
}
.product-fav:hover, .product-fav.active { color: var(--purple); }
.product-info { padding: 16px; }
.product-name { font-weight: 600; font-size: 14px; margin-bottom: 6px; color: var(--black); line-height: 1.4; }
.product-desc { font-size: 12px; color: var(--gray); margin-bottom: 12px; line-height: 1.5; }
.product-footer { display: flex; align-items: center; justify-content: space-between; }
.product-price { display: flex; flex-direction: column; }
.price-original { font-size: 11px; color: #aaa; text-decoration: line-through; }
.price-current { font-size: 18px; font-weight: 700; color: var(--purple); line-height: 1; }
.add-cart-btn {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--purple); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; transition: var(--transition);
}
.add-cart-btn:hover { background: var(--purple-dark); transform: rotate(90deg); }

/* ===================== CATEGORIES STRIP ===================== */
.categories-strip { padding: 40px 24px 20px; background: var(--purple-pale); }
.categories-inner { max-width: 1280px; margin: 0 auto; }
.categories-grid {
  display: flex; gap: 16px; overflow-x: auto; padding-bottom: 8px;
}
.categories-grid::-webkit-scrollbar { height: 4px; }
.categories-grid::-webkit-scrollbar-thumb { background: var(--purple-light); border-radius: 2px; }
.cat-item {
  flex: 0 0 auto;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  cursor: pointer; transition: var(--transition);
}
.cat-item:hover { transform: translateY(-4px); }
.cat-circle {
  width: 80px; height: 80px; border-radius: 50%;
  overflow: hidden; border: 3px solid transparent;
  transition: var(--transition);
}
.cat-item:hover .cat-circle, .cat-item.active .cat-circle {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px var(--purple-light);
}
.cat-circle img { width: 100%; height: 100%; object-fit: cover; }
.cat-name { font-size: 13px; font-weight: 500; color: #333; text-align: center; }

/* ===================== PROMO BANNER ===================== */
.promo-banner {
  padding: 60px 24px;
  background: linear-gradient(135deg, var(--black) 50%, #1a0d3a 100%);
}
.promo-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
.promo-card {
  border-radius: var(--radius); overflow: hidden;
  position: relative; height: 280px;
  display: flex; align-items: flex-end;
  background-size: cover; background-position: center;
  cursor: pointer;
}
.promo-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 40%, transparent 100%);
}
.promo-card-content {
  position: relative; z-index: 1;
  padding: 28px; color: #fff;
}
.promo-card-content .tag {
  display: inline-block; background: var(--purple);
  padding: 4px 14px; border-radius: 20px;
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  margin-bottom: 10px;
}
.promo-card-content h3 { font-size: 24px; margin-bottom: 8px; }
.promo-card-content p { font-size: 13px; color: rgba(255,255,255,0.8); margin-bottom: 16px; }
.promo-card-content a {
  display: inline-block; padding: 9px 22px;
  background: #fff; color: var(--black);
  border-radius: 30px; font-size: 13px; font-weight: 700;
  transition: var(--transition);
}
.promo-card-content a:hover { background: var(--purple); color: #fff; }

/* ===================== EASTER PROMO BAR ===================== */
.easter-promo-bar {
  background: linear-gradient(135deg, #4C1D95, #7C3AED, #A78BFA);
  color: #fff;
  text-align: center;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
}
.easter-promo-bar a { color: #FDE68A; text-decoration: underline; }

/* ===================== TOPBAR (overwrite for index inline) ===================== */
.topbar-pascoa {
  background: var(--black);
  color: #aaa;
  text-align: center;
  font-size: 12px;
  padding: 7px 16px;
  font-weight: 400;
}
.topbar-pascoa strong { color: #fff; font-weight: 600; }
.topbar-pascoa a { color: var(--purple); }

/* ===================== REGIONAL SECTION ===================== */
.regional-section { padding: 64px 0; background: #f8f4ff; }
.regional-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.regional-header { text-align: center; margin-bottom: 40px; }
.regional-header p { color: #666; font-size: 15px; margin-top: 8px; }
.section-title-clean {
  font-family: 'Playfair Display', serif;
  font-size: 28px; color: #111; margin-bottom: 4px;
}
.section-title-clean span { color: var(--purple); }

/* ===================== CEP SECTION ===================== */
.cep-section {
  padding: 60px 20px;
  background: linear-gradient(135deg, var(--purple-pale) 0%, #fff 50%, #EDE9FE 100%);
}
.cep-inner { max-width: 960px; margin: 0 auto; }
.cep-grid { display: grid; grid-template-columns: 1fr; gap: 32px; align-items: start; max-width: 560px; margin: 0 auto; }

/* ===================== PARTNERS MARQUEE ===================== */
.partners-section {
  background: #fff;
  padding: 48px 0;
  overflow: hidden;
  border-top: 1px solid #f3f4f6;
  border-bottom: 1px solid #f3f4f6;
}
.partners-label {
  text-align: center;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #9ca3af;
  margin-bottom: 28px;
}
.marquee-container {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.marquee-row {
  overflow: hidden;
  position: relative;
}
/* fade edges */
.marquee-row::before,
.marquee-row::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.marquee-row::before { left: 0; background: linear-gradient(to right, #fff, transparent); }
.marquee-row::after  { right: 0; background: linear-gradient(to left, #fff, transparent); }
.marquee-track {
  display: flex;
  gap: 16px;
  width: max-content;
}
.track-left  { animation: marquee-left  28s linear infinite; }
.track-right { animation: marquee-right 28s linear infinite; }
@keyframes marquee-left {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes marquee-right {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}
.marquee-row:hover .marquee-track { animation-play-state: paused; }
.partner-item {
  flex-shrink: 0;
  width: 180px;
  height: 80px;
  background: #F5F3FF;
  border: 1.5px solid #EDE9FE;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.partner-item:hover { border-color: #8B5CF6; box-shadow: 0 2px 12px rgba(139,92,246,.15); }
.partner-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
  filter: grayscale(1) opacity(.6);
  transition: filter .3s;
}
.partner-item:hover img { filter: grayscale(0) opacity(1); }
.cep-form-wrap h2 { font-family: 'Playfair Display', serif; font-size: 1.7rem; margin-bottom: 10px; }
.cep-form-wrap h2 span { color: var(--purple); }
.cep-form-wrap p { color: #555; font-size: .93rem; line-height: 1.6; margin-bottom: 20px; }
.cep-input-row { display: flex; gap: 10px; margin-bottom: 12px; }
.cep-field {
  flex: 1; border: 2px solid #e5e7eb; border-radius: 10px;
  padding: 13px 16px; font-size: 1rem; font-family: inherit; outline: none;
  transition: border-color .2s;
}
.cep-field:focus { border-color: var(--purple); }
.cep-search-btn {
  background: var(--purple); color: #fff; border: none; border-radius: 10px;
  padding: 13px 20px; font-size: .95rem; font-weight: 700; font-family: inherit;
  cursor: pointer; transition: background .2s; white-space: nowrap;
}
.cep-search-btn:hover { background: var(--purple-dark); }
.cep-result {
  background: #fff; border-radius: 10px; padding: 14px 16px;
  border: 1.5px solid #e5e7eb; font-size: .88rem; line-height: 1.7;
  display: none; margin-bottom: 12px; box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.cep-result.show { display: block; }
.cep-result strong { color: var(--purple-dark); }
.cep-result .cep-city { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.cep-avail { display: flex; align-items: center; gap: 8px; padding: 8px 12px;
  border-radius: 8px; font-size: .83rem; font-weight: 600; margin-top: 8px; }
.cep-avail.ok { background: #f0fdf4; color: #16a34a; }
.cep-avail.pend { background: #fffbeb; color: #d97706; }
.cep-error { color: #dc2626; font-size: .85rem; padding: 8px 0; display: none; }
.cep-error.show { display: block; }

/* ===================== WHY US ===================== */
.why-us { padding: 60px 24px; background: var(--black); }
.why-us-inner { max-width: 1280px; margin: 0 auto; text-align: center; }
.why-us .section-title { color: #fff; margin-bottom: 48px; }
.why-us .section-title span { color: var(--purple); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.why-item { text-align: center; }
.why-icon {
  width: 70px; height: 70px; border-radius: 50%;
  background: rgba(139,92,246,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 30px; margin: 0 auto 16px;
  border: 2px solid rgba(139,92,246,0.3);
  color: #fff;
}
.why-item h4 { color: #fff; font-size: 17px; margin-bottom: 10px; font-family: 'Poppins', sans-serif; font-weight: 600; }
.why-item p { color: #888; font-size: 13px; line-height: 1.7; }

/* ===================== NEWSLETTER ===================== */
.newsletter { padding: 60px 24px; background: var(--purple); }
.newsletter-inner { max-width: 600px; margin: 0 auto; text-align: center; }
.newsletter h2 { color: #fff; font-size: 32px; margin-bottom: 10px; }
.newsletter p { color: rgba(255,255,255,0.85); margin-bottom: 28px; }
.newsletter-form { display: flex; gap: 10px; }
.newsletter-form input {
  flex: 1; padding: 14px 20px;
  border-radius: 30px; border: none;
  font-size: 15px; font-family: inherit; outline: none;
  color: #333;
}
.newsletter-form button {
  padding: 14px 28px;
  background: var(--black); color: #fff;
  border-radius: 30px; font-size: 15px; font-weight: 600;
  transition: var(--transition);
}
.newsletter-form button:hover { background: #333; }

/* ===================== FOOTER ===================== */
footer {
  background: var(--black); color: #888;
  padding: 60px 24px 30px;
}
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr; gap: 40px;
  margin-bottom: 50px;
}
.footer-logo { margin-bottom: 16px; }
.footer-logo .logo-text .name { font-size: 22px; }
.footer-logo .logo-text .sub { color: var(--purple); }
.footer-about { font-size: 14px; line-height: 1.8; margin-bottom: 24px; max-width: 300px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 50%;
  background: #222; color: #888;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; transition: var(--transition);
}
.footer-social a:hover { background: var(--purple); color: #fff; }
.footer-col h4 { color: #fff; font-size: 15px; font-weight: 600; margin-bottom: 20px; font-family: 'Poppins', sans-serif; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 14px; transition: var(--transition); }
.footer-col ul li a:hover { color: var(--purple); }
.footer-bottom {
  border-top: 1px solid #222; padding-top: 28px;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 13px; flex-wrap: wrap; gap: 16px;
}
.footer-bottom a { color: var(--purple); }
.payment-methods { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }

/* ===================== MODALS ===================== */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.6); z-index: 3000;
  display: none; align-items: center; justify-content: center;
  padding: 16px;
}
.modal-overlay.open { display: flex; }
.modal {
  background: #fff; border-radius: var(--radius);
  width: 100%; max-width: 480px;
  max-height: 90vh; overflow-y: auto;
  animation: modalIn 0.3s ease;
}
@keyframes modalIn { from { transform: scale(0.92); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.modal-header {
  padding: 24px 28px; border-bottom: 1px solid #f0f0f0;
  display: flex; align-items: center; justify-content: space-between;
}
.modal-header h3 { font-size: 20px; }
.modal-close { font-size: 24px; color: #999; line-height: 1; transition: var(--transition); }
.modal-close:hover { color: #333; }
.modal-body { padding: 28px; }

/* Login Modal */
.social-login { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.social-btn {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  padding: 13px; border-radius: 30px; font-size: 15px; font-weight: 500;
  border: 2px solid #e0e0e0; transition: var(--transition);
}
.social-btn:hover { background: var(--gray-light); }
.divider {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 24px; color: #aaa; font-size: 13px;
}
.divider::before, .divider::after {
  content: ''; flex: 1; height: 1px; background: #e8e8e8;
}
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 14px; font-weight: 500; margin-bottom: 6px; }
.form-group input {
  width: 100%; padding: 12px 16px;
  border: 2px solid #e8e8e8; border-radius: 10px;
  font-size: 15px; font-family: inherit; outline: none;
  transition: var(--transition);
}
.form-group input:focus { border-color: var(--purple); }
.form-submit {
  width: 100%; padding: 14px;
  background: var(--purple); color: #fff;
  border-radius: 30px; font-size: 16px; font-weight: 600;
  transition: var(--transition); margin-top: 8px;
}
.form-submit:hover { background: var(--purple-dark); }
.form-link { text-align: center; margin-top: 16px; font-size: 14px; color: #666; }
.form-link a { color: var(--purple); font-weight: 600; }

/* Cart Modal */
.cart-modal { max-width: 520px; }
.cart-empty { text-align: center; padding: 40px 20px; }
.cart-empty-icon { font-size: 64px; margin-bottom: 16px; }
.cart-empty h4 { font-size: 20px; margin-bottom: 8px; }
.cart-empty p { color: var(--gray); font-size: 14px; margin-bottom: 24px; }
.cart-empty .browse-btn {
  display: inline-block; padding: 12px 28px;
  background: var(--purple); color: #fff;
  border-radius: 30px; font-weight: 600;
}
.cart-item {
  display: flex; gap: 14px; padding: 16px 0;
  border-bottom: 1px solid #f0f0f0;
  align-items: center;
}
.cart-item-img {
  width: 80px; height: 80px; border-radius: 10px;
  overflow: hidden; flex-shrink: 0;
}
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-info { flex: 1; }
.cart-item-name { font-weight: 600; font-size: 14px; margin-bottom: 4px; }
.cart-item-price { color: var(--purple); font-weight: 700; font-size: 16px; }
.cart-item-qty {
  display: flex; align-items: center; gap: 10px; margin-top: 8px;
}
.qty-btn {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--gray-light); font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: #333; transition: var(--transition);
}
.qty-btn:hover { background: var(--purple); color: #fff; }
.qty-num { font-weight: 600; min-width: 20px; text-align: center; }
.cart-remove { color: #ccc; font-size: 20px; cursor: pointer; transition: var(--transition); }
.cart-remove:hover { color: #e74c3c; }
.cart-footer { padding: 20px 0 0; }
.cart-total { display: flex; justify-content: space-between; margin-bottom: 16px; }
.cart-total span { font-size: 16px; color: var(--gray); }
.cart-total strong { font-size: 22px; color: var(--purple); }
.checkout-btn {
  width: 100%; padding: 15px;
  background: var(--purple); color: #fff;
  border-radius: 30px; font-size: 17px; font-weight: 600;
  transition: var(--transition);
}
.checkout-btn:hover { background: var(--purple-dark); }
.continue-btn {
  width: 100%; padding: 12px;
  color: var(--gray); font-size: 14px; margin-top: 10px;
}
.continue-btn:hover { color: var(--purple); }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .product-card { flex: 0 0 calc(33.33% - 14px); }
  .footer-grid { grid-template-columns: 2fr 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-content h1 { font-size: 38px; }
}

@media (max-width: 768px) {
  .header-search { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: flex; }
  .header-btn .btn-label { display: none; }
  .header-btn:not(.cart-btn) { display: none; }
  .header-inner { padding: 0 12px; gap: 10px; }
  .logo-icon { width: 36px; height: 36px; font-size: 18px !important; }
  .logo-text .name { font-size: 16px; }
  .logo-text .sub { display: none; }
  .cart-btn { padding: 8px 12px; }
  nav { display: none; }
  .hero-slide { height: 320px; }
  .hero-content { padding: 0 28px; }
  .hero-content h1 { font-size: 28px; }
  .hero-content p { font-size: 14px; }
  .product-card { flex: 0 0 calc(50% - 10px); }
  .promo-inner { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .newsletter-form { flex-direction: column; }
  .carousel-arrow { display: none; }
}

@media (max-width: 480px) {
  .product-card { flex: 0 0 calc(100% - 0px); }
  .section-header { flex-direction: column; align-items: flex-start; gap: 12px; }
  .cep-input-row { flex-direction: column; }
  .cep-search-btn { width: 100%; }
}

/* ===================== UTILITY ===================== */
.container { max-width: 1280px; margin: 0 auto; }
.text-purple { color: var(--purple); }
.btn-purple {
  background: var(--purple); color: #fff;
  padding: 12px 28px; border-radius: 30px;
  font-size: 15px; font-weight: 600; transition: var(--transition);
  display: inline-block;
}
.btn-purple:hover { background: var(--purple-dark); }
