/* ============================================
   LaLinda Boutique — Design System
   Paleta inspirada na identidade visual do
   Instagram @lalinda.boutique (creme, dourado, nude)
   ============================================ */

:root {
  --cream: #fbf3e7;
  --cream-soft: #f3e0bf;
  --cream-dark: #ecd2a4;
  --gold: #c9a15a;
  --gold-light: #ddbd82;
  --gold-dark: #a3793a;
  --blush: #f0c9a0;
  --dark: #3b2f2a;
  --dark-soft: #6b584c;
  --white: #ffffff;
  --success: #6b8f71;
  --shadow: 0 10px 30px rgba(59, 47, 42, 0.08);
  --shadow-strong: 0 16px 40px rgba(59, 47, 42, 0.16);
  --radius: 14px;
  --font-heading: "Playfair Display", "Georgia", serif;
  --font-body: "Jost", "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* Default icon size — specific contexts below override this */
svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

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

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section-tight {
  padding: 48px 0;
}

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 600;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 600;
  margin-bottom: 14px;
  color: var(--dark);
}

.section-subtitle {
  color: var(--dark-soft);
  max-width: 560px;
  font-size: 1rem;
}

.section-head {
  text-align: center;
  margin-bottom: 48px;
}

.section-head.left {
  text-align: left;
  margin-left: 0;
  margin-right: auto;
}

.section-head .section-subtitle {
  margin: 0 auto;
}

.section-head.left .section-subtitle {
  margin: 0;
}

/* Ornamental laurel divider — echoes the @lalinda.boutique logo motif */
.laurel-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--gold);
  margin: 0 0 16px;
}

.section-head.left .laurel-divider {
  justify-content: flex-start;
}

.laurel-divider svg {
  width: 84px;
  height: 18px;
}

/* ============ Buttons ============ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-strong);
}

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--gold);
  color: var(--gold-dark);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--white);
}

.btn-dark {
  background: var(--dark);
  color: var(--white);
}

.btn-dark:hover {
  background: #251c18;
}

.btn-block {
  width: 100%;
}

.btn-whatsapp {
  background: #3fa76b;
  color: var(--white);
}

.btn-whatsapp:hover {
  background: #2f8a56;
  transform: translateY(-2px);
}

.btn-sm {
  padding: 9px 18px;
  font-size: 0.8rem;
}

/* ============ Top bar & Header ============ */

.topbar {
  background: var(--dark);
  color: var(--cream);
  overflow: hidden;
  padding: 8px 0;
}

.topbar-track {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  width: max-content;
  animation: scroll-left 22s linear infinite;
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  padding-left: 40px;
}

.topbar-track strong {
  color: var(--gold-light);
}

.header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(251, 243, 231, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--cream-dark);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
}

.logo .logo-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold-dark);
  flex-shrink: 0;
}

.logo span {
  color: var(--gold-dark);
}

.nav {
  display: flex;
  gap: 32px;
}

.nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--dark);
  position: relative;
  padding: 6px 0;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.25s ease;
}

.nav a:hover::after,
.nav a.active::after {
  width: 100%;
}

.nav a.active {
  color: var(--gold-dark);
}

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

.icon-btn {
  position: relative;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--cream-soft);
  color: var(--dark);
  transition: background 0.2s ease;
}

.icon-btn:hover {
  background: var(--cream-dark);
}

.icon-btn svg {
  width: 18px;
  height: 18px;
}

.cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

.menu-toggle {
  display: none;
  background: none;
  flex-direction: column;
  gap: 5px;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--dark);
  transition: all 0.25s ease;
}

/* ============ Hero ============ */

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 40px;
  padding: 64px 24px 90px;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}

.hero-text .eyebrow {
  background: var(--cream-soft);
  padding: 6px 14px;
  border-radius: 100px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.15;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-title em {
  font-style: italic;
  color: var(--gold-dark);
}

.hero-desc {
  color: var(--dark-soft);
  font-size: 1.05rem;
  max-width: 460px;
  margin-bottom: 32px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  gap: 36px;
}

.hero-stats div strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--gold-dark);
}

.hero-stats div span {
  font-size: 0.8rem;
  color: var(--dark-soft);
  letter-spacing: 0.02em;
}

.hero-visual {
  position: relative;
  height: 480px;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(160deg, var(--blush) 0%, var(--gold-light) 55%, var(--gold) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: inherit;
}

.hero-visual::before,
.hero-visual::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
}

