/* ===========================================================
   Grupo Doramel — folha de estilos principal
   Paleta: dourado/âmbar (identidade da marca) + cinza-chumbo
   =========================================================== */

:root {
  --gold-light: #e9c368;
  --gold: #c8961e;
  --gold-dark: #8a5e13;
  --charcoal: #333333;
  --gray: #5c5c5c;
  --gray-light: #8a8a8a;
  --bg: #ffffff;
  --bg-alt: #f7f5f0;
  --bg-dark: #1f1c16;
  --border: #e6e0d4;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(31, 28, 22, 0.09);
  --shadow-sm: 0 4px 14px rgba(31, 28, 22, 0.06);
  --max-width: 1200px;
  font-size: 16px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--charcoal);
  background: var(--bg);
  line-height: 1.6;
}

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

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 16px;
  color: var(--charcoal);
}

h1 { font-size: clamp(2rem, 4vw, 2.9rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); }
h3 { font-size: 1.25rem; }

p { margin: 0 0 16px; color: var(--gray); }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 10px;
}

.section {
  padding: 72px 0;
}

.section-alt {
  background: var(--bg-alt);
}

.section-header {
  max-width: 680px;
  margin: 0 0 40px;
}

.section-header.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 60%, var(--gold-dark));
  color: #fff;
  box-shadow: var(--shadow-sm);
}

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

.btn-outline {
  background: transparent;
  border-color: var(--charcoal);
  color: var(--charcoal);
}

.btn-outline:hover { background: var(--charcoal); color: #fff; }

.btn-light {
  background: #fff;
  color: var(--charcoal);
}

.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow); }

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

/* ---------- Logo ---------- */

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: inherit;
}

.logo svg { height: 40px; width: auto; }

.logo-icon-img { height: 42px; width: auto; display: block; }

.logo-text { display: flex; flex-direction: column; line-height: 1; }

.logo-text .g1 {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.logo-text .g2 {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  color: var(--gold-dark);
  margin-top: 2px;
  opacity: 0.85;
}

.logo-full { display: inline-flex; }
.logo-full-img { height: 110px; width: auto; display: block; }

/* ---------- Header ---------- */

header.site-header {
  position: sticky;
  top: 14px;
  z-index: 100;
  background: transparent;
  padding: 0 16px;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 22px;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: 999px;
  box-shadow: 0 10px 28px rgba(31, 28, 22, 0.1);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--charcoal);
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.15s ease, color 0.15s ease;
}

.nav-links a:hover,
.nav-links a.active {
  border-color: var(--gold);
  color: var(--gold-dark);
}

.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-cta .btn span.short { display: none; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--charcoal);
}

@media (max-width: 860px) {
  .nav-links {
    position: fixed;
    inset: 84px 16px auto 16px;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px 28px;
    gap: 16px;
    border-radius: 20px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    transform: translateY(-140%);
    transition: transform 0.25s ease;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-toggle { display: block; }
  .nav-cta .btn span.long { display: none; }
  .nav-cta .btn span.short { display: inline; }
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  padding: 90px 0 100px;
  background:
    radial-gradient(circle at 85% 10%, rgba(200, 150, 30, 0.14), transparent 45%),
    linear-gradient(180deg, #fffdf8, #ffffff);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.hero h1 { margin-bottom: 18px; }

.hero .lead { font-size: 1.1rem; max-width: 520px; }

.hero-actions { display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; }

.hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 46px;
  flex-wrap: wrap;
}

.hero-stat strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold-dark);
}

.hero-stat span {
  font-size: 0.85rem;
  color: var(--gray);
}

.hero-visual {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 380px;
  aspect-ratio: 4/3.1;
  background: var(--bg-alt);
}

.hero-visual img { width: 100%; height: 100%; object-fit: cover; }

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

/* ---------- Hero carousel ---------- */

.hero-visual img { transition: opacity 0.45s ease; }
.hero-visual img.fading { opacity: 0; }

.hero-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 16px;
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 2;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero-dot.active { background: #fff; transform: scale(1.25); }

/* ---------- Showcase / vitrine ---------- */

.showcase-section { padding-top: 60px; padding-bottom: 60px; }

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

@media (max-width: 980px) { .showcase-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .showcase-grid { grid-template-columns: 1fr; } }

.showcase-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.18s ease, transform 0.18s ease;
}

