/* ===================================
   ALO YOGA BRASIL — HOMEPAGE STYLES
   =================================== */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --black: #0a0a0a;
  --white: #ffffff;
  --gray-100: #f5f5f5;
  --gray-200: #e8e8e8;
  --gray-400: #aaaaaa;
  --gray-600: #666666;
  --gray-800: #333333;
  --gold: #0a0a0a;
  --gold-light: #444444;
  --gold-dark: #000000;
  --accent: #0a0a0a;
  --red: #c0392b;
  --green: #2e7d32;

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-serif: 'Cormorant Garamond', Georgia, serif;

  --header-h: 72px;
  --announce-h: 36px;

  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;

  --shadow: 0 2px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.14);
  --transition: 0.22s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===================================
   ANNOUNCEMENT BAR
   =================================== */
.announcement-bar {
  background: #1a1a1a;
  color: var(--white);
  height: var(--announce-h);
  overflow: hidden;
  position: relative;
}

.announcement-track {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 80px;
  animation: marquee 20s linear infinite;
  white-space: nowrap;
  width: max-content;
}

.announcement-track span {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===================================
   HEADER
   =================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.header-inner {
  max-width: none;
  padding: 0 40px;
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 32px;
}

/* Logo */
.logo { flex-shrink: 0; display: flex; align-items: center; }

.logo-text {
  font-family: var(--font);
  font-weight: 800;
  font-size: 28px;
  color: var(--black);
  letter-spacing: -1px;
  line-height: 1;
}

/* Nav */
.nav {
  display: flex;
  align-items: center;
  flex: 1;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-item { position: static; }

.nav-link {
  display: block;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: rgb(51,51,51);
  transition: color var(--transition);
  white-space: nowrap;
  cursor: pointer;
}

.nav-link:hover { color: var(--black); }

/* Sale link */
.sale-link { color: var(--red) !important; font-weight: 600; }

/* Tag sale */
.tag-sale { border-color: var(--red) !important; color: var(--red) !important; }
.tag-sale:hover { background: #fdf0f0 !important; border-color: var(--red) !important; color: var(--red) !important; }

/* Mega Menu Dropdown */
.dropdown {
  position: fixed;
  left: 0;
  width: 100vw;
  background: var(--white);
  border-top: 2px solid var(--black);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  padding: 40px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  z-index: 500;
}

.nav-item.has-dropdown.open > .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.dropdown-grid {
  display: grid;
  gap: 48px;
}

.dropdown-4col { grid-template-columns: repeat(4, 1fr); }
.dropdown-3col { grid-template-columns: repeat(3, 1fr); }
.dropdown-2col { grid-template-columns: repeat(2, 1fr); }
.dropdown-1col { grid-template-columns: 1fr; }

/* Highlight link in dropdown */
.link-highlight {
  color: var(--black) !important;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.dropdown-col .dropdown-title {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--gray-200);
}

.dropdown-col a {
  display: block;
  font-size: 14px;
  color: var(--gray-800);
  padding: 5px 0;
  transition: color var(--transition);
}

.dropdown-col a:hover { color: var(--black); font-weight: 500; }

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.btn-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-800);
  transition: background var(--transition), color var(--transition);
  position: relative;
}

.btn-icon:hover { background: var(--gray-100); color: var(--black); }

.cart-count {
  position: absolute;
  top: 2px;
  right: 2px;
  background: var(--gold);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  min-width: 16px;
  height: 16px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* Hamburger (mobile) */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: background var(--transition);
}

.hamburger:hover { background: var(--gray-100); }
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* Search Bar */
.search-bar {
  background: var(--gray-100);
  border-top: 1px solid var(--gray-200);
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease;
}

.search-bar.active { height: 60px; }

.search-bar-inner {
  max-width: 600px;
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  gap: 8px;
}

.search-bar-inner input {
  flex: 1;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 8px 16px;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  background: var(--white);
  transition: border-color var(--transition);
}

.search-bar-inner input:focus { border-color: var(--black); }

.search-bar-inner button {
  background: var(--black);
  color: var(--white);
  border-radius: var(--radius-sm);
  padding: 8px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.search-bar-inner button:hover { background: #333; }

/* ===================================
   HERO CAROUSEL
   =================================== */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--gray-100);
}

.carousel { position: relative; overflow: hidden; }

.carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide {
  min-width: 100%;
  min-height: 520px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 60px 64px;
}

.slide-1 { background: linear-gradient(135deg, #e8e4df 0%, #d9d3cb 100%); }
.slide-2 { background: linear-gradient(135deg, #e4e8e4 0%, #cdd5cd 100%); }
.slide-3 { background: linear-gradient(135deg, #e8e4e8 0%, #d3cbd3 100%); }

.slide-content {
  flex: 1;
  max-width: 520px;
  z-index: 2;
}

.slide-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--black);
  border: 1.5px solid var(--black);
  border-radius: 999px;
  padding: 4px 14px;
  margin-bottom: 20px;
}

.slide-content h1 {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 900;
  line-height: 1.05;
  color: var(--black);
  margin-bottom: 16px;
}

.slide-content h1 span { color: var(--gold); }

.slide-desc {
  font-size: 16px;
  color: var(--gray-600);
  margin-bottom: 32px;
  max-width: 380px;
}

.slide-visual {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide-product-img {
  width: 340px;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 64px rgba(0,0,0,0.18);
}

/* Carousel Controls */
.carousel-prev,
.carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  color: var(--black);
  transition: background var(--transition), transform var(--transition);
}

.carousel-prev { left: 20px; }
.carousel-next { right: 20px; }

.carousel-prev:hover,
.carousel-next:hover {
  background: var(--black);
  color: var(--white);
  transform: translateY(-50%) scale(1.08);
}

.carousel-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0,0,0,0.2);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  border: none;
}

.dot.active {
  background: var(--black);
  transform: scale(1.4);
}

/* ===================================
   QUICK SEARCH
   =================================== */
.quick-search {
  padding: 24px 0;
  border-bottom: 1px solid var(--gray-200);
  background: var(--white);
}

.quick-search-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-600);
  margin-bottom: 12px;
  text-align: center;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  border-radius: 999px;
  border: 1.5px solid var(--gray-200);
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-800);
  background: var(--white);
  transition: border-color var(--transition), background var(--transition), color var(--transition);
}

