/* ============================================
   VARIÁVEIS E RESET
   ============================================ */
:root {
  --bg: #fffaf8;
  --paper: #ffffff;
  --ink: #211a1c;
  --muted: #776b6f;
  --rose: #a85d75;
  --rose-dark: #7e3e54;
  --blush: #f5dde4;
  --line: #eadde1;
  --shadow: 0 20px 60px rgba(69,37,49,.12);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

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

button, input {
  font: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ============================================
   TOPBAR
   ============================================ */
.topbar {
  background: #24191d;
  color: #fff;
  text-align: center;
  padding: 9px 16px;
  font-size: 12px;
  letter-spacing: .04em;
}

@media (max-width: 480px) {
  .topbar {
    font-size: 10px;
    padding: 6px 10px;
    letter-spacing: 0.02em;
  }
}

/* ============================================
   HEADER
   ============================================ */
.header {
  height: 78px;
  background: rgba(255, 250, 248, .94);
  backdrop-filter: blur(14px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(234, 221, 225, .7);
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
}

.logo-img {
  height: 45px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.logo-img:hover {
  transform: scale(1.03);
}

.logo-footer {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.brand-text-fallback {
  display: flex;
  align-items: center;
  gap: 11px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--rose);
  border-radius: 50%;
  font-family: "Playfair Display", serif;
  color: var(--rose);
  font-weight: 700;
  font-size: 14px;
  background: transparent;
}

.brand strong {
  display: block;
  font-size: 14px;
  letter-spacing: .14em;
}

.brand small {
  display: block;
  font-size: 9px;
  letter-spacing: .32em;
  color: var(--muted);
  margin-top: 2px;
}

.nav {
  display: flex;
  gap: 27px;
  font-size: 14px;
}

.nav a:hover {
  color: var(--rose);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 9px;
  flex-shrink: 0;
}

.icon-btn, .menu-btn, .cart-btn {
  border: 0;
  background: transparent;
  cursor: pointer;
}

.icon-btn {
  font-size: 25px;
}

.cart-btn {
  border: 1px solid var(--line);
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 14px;
}

.cart-btn span {
  background: var(--rose);
  color: white;
  border-radius: 50%;
  padding: 2px 7px;
  margin-left: 6px;
}

.menu-btn {
  display: none;
  font-size: 24px;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  background: linear-gradient(135deg, #fffaf8 0%, #f8edef 50%, #f5e4e8 100%);
  padding: 40px 5vw 60px;
  min-height: auto;
  display: flex;
  align-items: center;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  align-items: center;
}

.hero-text {
  order: 1;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  order: 2;
  width: 100%;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.hero-main-image {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 24px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.10);
  border: 2px solid rgba(168, 93, 117, 0.15);
  transition: transform 0.5s ease;
  background: linear-gradient(135deg, #f8edef, #edd5dd);
}

.hero-main-image:hover {
  transform: scale(1.01);
}

.no-image-fallback {
  width: 100%;
  aspect-ratio: 1/1;
  background: linear-gradient(135deg, #f8edef, #edd5dd);
  border-radius: 24px;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--rose-dark);
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  border: 2px dashed var(--rose);
}

.no-image-fallback span {
  font-size: 64px;
  margin-bottom: 16px;
}

.floating-badge {
  position: absolute;
  background: #fff;
  padding: 12px 20px;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  animation: float 3s ease-in-out infinite;
  z-index: 5;
  white-space: nowrap;
}

.floating-badge.authenticity {
  top: 10%;
  right: -5%;
  color: #2d1b14;
}

.floating-badge.usa {
  bottom: 15%;
  left: -8%;
  color: #2d1b14;
  animation-delay: 1.5s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.hero-badge {
  display: inline-block;
  background: var(--rose-dark);
  color: #fff;
  padding: 6px 18px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(42px, 5.5vw, 72px);
  line-height: 1.05;
  margin: 18px 0 20px;
  color: #1a1a1a;
}

.hero h1 .highlight {
  color: var(--rose-dark);
  position: relative;
}

.hero h1 .highlight::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 8px;
  background: rgba(126, 62, 84, 0.15);
  border-radius: 4px;
}

.hero-description {
  font-size: 18px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 500px;
  margin-bottom: 28px;
}

.hero-features {
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.hero-features .feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #2d1b14;
}

.hero-features .feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: var(--rose-dark);
  color: #fff;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
}

.btn-primary {
  background: var(--rose-dark);
  color: #fff;
  padding: 16px 36px;
  border-radius: 999px;
  border: none;
  font-weight: 700;
  font-size: 15px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(126, 62, 84, 0.3);
  background: #653043;
}

.btn-outline {
  background: transparent;
  color: var(--rose-dark);
  padding: 16px 36px;
  border-radius: 999px;
  border: 2px solid var(--rose-dark);
  font-weight: 700;
  font-size: 15px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.btn-outline:hover {
  background: var(--rose-dark);
  color: #fff;
  transform: translateY(-2px);
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ============================================
   CATEGORIAS - IMAGENS GRANDES
   ============================================ */
.categories-section {
  padding: 60px 7vw;
  background: var(--bg);
}

.eyebrow {
  font-size: 11px;
  letter-spacing: .22em;
  color: var(--rose-dark);
  font-weight: 700;
  text-transform: uppercase;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 35px;
}

.section-head h2 {
  font-family: "Playfair Display", serif;
  font-size: 44px;
  margin: 9px 0 0;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1400px;
  margin: 0 auto;
}

.category-card {
  background: var(--paper);
  border-radius: 24px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: all 0.4s ease;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(69, 37, 49, 0.12);
}

.category-image {
  width: 100%;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 250px;
  max-height: 300px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f8edef, #f0dce3);
}

.category-image-img {
  width: 100%;
  height: 100%;
  min-height: 250px;
  max-height: 300px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
  background: rgba(255, 255, 255, 0.1);
}

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

.category-emoji {
  font-size: 64px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.category-info {
  padding: 16px 20px 20px;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.category-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  margin: 0 0 4px;
  color: #2d1b14;
}

.category-info p {
  color: var(--muted);
  font-size: 13px;
  margin: 0 0 8px;
}

.category-count {
  display: inline-block;
  font-size: 12px;
  color: var(--rose-dark);
  font-weight: 600;
  background: var(--blush);
  padding: 4px 14px;
  border-radius: 999px;
}

.category-info .gender-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 999px;
  color: #fff;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 8px;
}

.category-info .gender-tag.feminine {
  background: #e91e63;
}

.category-info .gender-tag.masculine {
  background: #2196f3;
}

.category-info .gender-tag.unisex {
  background: #9e9e9e;
}

/* ============================================
   PRODUTOS - DESIGN PREMIUM
   ============================================ */
.section {
  padding: 90px 7vw;
}

.filters {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
}

.filter {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 9px 15px;
  cursor: pointer;
  font-size: 13px;
  transition: all 0.3s ease;
}

.filter:hover {
  border-color: var(--rose-dark);
}

.filter.active {
  background: #24191d;
  color: #fff;
  border-color: #24191d;
}

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

.product-card {
  position: relative;
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(168, 93, 117, 0.10);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(126, 62, 84, 0.15);
  border-color: var(--rose);
}

.product-media {
  width: 100%;
  padding-top: 100%;
  position: relative;
  background: linear-gradient(145deg, #faf0f2, #f5e4e8);
  overflow: hidden;
}

.product-media .image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.product-media .product-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px 20px 20px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.4));
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  justify-content: center;
}

.product-card:hover .product-media .product-overlay {
  opacity: 1;
}

.product-media .product-overlay .btn-quick-view {
  background: #fff;
  color: #2d1b14;
  border: none;
  padding: 10px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.product-media .product-overlay .btn-quick-view:hover {
  transform: scale(1.05);
  background: var(--rose-dark);
  color: #fff;
}

.product-media .no-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #f8edef, #f2dce3);
  font-family: "Playfair Display", serif;
  font-size: 14px;
  color: #a0857a;
  text-align: center;
  padding: 20px;
}

.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #2d1b14;
  color: #fff;
  border-radius: 999px;
  padding: 4px 12px;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.08em;
  z-index: 2;
  text-transform: uppercase;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
}

.badge.sale {
  left: auto;
  right: 12px;
  background: #c0392b;
}

.badge.authenticity-badge-product {
  top: auto;
  bottom: 12px;
  left: 12px;
  background: linear-gradient(135deg, #2d1b14, #4a2c22);
  font-size: 7px;
  letter-spacing: 0.04em;
  padding: 3px 10px;
}

.gender-badge {
  display: none !important;
}

.product-info {
  padding: 16px 18px 20px;
  position: relative;
}

.product-info .category-tag {
  display: inline-block;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rose-dark);
  background: var(--blush);
  padding: 3px 12px;
  border-radius: 999px;
  margin-bottom: 8px;
}

.product-info .brandline {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 2px;
}

.product-info h3 {
  font-size: 14px;
  font-weight: 600;
  margin: 4px 0 6px;
  color: #2d1b14;
  line-height: 1.3;
  font-family: "DM Sans", sans-serif;
  min-height: 38px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 4px 0 8px;
  gap: 6px;
}

.product-meta .volume {
  font-size: 11px;
  color: var(--muted);
  font-weight: 500;
}

.product-meta .rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: #f5a623;
}

.product-meta .rating span {
  color: var(--muted);
  font-size: 10px;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 4px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.price {
  font-weight: 700;
  font-size: 17px;
  color: #2d1b14;
}

.price .original {
  font-weight: 400;
  font-size: 13px;
  color: #999;
  text-decoration: line-through;
  margin-right: 8px;
}

.add-to-bag {
  width: 100%;
  padding: 10px 16px;
  border: none;
  border-radius: 999px;
  background: #2d1b14;
  color: #fff;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
  text-transform: uppercase;
}

.add-to-bag svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.add-to-bag:hover {
  background: var(--rose-dark);
  transform: scale(1.02);
  box-shadow: 0 8px 25px rgba(126, 62, 84, 0.3);
}

.add-to-bag:hover svg {
  transform: translateX(4px);
}

.add-to-bag:active {
  transform: scale(0.97);
}

/* ============================================
   PROMOÇÃO - COM IMAGEM DO KIT
   ============================================ */
.promo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 470px;
  background: #2b1d22;
  color: #fff;
  margin: 40px 7vw 90px;
  border-radius: 32px;
  padding: 65px;
  gap: 40px;
  align-items: center;
}

.promo-copy {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.promo-copy .eyebrow {
  color: #eab9c8;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
}

.promo-copy h2 {
  font-size: 54px;
  font-family: "Playfair Display", serif;
  margin: 0;
  line-height: 1.1;
}

.promo-copy p {
  color: #dbcbd0;
  line-height: 1.7;
  max-width: 560px;
  margin: 0;
}

.promo-price {
  display: flex;
  align-items: end;
  gap: 13px;
  margin: 8px 0;
}

.promo-price span {
  text-decoration: line-through;
  color: #ad989f;
  font-size: 18px;
}

.promo-price strong {
  font-size: 30px;
  color: #fff;
}

.promo-art {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 300px;
}

.promo-kit-image {
  width: 100%;
  max-width: 350px;
  height: auto;
  max-height: 350px;
  object-fit: contain;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transition: transform 0.5s ease;
  background: linear-gradient(135deg, #fce4ec, #f8bbd0);
  padding: 20px;
}

.promo-kit-image:hover {
  transform: scale(1.03);
}

.promo-kit-fallback {
  width: 100%;
  max-width: 350px;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #fce4ec, #f8bbd0);
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.promo-kit-fallback .gift {
  width: 130px;
  height: 310px;
  background: linear-gradient(#fff, #d49aad);
  border-radius: 28px;
  box-shadow: 0 30px 50px rgba(0, 0, 0, 0.18);
}

/* ============================================
   NEWSLETTER
   ============================================ */
.newsletter {
  text-align: center;
  padding-top: 25px;
}

.newsletter p {
  color: var(--muted);
}

.newsletter-form {
  display: flex;
  max-width: 580px;
  margin: 28px auto 0;
  gap: 9px;
}

.newsletter-form input {
  flex: 1;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 14px 18px;
  background: #fff;
}

.btn {
  border: 0;
  border-radius: 999px;
  padding: 14px 23px;
  cursor: pointer;
  font-weight: 700;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  font-family: "DM Sans", sans-serif;
}

.btn.primary {
  background: var(--rose-dark);
  color: #fff;
}

.btn.primary:hover {
  background: #653043;
  transform: scale(1.02);
  box-shadow: 0 4px 20px rgba(126, 62, 84, 0.3);
}

.btn.primary:active {
  transform: scale(0.98);
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: #171113;
  color: #fff;
  padding: 60px 7vw;
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 35px;
}

footer p, footer a, footer span {
  display: block;
  color: #aa989e;
  font-size: 13px;
  margin: 10px 0;
  line-height: 1.6;
}

footer strong {
  display: block;
  margin-bottom: 14px;
}

.footer-brand strong {
  margin-bottom: 0;
}

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #1fae62;
  color: white;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .18);
  z-index: 25;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 35px rgba(31, 174, 98, 0.3);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
}

/* ============================================
   CART DRAWER
   ============================================ */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(24, 16, 19, .45);
  opacity: 0;
  pointer-events: none;
  transition: .2s;
  z-index: 30;
}

.overlay.show {
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer {
  position: fixed;
  right: -480px;
  top: 0;
  height: 100vh;
  width: min(440px, 100%);
  background: #fff;
  z-index: 40;
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: .28s;
  box-shadow: -20px 0 60px rgba(0, 0, 0, .12);
}

.cart-drawer.open {
  right: 0;
}

.cart-head {
  display: flex;
  justify-content: space-between;
  align-items: start;
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
}

.cart-head h3 {
  font-family: "Playfair Display";
  font-size: 32px;
  margin: 5px 0;
}

.cart-head button, .search-box>button {
  border: 0;
  background: none;
  font-size: 30px;
  cursor: pointer;
}

.cart-items {
  flex: 1;
  overflow: auto;
  padding: 15px 0;
}

.cart-item {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.mini {
  width: 60px;
  height: 72px;
  border-radius: 12px;
  background: #f2dbe2;
}

.cart-item h4 {
  font-size: 13px;
  margin: 0 0 5px;
}

.cart-item small {
  color: var(--muted);
}

.remove {
  border: 0;
  background: none;
  cursor: pointer;
  color: #9a6d7b;
  font-size: 18px;
}

.cart-footer {
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  font-size: 18px;
  margin-bottom: 18px;
}

.full {
  width: 100%;
}

.cart-footer small {
  display: block;
  text-align: center;
  color: var(--muted);
  margin-top: 10px;
}

/* ============================================
   SEARCH MODAL
   ============================================ */
.search-modal {
  position: fixed;
  inset: 0;
  background: rgba(23, 17, 19, .84);
  z-index: 50;
  display: none;
  align-items: start;
  justify-content: center;
  padding-top: 10vh;
}

.search-modal.show {
  display: flex;
}

.search-box {
  width: min(700px, 92vw);
  background: #fff;
  border-radius: 24px;
  padding: 30px;
  position: relative;
}

.search-box>button {
  position: absolute;
  right: 25px;
  top: 18px;
}

.search-box input {
  width: 100%;
  margin-top: 15px;
  border: 0;
  border-bottom: 2px solid var(--line);
  padding: 15px 2px;
  font-size: 22px;
  outline: 0;
}

.search-result {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ============================================
   NOTIFICATION
   ============================================ */
.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 16px 24px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, .15);
  border-left: 4px solid #1a1a1a;
  z-index: 10000;
  animation: slideIn 0.3s ease;
}

.notification.error {
  border-left-color: #e74c3c;
}

@keyframes slideIn {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* ============================================
   FILTROS POR GÉNERO
   ============================================ */
.gender-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.gender-filter {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 8px 18px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.3s ease;
  color: var(--muted);
}

.gender-filter:hover {
  border-color: var(--rose-dark);
  color: var(--rose-dark);
}

.gender-filter.active {
  background: var(--rose-dark);
  color: #fff;
  border-color: var(--rose-dark);
}

/* ============================================
   RESPONSIVIDADE - COMPLETA
   ============================================ */
@media (max-width: 1200px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

@media (max-width: 992px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .hero-visual {
    order: -1;
  }
  .hero-image-wrapper {
    max-width: 450px;
  }
  .hero {
    padding: 30px 5vw 50px;
  }
  .hero h1 {
    font-size: 42px;
  }
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .category-image {
    min-height: 200px;
    max-height: 250px;
  }
  .category-image-img {
    min-height: 200px;
    max-height: 250px;
  }
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
  .promo {
    grid-template-columns: 1fr;
    padding: 45px;
    gap: 30px;
    text-align: center;
  }
  .promo-copy p {
    max-width: 100%;
  }
  .promo-price {
    justify-content: center;
  }
  .promo-art {
    min-height: 250px;
  }
  .promo-kit-image {
    max-width: 280px;
    max-height: 280px;
  }
}

@media (max-width: 768px) {
  .nav {
    display: none;
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    background: #fff;
    padding: 22px 5vw;
    flex-direction: column;
    border-bottom: 1px solid var(--line);
  }
  .nav.open { display: flex; }
  .menu-btn { display: block; }
  
  .hero {
    padding: 20px 4vw 40px;
  }
  .hero-content {
    gap: 24px;
  }
  .hero-image-wrapper {
    max-width: 350px;
  }
  .hero-main-image {
    border-radius: 16px;
  }
  .hero h1 {
    font-size: 34px;
  }
  .hero-description {
    font-size: 15px;
  }
  .hero-features {
    gap: 12px;
  }
  .hero-features .feature {
    font-size: 12px;
  }
  .btn-primary, .btn-outline {
    padding: 12px 24px;
    font-size: 13px;
  }
  
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .product-info {
    padding: 12px 14px 16px;
  }
  .product-info h3 {
    font-size: 12px;
    min-height: 32px;
  }
  .price {
    font-size: 15px;
  }
  .add-to-bag {
    font-size: 10px;
    padding: 8px 12px;
  }
  .product-media .product-overlay .btn-quick-view {
    padding: 8px 16px;
    font-size: 10px;
  }
  
  .floating-badge {
    font-size: 10px;
    padding: 6px 12px;
    border-radius: 10px;
  }
  .floating-badge.authenticity {
    top: 5%;
    right: 0%;
  }
  .floating-badge.usa {
    bottom: 8%;
    left: 0%;
  }
  
  .section-head {
    flex-direction: column;
    align-items: start;
  }
  .section-head h2 {
    font-size: 32px;
  }
  .section {
    padding: 60px 5vw;
  }
  
  .category-image {
    min-height: 180px;
    max-height: 220px;
  }
  .category-image-img {
    min-height: 180px;
    max-height: 220px;
  }
  
  .promo {
    margin: 20px 5vw 60px;
    padding: 35px 25px;
  }
  .promo-copy h2 {
    font-size: 38px;
  }
  .promo-price strong {
    font-size: 24px;
  }
  .promo-kit-image {
    max-width: 220px;
    max-height: 220px;
    padding: 15px;
  }
  .promo-art {
    min-height: 200px;
  }
  
  footer {
    grid-template-columns: 1fr 1fr;
  }
  
  .gender-filters {
    gap: 6px;
  }
  .gender-filter {
    font-size: 11px;
    padding: 6px 12px;
  }
}

@media (max-width: 480px) {
  .header {
    padding: 0 14px;
    height: 64px;
  }
  .icon-btn {
    display: none;
  }
  .cart-btn {
    font-size: 11px;
    padding: 8px 10px;
  }
  .logo-img {
    height: 32px;
  }
  .logo-footer {
    height: 28px;
  }
  
  .hero {
    padding: 15px 3vw 30px;
  }
  .hero-content {
    gap: 16px;
  }
  .hero-image-wrapper {
    max-width: 280px;
  }
  .hero-main-image {
    border-radius: 12px;
  }
  .hero h1 {
    font-size: 28px;
    margin: 10px 0 12px;
  }
  .hero-description {
    font-size: 13px;
    margin-bottom: 16px;
  }
  .hero-features .feature {
    font-size: 11px;
  }
  .hero-features .feature-icon {
    width: 18px;
    height: 18px;
    font-size: 10px;
  }
  .btn-primary, .btn-outline {
    padding: 10px 18px;
    font-size: 12px;
    gap: 6px;
  }
  .btn-primary svg, .btn-outline svg {
    width: 16px;
    height: 16px;
  }
  
  .floating-badge {
    font-size: 8px;
    padding: 4px 8px;
    border-radius: 8px;
    gap: 4px;
  }
  .floating-badge span {
    font-size: 10px;
  }
  .floating-badge.authenticity {
    top: 3%;
    right: 0%;
  }
  .floating-badge.usa {
    bottom: 5%;
    left: 0%;
  }
  .hero-badge {
    font-size: 9px;
    padding: 4px 12px;
  }
  
  .categories-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .category-image {
    min-height: 220px;
    max-height: 280px;
  }
  .category-image-img {
    min-height: 220px;
    max-height: 280px;
  }
  .category-info h3 {
    font-size: 22px;
  }
  
  .product-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .product-card {
    border-radius: 14px;
  }
  .product-media {
    padding-top: 100%;
  }
  .product-info {
    padding: 10px 12px 14px;
  }
  .product-info .category-tag {
    font-size: 7px;
    padding: 2px 8px;
  }
  .product-info .brandline {
    font-size: 8px;
  }
  .product-info h3 {
    font-size: 11px;
    min-height: 28px;
  }
  .product-meta .volume {
    font-size: 9px;
  }
  .product-meta .rating {
    font-size: 9px;
  }
  .price {
    font-size: 13px;
  }
  .price .original {
    font-size: 11px;
  }
  .add-to-bag {
    font-size: 9px;
    padding: 6px 10px;
    gap: 4px;
  }
  .add-to-bag svg {
    width: 12px;
    height: 12px;
  }
  .badge {
    font-size: 7px;
    padding: 3px 8px;
    top: 8px;
    left: 8px;
  }
  .badge.sale {
    right: 8px;
  }
  .badge.authenticity-badge-product {
    font-size: 6px;
    padding: 2px 6px;
    bottom: 8px;
    left: 8px;
  }
  
  .promo {
    margin: 16px 16px 40px;
    padding: 24px 16px;
    border-radius: 20px;
  }
  .promo-copy h2 {
    font-size: 30px;
  }
  .promo-copy p {
    font-size: 14px;
  }
  .promo-price span {
    font-size: 14px;
  }
  .promo-price strong {
    font-size: 20px;
  }
  .btn.primary {
    padding: 12px 20px;
    font-size: 13px;
  }
  .promo-kit-image {
    max-width: 180px;
    max-height: 180px;
    padding: 12px;
  }
  .promo-art {
    min-height: 160px;
  }
  
  .newsletter-form {
    flex-direction: column;
    gap: 12px;
  }
  .newsletter-form input {
    width: 100%;
  }
  
  footer {
    grid-template-columns: 1fr;
    padding: 40px 18px;
    gap: 24px;
  }
  
  .cart-drawer {
    width: 100% !important;
    max-width: 100% !important;
    padding: 18px;
  }
  .cart-head h3 {
    font-size: 24px;
  }
  
  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 48px;
    height: 48px;
  }
  .whatsapp-float svg {
    width: 24px;
    height: 24px;
  }
  
  .search-box {
    padding: 20px;
    width: 95vw;
  }
  .search-box input {
    font-size: 18px;
    padding: 12px 2px;
  }
  
  .gender-filters {
    justify-content: center;
  }
  .gender-filter {
    font-size: 10px;
    padding: 4px 10px;
  }
}

@media (max-width: 375px) {
  .hero-image-wrapper {
    max-width: 220px;
  }
  .hero h1 {
    font-size: 24px;
  }
  .hero-description {
    font-size: 12px;
  }
  .hero-features .feature {
    font-size: 10px;
  }
  .btn-primary, .btn-outline {
    padding: 8px 14px;
    font-size: 11px;
  }
  .floating-badge {
    font-size: 7px;
    padding: 3px 6px;
  }
}

/* ============================================
   FILTROS POR GÉNERO
   ============================================ */
.gender-filters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.gender-filter {
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 999px;
    padding: 8px 18px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
    color: var(--muted);
}

.gender-filter:hover {
    border-color: var(--rose-dark);
    color: var(--rose-dark);
}

.gender-filter.active {
    background: var(--rose-dark);
    color: #fff;
    border-color: var(--rose-dark);
}

/* ============================================
   TAG DE GÉNERO NAS CATEGORIAS
   ============================================ */
.gender-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 12px;
    border-radius: 999px;
    color: #fff;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-top: 8px;
}

.gender-tag.feminino {
    background: #e91e63;
}

.gender-tag.masculino {
    background: #2196f3;
}

.gender-tag.unissex {
    background: #9e9e9e;
}

/* ============================================
   BADGE DE GÉNERO NOS PRODUTOS
   ============================================ */
.gender-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    z-index: 3;
    border: 2px solid #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.gender-badge.feminino {
    background: #e91e63;
    color: #fff;
}

.gender-badge.masculino {
    background: #2196f3;
    color: #fff;
}

.gender-badge.unisex {
    background: #9e9e9e;
    color: #fff;
}

/* ============================================
   RESPONSIVIDADE - FILTROS
   ============================================ */
@media (max-width: 768px) {
    .gender-filters {
        gap: 6px;
    }
    .gender-filter {
        font-size: 11px;
        padding: 6px 12px;
    }
    .gender-tag {
        font-size: 8px;
        padding: 2px 8px;
    }
}

@media (max-width: 480px) {
    .gender-filters {
        justify-content: center;
    }
    .gender-filter {
        font-size: 10px;
        padding: 4px 10px;
    }
    .gender-tag {
        font-size: 7px;
        padding: 2px 6px;
    }
    .gender-badge {
        width: 22px;
        height: 22px;
        font-size: 11px;
        top: 8px;
        right: 8px;
    }
}/* ============================================
   FILTROS POR GÉNERO
   ============================================ */
.gender-filters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.gender-filter {
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 999px;
    padding: 8px 18px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
    color: var(--muted);
}

.gender-filter:hover {
    border-color: var(--rose-dark);
    color: var(--rose-dark);
}

.gender-filter.active {
    background: var(--rose-dark);
    color: #fff;
    border-color: var(--rose-dark);
}

/* ============================================
   TAG DE GÉNERO NAS CATEGORIAS
   ============================================ */
.gender-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 12px;
    border-radius: 999px;
    color: #fff;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-top: 8px;
}

.gender-tag.feminino {
    background: #e91e63;
}

.gender-tag.masculino {
    background: #2196f3;
}

.gender-tag.unissex {
    background: #9e9e9e;
}

/* ============================================
   BADGE DE GÉNERO NOS PRODUTOS
   ============================================ */
.gender-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    z-index: 3;
    border: 2px solid #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.gender-badge.feminino {
    background: #e91e63;
    color: #fff;
}

.gender-badge.masculino {
    background: #2196f3;
    color: #fff;
}

.gender-badge.unisex {
    background: #9e9e9e;
    color: #fff;
}

/* ============================================
   RESPONSIVIDADE - FILTROS
   ============================================ */
@media (max-width: 768px) {
    .gender-filters {
        gap: 6px;
    }
    .gender-filter {
        font-size: 11px;
        padding: 6px 12px;
    }
    .gender-tag {
        font-size: 8px;
        padding: 2px 8px;
    }
}

@media (max-width: 480px) {
    .gender-filters {
        justify-content: center;
    }
    .gender-filter {
        font-size: 10px;
        padding: 4px 10px;
    }
    .gender-tag {
        font-size: 7px;
        padding: 2px 6px;
    }
    .gender-badge {
        width: 22px;
        height: 22px;
        font-size: 11px;
        top: 8px;
        right: 8px;
    }
}