/* ═══════════════════════════════════════════════════════════════
   SIND.CLUB — MARKETPLACE UI SYSTEM
   Identidade: Navy #0a1628 · Accent #00c896 · DM Sans + Syne
   ═══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@700;800&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,700;1,400&display=swap');

/* ── TOKENS ── */
:root {
  --navy:        #0a1628;
  --navy-mid:    #0f2040;
  --navy-card:   #0d1f3c;
  --blue:        #1a3a6e;
  --accent:      #00c896;
  --accent-dim:  #00a87a;
  --accent-glow: rgba(0,200,150,.18);
  --gold:        #f0b429;
  --white:       #f8fafc;
  --bg:          #f0f4f8;
  --border:      rgba(255,255,255,.08);
  --border-light:#e2e8f0;
  --text-main:   #1a2640;
  --text-muted:  #64748b;
  --red:         #f04060;
  --green:       #00c896;
  --shadow-sm:   0 1px 3px rgba(0,0,0,.08);
  --shadow-md:   0 4px 16px rgba(0,0,0,.1);
  --shadow-lg:   0 12px 40px rgba(0,0,0,.15);
  --shadow-glow: 0 8px 32px rgba(0,200,150,.2);
  --radius-sm:   6px;
  --radius-md:   10px;
  --radius-lg:   16px;
  --nav-h:       120px;
  --font-display:'Syne', sans-serif;
  --font-sans:   'DM Sans', sans-serif;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text-main);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
button { font-family: var(--font-sans); cursor: pointer; }
.container { max-width: 1220px; margin: 0 auto; padding: 0 20px; }

/* ══════════════════════════════════════════════════════════════
   TOPBAR
══════════════════════════════════════════════════════════════ */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,.55);
  font-size: 12px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(0,200,150,.1);
}
.topbar__inner { display: flex; justify-content: space-between; align-items: center; }
.topbar__left { display: flex; align-items: center; gap: 6px; color: rgba(255,255,255,.5); }
.topbar__left strong { color: var(--accent); font-weight: 600; }
.topbar__right { display: flex; gap: 18px; }
.topbar__link {
  color: rgba(255,255,255,.5);
  font-size: 11.5px;
  font-weight: 500;
  transition: color .2s;
  letter-spacing: .02em;
}
.topbar__link:hover { color: var(--accent); }

/* ══════════════════════════════════════════════════════════════
   HEADER
══════════════════════════════════════════════════════════════ */
.header {
  background: var(--navy);
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(0,200,150,.12);
  box-shadow: 0 4px 24px rgba(0,0,0,.3);
}
.header__inner {
  display: flex;
  align-items: center;
  gap: 24px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}
.logo img { height: 34px; width: auto; }
.logo-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.03em;
  line-height: 1;
}
.logo-text span { color: var(--accent); }

/* Search */
.search-box {
  flex: 1;
  display: flex;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.search-box:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0,200,150,.12);
}
.search-box input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 10px 16px;
  font-size: 14px;
  color: var(--white);
  outline: none;
  font-family: var(--font-sans);
}
.search-box input::placeholder { color: rgba(255,255,255,.35); }
.search-box button {
  background: var(--accent);
  border: none;
  padding: 0 18px;
  color: var(--navy);
  font-weight: 700;
  font-size: 15px;
  transition: background .2s;
}
.search-box button:hover { background: #00dba0; }

/* Actions */
.header-actions { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }

.user-info {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  transition: background .2s;
  color: var(--white);
}
.user-info:hover { background: rgba(255,255,255,.06); }
.user-avatar {
  width: 32px; height: 32px;
  background: var(--accent);
  color: var(--navy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 12px;
  font-family: var(--font-display);
  flex-shrink: 0;
}
.user-name { font-size: 13px; font-weight: 500; color: rgba(255,255,255,.8); }

.header-link {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,.65);
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  transition: color .2s, background .2s;
}
.header-link:hover { color: var(--accent); background: rgba(255,255,255,.05); }

.cart-btn {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-sm);
  font-size: 18px;
  color: var(--white);
  transition: border-color .2s, background .2s;
  text-decoration: none;
}
.cart-btn:hover { border-color: var(--accent); background: var(--accent-glow); color: var(--white); }
.cart-badge {
  position: absolute; top: -6px; right: -6px;
  background: var(--red); color: #fff;
  font-size: 9px; font-weight: 800;
  min-width: 17px; height: 17px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  padding: 0 4px;
  border: 2px solid var(--navy);
  font-family: var(--font-display);
}