.tag:hover {
  border-color: var(--black);
  background: var(--black);
  color: var(--white);
}

/* ===================================
   SECTIONS COMMON
   =================================== */
.section { padding: 72px 0; }

.section-header {
  position: relative;
  text-align: center;
  margin-bottom: 40px;
}

.section-header a {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.see-all {
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-600);
  transition: color var(--transition);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.see-all:hover { color: var(--black); }

/* ===================================
   PRODUCTS GRID
   =================================== */
.products-section { background: var(--white); }

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 24px;
}

.product-card {
  border: none;
  border-radius: 0;
  overflow: visible;
  background: transparent;
  transition: transform var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: none;
}

/* Badge */
.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--black);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 999px;
  z-index: 1;
}

.product-badge--gold {
  background: #b8860b;
}

.badge-new { background: var(--green); }
.badge-sale { background: var(--red); }

/* Product Image */
.product-img-wrap {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--gray-100);
  aspect-ratio: 3/4;
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.product-card:hover .product-img-wrap img {
  transform: none;
}

/* Category pages: no zoom on image */
.category-products-grid .product-card:hover .product-img-wrap img {
  transform: none;
}

.category-products-grid .product-img-wrap img {
  transition: none;
}

/* Product Info */
.product-info {
  padding-top: 5px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.product-category {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--gray-600);
}

.product-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
  line-height: 1.35;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 6px;
}

.stars { color: #c8a84b; font-size: 12px; letter-spacing: 1px; }
.rating-count { font-size: 11px; color: var(--gray-400); }

.product-price {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 4px;
}

.price-from {
  font-size: 11px;
  color: var(--gray-400);
  text-decoration: line-through;
}

.price-current {
  font-size: 14px;
  font-weight: 600;
  color: rgb(51,51,51);
}

.price-pix {
  font-size: 11px;
  color: var(--green);
  font-weight: 500;
}

.btn-add-cart {
  margin-top: 12px;
  width: 100%;
  padding: 10px;
  background: var(--black);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: background var(--transition), transform var(--transition);
}

.btn-add-cart:hover {
  background: var(--gold);
  transform: translateY(-1px);
}

/* hide add-to-cart button globally */
.btn-add-cart { display: none !important; }

/* ===================================
   CATEGORIES GRID
   =================================== */
.categories-section { background: var(--gray-100); }

.categories-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 28px 16px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1.5px solid var(--gray-200);
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-800);
  text-align: center;
  transition: all var(--transition);
  cursor: pointer;
}

