/* OMHUK – Shop Smart. Live Better. */
:root {
  --gold: #b08d57;
  --gold-dark: #967542;
  --gold-light: #c9a86c;
  --cream: #f7f3ee;
  --cream-dark: #efe8df;
  --text: #1a1a1a;
  --text-muted: #6b6b6b;
  --border: #e8e2da;
  --white: #ffffff;
  --dark: #222222;
  --shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
  --radius: 10px;
  --header-h: 78px;
  --topbar-h: 40px;
  --font: "Montserrat", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

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

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

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

ul {
  list-style: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(1200px, 92%);
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ========== TOP BAR ========== */
.top-bar {
  background: #f0ece7;
  color: var(--text-muted);
  font-size: 0.78rem;
  height: var(--topbar-h);
  display: flex;
  align-items: center;
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
}

.top-bar-left,
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.top-bar a:hover {
  color: var(--gold);
}

.top-bar i {
  color: var(--gold);
  margin-right: 0.35rem;
}

.top-bar-center {
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.02em;
}

/* ========== STICKY HEADER ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.25s ease;
}

.site-header.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.header-main {
  height: var(--header-h);
  display: flex;
  align-items: center;
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  width: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}

.logo-img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 6px;
}

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

.logo-text strong {
  font-size: 1.35rem;
  letter-spacing: 0.08em;
  color: var(--gold);
  font-weight: 800;
}

.logo-text span {
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
}

.main-nav {
  flex: 1;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  justify-content: center;
}

.main-nav a {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  position: relative;
  padding: 0.35rem 0;
}

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

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

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-left: auto;
}

.icon-btn {
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text);
  font-size: 1.05rem;
  position: relative;
  transition: background 0.2s, color 0.2s;
}

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

.cart-count,
.wish-count {
  position: absolute;
  top: 2px;
  right: 2px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--gold);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.mobile-toggle {
  display: none;
}

/* Sticky search row */
.sticky-search {
  display: none;
  border-top: 1px solid var(--border);
  background: var(--white);
  padding: 0.55rem 0;
}

.sticky-search.visible {
  display: block;
}

.search-form {
  display: flex;
  align-items: center;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 999px;
  overflow: hidden;
  max-width: 520px;
  margin-inline: auto;
}

.search-form input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 0.7rem 1.1rem;
  outline: none;
  color: var(--text);
}

.search-form button {
  border: none;
  background: var(--gold);
  color: #fff;
  width: 44px;
  height: 40px;
  margin: 3px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s;
}

.search-form button:hover {
  background: var(--gold-dark);
}

.search-panel {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0.85rem 0 1rem;
  display: none;
  box-shadow: var(--shadow);
}

.search-panel.open {
  display: block;
}

/* Mobile menu */
.mobile-nav {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 0.75rem 0 1rem;
}

.mobile-nav.open {
  display: block;
}

.mobile-nav a {
  display: block;
  padding: 0.7rem 0;
  font-weight: 600;
  border-bottom: 1px solid var(--border);
}

.mobile-nav a:hover {
  color: var(--gold);
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: clamp(420px, 72vh, 620px);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  background: linear-gradient(135deg, #faf7f3 0%, #f3ebe2 55%, #ebe2d6 100%);
  overflow: hidden;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3.5rem 4% 3.5rem max(4%, calc((100vw - 1200px) / 2 + 4%));
  z-index: 2;
}

.hero-eyebrow {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}

.hero h1 {
  font-size: clamp(2rem, 4.2vw, 3.35rem);
  line-height: 1.15;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--dark);
}

.hero h1 .accent {
  color: var(--gold);
}

.hero-text {
  color: var(--text-muted);
  max-width: 460px;
  margin-bottom: 1.6rem;
  font-size: 0.98rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.55rem;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.88rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.22s ease;
}

.btn-primary {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}

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

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

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

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 1.75rem;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text);
}

.hero-trust-item i {
  color: var(--gold);
  font-size: 1rem;
}

.hero-media {
  position: relative;
  min-height: 420px;
  background:
    linear-gradient(90deg, rgba(247, 243, 238, 0.85) 0%, rgba(247, 243, 238, 0) 28%),
    url("../images/hero-kitchen.jpg?v=3") center / cover no-repeat;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(247, 243, 238, 0.55) 0%, transparent 35%);
  pointer-events: none;
}

/* ========== SECTIONS ========== */
.section {
  padding: 4rem 0;
}

.section-cream {
  background: var(--cream);
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}

.section-head.center {
  justify-content: center;
  text-align: center;
}