.hero-visual::before {
  width: 220px;
  height: 220px;
  top: -60px;
  right: -60px;
}

.hero-visual::after {
  width: 160px;
  height: 160px;
  bottom: -40px;
  left: -40px;
}

.hero-visual .hero-icon {
  width: 140px;
  height: 140px;
  color: rgba(255, 255, 255, 0.9);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual .hero-icon svg {
  width: 140px;
  height: 140px;
}

/* ============ Marquee ============ */

.marquee {
  background: var(--dark);
  color: var(--cream);
  overflow: hidden;
  padding: 14px 0;
}

.marquee-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: scroll-left 28s linear infinite;
  width: max-content;
}

.marquee-track span {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1rem;
  color: var(--gold-light);
  letter-spacing: 0.03em;
}

@keyframes scroll-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============ Categories ============ */

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

.category-card {
  position: relative;
  border-radius: var(--radius);
  padding: 28px 20px;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  color: var(--white);
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-strong);
}

.category-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.85;
}

.category-card h3 {
  position: relative;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  z-index: 2;
}

.category-card span {
  position: relative;
  font-size: 0.78rem;
  opacity: 0.9;
  z-index: 2;
}

.category-card > [data-icon] {
  position: relative;
  z-index: 2;
  display: block;
  margin-bottom: 14px;
}

.category-card svg {
  width: 34px;
  height: 34px;
  color: rgba(255, 255, 255, 0.95);
}