.category-card:hover {
  border-color: var(--black);
  background: var(--black);
  color: var(--white);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.cat-icon {
  font-size: 32px;
  line-height: 1;
}

/* ===================================
   INSTITUTIONAL
   =================================== */
.institutional {
  background: #111111;
  color: var(--white);
  overflow: hidden;
}

.institutional-inner {
  display: flex;
  align-items: center;
  gap: 80px;
  padding-top: 80px;
  padding-bottom: 80px;
}

.institutional-text { flex: 1; max-width: 520px; }

.institutional-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}

.institutional-text h2 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
}

.institutional-text p {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 32px;
}

.institutional-visual {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.institutional-img {
  width: 420px;
  height: 560px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

/* ===================================
   NEWSLETTER
   =================================== */
.newsletter {
  padding: 60px 0;
  background: var(--gray-100);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}

.newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.newsletter-text h2 {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 8px;
}

.newsletter-text p {
  font-size: 15px;
  color: var(--gray-600);
}

.newsletter-form {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.newsletter-form input {
  width: 300px;
  padding: 14px 20px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: inherit;
  outline: none;
  background: var(--white);
  transition: border-color var(--transition);
}

.newsletter-form input:focus { border-color: var(--black); }

/* ===================================
   BUTTONS
   =================================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  background: var(--black);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: background var(--transition), transform var(--transition);
  cursor: pointer;
  border: none;
  font-family: inherit;
}

.btn-primary:hover {
  background: var(--gold);
  transform: translateY(-1px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: background var(--transition), border-color var(--transition);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--gold);
  color: var(--gold-light);
}

/* ===================================
   FOOTER
   =================================== */
.footer {
  background: #111;
  color: var(--white);
  padding-top: 60px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-top: 16px;
  max-width: 260px;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.social-link:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--black);
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }

.footer-col a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}

.footer-col a:hover { color: var(--white); text-decoration: underline; text-underline-offset: 2px; }

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}

.payment-methods {
  display: flex;
  gap: 8px;
  margin-left: auto;
}

.payment-badge {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 4px;
  padding: 3px 10px;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.04em;
}

/* ===================================
   RESPONSIVE
   =================================== */
@media (max-width: 1024px) {
  .categories-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .institutional-inner { flex-direction: column; gap: 40px; }
  .institutional-visual { width: 100%; }
  .institutional-img { width: 100%; max-width: 420px; margin: 0 auto; }
}

@media (max-width: 768px) {
  :root { --header-h: 60px; --announce-h: 32px; }

  .nav { display: none; }
  .hamburger { display: flex; }

  .slide {
    flex-direction: column;
    padding: 40px 24px;
    min-height: 460px;
    text-align: center;
  }

  .slide-content { max-width: 100%; }
  .slide-desc { max-width: 100%; }

  .slide-visual { display: none; }

  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

  .categories-grid { grid-template-columns: repeat(2, 1fr); }

  .newsletter-inner { flex-direction: column; text-align: center; }
  .newsletter-form { flex-direction: column; width: 100%; }
  .newsletter-form input { width: 100%; }

  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { justify-content: center; }
  .payment-methods { margin-left: 0; }

  /* Section header: stack title + link vertically on mobile */
  .section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
  .section-header a {
    position: static;
    transform: none;
  }
  .section-label {
    font-size: 24px;
  }

  /* Touch targets */
  .btn-icon { width: 44px; height: 44px; }
}

/* ===================================
   MOBILE NAV DRAWER
   =================================== */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 1000;
}
.nav-overlay.active { display: block; }

.mobile-nav-drawer {
  display: none;
}