.showcase-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }

.showcase-photo {
  aspect-ratio: 4/3;
  width: 100%;
  background: #f2efe7;
  overflow: hidden;
}

.showcase-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.showcase-card:hover .showcase-photo img { transform: scale(1.06); }

.showcase-photo.no-photo,
.showcase-photo .no-photo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: var(--gray-light);
  font-size: 0.8rem;
  text-align: center;
  padding: 10px;
}

.showcase-body { padding: 18px 20px 22px; display: flex; flex-direction: column; gap: 6px; }

.showcase-cat {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.showcase-body h3 { font-size: 1.02rem; margin: 4px 0 2px; }
.showcase-body p { font-size: 0.88rem; color: var(--gray); margin: 0 0 6px; }

/* ---------- Category cards ---------- */

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

@media (max-width: 980px) { .cat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .cat-grid { grid-template-columns: 1fr; } }

.cat-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--gold-light);
}

.cat-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-bottom: 6px;
}

.cat-card h3 { margin-bottom: 4px; }
.cat-card p { font-size: 0.92rem; margin-bottom: 0; }
.cat-card .count { font-size: 0.78rem; font-weight: 700; color: var(--gold-dark); }

/* ---------- Feature list / about ---------- */

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

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

.feature-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 16px; }

.feature-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 0.98rem;
  color: var(--charcoal);
}

.feature-list .dot {
  flex: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  margin-top: 2px;
}

/* ---------- Product grid & cards ---------- */

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}

.filter-btn {
  border: 1px solid var(--border);
  background: #fff;
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--gray);
  transition: all 0.15s ease;
}

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

.filter-btn.active {
  background: var(--charcoal);
  border-color: var(--charcoal);
  color: #fff;
}

.product-search {
  display: flex;
  gap: 10px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.product-search input {
  flex: 1;
  min-width: 220px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-size: 0.95rem;
}

.product-search input:focus { outline: 2px solid var(--gold-light); }

.category-block { margin-bottom: 58px; }

.category-title {
  display: flex;
  align-items: baseline;
  gap: 12px;
  border-bottom: 2px solid var(--gold-light);
  padding-bottom: 10px;
  margin-bottom: 26px;
}

.category-title h2 { margin: 0; }
.category-title span { color: var(--gray-light); font-size: 0.85rem; }

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

@media (max-width: 980px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .product-grid { grid-template-columns: 1fr; } }

.product-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.18s ease, transform 0.18s ease;
}

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

.product-photo {
  aspect-ratio: 4/3;
  width: 100%;
  background: #f2efe7;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-photo img { width: 100%; height: 100%; object-fit: contain; }

.product-photo.no-photo {
  color: var(--gray-light);
  font-size: 0.8rem;
  text-align: center;
  padding: 10px;
}

.product-body { padding: 18px 20px 22px; display: flex; flex-direction: column; gap: 8px; flex: 1; }

.product-body h3 { font-size: 1.02rem; margin: 0; }

.product-desc { font-size: 0.88rem; color: var(--gray); margin: 0; }

.spec-list {
  list-style: none;
  margin: 6px 0 0;
  padding: 10px 0 0;
  border-top: 1px dashed var(--border);
  display: grid;
  gap: 5px;
}

.spec-list li {
  font-size: 0.82rem;
  color: var(--gray);
  display: flex;
  gap: 6px;
}

.spec-list li::before {
  content: "\2022";
  color: var(--gold);
  font-weight: 700;
}

.product-foot {
  margin-top: auto;
  padding-top: 14px;
}

.quote-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold-dark);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ---------- CTA band ---------- */

