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

:root {
  --bg: #FBF8F1;
  --bg-warm: #F1E9D6;
  --tile: #EFE7D5;
  --line: #E5DDC8;
  --maroon: #7A2E2E;
  --maroon-dark: #5F2222;
  --brown: #6B4226;
  --dark: #2B2118;
  --muted: #8A7F6C;
  --white: #FFFFFF;
  --gold: #B8862E;

  --wa-green: #25D366;
  --wa-green-dark: #128C7E;

  --font-display: 'Cormorant Garamond', 'Georgia', serif;
  --font-body: 'Plus Jakarta Sans', 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--dark);
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

h1, h2, h3, .font-display {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.01em;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* ---------- Preloader ---------- */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.loaded {
  opacity: 0;
  visibility: hidden;
}

.preloader-logo-wrap {
  position: relative;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preloader-logo-wrap img {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  animation: logoPulse 1.6s ease-in-out infinite;
}

.preloader-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: var(--gold);
  border-right-color: var(--maroon);
  animation: ringSpin 1.1s linear infinite;
}

@keyframes logoPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(184,134,46,0.35); }
  50% { transform: scale(1.06); box-shadow: 0 0 26px 6px rgba(184,134,46,0.28); }
}

@keyframes ringSpin {
  to { transform: rotate(360deg); }
}

/* ---------- Nav ---------- */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 40px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
}

.nav-brand { display: flex; align-items: center; gap: 14px; }

.nav-brand img {
  width: 46px; height: 46px;
  border-radius: 50%;
  object-fit: cover;
}

.nav-brand .titles h1 {
  font-size: 20px; margin: 0;
  letter-spacing: 0.04em; font-weight: 700;
}

.nav-brand .titles span {
  font-family: var(--font-body);
  font-size: 10px; letter-spacing: 0.14em;
  color: var(--muted);
}

.nav-links { display: flex; gap: 30px; font-size: 13.5px; font-weight: 500; }