@media (max-width: 768px) {
  .mobile-nav-drawer {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 85%;
    max-width: 340px;
    z-index: 1001;
    background: var(--white);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 0 24px 40px;
  }

  .mobile-nav-drawer.open {
    transform: translateX(0);
  }

  .mobile-nav-header {
    position: sticky;
    top: 0;
    background: var(--white);
    padding: 20px 0 14px;
    border-bottom: 1.5px solid var(--black);
    margin-bottom: 4px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .mobile-nav-title {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
  }

  .mobile-nav-close {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 22px;
    color: var(--black);
    margin-left: auto;
  }

  .mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .mobile-nav-item {
    border-bottom: 1px solid var(--gray-200);
  }

  .mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--black);
    text-decoration: none;
    cursor: pointer;
    min-height: 48px;
  }

  .mobile-nav-arrow {
    flex-shrink: 0;
    transition: transform 0.2s ease;
  }

  .mobile-nav-item.sub-open .mobile-nav-arrow {
    transform: rotate(180deg);
  }

  .mobile-nav-sub {
    display: none;
    padding-bottom: 12px;
    padding-left: 0;
  }

  .mobile-nav-item.sub-open .mobile-nav-sub {
    display: block;
  }

  .mobile-nav-sub a {
    display: flex;
    align-items: center;
    padding: 10px 0 10px 16px;
    font-size: 13px;
    color: var(--gray-800);
    text-decoration: none;
    min-height: 44px;
    transition: color 0.15s;
  }

  .mobile-nav-sub a:hover {
    color: var(--black);
  }

  .mobile-nav-sub-title {
    font-weight: 600;
    color: var(--black);
    padding: 10px 0 4px 16px;
    font-size: 11px;
    letter-spacing: 0.08em;
  }
}

@media (max-width: 480px) {
  .header-inner { padding: 0 16px; gap: 16px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .footer-top { grid-template-columns: 1fr; }
}


/* ===================================
   LOGO IMG
   =================================== */
.logo-img {
  height: auto;
  width: 70px;
  display: block;
  filter: brightness(0); /* força preto */
}

.footer-logo-img {
  height: 24px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1); /* branco no footer escuro */
  margin-bottom: 16px;
}

/* ===================================
   PRODUCT CARD — CLICKABLE
   =================================== */
.product-card-link {
  display: flex;
  flex-direction: column;
  flex: 1;
  color: inherit;
  text-decoration: none;
}

.product-card {
  display: flex;
  flex-direction: column;
}

.product-card-cta {
  padding: 0 16px 16px;
}

/* ===================================
   HERO EDITORIAL
   =================================== */
.hero-editorial {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 300px;
  height: 580px;
  overflow: hidden;
}

.hero-photo {
  overflow: hidden;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.hero-photo:hover img {
  transform: scale(1.03);
}

.hero-text-panel {
  background: #ece8e1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 32px;
  text-align: center;
  gap: 20px;
}

.hero-sup {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-600);
  line-height: 1.6;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 38px;
  font-weight: 400;
  line-height: 1.1;
  color: var(--black);
  letter-spacing: 0.02em;
}

.btn-shop-now {
  display: inline-block;
  border: 1.5px solid var(--black);
  padding: 11px 32px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
  transition: background var(--transition), color var(--transition);
  margin-top: 4px;
}

.btn-shop-now:hover {
  background: var(--black);
  color: var(--white);
}

/* ===================================
   SECTION LABEL (uppercase)
   =================================== */
.section-label {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 32px;
  text-align: center;
}

.see-all-upper {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-600);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition);
}

.see-all-upper:hover { color: var(--black); }

/* ===================================
   TRENDING NOW
   =================================== */
.trending-section { background: var(--white); padding-bottom: 48px; }

.trending-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.trending-card {
  display: block;
  color: var(--black);
  text-decoration: none;
}

.trending-img {
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--gray-100);
}

.trending-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.trending-card:hover .trending-img img {
  transform: scale(1.04);
}

.trending-card span {
  display: block;
  padding: 14px 0 4px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ===================================
   EDITORIAL BANNER (OLIVE TREE)
   =================================== */
.editorial-banner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 300px;
  height: 560px;
  overflow: hidden;
}

.editorial-photo {
  overflow: hidden;
}

.editorial-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.editorial-photo:hover img {
  transform: scale(1.03);
}

.editorial-text-panel {
  background: #f5f0eb;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 32px;
  text-align: center;
  gap: 16px;
}

.editorial-sup {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-600);
}

.editorial-title {
  font-family: var(--font-serif);
  font-size: 52px;
  font-weight: 400;
  line-height: 1.05;
  color: var(--black);
  letter-spacing: 0.04em;
}

/* ===================================
   PRODUCT CAROUSEL
   =================================== */
.carousel-wrapper {
  position: relative;
  padding: 0 44px;
}