.section-title {
  font-size: clamp(1.45rem, 2.5vw, 1.85rem);
  font-weight: 800;
  color: var(--dark);
}

.section-link {
  color: var(--gold);
  font-weight: 700;
  font-size: 0.9rem;
}

.section-link:hover {
  text-decoration: underline;
}

/* Categories */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.15rem;
}

.cat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.cat-card-img {
  aspect-ratio: 1 / 1;
  background: #f3f0ec;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cat-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.cat-card-body {
  padding: 1rem 0.85rem 1.15rem;
}

.cat-card h3 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  min-height: 2.6em;
}

.cat-arrow {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  transition: background 0.2s;
}

.cat-card:hover .cat-arrow {
  background: var(--gold-dark);
}

/* Best sellers */
.products-wrap {
  position: relative;
}

.product-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 3.6rem) / 4);
  gap: 1.2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 0.25rem 0.15rem 0.5rem;
}

.product-rail::-webkit-scrollbar {
  display: none;
}

.product-card {
  scroll-snap-align: start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

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

.product-img {
  aspect-ratio: 1 / 1;
  background: #f4f1ed;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

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

.product-body {
  padding: 0.95rem 1rem 1.15rem;
}

.product-body h3 {
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.product-price {
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.35rem;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.product-rating i {
  color: var(--gold);
  font-size: 0.72rem;
}

.rail-btn {
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--text);
  cursor: pointer;
  z-index: 2;
  box-shadow: var(--shadow);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

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

.rail-btn.prev {
  left: -12px;
}

.rail-btn.next {
  right: -12px;
}

/* Promo banners */
.promo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.promo-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
  align-items: center;
  background: var(--cream);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  min-height: 220px;
  overflow: hidden;
}

.promo-card h3 {
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 1rem;
}

.promo-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 8px;
}

/* Why choose */
.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}

.why-item {
  text-align: center;
  padding: 0.5rem;
}

.why-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 0.85rem;
  border-radius: 50%;
  background: rgba(176, 141, 87, 0.12);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.why-item h3 {
  font-size: 0.95rem;
  font-weight: 800;
  margin-bottom: 0.3rem;
}

.why-item p {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* About preview */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.about-grid h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  margin-bottom: 0.85rem;
}

.about-grid p {
  color: var(--text-muted);
  margin-bottom: 0.85rem;
}

.about-tagline {
  color: var(--gold) !important;
  font-weight: 700;
  font-size: 1.05rem;
}

.about-visual {
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 320px;
  background: url("../images/about-lifestyle.jpg?v=3") center / cover no-repeat;
}

/* Inquiry */
.inquiry-wrap {
  max-width: 720px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 700;
}

.form-group input,
.form-group textarea {
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.75rem 0.9rem;
  outline: none;
  background: #fafafa;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(176, 141, 87, 0.15);
  background: #fff;
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-actions {
  margin-top: 0.5rem;
}

.form-note {
  margin-top: 0.85rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  display: none;
}

.form-note.show {
  display: block;
  color: #2e7d32;
  font-weight: 600;
}

/* Newsletter */
.newsletter {
  background: var(--cream-dark);
  padding: 2rem 0;
}

.newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.newsletter-copy {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.newsletter-copy i {
  font-size: 1.8rem;
  color: var(--gold);
}

.newsletter-copy h3 {
  font-size: 1.05rem;
  font-weight: 800;
}

.newsletter-copy p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
  flex: 1;
  max-width: 460px;
}

.newsletter-form input {
  flex: 1;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.8rem 1rem;
  outline: none;
  background: #fff;
}

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

/* Footer */
.site-footer {
  background: #faf8f5;
  padding-top: 3.5rem;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr;
  gap: 1.75rem;
  padding-bottom: 2.5rem;
}

.footer-brand .logo-img {
  width: 48px;
  height: 48px;
}

.footer-brand p {
  margin: 0.9rem 0 1.1rem;
  color: var(--text-muted);
  font-size: 0.88rem;
}

.socials {
  display: flex;
  gap: 0.55rem;
}

.socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--dark);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: background 0.2s;
}

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

.footer-col h4 {
  font-size: 0.95rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.footer-col ul li {
  margin-bottom: 0.55rem;
}

.footer-col a {
  font-size: 0.88rem;
  color: var(--text-muted);
}

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

.contact-list li {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 0.7rem;
}

.contact-list i {
  color: var(--gold);
  margin-top: 0.2rem;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.pay-icons {
  display: flex;
  gap: 0.65rem;
  align-items: center;
  flex-wrap: wrap;
}

.pay-icons span {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0.25rem 0.55rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text);
}

/* Floating buttons */
.float-btns {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1100;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  align-items: flex-end;
}

.float-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
  transition: transform 0.2s, filter 0.2s;
}