.nav-links a {
  color: var(--dark); padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

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

.nav-actions { display: flex; align-items: center; gap: 14px; }

.header-social-icons {
  display: flex;
  align-items: center;
  gap: 14px;
}

.social-icon {
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.social-icon:hover {
  transform: scale(1.12);
  box-shadow: 0 4px 12px rgba(0,0,0,0.18);
}

.social-icon svg { width: 34px; height: 34px; }

a.whatsapp-nav {
  display: flex; align-items: center; gap: 8px;
  background: var(--wa-green);
  color: var(--white);
  padding: 9px 16px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 13px;
  transition: background 0.2s ease;
}

a.whatsapp-nav:hover { background: var(--wa-green-dark); }
a.whatsapp-nav svg { width: 17px; height: 17px; }

.nav-toggle {
  display: none; background: none; border: none;
  font-size: 24px; color: var(--dark); cursor: pointer;
  padding: 4px 8px;
}

.nav-links.mobile-open {
  display: flex !important;
  position: absolute; top: 100%; left: 0; right: 0;
  background: var(--white);
  flex-direction: column; gap: 0;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 16px rgba(43,33,24,0.08);
}

.nav-links.mobile-open a {
  padding: 14px 22px;
  border-bottom: 1px solid var(--line);
  border-left: 3px solid transparent;
}

.nav-links.mobile-open a.active, .nav-links.mobile-open a:hover {
  border-left-color: var(--maroon); color: var(--maroon);
}

/* social icons inside the mobile drawer (hidden on desktop) */
.drawer-social { display: none; }

/* ---------- Hero carousel ---------- */
.hero {
  position: relative;
  width: 100%;
  height: 540px;
  overflow: hidden;
  background: var(--dark);
}

.hero-slides { position: absolute; inset: 0; }

.hero-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1.1s ease;
}

.hero-slide.active { opacity: 1; }

.hero-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-slide::after {
  content: ""; position: absolute; inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.hero-inner {
  position: absolute;
  z-index: 2;
  bottom: 0; left: 0;
  padding: 56px 44px;
  max-width: 720px;
}

.hero .eyebrow { color: #E8C877; margin-bottom: 14px; }

.hero h2 {
  font-size: 52px; line-height: 1.1;
  margin: 0 0 16px; color: var(--white);
}

.hero p.sub {
  font-size: 16.5px; color: #EFE6D2;
  max-width: 560px; margin-bottom: 26px;
  font-family: var(--font-body); line-height: 1.6;
}

.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

.btn-primary {
  display: inline-block;
  background: var(--maroon); color: var(--white);
  font-weight: 700; font-size: 14.5px;
  padding: 15px 30px; border-radius: 6px;
  transition: background 0.2s ease;
  font-family: var(--font-body);
  border: none; cursor: pointer;
}

.btn-primary:hover { background: var(--maroon-dark); }

.btn-outline {
  display: inline-block;
  background: transparent; color: var(--white);
  font-weight: 700; font-size: 14.5px;
  padding: 15px 30px; border-radius: 6px;
  border: 1.5px solid rgba(255,255,255,0.7);
  transition: background 0.2s ease, color 0.2s ease;
  font-family: var(--font-body); cursor: pointer;
}

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

.hero-dots {
  position: absolute; z-index: 3;
  bottom: 22px; right: 44px;
  display: flex; gap: 9px;
}

.hero-dots button {
  width: 10px; height: 10px; border-radius: 50%;
  border: none; background: rgba(255,255,255,0.45);
  cursor: pointer; padding: 0;
  transition: background 0.2s ease;
}

.hero-dots button.active { background: var(--white); }

/* ---------- Trust badge strip ---------- */
.badge-strip { display: flex; flex-wrap: wrap; background: var(--dark); }

.badge-item {
  flex: 1 1 220px; padding: 22px 26px;
  color: #EDE3CC; font-size: 13px; font-weight: 600;
  display: flex; align-items: center; gap: 12px;
  border-right: 1px solid rgba(255,255,255,0.08);
}

.badge-item .icon { font-size: 20px; }

/* ---------- Category sections (single-page) ---------- */
.cat-section {
  scroll-margin-top: 80px;
}

.cat-section-head { margin-bottom: 30px; }
.cat-section-head h2 { font-size: 34px; margin: 0 0 6px; }
.cat-section-head p { color: var(--muted); margin: 0; font-size: 15px; font-family: var(--font-body); }

/* anchor offset for other scroll targets under sticky nav */
#finder, #faq, #contact, #categories, #home, #catalog, #about, #business, #location { scroll-margin-top: 80px; }

/* ---------- Category filter tabs ---------- */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 24px 40px 0;
  justify-content: center;
}

.filter-tab {
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 30px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--dark);
  cursor: pointer;
  transition: all 0.18s ease;
}

.filter-tab:hover { border-color: var(--maroon); color: var(--maroon); }

.filter-tab.active {
  background: var(--maroon);
  border-color: var(--maroon);
  color: var(--white);
}

.cat-section.filtered-out { display: none; }

/* ---------- Category switch pop-up animation ---------- */
@keyframes cardPopIn {
  from { opacity: 0; transform: scale(0.92) translateY(15px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.cat-section.animate-in .product-card {
  animation: cardPopIn 0.35s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.cat-section.animate-in .product-card:nth-child(1) { animation-delay: 0.05s; }
.cat-section.animate-in .product-card:nth-child(2) { animation-delay: 0.10s; }
.cat-section.animate-in .product-card:nth-child(3) { animation-delay: 0.15s; }
.cat-section.animate-in .product-card:nth-child(n+4) { animation-delay: 0.20s; }

/* ---------- Quick-view modal ---------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20, 14, 8, 0.72);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.modal-overlay.open { opacity: 1; visibility: visible; }

.modal {
  background: var(--white);
  border-radius: 10px;
  max-width: 880px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}

.modal-close {
  position: absolute;
  top: 14px; right: 14px;
  width: 38px; height: 38px;
  border-radius: 50%;
  border: none;
  background: rgba(43,33,24,0.08);
  color: var(--dark);
  font-size: 20px;
  cursor: pointer;
  z-index: 3;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s ease;
}

.modal-close:hover { background: rgba(43,33,24,0.18); }

.modal-img {
  flex: 1 1 380px;
  background: #F9F8F5;
  display: flex; align-items: center; justify-content: center;
  padding: 30px;
  min-height: 320px;
}

.modal-img img {
  max-width: 100%;
  max-height: 420px;
  object-fit: contain;
}

.modal-body {
  flex: 1 1 340px;
  padding: 40px 34px;
}

.modal-body .m-cat {
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 10px;
}

.modal-body h2 {
  font-size: 28px;
  margin: 0 0 12px;
  line-height: 1.2;
}

.modal-body .m-price {
  color: var(--maroon);
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 20px;
  font-family: var(--font-body);
}

.modal-body .m-specs-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brown);
  margin: 0 0 10px;
}

.modal-body ul.m-specs {
  margin: 0 0 24px;
  padding-left: 18px;
  font-size: 14px;
  line-height: 1.9;
  color: var(--dark);
  font-family: var(--font-body);
}

.modal-body .m-note {
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
  margin-bottom: 22px;
  font-family: var(--font-body);
}

.modal .whatsapp-btn {
  margin: 0;
  font-size: 15px;
  padding: 15px;
}

/* ---------- Featured auto-slider (home) ---------- */
.featured-slider {
  position: relative;
  overflow: hidden;
}

.featured-track {
  display: flex;
  gap: 30px;
  transition: transform 0.6s ease;
}

.featured-track .product-card {
  flex: 0 0 calc(33.333% - 20px);
  max-width: calc(33.333% - 20px);
}

.featured-arrows {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  margin-top: 22px;
}

.featured-arrows button {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--dark);
  font-size: 18px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.featured-arrows button:hover { background: var(--maroon); color: #fff; border-color: var(--maroon); }

.featured-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
  margin: 0 8px;
}

.featured-dots button {
  width: 9px; height: 9px;
  padding: 0;
  border-radius: 50%;
  border: none;
  background: rgba(43,33,24,0.25);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.featured-dots button.active {
  background: var(--maroon);
  transform: scale(1.25);
}

/* ---------- Modal badge + gallery ---------- */
.modal-img { position: relative; }

.modal-badge {
  position: absolute;
  top: 18px; left: 18px;
  z-index: 4;
  font-family: var(--font-body);
  font-size: 11px; font-weight: 800;
  letter-spacing: 0.09em; text-transform: uppercase;
  padding: 7px 14px; border-radius: 30px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.18);
}

.modal-gallery-thumbs {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-top: 16px;
}

.modal-gallery-thumbs img {
  width: 54px; height: 54px;
  object-fit: cover;
  border-radius: 6px;
  border: 2px solid transparent;
  cursor: pointer;
  background: #F9F8F5;
}

.modal-gallery-thumbs img.active { border-color: var(--maroon); }

/* ---------- About / Heritage section ---------- */
.about {
  padding: 70px 40px;
  background: var(--bg);
}

.about-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 48px;
}

.about-head .eyebrow {
  color: var(--maroon);
  margin-bottom: 16px;
  display: block;
}

.about-head h2 {
  font-size: 40px;
  line-height: 1.18;
  margin: 0 0 20px;
}

.about-head p {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
  margin: 0;
}

.pillar-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  max-width: 1150px;
  margin: 0 auto;
}

.pillar-card {
  flex: 1 1 300px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 34px 30px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(43,33,24,0.10);
}

.pillar-icon {
  width: 54px; height: 54px;
  border-radius: 12px;
  background: var(--bg-warm);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
}

.pillar-card h3 {
  font-size: 22px;
  margin: 0 0 12px;
  line-height: 1.3;
}

.pillar-card p {
  font-family: var(--font-body);
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--muted);
  margin: 0;
}

/* ---------- Trust counter strip ---------- */
.trust-strip {
  background: var(--dark);
  display: flex;
  flex-wrap: wrap;
  margin-top: 50px;
  border-radius: 14px;
  overflow: hidden;
  max-width: 1150px;
  margin-left: auto;
  margin-right: auto;
}

.trust-cell {
  flex: 1 1 25%;
  min-width: 200px;
  padding: 34px 26px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.1);
}

.trust-cell:last-child { border-right: none; }

.trust-cell .t-big {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  color: #E8C877;
  margin-bottom: 8px;
  line-height: 1.1;
}

.trust-cell .t-label {
  font-family: var(--font-body);
  font-size: 12.5px;
  line-height: 1.5;
  color: #D8CDB4;
  letter-spacing: 0.02em;
}

.about-cta {
  text-align: center;
  margin-top: 44px;
}

.about-cta a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--wa-green);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  padding: 15px 30px;
  border-radius: 8px;
  transition: background 0.2s ease;
}