.carousel-track-outer {
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 16px;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.carousel-track .product-card {
  flex: 0 0 calc((100% - 64px) / 5);
  min-width: 0;
}

.carousel-btn {
  position: absolute;
  top: 38%;
  transform: translateY(-50%);
  z-index: 5;
  width: 36px;
  height: 36px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--black);
  box-shadow: 0 1px 6px rgba(0,0,0,0.12);
  transition: background var(--transition), box-shadow var(--transition);
}

.carousel-btn:hover {
  background: var(--gray-100);
  box-shadow: 0 3px 12px rgba(0,0,0,0.18);
}

.carousel-btn:disabled {
  opacity: 0;
  pointer-events: none;
}

.carousel-prev { left: 0; }
.carousel-next { right: 0; }

@media (max-width: 900px) {
  .carousel-track .product-card { flex: 0 0 calc((100% - 48px) / 3); }
  .carousel-wrapper { padding: 0 36px; }
}

@media (max-width: 600px) {
  .carousel-track .product-card { flex: 0 0 calc((100% - 16px) / 2); }
  .carousel-wrapper { padding: 0 28px; }
}

/* ===================================
   EDITORIAL SPLIT (1 foto + texto)
   =================================== */
.editorial-split {
  display: grid;
  grid-template-columns: 1fr 480px;
  height: 600px;
  overflow: hidden;
}

.editorial-split-photo {
  overflow: hidden;
}

.editorial-split-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.editorial-split:hover .editorial-split-photo img {
  transform: scale(1.03);
}

@media (max-width: 900px) {
  .editorial-split {
    grid-template-columns: 1fr;
    height: auto;
  }
  .editorial-split-photo { height: 420px; }
}

/* ===================================
   TOQUE FINAL — ACCESSORIES SCROLL
   =================================== */
.accessories-section { background: var(--white); }

.accessories-section .section-header {
  align-items: center;
  margin-bottom: 32px;
}

.accessories-scroll {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: thin;
  scrollbar-color: var(--gray-200) transparent;
}

.acc-card {
  min-width: 200px;
}

/* ===================================
   COMPRE POR MODALIDADE
   =================================== */
.modalidade-section { background: var(--gray-100); }

.modalidade-container {
  max-width: 1530px;
  margin: 0 auto;
  padding: 0 16px;
}

.modalidade-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}

.modalidade-card {
  display: block;
  color: var(--black);
  text-decoration: none;
  text-align: center;
}

.modalidade-img {
  overflow: hidden;
  aspect-ratio: 2 / 3.3;
  background: var(--gray-200);
}

.modalidade-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.modalidade-card:hover .modalidade-img img {
  transform: scale(1.04);
}


.modalidade-card span {
  display: block;
  padding: 12px 0 4px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ===================================
   COMPRE POR COR
   =================================== */
.cores-section { background: var(--white); }



.cores-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.cor-card {
  display: block;
  position: relative;
  overflow: hidden;
  color: var(--white);
  text-decoration: none;
  aspect-ratio: 2 / 3.3;
  background: var(--gray-200);
}

.cor-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.cor-card:hover img {
  transform: scale(1.04);
}

.cor-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.3) 60%, transparent 100%);
  padding: 24px 14px 18px;
}

.cor-nome {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.cor-desc {
  font-size: 11px;
  line-height: 1.5;
  color: rgba(255,255,255,0.85);
  margin-bottom: 10px;
}

.cor-link {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: underline;
  text-underline-offset: 2px;
  color: rgba(255,255,255,0.9);
}

/* ===================================
   HERO BANNER (full-width single image)
   =================================== */
.hero-banner-section {
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.hero-banner-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* ===================================
   PRODUCT CARD — MINIMAL (new style)
   =================================== */
.product-img-wrap > a {
  display: block;
  width: 100%;
  height: 100%;
}

.product-img-wrap > a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.product-card:hover .product-img-wrap > a img {
  transform: none;
}

.btn-wishlist {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.88);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), color var(--transition), transform var(--transition);
  backdrop-filter: blur(4px);
}

.btn-wishlist:hover {
  background: var(--white);
  transform: scale(1.1);
}

.add-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0 0 14px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 2;
}

.product-card:hover .add-overlay {
  opacity: 1;
  transform: translateY(0);
}

.btn-add-cart {
  background: var(--white);
  color: var(--black);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
  transition: background var(--transition), color var(--transition);
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}

.btn-add-cart:hover {
  background: var(--black);
  color: var(--white);
}