/* ══════════════════════════════════════════════════════════════
   CATEGORY NAV STRIP
══════════════════════════════════════════════════════════════ */
.cat-nav {
  background: var(--navy-mid);
  border-bottom: 1px solid rgba(0,200,150,.1);
  padding: 0;
}
.cat-nav__inner {
  display: flex;
  align-items: center;
  gap: 2px;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 0 4px;
}
.cat-nav__inner::-webkit-scrollbar { display: none; }
.cat-nav__item {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 11px 14px;
  font-size: 12.5px;
  font-weight: 500;
  color: rgba(255,255,255,.5);
  white-space: nowrap;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
  text-decoration: none;
}
.cat-nav__item:hover,
.cat-nav__item.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}
.cat-nav__item .ci { font-size: 15px; }


/* ══════════════════════════════════════════════════════════════
   HERO BANNER CAROUSEL
══════════════════════════════════════════════════════════════ */
.hero-section { background: var(--navy); padding: 0; }
.hero-carousel {
  position: relative;
  overflow: hidden;
  height: 320px;
}
.hero-slide {
  position: absolute; inset: 0;
  display: flex; align-items: center;
  opacity: 0;
  transition: opacity .9s ease;
  overflow: hidden;
}
.hero-slide.active { opacity: 1; }
.hero-slide-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero-slide.active .hero-slide-bg { transform: scale(1); }
.hero-slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(10,22,40,.92) 0%, rgba(10,22,40,.6) 50%, rgba(10,22,40,.1) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 1220px; width: 100%;
  margin: 0 auto; padding: 0 20px;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,200,150,.15);
  border: 1px solid rgba(0,200,150,.3);
  color: var(--accent);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 10px;
}
.hero-title em { color: var(--accent); font-style: normal; }
.hero-sub {
  color: rgba(255,255,255,.6);
  font-size: .95rem;
  margin-bottom: 22px;
  max-width: 380px;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .88rem;
  padding: 11px 24px;
  border-radius: var(--radius-sm);
  transition: background .2s, transform .15s;
}
.hero-cta:hover { background: #00dba0; transform: translateY(-2px); color: var(--navy); }

/* Dots */
.hero-dots {
  position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 6px; z-index: 5;
}
.hero-dot {
  width: 6px; height: 6px;
  border-radius: 3px;
  background: rgba(255,255,255,.3);
  transition: width .3s, background .3s;
  cursor: pointer;
}
.hero-dot.active { width: 22px; background: var(--accent); }

/* ══════════════════════════════════════════════════════════════
   HIGHLIGHTS BAR
══════════════════════════════════════════════════════════════ */
.highlights {
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
  padding: 16px 0;
}
.highlights__inner {
  display: flex;
  gap: 0;
}
.highlight-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
  border-right: 1px solid var(--border-light);
}
.highlight-item:last-child { border-right: none; }
.hi-icon {
  width: 40px; height: 40px;
  background: var(--accent-glow);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.hi-text h4 { font-size: 13px; font-weight: 700; color: var(--text-main); }
.hi-text p { font-size: 12px; color: var(--text-muted); margin-top: 1px; }
.hi-text strong { color: var(--accent); }

/* ══════════════════════════════════════════════════════════════
   SECTION / CAROUSEL SYSTEM
══════════════════════════════════════════════════════════════ */
.sc-section { padding: 28px 0; }
.sc-section + .sc-section { padding-top: 0; }

.sc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.sc-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 8px;
}
.sc-title .icon { font-size: 1.15rem; }
.sc-link {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--accent-dim);
  transition: color .2s;
}
.sc-link:hover { color: var(--accent); }

/* Carousel wrapper */
.carousel-wrapper {
  position: relative;
}
.carousel-track-outer {
  overflow: hidden;
  border-radius: var(--radius-md);
}
.carousel-track {
  display: flex;
  gap: 12px;
  transition: transform .4s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}