.about-cta a:hover { background: var(--wa-green-dark); }
.about-cta a svg { width: 19px; height: 19px; }

@media (max-width: 900px) {
  .about { padding: 50px 22px; }
  .about-head h2 { font-size: 30px; }
  .trust-cell { flex-basis: 50%; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
}

/* ---------- Business / Inquiries section ---------- */
.biz {
  padding: 70px 40px;
  background: var(--bg-warm);
}

.biz-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 46px;
}

.biz-head .eyebrow { color: var(--maroon); margin-bottom: 16px; display: block; }
.biz-head h2 { font-size: 38px; line-height: 1.2; margin: 0 0 18px; }
.biz-head p { font-family: var(--font-body); font-size: 16px; line-height: 1.7; color: var(--muted); margin: 0; }

.biz-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  max-width: 1180px;
  margin: 0 auto;
}

.biz-card {
  flex: 1 1 250px;
  background: #F9F8F5;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.biz-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(43,33,24,0.10);
}

.biz-card .biz-icon {
  width: 48px; height: 48px;
  border-radius: 10px;
  background: var(--bg-warm);
  display: flex; align-items: center; justify-content: center;
  font-size: 23px;
  margin-bottom: 18px;
}

.biz-card h3 {
  font-size: 20px;
  margin: 0 0 12px;
  line-height: 1.3;
}