.product-swatches {
  display: flex;
  gap: 6px;
  padding: 10px 2px 4px;
}

.swatch {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: transform var(--transition), outline var(--transition);
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.15), 0 1px 3px rgba(0,0,0,0.15);
}

.swatch:hover {
  transform: scale(1.25);
  outline: 1.5px solid var(--black);
  outline-offset: 2px;
}

.product-info-minimal {
  padding: 2px 0 16px;
}

.product-name-link {
  display: block;
  color: var(--black);
  text-decoration: none;
}

.product-name-link .product-name {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.3;
  margin-bottom: 4px;
  color: var(--black);
}

.product-name-link:hover .product-name {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.product-price-simple {
  font-size: 13px;
  font-weight: 600;
  color: var(--black);
  margin-top: 4px;
}

/* ===================================
   RESPONSIVE — NOVOS ESTILOS
   =================================== */
@media (max-width: 1200px) {
  .hero-editorial { grid-template-columns: 1fr 1fr 1fr 260px; height: 500px; }
  .editorial-banner { grid-template-columns: 1fr 1fr 1fr 260px; height: 480px; }
  .hero-title { font-size: 32px; }
  .editorial-title { font-size: 44px; }
  .modalidade-grid { grid-template-columns: repeat(3, 1fr); }
  .cores-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .hero-editorial {
    grid-template-columns: 1fr;
    height: auto;
  }
  .hero-photo:nth-child(2),
  .hero-photo:nth-child(3) { display: none; }
  .hero-photo { height: 400px; }
  .hero-text-panel {
    padding: 40px 24px;
    gap: 16px;
  }
  .hero-title { font-size: 32px; }

  .editorial-banner {
    grid-template-columns: 1fr;
    height: auto;
  }
  .editorial-photo:nth-child(2),
  .editorial-photo:nth-child(3) { display: none; }
  .editorial-photo { height: 360px; }
  .editorial-text-panel { padding: 40px 24px; }
  .editorial-title { font-size: 40px; }

  .trending-grid { grid-template-columns: repeat(2, 1fr); }
  .accessories-scroll { grid-template-columns: repeat(2, 1fr); }
  .modalidade-grid { grid-template-columns: repeat(2, 1fr); }
  .cores-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .trending-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .modalidade-grid { grid-template-columns: repeat(2, 1fr); }
  .cores-grid { grid-template-columns: repeat(2, 1fr); }
  .accessories-scroll { grid-template-columns: repeat(2, 1fr); }
}

/* ===================================
   SEARCH RESULTS PAGE
   =================================== */
.busca-header {
  padding: 40px 0 28px;
  border-bottom: 1px solid var(--gray-200);
  margin-bottom: 40px;
}

.busca-header-top {
  display: flex;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.busca-title {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.busca-query {
  color: var(--gray-600);
  font-weight: 400;
}

.busca-refine {
  display: flex;
  gap: 8px;
}

.busca-refine-input {
  flex: 1;
  max-width: 360px;
  height: 40px;
  padding: 0 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: 6px;
  font-family: inherit;
  font-size: 14px;
  color: var(--black);
  background: var(--white);
  transition: border-color var(--transition);
}

.busca-refine-input:focus {
  outline: none;
  border-color: var(--black);
}

.busca-refine-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 40px;
  padding: 0 18px;
  background: var(--black);
  color: var(--white);
  border: none;
  border-radius: 6px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition);
}

.busca-refine-btn:hover { background: #333; }

.busca-estado {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 80px 20px;
  text-align: center;
  color: var(--gray-600);
}

.busca-estado h2 {
  font-size: 22px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 4px;
}

.busca-estado p { font-size: 15px; }

.busca-sugestoes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 8px;
}

.busca-sugestoes a {
  padding: 8px 20px;
  border: 1.5px solid var(--gray-200);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-800);
  transition: border-color var(--transition), background var(--transition), color var(--transition);
}

.busca-sugestoes a:hover {
  border-color: var(--black);
  background: var(--black);
  color: var(--white);
}

.busca-spinner {
  animation: spin 0.8s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

@media (max-width: 600px) {
  .busca-header-top { flex-direction: column; gap: 4px; }
  .busca-refine { flex-direction: column; }
  .busca-refine-input { max-width: 100%; }
  .busca-refine-btn { width: 100%; justify-content: center; }
}