/* Carousel nav arrows */
.c-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px; height: 36px;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  color: var(--text-main);
  cursor: pointer;
  z-index: 10;
  box-shadow: var(--shadow-md);
  transition: background .2s, border-color .2s, color .2s, box-shadow .2s;
}
.c-arrow:hover {
  background: var(--navy);
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: var(--shadow-glow);
}
.c-arrow.prev { left: -16px; }
.c-arrow.next { right: -16px; }
.c-arrow:disabled { opacity: .3; cursor: default; }
.c-arrow:disabled:hover { background: var(--white); border-color: var(--border-light); color: var(--text-main); box-shadow: var(--shadow-md); }

/* ══════════════════════════════════════════════════════════════
   PRODUCT CARD
══════════════════════════════════════════════════════════════ */
.product-card {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  overflow: hidden;
  cursor: pointer;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  width: 185px;
}
.product-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0,200,150,.4);
}

.card-media {
  height: 150px;
  display: flex; align-items: center; justify-content: center;
  font-size: 62px;
  background: #f8fafc;
  border-bottom: 1px solid var(--border-light);
  position: relative;
  overflow: hidden;
}
.card-media img,
.hero-slide-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* banner */
  display: block;
}
.card-badge {
  position: absolute; top: 8px; left: 8px;
  background: var(--red);
  color: #fff;
  font-size: 9.5px; font-weight: 800;
  padding: 2px 7px;
  border-radius: 4px;
  font-family: var(--font-display);
}
.card-badge.green { background: var(--accent); color: var(--navy); }

.card-body { padding: 11px 12px; display: flex; flex-direction: column; flex: 1; gap: 3px; }
.card-loja {
  font-size: 10px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .04em;
}
.card-title {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text-main);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 36px;
}
.card-price-old {
  font-size: 11px;
  text-decoration: line-through;
  color: var(--text-muted);
  margin-top: 4px;
}
.card-price {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.1;
}
.card-economy {
  font-size: 11px;
  color: var(--accent-dim);
  font-weight: 600;
}
.card-installment {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 2px;
}
.card-add {
  margin-top: 8px;
  width: 100%;
  padding: 7px;
  background: var(--navy);
  color: var(--accent);
  border: 1px solid rgba(0,200,150,.2);
  border-radius: var(--radius-sm);
  font-size: 11.5px;
  font-weight: 700;
  font-family: var(--font-display);
  transition: background .2s, color .2s, border-color .2s;
}
.card-add:hover {
  background: var(--accent);
  color: var(--navy);
  border-color: var(--accent);
}

/* ══════════════════════════════════════════════════════════════
   STORE CARD (carrossel de lojas)
══════════════════════════════════════════════════════════════ */
.store-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 18px 14px;
  text-align: center;
  cursor: pointer;
  flex-shrink: 0;
  width: 140px;
  transition: transform .2s, border-color .2s, box-shadow .2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.store-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0,200,150,.4);
  box-shadow: var(--shadow-glow);
}
.store-logo {
  width: 64px; height: 64px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy);
  border: 1px solid var(--border-light);
}
.store-name {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-main);
  line-height: 1.3;
}
.store-badge {
  font-size: 10px;
  background: rgba(0,200,150,.1);
  color: var(--accent-dim);
  padding: 2px 8px;
  border-radius: 10px;
  font-weight: 600;
}

/* ══════════════════════════════════════════════════════════════
   SECTION BG DARK (navy)
══════════════════════════════════════════════════════════════ */
.section-dark {
  background: var(--navy);
  padding: 28px 0;
}
.section-dark .sc-title { color: var(--white); }
.section-dark .sc-link { color: var(--accent-dim); }
.section-dark .product-card {
  background: var(--navy-card);
  border-color: rgba(255,255,255,.08);
}
.section-dark .product-card:hover {
  border-color: rgba(0,200,150,.35);
}
.section-dark .card-media { background: rgba(255,255,255,.03); border-bottom-color: rgba(255,255,255,.06); }
.section-dark .card-title { color: rgba(255,255,255,.85); }
.section-dark .card-price { color: var(--white); }
.section-dark .store-card {
  background: var(--navy-card);
  border-color: rgba(255,255,255,.08);
}
.section-dark .store-name { color: rgba(255,255,255,.8); }
.section-dark .c-arrow {
  background: var(--navy-mid);
  border-color: rgba(255,255,255,.12);
  color: rgba(255,255,255,.7);
}
.section-dark .c-arrow:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--navy);
}