.biz-card p {
  font-family: var(--font-body);
  font-size: 13.8px;
  line-height: 1.65;
  color: var(--muted);
  margin: 0 0 18px;
  flex: 1;
}

.biz-card .biz-tag {
  align-self: flex-start;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--maroon);
  background: rgba(122,46,46,0.08);
  padding: 6px 12px;
  border-radius: 20px;
}

/* Card 4 contact rows */
.biz-card .biz-detail {
  font-family: var(--font-body);
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--dark);
  margin: 0 0 12px;
}

.biz-card .biz-detail strong {
  display: block;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 3px;
  font-weight: 700;
}

.biz-card .biz-detail a { color: var(--maroon); font-weight: 700; }

/* WhatsApp action banner */
.biz-banner {
  max-width: 1180px;
  margin: 34px auto 0;
  background: var(--dark);
  border-radius: 12px;
  padding: 26px 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.biz-banner .biz-banner-text {
  font-family: var(--font-display);
  font-size: 21px;
  color: #fff;
  font-weight: 600;
}

.biz-banner a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--wa-green);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14.5px;
  padding: 14px 26px;
  border-radius: 8px;
  white-space: nowrap;
  transition: background 0.2s ease;
}

.biz-banner a:hover { background: var(--wa-green-dark); }
.biz-banner a svg { width: 18px; height: 18px; }

@media (max-width: 900px) {
  .biz { padding: 50px 22px; }
  .biz-head h2 { font-size: 28px; }
  .biz-card { flex-basis: calc(50% - 11px); }
  .biz-banner { flex-direction: column; text-align: center; }
  .biz-banner .biz-banner-text { font-size: 19px; }
}

@media (max-width: 560px) {
  .biz-card { flex-basis: 100%; }
}

/* ---------- Business / inquiries section ---------- */
.biz {
  padding: 70px 40px;
  background: var(--bg-warm);
}

.biz-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 46px;
}

.biz-head .eyebrow {
  color: var(--maroon);
  margin-bottom: 14px;
  display: block;
}

.biz-head h2 {
  font-size: 36px;
  line-height: 1.2;
  margin: 0 0 18px;
}