.float-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

.whatsapp-btn {
  background: #25d366;
}

.back-top {
  background: var(--gold);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
}

.back-top.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-cart-float {
  display: none;
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 1100;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  border: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.mobile-cart-float .cart-count {
  top: 4px;
  right: 4px;
}

/* Page hero (inner pages) */
.page-hero {
  background: linear-gradient(135deg, #faf7f3, #efe6db);
  padding: 3rem 0;
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 0.4rem;
}

.page-hero p {
  color: var(--text-muted);
}

.breadcrumb {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}

.breadcrumb a:hover {
  color: var(--gold);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1100px) {
  .cat-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .product-rail {
    grid-auto-columns: calc((100% - 2.4rem) / 3);
  }
}

@media (max-width: 900px) {
  .top-bar-center {
    display: none;
  }

  .main-nav {
    display: none;
  }

  .mobile-toggle {
    display: inline-flex;
  }

  .section > .container[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-content {
    padding: 2.5rem 4% 1.5rem;
  }

  .hero-media {
    min-height: 280px;
  }

  .hero-media::after {
    background: linear-gradient(0deg, rgba(247, 243, 238, 0.5) 0%, transparent 40%);
  }

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

  .promo-card {
    grid-template-columns: 1fr;
  }

  .sticky-search.visible {
    display: block;
  }

  .mobile-cart-float {
    display: inline-flex;
  }

  .float-btns {
    bottom: 80px;
  }
}

@media (max-width: 700px) {
  .top-bar-left span:last-child,
  .top-bar-left a:last-child {
    display: none;
  }

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

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

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

  .product-rail {
    grid-auto-columns: calc((100% - 1.2rem) / 2);
  }

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

  .newsletter-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .newsletter-form {
    max-width: none;
  }

  .logo-text span {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

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

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

/* ========== CONTENT / SHOP / FAQ ========== */
.content-page {
  max-width: 860px;
}

.content-page h2 {
  font-size: 1.25rem;
  font-weight: 800;
  margin: 1.75rem 0 0.65rem;
  color: var(--dark);
}

.content-page h2:first-child {
  margin-top: 0;
}

.content-page p {
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.bullet-list {
  list-style: disc;
  padding-left: 1.25rem;
  margin: 0.5rem 0 1rem;
  color: var(--text-muted);
}

.bullet-list li {
  margin-bottom: 0.45rem;
}

.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.shop-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.filter-btn {
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--text);
  border-radius: 999px;
  padding: 0.5rem 0.95rem;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

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

.shop-count {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.shop-grid .product-card.hidden {
  display: none;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  padding: 0.85rem 1rem;
}

.faq-item summary {
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  color: var(--gold);
  font-size: 1.2rem;
  font-weight: 700;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  margin-top: 0.75rem;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.info-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.info-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  background: var(--white);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.info-card i {
  color: var(--gold);
  font-size: 1.4rem;
  margin-bottom: 0.65rem;
}

.info-card h3 {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 0.35rem;
}

.info-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

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

@media (max-width: 1100px) {
  .shop-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

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

  .info-cards {
    grid-template-columns: 1fr;
  }

  .pd-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Product cards extras */
.product-link {
  display: block;
  color: inherit;
}

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

.product-price .mrp,
.pd-price .mrp {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-left: 0.35rem;
}

.supplier-badge {
  margin-top: 0.55rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: #2e7d32;
}

.supplier-badge i {
  color: var(--gold);
  margin-right: 0.2rem;
}

.supplier-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: -0.5rem 0 1.5rem;
}

.product-detail .pd-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2.5rem;
  align-items: start;
}

.pd-gallery {
  background: var(--cream);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
}

.pd-gallery img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.pd-info h1 {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 800;
  line-height: 1.25;
}

.pd-price {
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0.75rem 0;
}

.pd-desc {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.pd-features {
  list-style: none;
  margin: 0 0 1.25rem;
}

.pd-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.45rem;
  font-size: 0.92rem;
}

.pd-features i {
  color: var(--gold);
}

.supplier-box {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.15rem 1.25rem;
  margin-bottom: 1.25rem;
}

.supplier-box h3 {
  font-size: 1rem;
  margin-bottom: 0.55rem;
}

.supplier-box p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}

.meets-criteria {
  color: #2e7d32 !important;
  font-weight: 700 !important;
  margin: 0.55rem 0 !important;
}

.supplier-note-sm {
  font-size: 0.8rem !important;
  margin-bottom: 0.75rem !important;
}

.pd-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}