/* ══════════════════════════════════════════════════════════════
   CATALOG PAGE (produtos.html)
══════════════════════════════════════════════════════════════ */
.catalog-page { padding: 28px 0 48px; }
.catalog-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
  align-items: start;
}

/* Sidebar */
.sidebar {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  overflow: hidden;
  position: sticky;
  top: 80px;
}
.sidebar-header {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border-light);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: .85rem;
  color: var(--text-main);
  display: flex; align-items: center; gap: 8px;
}
.sidebar-section { padding: 14px 16px; border-bottom: 1px solid var(--border-light); }
.sidebar-section:last-child { border-bottom: none; }
.sidebar-section h5 {
  font-family: var(--font-display);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.filter-btn {
  width: 100%;
  text-align: left;
  padding: 7px 10px;
  background: none;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-size: 13px;
  color: var(--text-main);
  font-family: var(--font-sans);
  transition: background .15s, border-color .15s, color .15s;
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 3px;
}
.filter-btn:hover { background: rgba(0,200,150,.06); color: var(--accent-dim); }
.filter-btn.active {
  background: rgba(0,200,150,.1);
  border-color: rgba(0,200,150,.25);
  color: var(--accent-dim);
  font-weight: 600;
}
.filter-btn .fi { font-size: 14px; }

/* Catalog Grid */
.catalog-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.catalog-count { font-size: 13px; color: var(--text-muted); }
.catalog-sort {
  font-size: 13px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 6px 12px;
  background: var(--white);
  color: var(--text-main);
  outline: none;
  font-family: var(--font-sans);
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 14px;
}
.catalog-grid .product-card { width: 100%; }

/* ══════════════════════════════════════════════════════════════
   PRODUCT DETAIL PAGE
══════════════════════════════════════════════════════════════ */
.product-detail { padding: 24px 0 48px; }
.pd-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 24px;
  align-items: start;
}
.pd-gallery {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  padding: 32px;
  display: flex; align-items: center; justify-content: center;
  font-size: 130px;
  min-height: 360px;
}
.pd-gallery img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* ou cover */
  display: block;
}
.pd-info {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  padding: 28px;
}
.pd-seller {
  font-size: 12px; color: var(--accent-dim); font-weight: 600; margin-bottom: 10px;
  display: flex; align-items: center; gap: 6px;
}
.pd-title {
  font-family: var(--font-display);
  font-size: 1.4rem; font-weight: 800;
  color: var(--text-main);
  line-height: 1.2; margin-bottom: 12px;
}
.pd-rating { display: flex; align-items: center; gap: 6px; font-size: 13px; margin-bottom: 20px; }
.pd-rating .stars { color: #f0b429; letter-spacing: 1px; }
.pd-rating span { color: var(--text-muted); }

.pd-price-box {
  background: #f8fafc;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 20px;
}
.pd-price-old { font-size: 13px; text-decoration: line-through; color: var(--text-muted); }
.pd-price {
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 800;
  color: var(--text-main); line-height: 1.1;
  margin: 4px 0;
}
.pd-price-badge {
  display: inline-flex;
  background: var(--accent);
  color: var(--navy);
  font-size: 11px; font-weight: 800;
  padding: 3px 9px; border-radius: 4px;
  font-family: var(--font-display);
  margin-left: 8px;
  vertical-align: middle;
}
.pd-installment { font-size: 13px; color: var(--text-muted); margin-top: 6px; }
.pd-eco {
  font-size: 12px; font-weight: 700;
  color: var(--accent-dim);
  margin-top: 8px; display: flex; align-items: center; gap: 5px;
}

.pd-btn-add {
  width: 100%;
  padding: 14px;
  background: var(--navy);
  color: var(--accent);
  border: 2px solid rgba(0,200,150,.2);
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: 1rem; font-weight: 800;
  transition: background .2s, color .2s, border-color .2s;
  margin-bottom: 10px;
}
.pd-btn-add:hover {
  background: var(--accent);
  color: var(--navy);
  border-color: var(--accent);
}
.pd-btn-buy {
  width: 100%;
  padding: 14px;
  background: var(--accent);
  color: var(--navy);
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: 1rem; font-weight: 800;
  transition: background .2s, transform .15s;
}
.pd-btn-buy:hover { background: #00dba0; transform: translateY(-1px); }

/* Breadcrumb */
.breadcrumb {
  display: flex; align-items: center; gap: 6px;
  font-size: 12.5px; color: var(--text-muted);
  margin-bottom: 16px;
}
.breadcrumb a { color: var(--accent-dim); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { opacity: .4; }

/* ══════════════════════════════════════════════════════════════
   CART PAGE
══════════════════════════════════════════════════════════════ */
.cart-page { padding: 28px 0 60px; }
.cart-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 20px;
  align-items: start;
}
.cart-panel {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.cart-panel-header {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-light);
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 800;
  color: var(--text-main);
  display: flex; align-items: center; gap: 8px;
}
.cart-item {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-light);
}
.cart-item:last-child { border-bottom: none; }
.ci-img {
  width: 72px; height: 72px;
  background: #f8fafc;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 36px;
  flex-shrink: 0;
  border: 1px solid var(--border-light);
 overflow: hidden;
}
.ci-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.ci-name {
  font-size: 13px; font-weight: 600;
  color: var(--text-main);
  line-height: 1.4;
  margin-bottom: 3px;
}
.ci-store { font-size: 11px; color: var(--text-muted); }
.ci-qty {
  display: flex; align-items: center; gap: 10px;
  margin-top: 10px;
}
.ci-qty button {
  width: 26px; height: 26px;
  border: 1px solid var(--border-light);
  border-radius: 50%;
  background: var(--white);
  font-size: 14px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  transition: border-color .2s, background .2s;
}
.ci-qty button:hover { border-color: var(--accent); background: rgba(0,200,150,.06); }
.ci-qty span { font-size: 14px; font-weight: 700; min-width: 20px; text-align: center; }
.ci-price { text-align: right; flex-shrink: 0; min-width: 110px; }
.ci-price .old { font-size: 11px; text-decoration: line-through; color: var(--text-muted); }
.ci-price .main {
  font-family: var(--font-display);
  font-size: 1.05rem; font-weight: 800;
  color: var(--navy);
}
.ci-remove {
  background: none; border: none; color: var(--text-muted);
  font-size: 16px; cursor: pointer; padding: 4px;
  transition: color .2s;
}
.ci-remove:hover { color: var(--red); }

/* Summary */
.cart-summary {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 20px;
  position: sticky; top: 80px;
}
.cs-title {
  font-family: var(--font-display);
  font-size: .95rem; font-weight: 800;
  color: var(--text-main);
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-light);
}
.cs-row {
  display: flex; justify-content: space-between;
  font-size: 13px; color: var(--text-muted);
  margin-bottom: 10px;
}
.cs-row.discount { color: var(--accent-dim); font-weight: 700; }
.cs-row.total {
  font-family: var(--font-display);
  font-size: 1.1rem; font-weight: 800;
  color: var(--text-main);
  margin-top: 14px; padding-top: 14px;
  border-top: 1px solid var(--border-light);
}
.cs-note { font-size: 11px; color: var(--text-muted); text-align: right; margin-top: 4px; }
.btn-checkout {
  display: block; width: 100%;
  padding: 14px;
  background: var(--accent);
  color: var(--navy);
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: 1rem; font-weight: 800;
  text-align: center;
  transition: background .2s, transform .15s;
  margin-top: 16px;
}
.btn-checkout:hover { background: #00dba0; transform: translateY(-1px); color: var(--navy); }
.btn-continue {
  display: block; width: 100%;
  padding: 10px;
  background: none;
  color: var(--accent-dim);
  border: 1px solid rgba(0,200,150,.2);
  border-radius: var(--radius-sm);
  font-size: 13px; font-weight: 600;
  text-align: center;
  transition: border-color .2s, color .2s;
  margin-top: 10px;
}
.btn-continue:hover { border-color: var(--accent); color: var(--accent); }

/* Cart empty */
.cart-empty { text-align: center; padding: 80px 40px; }
.cart-empty .ce-icon { font-size: 72px; margin-bottom: 20px; }
.cart-empty h2 { font-family: var(--font-display); font-size: 1.4rem; margin-bottom: 10px; color: var(--text-main); }
.cart-empty p { font-size: 14px; color: var(--text-muted); margin-bottom: 24px; }

/* ══════════════════════════════════════════════════════════════
   CHECKOUT PAGE
══════════════════════════════════════════════════════════════ */
.checkout-page { padding: 28px 0 60px; }
.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 20px;
  align-items: start;
}
.checkout-panel {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 16px;
}
.cp-header {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-light);
  font-family: var(--font-display);
  font-size: .9rem; font-weight: 800;
  color: var(--text-main);
  display: flex; align-items: center; gap: 8px;
}
.cp-body { padding: 20px; }