.biz-head p {
  font-family: var(--font-body);
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--muted);
  margin: 0;
}

.biz-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  max-width: 1150px;
  margin: 0 auto;
}

.biz-card {
  flex: 1 1 240px;
  background: #F9F8F5;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 30px 26px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.biz-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(43,33,24,0.10);
}

.biz-card .b-icon {
  width: 48px; height: 48px;
  border-radius: 10px;
  background: var(--maroon);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
}

.biz-card h3 {
  font-size: 20px;
  margin: 0 0 10px;
  line-height: 1.3;
}

.biz-card p {
  font-family: var(--font-body);
  font-size: 13.8px;
  line-height: 1.65;
  color: var(--muted);
  margin: 0 0 16px;
}

.biz-card .b-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brown);
  background: var(--bg-warm);
  border: 1px solid var(--line);
  padding: 6px 12px;
  border-radius: 20px;
}

.biz-card .b-line {
  font-family: var(--font-body);
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--dark);
  margin: 0 0 6px;
}

.biz-card .b-line strong { color: var(--maroon); }

.biz-banner {
  max-width: 1150px;
  margin: 40px auto 0;
  background: var(--dark);
  border-radius: 12px;
  padding: 26px 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.biz-banner .bb-text {
  font-family: var(--font-display);
  font-size: 22px;
  color: #fff;
  font-weight: 600;
}

.biz-banner a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--wa-green);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14.5px;
  padding: 14px 26px;
  border-radius: 8px;
  transition: background 0.2s ease;
  white-space: nowrap;
}

.biz-banner a:hover { background: var(--wa-green-dark); }
.biz-banner a svg { width: 18px; height: 18px; }

@media (max-width: 900px) {
  .biz { padding: 50px 22px; }
  .biz-head h2 { font-size: 28px; }
  .biz-card { flex-basis: calc(50% - 11px); }
  .biz-banner { flex-direction: column; text-align: center; }
  .biz-banner .bb-text { font-size: 19px; }
}

@media (max-width: 560px) {
  .biz-card { flex-basis: 100%; }
}

/* ---------- Location / map section ---------- */
.location {
  padding: 70px 40px;
  background: var(--bg);
}

.location-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
}

.location-head .eyebrow {
  color: var(--maroon);
  margin-bottom: 14px;
  display: block;
}

.location-head h2 {
  font-size: 36px;
  line-height: 1.2;
  margin: 0 0 16px;
}

.location-head p {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
  margin: 0;
}

.location-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  max-width: 1150px;
  margin: 0 auto;
  align-items: stretch;
}

.location-map {
  flex: 1 1 560px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 360px;
}

.location-map iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
  display: block;
}

.location-card {
  flex: 1 1 300px;
  background: #F9F8F5;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.location-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.location-row:last-of-type { border-bottom: none; }

.location-row .l-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  border-radius: 10px;
  background: var(--maroon);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 19px;
}

.location-row .l-label {
  font-family: var(--font-body);
  font-size: 11.5px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--muted);
  margin-bottom: 3px;
}

.location-row .l-value {
  font-family: var(--font-body);
  font-size: 14.5px; line-height: 1.55;
  color: var(--dark); font-weight: 500;
}

.location-card .directions-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: 20px;
  background: var(--maroon);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14.5px;
  padding: 14px 22px;
  border-radius: 8px;
  transition: background 0.2s ease;
}

.location-card .directions-btn:hover { background: var(--maroon-dark); }

@media (max-width: 900px) {
  .location { padding: 50px 22px; }
  .location-head h2 { font-size: 28px; }
}

/* ---------- Page header ---------- */
.page-hero {
  background: var(--bg-warm);
  padding: 50px 40px;
  border-bottom: 1px solid var(--line);
}

.page-hero h2 { font-size: 38px; margin: 0 0 8px; }
.page-hero p { color: var(--muted); margin: 0; font-size: 15px; font-family: var(--font-body); }

/* ---------- Sections ---------- */
.section { padding: 55px 40px; }

.section-label {
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.14em; color: var(--muted);
  margin-bottom: 26px; text-transform: uppercase;
}