.cat-vestidos::before { background: linear-gradient(145deg, #d99a86, #b96b52); }
.cat-conjuntos::before { background: linear-gradient(145deg, var(--gold-light), var(--gold-dark)); }
.cat-blusas::before { background: linear-gradient(145deg, #9db08a, #6f8259); }
.cat-acessorios::before { background: linear-gradient(145deg, #7d9aa8, #4f6c79); }
.cat-cropped::before { background: linear-gradient(145deg, #e0b3a8, #b97c6c); }
.cat-body::before { background: linear-gradient(145deg, #b393bd, #6f4f78); }
.cat-praia::before { background: linear-gradient(145deg, #8fc9c4, #4d8f8a); }
.cat-bolsas::before { background: linear-gradient(145deg, #8a9a6e, #55613f); }

/* Category color backgrounds — reused on product & cart item images */
.cat-bg-vestidos { background: linear-gradient(145deg, #d99a86, #b96b52); }
.cat-bg-conjuntos { background: linear-gradient(145deg, var(--gold-light), var(--gold-dark)); }
.cat-bg-blusas { background: linear-gradient(145deg, #9db08a, #6f8259); }
.cat-bg-calcas { background: linear-gradient(145deg, #c9ad7c, #96784a); }
.cat-bg-saias { background: linear-gradient(145deg, #cf9bab, #8f5a6d); }
.cat-bg-acessorios { background: linear-gradient(145deg, #7d9aa8, #4f6c79); }
.cat-bg-cropped { background: linear-gradient(145deg, #e0b3a8, #b97c6c); }
.cat-bg-body { background: linear-gradient(145deg, #b393bd, #6f4f78); }
.cat-bg-bolsas { background: linear-gradient(145deg, #8a9a6e, #55613f); }
.cat-bg-praia { background: linear-gradient(145deg, #8fc9c4, #4d8f8a); }

/* ============ Product Grid ============ */

.toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
}

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

.filter-chip {
  padding: 9px 18px;
  border-radius: 100px;
  background: var(--white);
  border: 1px solid var(--cream-dark);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--dark-soft);
  transition: all 0.2s ease;
}

.filter-chip:hover {
  border-color: var(--gold);
}

.filter-chip.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.search-box {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: 100px;
  padding: 10px 18px;
  min-width: 220px;
}

.search-box input {
  border: none;
  outline: none;
  background: none;
  font-family: inherit;
  font-size: 0.85rem;
  width: 100%;
  color: var(--dark);
}

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

.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-strong);
}

.product-img {
  position: relative;
  aspect-ratio: 3 / 4;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.zoomable-img {
  cursor: zoom-in;
  transition: background-size 0.05s linear;
}

.product-card-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============ Destaque da semana (dentro do hero) ============ */

.hero-weekly-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-weekly-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  background: linear-gradient(to top, rgba(20, 14, 10, 0.75), rgba(20, 14, 10, 0.15) 70%, transparent);
  color: var(--white);
}

.hero-weekly-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold-light);
}

.hero-weekly-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin: 0;
  color: var(--white);
}

.hero-weekly-caption .btn {
  margin-top: 6px;
  pointer-events: none;
}

.product-img svg {
  width: 46%;
  height: 46%;
  color: rgba(255, 255, 255, 0.85);
}

.product-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--white);
  color: var(--gold-dark);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 5px 10px;
  border-radius: 100px;
  text-transform: uppercase;
  z-index: 2;
}

.product-tag.sale {
  background: #c65f4e;
  color: var(--white);
}

.product-wishlist {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  color: var(--dark);
  transition: color 0.2s ease, transform 0.2s ease;
}

.product-wishlist:hover {
  color: #c65f4e;
  transform: scale(1.1);
}

.product-wishlist svg {
  width: 16px;
  height: 16px;
  color: var(--dark);
}

.product-quickadd {
  position: absolute;
  bottom: -50px;
  left: 12px;
  right: 12px;
  transition: bottom 0.25s ease;
  z-index: 2;
}

.product-card:hover .product-quickadd {
  bottom: 12px;
}

.product-info {
  padding: 16px 18px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-cat {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold-dark);
  font-weight: 600;
  margin-bottom: 6px;
}

.product-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: var(--dark);
}

.product-price {
  margin-top: auto;
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.price-now {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
}

.price-old {
  font-size: 0.85rem;
  color: var(--dark-soft);
  text-decoration: line-through;
}

.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: var(--dark-soft);
}

.product-img[role="button"] {
  cursor: pointer;
}

/* ============ Quick View modal ============ */

.quick-view-overlay {
  position: fixed;
  inset: 0;
  background: rgba(59, 47, 42, 0.6);
  z-index: 750;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.quick-view-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.quick-view-box {
  position: relative;
  background: var(--white);
  border-radius: 20px;
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow: hidden;
}

.quick-view-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
}

.quick-view-close svg {
  width: 16px;
  height: 16px;
}

#quickViewModal {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-height: 90vh;
}

.quick-view-gallery {
  background: var(--cream-soft);
  border-radius: 20px 0 0 20px;
  max-height: 90vh;
  overflow-y: auto;
}

.quick-view-main-wrap {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: 20px 0 0 0;
  overflow: hidden;
  cursor: grab;
  user-select: none;
}

.quick-view-main-wrap:active {
  cursor: grabbing;
}

.quick-view-main-track {
  display: flex;
  height: 100%;
  transition: transform 0.35s ease;
}

.quick-view-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  cursor: zoom-in;
  transition: background-size 0.05s linear;
}

video.quick-view-slide {
  object-fit: cover;
  cursor: default;
  background: #000;
}

.qv-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  z-index: 4;
  color: var(--dark);
}

.qv-nav:hover {
  background: var(--white);
}

.qv-nav svg {
  width: 16px;
  height: 16px;
}

.qv-nav-prev {
  left: 10px;
}

.qv-nav-next {
  right: 10px;
}

.quick-view-thumbs {
  display: flex;
  gap: 8px;
  padding: 12px;
}

.quick-view-thumb {
  width: 56px;
  height: 70px;
  border-radius: 8px;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  opacity: 0.55;
  border: 2px solid transparent;
  flex-shrink: 0;
}

.quick-view-thumb.active {
  opacity: 1;
  border-color: var(--gold);
}

.quick-view-thumb.is-video {
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
}

.quick-view-thumb.is-video svg {
  width: 18px;
  height: 18px;
}

.quick-view-info {
  padding: 32px 32px 28px;
  max-height: 90vh;
  overflow-y: auto;
}

.quick-view-scrolltext {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--cream-dark);
}

.quick-view-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  margin: 6px 0 14px;
  line-height: 1.3;
}

.quick-view-desc {
  font-size: 0.88rem;
  color: var(--dark-soft);
  line-height: 1.65;
  margin-bottom: 14px;
}

.quick-view-highlights {
  margin: 16px 0;
  font-size: 0.85rem;
  color: var(--dark);
}

.quick-view-highlights li {
  margin-bottom: 8px;
}

.quick-view-tagline {
  font-family: var(--font-heading);
  font-style: italic;
  color: var(--gold-dark);
  margin-top: 16px;
  font-size: 0.95rem;
}

.size-selector {
  margin: 18px 0 4px;
}

.size-selector-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--dark);
  margin-bottom: 10px;
}

.size-btn-row {
  display: flex;
  gap: 8px;
}

.size-btn {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  border: 1px solid var(--cream-dark);
  background: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--dark);
  transition: all 0.2s ease;
}

.size-btn:hover {
  border-color: var(--gold);
}

.size-btn.active {
  background: var(--dark);
  border-color: var(--dark);
  color: var(--white);
}

.size-out-msg {
  font-size: 0.78rem;
  color: #c65f4e;
  margin-top: 10px;
}

#quickViewAddBtn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

@media (max-width: 768px) {
  .quick-view-box {
    overflow-y: auto;
  }

  #quickViewModal {
    grid-template-columns: 1fr;
    max-height: none;
  }

  .quick-view-gallery,
  .quick-view-main-wrap {
    border-radius: 20px 20px 0 0;
  }

  .quick-view-gallery,
  .quick-view-info {
    max-height: none;
    overflow-y: visible;
  }

  .quick-view-main-wrap {
    aspect-ratio: auto;
    height: 46vh;
  }

  .quick-view-info {
    padding: 20px 20px 28px;
  }

  .quick-view-title {
    font-size: 1.2rem;
    margin: 4px 0 10px;
  }
}

/* ============ About / Story ============ */

.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.about-visual {
  position: relative;
  height: 420px;
  border-radius: 20px;
  background: linear-gradient(160deg, var(--gold-light), var(--blush));
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-visual [data-icon] {
  display: flex;
}

.about-visual svg {
  width: 130px;
  height: 130px;
  color: rgba(255, 255, 255, 0.9);
}

.about-content .section-title {
  text-align: left;
}

.about-list {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.about-list .check {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.8rem;
}

.about-list strong {
  display: block;
  margin-bottom: 2px;
}

.about-list span {
  color: var(--dark-soft);
  font-size: 0.9rem;
}

/* ============ Testimonials ============ */

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

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.stars {
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.testimonial-card p {
  color: var(--dark-soft);
  font-size: 0.92rem;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-family: var(--font-heading);
}

.testimonial-author strong {
  display: block;
  font-size: 0.9rem;
}

.testimonial-author span {
  font-size: 0.78rem;
  color: var(--dark-soft);
}

/* ============ Instagram CTA ============ */

.instagram-section {
  background: linear-gradient(135deg, var(--dark) 0%, #2a211d 100%);
  color: var(--cream);
  border-radius: 24px;
  padding: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.instagram-section .section-title,
.instagram-section .eyebrow {
  color: var(--cream);
}

.instagram-section .section-subtitle {
  color: rgba(251, 243, 231, 0.7);
}

.ig-grid {
  display: grid;
  grid-template-columns: repeat(3, 70px);
  grid-template-rows: repeat(2, 70px);
  gap: 8px;
}

.ig-grid div {
  border-radius: 10px;
  background: linear-gradient(145deg, var(--gold-light), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.85);
}

.ig-grid div:nth-child(2n) {
  background: linear-gradient(145deg, var(--blush), #c8917f);
}

.ig-grid div:nth-child(3n) {
  background: linear-gradient(145deg, #9db08a, #6f8259);
}

.ig-grid svg {
  width: 26px;
  height: 26px;
}

/* ============ Newsletter ============ */

.newsletter {
  background: var(--cream-soft);
  border-radius: 24px;
  padding: 56px;
  text-align: center;
}

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

.newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  border-radius: 100px;
  border: 1px solid var(--cream-dark);
  font-family: inherit;
  font-size: 0.9rem;
  outline: none;
}

.newsletter-form input:focus {
  border-color: var(--gold);
}

.form-note {
  font-size: 0.78rem;
  color: var(--dark-soft);
  margin-top: 14px;
}

/* ============ Footer ============ */

.footer {
  background: var(--dark);
  color: var(--cream);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(251, 243, 231, 0.12);
}

.footer-brand .logo {
  color: var(--cream);
}

.footer-brand p {
  color: rgba(251, 243, 231, 0.65);
  font-size: 0.88rem;
  margin: 16px 0 20px;
  max-width: 280px;
}

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

.social-row a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(251, 243, 231, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.social-row a:hover {
  background: var(--gold);
}

.social-row svg {
  width: 17px;
  height: 17px;
}

.footer h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  margin-bottom: 18px;
  color: var(--gold-light);
}

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

.footer ul a {
  color: rgba(251, 243, 231, 0.7);
  font-size: 0.88rem;
  transition: color 0.2s ease;
}

.footer ul a:hover {
  color: var(--gold-light);
}

.footer-contact li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: rgba(251, 243, 231, 0.7);
  font-size: 0.88rem;
}

.footer-contact svg {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  color: var(--gold-light);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  font-size: 0.8rem;
  color: rgba(251, 243, 231, 0.5);
  flex-wrap: wrap;
  gap: 10px;
}

.footer-methods {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.method-group {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.method-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--gold-light);
  margin-right: 2px;
}

.method-group span:not(.method-label) {
  background: rgba(251, 243, 231, 0.1);
  padding: 5px 10px;
  border-radius: 6px;
  font-size: 0.72rem;
}

/* ============ WhatsApp Float ============ */

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #3fa76b;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(63, 167, 107, 0.45);
  z-index: 600;
  color: var(--white);
  animation: pulse-wa 2.4s infinite;
}

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

@keyframes pulse-wa {
  0% { box-shadow: 0 0 0 0 rgba(63, 167, 107, 0.5); }
  70% { box-shadow: 0 0 0 14px rgba(63, 167, 107, 0); }
  100% { box-shadow: 0 0 0 0 rgba(63, 167, 107, 0); }
}

/* ============ Cart Drawer ============ */

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(59, 47, 42, 0.5);
  z-index: 700;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

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

.cart-drawer {
  position: fixed;
  top: 0;
  right: -420px;
  width: 100%;
  max-width: 420px;
  height: 100%;
  background: var(--cream);
  z-index: 800;
  transition: right 0.35s ease;
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
}

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

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  border-bottom: 1px solid var(--cream-dark);
}

.cart-header h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
}

.cart-close {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--cream-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-close svg {
  width: 15px;
  height: 15px;
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 18px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cart-item {
  display: flex;
  gap: 14px;
  background: var(--white);
  border-radius: 12px;
  padding: 12px;
  box-shadow: var(--shadow);
}

.cart-item-img {
  width: 64px;
  height: 76px;
  border-radius: 8px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-item-img svg {
  width: 55%;
  height: 55%;
  color: rgba(255, 255, 255, 0.85);
}

.cart-item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.cart-item-info h5 {
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.cart-item-meta {
  font-size: 0.75rem;
  color: var(--dark-soft);
  margin-bottom: 8px;
}

.cart-item-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.qty-control {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--cream-soft);
  border-radius: 100px;
  padding: 4px 8px;
}

.qty-control button {
  width: 20px;
  height: 20px;
  background: var(--white);
  border-radius: 50%;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-item-remove {
  color: #c65f4e;
  font-size: 0.75rem;
  text-decoration: underline;
}

.cart-footer {
  padding: 20px 24px 28px;
  border-top: 1px solid var(--cream-dark);
}

.cart-subtotal {
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.cart-total-row {
  font-size: 1.1rem;
  font-weight: 700;
  padding-top: 10px;
  margin-top: 4px;
  margin-bottom: 18px;
  border-top: 1px dashed var(--cream-dark);
}

/* ============ Shipping calculator ============ */

.shipping-calc {
  padding: 18px 24px;
  border-top: 1px solid var(--cream-dark);
  background: var(--cream-soft);
}

.shipping-calc-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 10px;
}

.shipping-calc-label svg {
  width: 18px;
  height: 18px;
  color: var(--gold-dark);
}

.shipping-calc-row {
  display: flex;
  gap: 8px;
}

.shipping-calc-row input {
  flex: 1;
  padding: 10px 14px;
  border-radius: 100px;
  border: 1px solid var(--cream-dark);
  font-family: inherit;
  font-size: 0.85rem;
  outline: none;
  background: var(--white);
}

.shipping-calc-row input:focus {
  border-color: var(--gold);
}

#shippingResult {
  margin-top: 14px;
}

.shipping-msg {
  font-size: 0.82rem;
  color: var(--dark-soft);
}

.shipping-msg.shipping-error {
  color: #c65f4e;
}

.shipping-address {
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.shipping-option {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: 10px;
  padding: 10px 12px;
  margin-bottom: 8px;
  cursor: pointer;
  transition: border-color 0.2s ease;
}

.shipping-option:has(input:checked) {
  border-color: var(--gold);
}

.shipping-option input[type="radio"] {
  accent-color: var(--gold);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.shipping-option-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  font-size: 0.82rem;
}

.shipping-option-info span {
  color: var(--dark-soft);
  font-size: 0.75rem;
}

.shipping-option-price {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--gold-dark);
}

.shipping-note {
  font-size: 0.7rem;
  color: var(--dark-soft);
  margin-top: 6px;
  line-height: 1.4;
}

.local-delivery {
  margin-top: 14px;
  padding: 14px;
  background: var(--cream);
  border: 1px dashed var(--gold);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.local-delivery strong {
  font-size: 0.85rem;
}

.local-delivery span {
  font-size: 0.78rem;
  color: var(--dark-soft);
  line-height: 1.4;
}

.local-delivery .btn {
  align-self: flex-start;
  margin-top: 4px;
}

.cart-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--dark-soft);
}

.cart-empty svg {
  width: 64px;
  height: 64px;
  color: var(--cream-dark);
  margin-bottom: 16px;
}

/* ============ Page Header (inner pages) ============ */

.page-header {
  padding: 56px 24px 40px;
  text-align: center;
  background: var(--cream-soft);
}

.breadcrumb {
  font-size: 0.82rem;
  color: var(--dark-soft);
  margin-top: 10px;
}

.breadcrumb a {
  color: var(--gold-dark);
  font-weight: 600;
}

/* ============ Contact page ============ */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--cream-dark);
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.9rem;
  outline: none;
  background: var(--cream);
}

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

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

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 24px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-info-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--cream-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  flex-shrink: 0;
}

.contact-info-icon svg {
  width: 22px;
  height: 22px;
}

.contact-info-item strong {
  display: block;
  margin-bottom: 3px;
}

.contact-info-item span {
  font-size: 0.88rem;
  color: var(--dark-soft);
}

.map-block {
  margin-top: 24px;
  height: 220px;
  border-radius: var(--radius);
  background: var(--cream-dark);
  overflow: hidden;
  color: var(--dark-soft);
  font-size: 0.85rem;
}

/* ============ Values strip ============ */

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

.value-item {
  text-align: center;
  padding: 24px 16px;
}

.value-item .icon-circle {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--cream-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
}

.icon-circle svg {
  width: 26px;
  height: 26px;
}

.value-item h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.value-item p {
  font-size: 0.85rem;
  color: var(--dark-soft);
}

/* ============ Toast ============ */

.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--dark);
  color: var(--cream);
  padding: 14px 26px;
  border-radius: 100px;
  font-size: 0.85rem;
  z-index: 900;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.toast .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
}

/* ============ Lembrete de sacola parada ============ */

.cart-reminder-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  max-width: 320px;
  background: var(--white);
  border: 1px solid var(--gold);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
  border-radius: 16px;
  padding: 20px 20px 18px;
  z-index: 950;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: all 0.35s ease;
}

.cart-reminder-banner.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.cart-reminder-banner p {
  margin: 0 0 14px;
  padding-right: 16px;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--dark);
}

.cart-reminder-close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: none;
  border: none;
  font-size: 0.85rem;
  color: var(--gray);
  cursor: pointer;
  line-height: 1;
}

@media (max-width: 768px) {
  .cart-reminder-banner {
    left: 16px;
    right: 16px;
    max-width: none;
    bottom: 16px;
  }
}

/* ============ About page extras ============ */

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

.team-card {
  text-align: center;
}

.team-avatar {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--gold-light), var(--blush));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: 14px;
}

.team-card strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.05rem;
}

.team-card span {
  font-size: 0.82rem;
  color: var(--dark-soft);
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  max-width: 640px;
  margin: 0 auto;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 19px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--cream-dark);
}

.timeline-item {
  display: flex;
  gap: 22px;
  padding-bottom: 36px;
  position: relative;
}

.timeline-dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
  z-index: 2;
}

.timeline-content strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.timeline-content span {
  font-size: 0.88rem;
  color: var(--dark-soft);
}

/* ============ Responsive ============ */

@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    height: 340px;
    order: -1;
  }

  .categories-grid,
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-split,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .about-visual {
    height: 280px;
    order: -1;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .values-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: 73px;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    gap: 0;
    padding: 8px 24px 16px;
    border-bottom: 1px solid var(--cream-dark);
    transform: translateY(-150%);
    opacity: 0;
    transition: all 0.25s ease;
    pointer-events: none;
  }

  .nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav a {
    padding: 12px 0;
    border-bottom: 1px solid var(--cream-soft);
  }

  .menu-toggle {
    display: flex;
  }

  .instagram-section,
  .newsletter {
    padding: 36px 24px;
  }

  .instagram-section {
    flex-direction: column;
    text-align: center;
  }

  .newsletter-form {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .categories-grid,
  .products-grid,
  .values-strip,
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 40px 20px 60px;
  }

  .section {
    padding: 56px 0;
  }
}