/* Form */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}
.form-row.full { grid-template-columns: 1fr; }
.form-group label {
  display: block;
  font-size: 12px; font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 5px;
}
.form-group input,
.form-group select {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--text-main);
  background: var(--white);
  font-family: var(--font-sans);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.form-group input:focus,
.form-group select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0,200,150,.1);
}

/* Payment badge */
.payment-methods { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.pm-badge {
  display: flex; align-items: center; gap: 6px;
  padding: 8px 12px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-size: 12px; font-weight: 600; cursor: pointer;
  transition: border-color .2s, background .2s;
}
.pm-badge.active {
  border-color: var(--accent);
  background: rgba(0,200,150,.06);
  color: var(--accent-dim);
}
.pm-badge:hover { border-color: rgba(0,200,150,.4); }

/* Checkout success */
.checkout-success {
  display: none;
  text-align: center;
  padding: 80px 40px;
}
.cs-check {
  width: 80px; height: 80px;
  background: var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 36px;
  margin: 0 auto 24px;
}
.checkout-success h2 {
  font-family: var(--font-display);
  font-size: 1.6rem; font-weight: 800; margin-bottom: 10px;
}
.checkout-success p { color: var(--text-muted); max-width: 400px; margin: 0 auto 24px; }

/* Order summary (checkout) */
.order-summary { background: var(--white); border: 1px solid var(--border-light); border-radius: var(--radius-md); overflow: hidden; position: sticky; top: 80px; }
.os-header {
  background: var(--navy);
  padding: 14px 18px;
  font-family: var(--font-display);
  font-size: .88rem; font-weight: 800;
  color: var(--white);
  display: flex; align-items: center; gap: 8px;
}
.os-header .accent { color: var(--accent); }
.os-body { padding: 16px 18px; }
.os-item {
  display: flex; justify-content: space-between;
  font-size: 12.5px; color: var(--text-muted);
  padding: 7px 0;
  border-bottom: 1px solid var(--border-light);
}
.os-item:last-child { border-bottom: none; }
.os-item span:first-child { flex: 1; padding-right: 10px; }
.os-item span:last-child { font-weight: 700; color: var(--text-main); }
.os-total {
  display: flex; justify-content: space-between;
  padding: 14px 18px;
  border-top: 2px solid var(--border-light);
  background: #f8fafc;
}
.os-total span:first-child { font-weight: 700; font-size: 14px; }
.os-total span:last-child {
  font-family: var(--font-display);
  font-size: 1.15rem; font-weight: 800;
  color: var(--navy);
}

/* ══════════════════════════════════════════════════════════════
   PROFILE PAGE
══════════════════════════════════════════════════════════════ */
.profile-page { padding: 28px 0 60px; }
.profile-hero {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex; align-items: center; gap: 24px;
  margin-bottom: 20px;
  position: relative; overflow: hidden;
}
.profile-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(0,200,150,.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(0,200,150,.04) 1px, transparent 1px);
  background-size: 44px 44px;
}
.profile-avatar {
  width: 80px; height: 80px;
  background: var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 800;
  color: var(--navy);
  flex-shrink: 0;
  position: relative; z-index: 1;
  border: 3px solid rgba(0,200,150,.3);
}
.profile-info { position: relative; z-index: 1; }
.profile-name {
  font-family: var(--font-display);
  font-size: 1.4rem; font-weight: 800; color: var(--white); margin-bottom: 4px;
}
.profile-email { font-size: 13px; color: rgba(255,255,255,.5); margin-bottom: 8px; }
.profile-status {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(0,200,150,.15);
  border: 1px solid rgba(0,200,150,.25);
  color: var(--accent);
  font-size: 11px; font-weight: 700;
  padding: 4px 12px; border-radius: 20px;
  font-family: var(--font-display);
}