/* ---------- Category tiles ---------- */
.cat-grid { display: flex; flex-wrap: wrap; gap: 14px; }

.cat-tile {
  position: relative;
  border-radius: 12px;
  aspect-ratio: 16 / 10;
  height: 180px;
  flex: 1 1 calc(20% - 12px); max-width: calc(20% - 12px);
  overflow: hidden;
  background-color: #f4f3ef;
  display: flex; align-items: flex-end;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.cat-tile img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 45%;
  display: block;
  transition: transform 0.4s ease;
}

.cat-tile:hover img { transform: scale(1.05); }

.cat-tile::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.1) 50%, transparent 100%);
  pointer-events: none;
}

.cat-tile span {
  position: relative; z-index: 1;
  color: var(--white); font-weight: 700;
  font-size: 15.5px; padding: 12px 16px;
  font-family: var(--font-body);
}

.cat-tile:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(43,33,24,0.18); }

/* ---------- Product grid ---------- */
.product-grid { display: flex; flex-wrap: wrap; gap: 30px; align-items: flex-start; }

.product-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  display: flex; flex-direction: column;
  flex: 1 1 calc(33.333% - 20px);
  max-width: calc(33.333% - 20px);
}

.product-photo-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  height: 250px;
  background-color: #F9F8F5;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  cursor: pointer;
  overflow: hidden;
}

.product-photo-wrap img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  margin: 0 auto;
  display: block;
}

/* ---------- Product badge ---------- */
.product-badge {
  position: absolute;
  top: 12px; left: 12px;
  z-index: 4;
  font-family: var(--font-body);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 30px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.18);
}

.product-badge.best { background: linear-gradient(135deg, #E8B84B, #C9992E); color: #2B2118; }
.product-badge.popular { background: var(--maroon); color: #fff; }
.product-badge.newarr { background: #1F6E4C; color: #fff; }

/* ---------- In-card multi-angle slider ---------- */
.card-slider { position: relative; width: 100%; height: 100%; }

.card-slider-track {
  display: flex;
  height: 100%;
  transition: transform 0.35s ease;
}

.card-slide {
  min-width: 100%;
  height: 100%;
  display: flex; align-items: center; justify-content: center;
}

.card-slide img {
  max-width: 100%; max-height: 100%;
  object-fit: contain;
  object-position: center;
  margin: 0 auto;
  display: block;
}

.card-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 30px; height: 30px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.85);
  color: var(--dark);
  font-size: 15px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  z-index: 3;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  opacity: 0;
  transition: opacity 0.2s ease, background 0.2s ease;
}

.product-photo-wrap:hover .card-arrow { opacity: 1; }
.card-arrow:hover { background: #fff; }
.card-arrow.prev { left: 8px; }
.card-arrow.next { right: 8px; }

.card-dots {
  position: absolute;
  bottom: 8px; left: 0; right: 0;
  display: flex; justify-content: center; gap: 5px;
  z-index: 3;
}

.card-dots span {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(43,33,24,0.28);
  transition: background 0.2s ease;
}

.card-dots span.active { background: var(--maroon); }

.product-card .info { padding: 18px 18px 0; flex: 1; }

.product-card .info h3 {
  font-size: 19px; margin: 0 0 8px;
  line-height: 1.3; font-weight: 600;
  cursor: pointer;
}

.product-card .info h3:hover { color: var(--maroon); }

.product-card .price {
  color: var(--maroon); font-weight: 700;
  font-size: 16px; margin: 0 0 14px;
  font-family: var(--font-body);
}

/* ---------- Specs accordion ---------- */
details.specs {
  margin: 0 18px 14px;
  border-top: 1px solid var(--line);
  padding-top: 10px;
}

details.specs summary {
  cursor: pointer; font-size: 12.5px; font-weight: 700;
  letter-spacing: 0.06em; color: var(--brown);
  text-transform: uppercase; list-style: none;
}

details.specs summary::-webkit-details-marker { display: none; }
details.specs summary::after { content: "+"; float: right; font-size: 16px; }
details.specs[open] summary::after { content: "\2212"; }

details.specs ul {
  margin: 10px 0 0; padding-left: 18px;
  font-size: 13px; color: var(--dark); line-height: 1.8;
}

/* ---------- WhatsApp product button (green) ---------- */
.whatsapp-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  text-align: center;
  background: var(--wa-green);
  color: var(--white); font-weight: 700;
  font-size: 13.5px; padding: 13px;
  margin: 14px 18px 18px;
  border-radius: 5px;
  transition: background 0.2s ease;
  font-family: var(--font-body);
}

.whatsapp-btn:hover { background: var(--wa-green-dark); }
.whatsapp-btn svg { width: 16px; height: 16px; }

/* ---------- Instrument finder + contact split ---------- */
.finder {
  display: flex; flex-wrap: wrap; gap: 0;
  border: 1px solid var(--line);
  border-radius: 10px; overflow: hidden;
}

.finder-form {
  flex: 1 1 480px;
  background: var(--white);
  padding: 40px;
}

.finder-form h3 { font-size: 28px; margin: 0 0 6px; }
.finder-form .sub { color: var(--muted); font-size: 14.5px; margin: 0 0 24px; font-family: var(--font-body); }

.field { margin-bottom: 16px; }
.field label {
  display: block; font-size: 12.5px; font-weight: 600;
  letter-spacing: 0.04em; color: var(--brown);
  margin-bottom: 6px;
}

.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px;
  border: 1px solid var(--line); border-radius: 6px;
  font-family: var(--font-body); font-size: 14px;
  background: var(--bg); color: var(--dark);
}

.field textarea { resize: vertical; min-height: 88px; }

.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--maroon);
}