.cta-band {
  background: linear-gradient(120deg, #2a2620, #1f1c16 60%);
  color: #fff;
  border-radius: 18px;
  padding: 52px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.cta-band h2 { color: #fff; margin-bottom: 6px; }
.cta-band p { color: #d8d2c4; margin-bottom: 0; }

/* ---------- Footer ---------- */

footer.site-footer {
  background: var(--bg-dark);
  color: #cfc9ba;
  padding: 56px 0 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 40px;
}

@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-grid h4 {
  color: #fff;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-grid ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer-grid a, .footer-grid p { color: #b9b2a0; font-size: 0.9rem; }
.footer-grid a:hover { color: var(--gold-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.8rem;
  color: #8b8577;
}

/* ---------- Contact page ---------- */

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

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

.contact-info-card {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 32px;
  display: grid;
  gap: 22px;
}

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

.contact-info-item .ico {
  flex: none;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.contact-info-item strong { display: block; font-size: 0.95rem; }
.contact-info-item span, .contact-info-item a { font-size: 0.9rem; color: var(--gray); }

form.contact-form { display: grid; gap: 16px; }

form.contact-form label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--charcoal);
  display: block;
  margin-bottom: 6px;
}

form.contact-form input,
form.contact-form select,
form.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid var(--border);
  font-family: inherit;
  font-size: 0.95rem;
}

form.contact-form input:focus,
form.contact-form select:focus,
form.contact-form textarea:focus { outline: 2px solid var(--gold-light); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }

/* ---------- About / timeline ---------- */

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 800px) { .value-grid { grid-template-columns: 1fr; } }

.value-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
}

.value-card .cat-icon { margin-bottom: 14px; }

/* ---------- Breadcrumb / page header ---------- */

.page-hero {
  padding: 56px 0 46px;
  background: linear-gradient(180deg, #fffdf8, #ffffff);
  border-bottom: 1px solid var(--border);
}

.page-hero p.lead { max-width: 640px; font-size: 1.05rem; }

/* ---------- Utility ---------- */

.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.hidden { display: none !important; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(200, 150, 30, 0.12);
  color: var(--gold-dark);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
}

.whatsapp-float {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 200;
  background: #25d366;
  color: #fff;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  transition: transform 0.15s ease;
}
.whatsapp-float:hover { transform: scale(1.08); }

/* ---------- Trust strip ---------- */

.trust-strip {
  padding: 30px 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

@media (max-width: 900px) { .trust-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .trust-grid { grid-template-columns: 1fr; } }

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.trust-icon {
  flex: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fff;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
}

.trust-item strong { display: block; font-size: 0.92rem; color: var(--charcoal); }
.trust-item span { display: block; font-size: 0.82rem; color: var(--gray); }

/* ---------- Feature badge cards ---------- */

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

@media (max-width: 980px) { .feature-badge-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .feature-badge-grid { grid-template-columns: 1fr; } }

.feature-badge-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 30px 26px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.feature-badge-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.fb-number {
  position: absolute;
  top: 18px;
  right: 22px;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--border);
}

.fb-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.feature-badge-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.feature-badge-card p { font-size: 0.9rem; margin: 0; }

/* ---------- Segment carousel ---------- */

.segment-carousel {
  display: flex;
  align-items: center;
  gap: 14px;
}

.segment-track {
  flex: 1;
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 6px 2px 14px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.segment-track::-webkit-scrollbar { display: none; }

.segment-card {
  scroll-snap-align: start;
  flex: 0 0 clamp(220px, 27%, 300px);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 26px 22px;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.segment-card p { color: var(--gray); font-size: 0.9rem; }

.segment-card.active {
  background: linear-gradient(135deg, #2a2620, #1f1c16 70%);
  color: #fff;
  border-color: transparent;
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}

.segment-card.active h3,
.segment-card.active p { color: #fff; }
.segment-card.active p { color: #cfc9ba; }

.segment-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.segment-card.active .segment-icon { background: linear-gradient(135deg, var(--gold-light), var(--gold-dark)); }

.segment-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--bg-alt);
  color: var(--gold-dark);
  font-size: 1.1rem;
  margin-top: 10px;
  transition: background 0.15s ease, color 0.15s ease;
}

.segment-card.active .segment-arrow { background: rgba(255,255,255,0.12); color: #fff; }
.segment-arrow:hover { background: var(--gold); color: #fff; }

.segment-nav-btn {
  flex: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--charcoal);
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease, color 0.15s ease;
}

.segment-nav-btn:hover { background: var(--charcoal); color: #fff; }

@media (max-width: 700px) { .segment-nav-btn { display: none; } }

.segment-dots {
  display: none;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}

.segment-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease;
}

.segment-dot.active { background: var(--gold); transform: scale(1.3); }

@media (max-width: 700px) { .segment-dots { display: flex; } }

/* ---------- General polish ---------- */

.showcase-card,
.product-card,
.cat-card {
  box-shadow: var(--shadow-sm);
}

.value-grid { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) { .value-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .value-grid { grid-template-columns: 1fr; } }

.value-card {
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