.profile-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.profile-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 20px;
}
.pc-label { font-size: 11px; text-transform: uppercase; letter-spacing: .06em; color: var(--text-muted); font-weight: 600; margin-bottom: 6px; }
.pc-value { font-family: var(--font-display); font-size: 1.4rem; font-weight: 800; color: var(--navy); }
.pc-value.accent { color: var(--accent-dim); }

/* ══════════════════════════════════════════════════════════════
   SERVICES PAGE
══════════════════════════════════════════════════════════════ */
.service-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0,200,150,.3);
}
.sv-icon { font-size: 48px; margin-bottom: 16px; }
.sv-name { font-family: var(--font-display); font-size: 1rem; font-weight: 800; margin-bottom: 4px; }
.sv-prof { font-size: 12px; color: var(--text-muted); margin-bottom: 10px; }
.sv-rating { display: flex; align-items: center; gap: 5px; font-size: 13px; color: var(--gold); font-weight: 700; margin-bottom: 16px; }
.sv-rating span { color: var(--text-muted); font-weight: 400; font-size: 12px; }
.btn-request {
  width: 100%;
  padding: 10px;
  background: var(--navy);
  color: var(--accent);
  border: 1px solid rgba(0,200,150,.2);
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: .88rem; font-weight: 700;
  transition: background .2s, color .2s;
}
.btn-request:hover { background: var(--accent); color: var(--navy); border-color: var(--accent); }