.finder-submit {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--wa-green); color: var(--white);
  font-weight: 700; font-size: 14.5px;
  padding: 14px 28px; border-radius: 6px;
  border: none; cursor: pointer;
  transition: background 0.2s ease;
  font-family: var(--font-body);
}

.finder-submit:hover { background: var(--wa-green-dark); }
.finder-submit svg { width: 17px; height: 17px; }

.finder-contact {
  flex: 1 1 320px;
  background: var(--dark);
  color: #EDE3CC;
  padding: 40px;
}

.finder-contact h3 { color: var(--white); font-size: 26px; margin: 0 0 22px; }

.contact-row {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.contact-row:last-child { border-bottom: none; }

.contact-row .c-icon {
  width: 38px; height: 38px; flex-shrink: 0;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.08);
  overflow: hidden;
}

.contact-row .c-icon svg { width: 18px; height: 18px; }
.contact-row .c-icon svg[viewBox="0 0 24 24"] { width: 38px; height: 38px; }
.contact-row.wa .c-icon { background: var(--wa-green); }

.contact-row .c-label { font-size: 11.5px; letter-spacing: 0.08em; color: #B7A98C; text-transform: uppercase; margin-bottom: 3px; }
.contact-row .c-value { font-size: 14.5px; color: var(--white); font-weight: 600; }
.contact-row.wa .c-value { color: var(--wa-green); }

/* ---------- Banner ---------- */
.banner {
  background: var(--maroon); color: var(--white);
  text-align: center; padding: 44px 20px;
  font-weight: 700; font-size: 16px;
  letter-spacing: 0.04em; font-family: var(--font-body);
}

/* ---------- FAQ ---------- */
.faq-item { border-bottom: 1px solid var(--line); padding: 18px 0; }

.faq-item summary {
  cursor: pointer; font-weight: 600; font-size: 15.5px; list-style: none;
}

.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; float: right; color: var(--maroon); font-size: 18px; }
.faq-item[open] summary::after { content: "\2212"; }

.faq-item p { margin: 12px 0 0; color: var(--muted); font-size: 14px; line-height: 1.7; font-family: var(--font-body); }

/* ---------- Footer ---------- */
footer { background: var(--dark); color: #E8DFCB; padding: 50px 40px 30px; }

.footer-top {
  display: flex; gap: 60px; flex-wrap: wrap;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.footer-brand { display: flex; gap: 14px; align-items: flex-start; max-width: 280px; }
.footer-brand img { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; }
.footer-brand h3 { font-size: 19px; margin: 0 0 6px; color: var(--white); }
.footer-brand p { font-size: 13px; color: #C9BBA0; margin: 0; line-height: 1.6; font-family: var(--font-body); }

.footer-col h4 { font-family: var(--font-body); font-size: 12.5px; letter-spacing: 0.1em; color: #C9BBA0; margin: 0 0 14px; }
.footer-col a, .footer-col p { display: block; font-size: 13.5px; color: #E8DFCB; margin-bottom: 9px; font-family: var(--font-body); }

.footer-bottom {
  padding-top: 22px; font-size: 12px; color: #9C8E73;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  font-family: var(--font-body);
}

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed; bottom: 24px; right: 24px;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--wa-green);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  z-index: 100; transition: transform 0.2s ease;
}

.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .cat-tile { flex-basis: calc(50% - 7px); max-width: calc(50% - 7px); }
  .product-card { flex-basis: calc(50% - 15px); max-width: calc(50% - 15px); }
  .featured-track .product-card { flex-basis: calc(50% - 15px); max-width: calc(50% - 15px); }
  .hero { height: 480px; }
  .hero h2 { font-size: 32px; }
  .hero-inner { padding: 30px 22px; }
  .hero, .section, .page-hero, footer { padding-left: 22px; padding-right: 22px; }
  .hero-dots { right: 22px; }
}

@media (max-width: 560px) {
  .product-card { flex-basis: 100%; max-width: 100%; }
  .badge-item { flex-basis: 100%; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .finder-form, .finder-contact { padding: 28px 22px; }
  .filter-bar { padding: 20px 16px 0; }
  .modal-body { padding: 28px 24px; }
  .modal-img { padding: 22px; min-height: 240px; }
}

/* ---------- Mobile header + hero fixes (<= 768px) ---------- */
@media (max-width: 768px) {
  .nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    min-height: 64px;
  }

  /* show social icons in the mobile top bar, compact */
  .header-social-icons {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .header-social-icons .social-icon { width: 28px; height: 28px; }
  .header-social-icons .social-icon svg { width: 28px; height: 28px; }

  .nav-brand { gap: 7px; }
  .nav-brand img { width: 38px; height: 38px; }
  .nav-brand .titles h1 { font-size: 13px; line-height: 1.1; margin: 0; }
  .nav-brand .titles span { font-size: 8.5px; letter-spacing: 1px; }

  .nav-actions { gap: 7px; }

  /* compact WhatsApp button: icon only, smaller */
  a.whatsapp-nav {
    padding: 7px 9px;
    font-size: 12px;
    border-radius: 6px;
    gap: 0;
  }
  a.whatsapp-nav .wa-label { display: none; }
  a.whatsapp-nav svg { width: 16px; height: 16px; }

  .nav-toggle { font-size: 21px; padding: 4px 4px; }

  /* keep social icons in the drawer too (harmless, but hide to avoid duplication) */
  .drawer-social { display: none; }

  /* hero mobile typography + spacing */
  .hero {
    aspect-ratio: auto;
    height: 480px;
  }
  .hero-inner { padding: 40px 16px 20px; max-width: 100%; }
  .hero h2 { font-size: 24px; line-height: 1.2; }
  .hero .eyebrow { font-size: 11px; }
  .hero p.sub { font-size: 13px; line-height: 1.4; }
  .hero-ctas { gap: 10px; }
  .hero-ctas a { flex: 1 1 48%; text-align: center; padding: 13px 16px; }
}

/* ---------- Extra-small phones (<= 400px) ---------- */
@media (max-width: 400px) {
  .nav { padding: 8px 10px; }
  .nav-brand img { width: 34px; height: 34px; }
  .nav-brand .titles h1 { font-size: 11.5px; }
  .nav-brand .titles span { font-size: 8px; }
  .header-social-icons { gap: 6px; }
  .header-social-icons .social-icon,
  .header-social-icons .social-icon svg { width: 25px; height: 25px; }
  .nav-actions { gap: 6px; }
  a.whatsapp-nav { padding: 6px 8px; }
}