/* ══════════════════════════════════════════════════════════════
   LOJAS PAGE
══════════════════════════════════════════════════════════════ */
.store-full-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  text-align: center;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.store-full-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
  border-color: rgba(0,200,150,.35);
}
.sfc-logo {
  width: 80px; height: 80px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.3rem; font-weight: 800;
  color: var(--navy);
  margin: 0 auto 14px;
  border: 1px solid var(--border-light);
}
.sfc-name { font-family: var(--font-display); font-size: 1rem; font-weight: 800; margin-bottom: 6px; }
.sfc-badge {
  display: inline-block;
  background: rgba(0,200,150,.1);
  color: var(--accent-dim);
  font-size: 11px; font-weight: 700;
  padding: 3px 10px; border-radius: 10px;
  margin-bottom: 16px;
}
.btn-store {
  width: 100%;
  padding: 9px;
  background: var(--navy);
  color: var(--accent);
  border: 1px solid rgba(0,200,150,.15);
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: .85rem; font-weight: 700;
  transition: background .2s, color .2s;
}
.btn-store:hover { background: var(--accent); color: var(--navy); }

/* ══════════════════════════════════════════════════════════════
   BENEFITS PAGE
══════════════════════════════════════════════════════════════ */
.benefit-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex; gap: 16px; align-items: flex-start;
  transition: border-color .2s, transform .2s;
}
.benefit-card:hover { border-color: rgba(0,200,150,.3); transform: translateY(-2px); }


.bc-icon{
  width:58px;
  height:58px;
  min-width:58px;

  display:flex;
  align-items:center;
  justify-content:center;

  border-radius:16px;

  background:rgba(0,200,150,.12);
  border:1px solid rgba(0,200,150,.18);

  color:var(--accent);

  font-size:24px;
}

.bc-icon i{
  color:var(--accent);
}






.bc-title { font-family: var(--font-display); font-size: .95rem; font-weight: 800; color: var(--accent); margin-bottom: 5px; }
.bc-desc { font-size: .85rem; color: rgba(255,255,255,.6); line-height: 1.6; }

/* ══════════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════════ */
.footer {
  background: var(--navy);
  border-top: 1px solid rgba(0,200,150,.1);
  padding: 40px 0 0;
  margin-top: 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 36px;
}
.footer h4 {
  font-family: var(--font-display);
  font-size: .8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,.5);
  margin-bottom: 14px;
}
.footer-text { font-size: 13px; color: rgba(255,255,255,.35); line-height: 1.7; margin-top: 10px; }
.footer-links a {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,.45);
  margin-bottom: 8px;
  transition: color .2s;
}
.footer-links a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 16px 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: rgba(255,255,255,.25);
}
.footer-bottom a { color: var(--accent-dim); font-weight: 500; }

/* ══════════════════════════════════════════════════════════════
   UTILITIES / REUSABLE
══════════════════════════════════════════════════════════════ */
.page-title {
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 800;
  color: var(--text-main);
  margin-bottom: 4px;
  display: flex; align-items: center; gap: 10px;
}
.page-subtitle { font-size: 13.5px; color: var(--text-muted); margin-bottom: 20px; }

.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 24px;
  background: var(--accent);
  color: var(--navy);
  border: none; border-radius: var(--radius-sm);
  font-family: var(--font-display); font-size: .9rem; font-weight: 800;
  cursor: pointer; transition: background .2s, transform .15s;
}
.btn-primary:hover { background: #00dba0; transform: translateY(-2px); color: var(--navy); }

.tag {
  display: inline-block;
  font-size: 10.5px; font-weight: 700;
  padding: 2px 8px; border-radius: 4px;
  font-family: var(--font-display);
}
.tag-eco { background: rgba(0,200,150,.12); color: var(--accent-dim); }
.tag-new { background: rgba(26,58,110,.12); color: var(--blue); }
.tag-hot { background: rgba(240,64,96,.12); color: var(--red); }

/* Grid helpers */
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }

/* White background section */
.section-white { background: var(--white); }

/* ══════════════════════════════════════════════════════════════
   TOAST NOTIFICATION
══════════════════════════════════════════════════════════════ */
#toast {
  position: fixed;
  bottom: 30px; right: 24px;
  background: var(--navy);
  border: 1px solid rgba(0,200,150,.3);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: var(--shadow-lg);
  z-index: 9999;
  transform: translateY(80px);
  opacity: 0;
  transition: transform .35s cubic-bezier(.4,0,.2,1), opacity .35s;
  min-width: 260px;
}
#toast.show { transform: translateY(0); opacity: 1; }
#toast .t-icon { font-size: 20px; }
#toast .t-msg { font-size: 13px; font-weight: 600; color: var(--white); flex: 1; }
#toast .t-sub { font-size: 11px; color: var(--accent); }

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .catalog-layout { grid-template-columns: 200px 1fr; }
}
@media (max-width: 900px) {
  .catalog-layout { grid-template-columns: 1fr; }
  .sidebar { display: none; }
  .pd-layout { grid-template-columns: 1fr; }
  .cart-layout,
  .checkout-layout { grid-template-columns: 1fr; }
  .order-summary { position: static; }
  .cart-summary { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .profile-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .header__inner { gap: 12px; }
  .header-link { display: none; }
  .topbar__right { display: none; }
  .hero-carousel { height: 260px; }
  .highlights__inner { flex-direction: column; }
  .highlight-item { border-right: none; border-bottom: 1px solid var(--border-light); }
  .highlight-item:last-child { border-bottom: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .profile-grid { grid-template-columns: 1fr; }
  .catalog-grid { grid-template-columns: repeat(2, 1fr); }
  .catalog-grid .product-card { width: 100%; }
}


/* =========================
   FONT AWESOME ICONS
========================= */

.ci,
.fi,
.bc-icon,
.sv-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.ci i,
.fi i,
.bc-icon i,
.sv-icon i {
  line-height: 1;
}

/* NAV CATEGORIAS */
.ci i {
  font-size: 18px;
}

/* SIDEBAR */
.fi i {
  font-size: 14px;
}

/* BENEFICIOS */
.bc-icon i {
  font-size: 28px;
}

/* SERVICOS */
.sv-icon i {
  font-size: 26px;
}

/* =========================================
   MOBILE FIX — REMOVE SCROLL HORIZONTAL
========================================= */

html,
body{
  overflow-x:hidden;
  max-width:100%;
}

/* Containers */
.container{
  width:100%;
  max-width:100%;
  overflow-x:hidden;
}

/* Grid layouts internas */
@media (max-width:768px){

  .grid-2,
  .grid-3,
  .grid-4,
  .profile-grid,
  .catalog-layout,
  .cart-layout,
  .pd-layout{
    grid-template-columns:1fr !important;
  }

  /* Produtos */
  #catalog-grid{
    grid-template-columns:repeat(2, minmax(0,1fr)) !important;
    gap:12px;
  }

  /* Evita cards estourarem */
  .product-card,
  .benefit-card,
  .service-card,
  .profile-card,
  .cart-panel{
    min-width:0;
    width:100%;
  }

  /* Imagens */
  img{
    max-width:100%;
    height:auto;
  }

  /* Select do catálogo */
  .catalog-toolbar{
    flex-direction:column;
    align-items:flex-start;
    gap:12px;
  }

  .catalog-toolbar select{
    width:100%;
  }
}