/* Google Fonts are loaded via <link rel="preload"/stylesheet"> in header.php,
   not @import here — @import blocks the browser from discovering the font
   stylesheet until *after* this file finishes downloading, adding a full
   extra round-trip to First Contentful Paint / Largest Contentful Paint. */

/* ---------- Tokens ---------- */
:root {
  --background: 24 33% 98%;
  --foreground: 12 14% 18%;
  --card: 0 0% 100%;
  --card-foreground: 12 14% 18%;

  --primary: 190 85% 18%;
  --primary-foreground: 0 0% 100%;
  --primary-deep: 195 90% 10%;
  --primary-glow: 187 84% 35%;

  --secondary: 190 40% 96%;
  --secondary-foreground: 195 30% 16%;

  --muted: 190 25% 95%;
  --muted-foreground: 195 10% 42%;

  --accent: 190 85% 18%;
  --accent-foreground: 0 0% 100%;

  --gold: 187 84% 35%;
  --gold-light: 185 70% 55%;

  --destructive: 0 72% 55%;
  --border: 190 20% 88%;
  --input: 190 20% 88%;
  --ring: 190 85% 18%;

  --radius: 0.75rem;

  --whatsapp: 142 70% 40%;
  --whatsapp-foreground: 0 0% 100%;

  --gradient-emerald: linear-gradient(135deg, hsl(195 90% 10%), hsl(190 85% 18%), hsl(187 84% 35%));
  --gradient-gold: linear-gradient(135deg, hsl(190 85% 30%), hsl(185 70% 55%));
  --gradient-hero: linear-gradient(100deg, hsl(195 60% 6% / 0.55) 0%, hsl(193 55% 8% / 0.4) 45%, hsl(191 50% 10% / 0.28) 70%, hsl(190 45% 12% / 0.18) 100%);
  --gradient-footer: linear-gradient(180deg, hsl(195 45% 12%), hsl(197 55% 6%));

  --shadow-elegant: 0 25px 60px -20px hsl(190 85% 18% / 0.25);
  --shadow-gold: 0 12px 30px -10px hsl(187 84% 35% / 0.25);
}

/* ---------- Reset ---------- */
* { box-sizing: border-box; }
/* Base font-size bump: nearly everything in this stylesheet is sized in rem,
   so raising the root from the 16px default scales all type (and most
   spacing) up proportionally site-wide, instead of hand-tuning hundreds of
   individual font-size rules one by one. */
html { scroll-behavior: smooth; font-size: 17px; }
body {
  margin: 0;
  font-size: 1rem;
  /* Safety net: flex items with long unbroken text (product names, spec values)
     default to min-width:auto and can visually spill past their box on narrow
     screens; that overflow otherwise widens the whole page's scrollable area. */
  overflow-x: hidden;
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  font-family: 'Work Sans', sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
::-webkit-scrollbar { display: none; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font-family: inherit; }
ul { list-style: none; margin: 0; padding: 0; }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Instrument Serif', serif;
  font-weight: 400;
  letter-spacing: -0.01em;
  margin: 0;
}

.font-display { font-family: 'Instrument Serif', serif; font-weight: 400; }
.italic-display { font-family: 'Instrument Serif', serif; font-style: italic; }
.text-gold { color: hsl(var(--gold)); }
.bg-gradient-emerald { background: var(--gradient-emerald); }
.bg-gradient-gold { background: var(--gradient-gold); }
.bg-gradient-hero { background: var(--gradient-hero); }
.shadow-elegant { box-shadow: var(--shadow-elegant); }
.shadow-gold { box-shadow: var(--shadow-gold); }
.icon-fill { fill: currentColor; }

.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* ---------- Scroll fade-in ---------- */
@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
[data-animate] { opacity: 0; }
[data-animate].visible { animation: fade-in-up 0.5s ease-out forwards; animation-delay: calc(var(--d, 0) * 0.08s); }

/* ---------- Buttons ---------- */
/* Base = WhatsAppButton.tsx (Hero / About / Contact sidebar / CTA) */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: hsl(var(--whatsapp));
  color: hsl(var(--whatsapp-foreground));
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
  box-shadow: 0 10px 15px -3px hsl(0 0% 0% / 0.1), 0 4px 6px -4px hsl(0 0% 0% / 0.1);
}
.btn-whatsapp:hover { opacity: 0.9; transform: scale(1.05); }
.btn-whatsapp:active { transform: scale(0.97); }

/* Header.tsx desktop nav button — smaller, no shadow/scale */
.btn-whatsapp--nav {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  box-shadow: none;
  transition: opacity 0.2s;
}
.btn-whatsapp--nav:hover { transform: none; }

/* Header.tsx mobile menu button — no hover effect in the original */
.btn-whatsapp--nav-mobile {
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  justify-content: center;
  margin-top: 0.5rem;
  box-shadow: none;
}
.btn-whatsapp--nav-mobile:hover { opacity: 1; transform: none; }

/* "Download Catalog" nav button */
.btn-catalog-download {
  position: relative; display: inline-flex; align-items: center; gap: 0.4rem;
  background: transparent; color: hsl(var(--primary)); border: 1.5px solid hsl(var(--primary) / 0.4);
  padding: 0.5rem 1rem; border-radius: var(--radius); font-family: inherit; font-size: 0.875rem; font-weight: 600;
  cursor: pointer; transition: background 0.2s, border-color 0.2s;
}
.btn-catalog-download:hover { background: hsl(var(--primary) / 0.06); border-color: hsl(var(--primary)); }
.btn-catalog-download .btn-label { display: inline-flex; align-items: center; gap: 0.4rem; }
.btn-catalog-download .btn-spinner {
  display: none; width: 0.9rem; height: 0.9rem; border-radius: 50%;
  border: 2px solid hsl(var(--primary) / 0.25); border-top-color: hsl(var(--primary));
  animation: btn-spin 0.7s linear infinite;
}
.btn-catalog-download.loading .btn-label { visibility: hidden; }
.btn-catalog-download.loading .btn-spinner { display: block; position: absolute; left: 50%; top: 50%; margin: -0.45rem 0 0 -0.45rem; }
@keyframes btn-spin { to { transform: rotate(360deg); } }
.btn-catalog-download--mobile { width: 100%; justify-content: center; margin-top: 0.5rem; }

/* Header social icons (Instagram/Facebook) — small, next to the nav links */
.nav-social { display: flex; align-items: center; gap: 0.6rem; }
.nav-social a { display: flex; color: hsl(var(--foreground) / 0.6); transition: color 0.2s; }
.nav-social a:hover { color: hsl(var(--primary)); }
.nav-social--mobile { justify-content: center; gap: 1.25rem; margin-top: 0.75rem; }
.nav-social--mobile a { color: hsl(var(--foreground) / 0.6); }

/* ProductCard.tsx "Inquire" button */
.btn-whatsapp--card {
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  gap: 0.375rem;
  box-shadow: none;
  transition: opacity 0.2s;
}
.btn-whatsapp--card:hover { transform: none; }

/* ProductDetail.tsx main CTA — full width on mobile, opacity-only hover */
.btn-whatsapp--detail {
  width: 100%;
  justify-content: center;
  box-shadow: none;
  transition: opacity 0.2s;
}
.btn-whatsapp--detail:hover { transform: none; }
@media (min-width: 640px) { .btn-whatsapp--detail { width: auto; } }

.detail-actions { display: flex; flex-direction: column; gap: 0.75rem; }
@media (min-width: 640px) { .detail-actions { flex-direction: row; } }
.detail-actions .btn-whatsapp--detail, .detail-actions .btn-outline-dark { flex: 1; }
.btn-outline-dark {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  background: transparent; color: hsl(var(--primary)); border: 1.5px solid hsl(var(--primary));
  padding: 0.75rem 1.5rem; border-radius: var(--radius); font-weight: 600; font-size: 1rem;
  cursor: pointer; transition: background 0.2s, color 0.2s;
}
.btn-outline-dark:hover { background: hsl(var(--primary)); color: hsl(var(--primary-foreground)); }

.btn-outline-light {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: hsl(20 22% 6% / 0.4);
  backdrop-filter: blur(8px);
  color: hsl(0 0% 100%);
  border: 1px solid hsl(0 0% 100% / 0.5);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
}
.btn-outline-light:hover { background: hsl(20 22% 6% / 0.6); border-color: hsl(0 0% 100% / 0.8); transform: scale(1.03); }
.btn-outline-light:active { transform: scale(0.97); }
.btn-gold {
  display: block;
  width: 100%;
  background: hsl(var(--gold));
  color: hsl(var(--foreground));
  font-weight: 600;
  padding: 0.9rem;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: opacity 0.2s;
  text-align: center;
}
.btn-gold:hover { opacity: 0.9; }

/* ---------- Notice ticker ---------- */
.notice-ticker {
  position: fixed; top: 0; left: 0; right: 0; z-index: 51;
  height: 2.25rem; overflow: hidden;
  background: var(--gradient-emerald); color: hsl(var(--background));
}
.notice-ticker-track {
  display: flex; align-items: center; gap: 4rem;
  height: 100%; white-space: nowrap; width: max-content;
  animation: ticker-scroll 22s linear infinite;
}
.notice-ticker-item { font-size: 0.8rem; font-weight: 500; letter-spacing: 0.02em; padding-right: 4rem; }

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

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: hsl(var(--background) / 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 2px hsl(0 0% 0% / 0.04);
  border-bottom: 1px solid hsl(var(--border));
}
body.has-ticker .site-header { top: 2.25rem; }
body.has-ticker .hero .container { padding-top: 11.75rem; }
body.has-ticker .page-head { padding-top: 10.75rem; }
body.has-ticker .detail-main { padding-top: 9.75rem; }
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5.5rem;
}
@media (min-width: 768px) { .site-header .container { height: 6.5rem; } }
.brand { display: flex; align-items: center; gap: 0.6rem; }
.brand img { height: 2.5rem; width: auto; object-fit: contain; }
@media (min-width: 768px) { .brand img { height: 3rem; } }
.brand-text { font-size: 1.15rem; letter-spacing: 0.03em; color: hsl(var(--foreground)); white-space: nowrap; }
@media (min-width: 768px) { .brand-text { font-size: 1.4rem; } }
@media (max-width: 420px) { .brand-text { display: none; } }
.nav-desktop { display: none; align-items: center; gap: 2rem; }
@media (min-width: 768px) { .nav-desktop { display: flex; } }
.nav-link { font-size: 0.9rem; font-weight: 500; color: hsl(var(--foreground) / 0.7); transition: color 0.2s; }
.nav-link:hover, .nav-link.active { color: hsl(var(--primary)); }
.mobile-toggle { display: inline-flex; background: none; border: none; padding: 0.5rem; cursor: pointer; color: hsl(var(--foreground)); }
@media (min-width: 768px) { .mobile-toggle { display: none; } }
.mobile-menu {
  display: none;
  background: hsl(var(--background));
  border-bottom: 1px solid hsl(var(--border));
}
.mobile-menu.open { display: block; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 0.75rem; padding: 1rem 1.25rem; }
.mobile-menu .nav-link { padding: 0.5rem 0; font-size: 1rem; }
@media (min-width: 768px) { .mobile-menu { display: none !important; } }

/* Products dropdown (desktop: hover; nav) */
.nav-dropdown { position: relative; display: flex; align-items: center; }
.nav-dropdown-menu {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(-6px);
  background: hsl(var(--card)); border: 1px solid hsl(var(--border)); border-radius: 0.75rem;
  box-shadow: var(--shadow-elegant); padding: 0.5rem; min-width: 220px;
  display: flex; flex-direction: column; opacity: 0; pointer-events: none;
  transition: opacity 0.15s, transform 0.15s; z-index: 60;
}
.nav-dropdown:hover .nav-dropdown-menu { opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.nav-dropdown-menu a { padding: 0.55rem 0.85rem; border-radius: 0.5rem; font-size: 0.875rem; color: hsl(var(--foreground) / 0.8); white-space: nowrap; }
.nav-dropdown-menu a:hover { background: hsl(var(--muted)); color: hsl(var(--primary)); }

/* Mobile: subcategory links nested under Products */
.mobile-subnav { display: flex; flex-direction: column; padding-left: 1rem; gap: 0.4rem; margin: -0.25rem 0 0.25rem; }
.mobile-subnav-link { font-size: 0.85rem !important; padding: 0.3rem 0 !important; color: hsl(var(--foreground) / 0.55) !important; }

/* ---------- Splash loader ---------- */
.splash {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  background: hsl(var(--background));
  transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
}
.splash.hide { transform: translateY(-100%); }
.splash-inner { text-align: center; }
.splash-logo {
  margin: 0 auto;
  height: 10rem;
  width: auto;
  object-fit: contain;
  opacity: 0;
  transform: translateY(30px) scale(0.85);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
@media (min-width: 640px) { .splash-logo { height: 14rem; } }
.splash-line {
  height: 1px;
  background: hsl(var(--primary));
  margin: 1.25rem auto;
  width: 14rem;
  transform: scaleX(0);
  transition: transform 0.6s ease-out;
}
.splash-tagline {
  font-size: 0.75rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: hsl(var(--foreground) / 0.6);
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.splash.in .splash-logo { opacity: 1; transform: translateY(0) scale(1); }
.splash.in .splash-line { transform: scaleX(1); }
.splash.in .splash-tagline { opacity: 1; transform: translateY(0); }
.splash.out .splash-logo,
.splash.out .splash-tagline { opacity: 0; transform: translateY(-30px); }
.splash.out .splash-line { transform: scaleX(0); }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg .overlay {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(0deg, hsl(20 28% 6% / 0.25) 0%, transparent 28%),
    var(--gradient-hero);
}
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.2s ease-in-out; display: block; }
.hero-slide.active { opacity: 1; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; }
.hero .container { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(12, 1fr); gap: 2rem; padding-top: 9.5rem; padding-bottom: 8rem; align-items: center; }
.hero-content { grid-column: span 12; max-width: 48rem; }
@media (min-width: 1024px) { .hero-content { grid-column: span 8; } }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.35em;
  color: hsl(var(--gold-light)); margin-bottom: 1.5rem;
  background: hsl(20 22% 6% / 0.5); backdrop-filter: blur(6px);
  border: 1px solid hsl(var(--gold) / 0.5); border-radius: 999px; padding: 0.35rem 1rem;
}
.hero-title {
  font-size: 3rem; color: hsl(0 0% 100%); line-height: 0.95; margin-bottom: 1.5rem; letter-spacing: -0.02em;
  text-shadow: 0 2px 3px hsl(20 30% 2% / 0.5), 0 6px 20px hsl(20 30% 2% / 0.35);
}
@media (min-width: 640px) { .hero-title { font-size: 3.75rem; } }
@media (min-width: 768px) { .hero-title { font-size: 4.5rem; } }
@media (min-width: 1024px) { .hero-title { font-size: 6rem; } }
.hero-subtitle {
  font-size: 1.125rem; color: hsl(0 0% 100% / 0.95); margin-bottom: 1.5rem; max-width: 36rem; line-height: 1.6;
  text-shadow: 0 1px 2px hsl(20 30% 2% / 0.5), 0 3px 14px hsl(20 30% 2% / 0.3);
}
@media (min-width: 768px) { .hero-subtitle { font-size: 1.25rem; } }
.rating-badge {
  display: inline-flex; align-items: center; gap: 0.4rem; margin-bottom: 1.5rem;
  background: hsl(20 22% 6% / 0.55); backdrop-filter: blur(8px);
  border: 1px solid hsl(var(--gold) / 0.35); border-radius: 999px;
  padding: 0.4rem 1rem; color: hsl(var(--gold-light));
}
.rating-badge .rating-score { font-weight: 700; color: hsl(0 0% 100%); }
.rating-badge .rating-count { font-size: 0.8rem; color: hsl(0 0% 100% / 0.75); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }
.hero-stats { display: none; grid-column: span 4; flex-direction: column; gap: 1rem; }
@media (min-width: 1024px) { .hero-stats { display: flex; } }
.hero-stat-card {
  background: hsl(20 22% 6% / 0.55); backdrop-filter: blur(12px);
  border: 1px solid hsl(var(--gold) / 0.25); border-radius: 1rem; padding: 1.25rem;
  box-shadow: 0 12px 30px -12px hsl(20 22% 4% / 0.5);
}
.hero-stat-card .value { font-size: 2.25rem; color: hsl(var(--gold-light)); }
.hero-stat-card .label { font-size: 0.875rem; color: hsl(0 0% 100% / 0.75); text-transform: uppercase; letter-spacing: 0.2em; margin-top: 0.25rem; }

/* ---------- Category showcase (home page) ---------- */
.category-showcase-section { padding: 5rem 0 2rem; }
@media (min-width: 768px) { .category-showcase-section { padding: 6rem 0 2.5rem; } }
.category-showcase-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
@media (min-width: 640px) { .category-showcase-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .category-showcase-grid { grid-template-columns: repeat(5, 1fr); } }
.category-showcase-card {
  display: flex; flex-direction: column; background: hsl(var(--card));
  border: 1px solid hsl(var(--border)); border-radius: 1rem; overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
}
.category-showcase-card:hover { box-shadow: var(--shadow-elegant); transform: translateY(-4px); border-color: hsl(var(--gold) / 0.4); }
.category-showcase-thumb { aspect-ratio: 1/1; background: hsl(0 0% 100%); padding: 1rem; }
.category-showcase-thumb img { width: 100%; height: 100%; object-fit: contain; transition: transform 0.4s; }
.category-showcase-card:hover .category-showcase-thumb img { transform: scale(1.06); }
.category-showcase-name { font-weight: 600; font-size: 0.9rem; padding: 0.85rem 1rem 0.15rem; border-top: 1px solid hsl(var(--border)); }
.category-showcase-count { font-size: 0.75rem; color: hsl(var(--muted-foreground)); padding: 0 1rem 0.85rem; }

/* ---------- Stats strip ---------- */
.stats-strip { background: var(--gradient-emerald); color: hsl(var(--background)); padding: 2.5rem 0; }
.stats-strip .grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
@media (min-width: 768px) { .stats-strip .grid { grid-template-columns: repeat(4, 1fr); } }
.stats-strip .item { text-align: center; }
.stats-strip .value { font-size: 2.25rem; color: hsl(var(--gold)); }
@media (min-width: 768px) { .stats-strip .value { font-size: 3rem; } }
.stats-strip .label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.25em; color: hsl(var(--background) / 0.7); margin-top: 0.25rem; }
@media (min-width: 768px) { .stats-strip .label { font-size: 0.875rem; } }

/* ---------- Section headers ---------- */
.section { padding: 5rem 0; }
@media (min-width: 768px) { .section { padding: 7rem 0; } }
.section.bg-secondary { background: hsl(var(--secondary)); }
.section-eyebrow { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.3em; color: hsl(var(--primary)); margin-bottom: 0.75rem; }
.section-title { font-size: 2.25rem; line-height: 1.2; }
@media (min-width: 768px) { .section-title { font-size: 3rem; } }
.section-head { max-width: 42rem; margin-bottom: 3rem; }
.section-head-row { display: flex; flex-direction: column; justify-content: space-between; margin-bottom: 3rem; gap: 1rem; }
@media (min-width: 768px) { .section-head-row { flex-direction: row; align-items: flex-end; } }
.view-all-link { display: inline-flex; align-items: center; gap: 0.5rem; color: hsl(var(--primary)); font-weight: 500; }

/* ---------- Features bento ---------- */
.features-section {
  position: relative;
  background-image: linear-gradient(hsl(var(--background) / 0.94), hsl(var(--background) / 0.94)), url('../img/hero-kitchen.jpg');
  background-size: cover;
  background-position: center;
}
@media (min-width: 1024px) { .features-section { background-attachment: fixed; } }
.features-grid { position: relative; display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 640px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .features-grid { grid-template-columns: repeat(4, 1fr); } }
.feature-card {
  background: hsl(var(--card) / 0.9); backdrop-filter: blur(6px);
  border: 1px solid hsl(var(--border)); border-radius: 1rem; padding: 1.75rem;
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
}
.feature-card:hover { box-shadow: var(--shadow-elegant); transform: translateY(-6px); border-color: hsl(var(--gold) / 0.4); }
.feature-icon { width: 3rem; height: 3rem; border-radius: 0.75rem; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; background: hsl(var(--primary) / 0.1); color: hsl(var(--primary)); transition: transform 0.25s; }
.feature-card:hover .feature-icon { transform: scale(1.1) rotate(-4deg); }
.feature-card.highlight .feature-icon { background: hsl(var(--gold) / 0.2); color: hsl(var(--gold)); }
.feature-card h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.feature-card p { font-size: 0.875rem; line-height: 1.6; color: hsl(var(--muted-foreground)); margin: 0; }
.feature-card.highlight p { color: hsl(var(--background) / 0.8); }

/* ---------- Featured products bento (home) ---------- */
.featured-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; grid-auto-rows: 180px; }
@media (min-width: 768px) { .featured-grid { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 240px; } }
.featured-item { position: relative; overflow: hidden; border-radius: 1rem; background: hsl(var(--card)); border: 1px solid hsl(var(--border)); display: block; }
.featured-item:hover { box-shadow: var(--shadow-elegant); }
.featured-item.large { grid-column: span 2; grid-row: span 2; }
@media (min-width: 768px) { .featured-item.wide { grid-column: span 2; } }
.featured-item img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s; }
.featured-item:hover img { transform: scale(1.1); }
.featured-item .scrim { position: absolute; inset: 0; background: linear-gradient(to top, hsl(12 14% 18% / 0.9), hsl(12 14% 18% / 0.3), transparent); }
.featured-item .caption { position: absolute; inset: 0; padding: 1.25rem; display: flex; flex-direction: column; justify-content: flex-end; }
.featured-item .caption h3 { color: hsl(var(--background)); font-size: 1rem; line-height: 1.2; }
@media (min-width: 768px) { .featured-item .caption h3 { font-size: 1.125rem; } }
.featured-item.large .caption h3 { font-size: 1.5rem; }
@media (min-width: 768px) { .featured-item.large .caption h3 { font-size: 1.875rem; } }
.featured-item .view-details { display: flex; align-items: center; gap: 0.25rem; color: hsl(var(--gold)); font-size: 0.75rem; margin-top: 0.5rem; opacity: 0; transition: opacity 0.2s; }
.featured-item:hover .view-details { opacity: 1; }

/* ---------- Clients strip ---------- */
.clients-strip { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 2.5rem; }
.clients-strip-item { display: flex; align-items: center; justify-content: center; height: 4rem; filter: grayscale(1); opacity: 0.6; transition: filter 0.2s, opacity 0.2s; }
.clients-strip-item:hover { filter: grayscale(0); opacity: 1; }
.clients-strip-item img { max-height: 100%; max-width: 9rem; object-fit: contain; }

/* ---------- Testimonials ---------- */
.testimonials-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }
.testimonial-card { background: hsl(var(--card)); border: 1px solid hsl(var(--border)); border-radius: 1rem; padding: 1.75rem; }
.testimonial-card .quote-icon { color: hsl(var(--gold)); margin-bottom: 1rem; }
.testimonial-card p { color: hsl(var(--foreground) / 0.8); line-height: 1.6; margin-bottom: 1.5rem; font-style: italic; }
.testimonial-card .who { border-top: 1px solid hsl(var(--border)); padding-top: 1rem; }
.testimonial-card .who .name { font-size: 1.125rem; }
.testimonial-card .who .city { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.2em; color: hsl(var(--muted-foreground)); }

/* ---------- CTA ---------- */
.cta-section { padding: 5rem 0; background: var(--gradient-emerald); position: relative; overflow: hidden; text-align: center; }
@media (min-width: 768px) { .cta-section { padding: 7rem 0; } }
.cta-section::before, .cta-section::after {
  content: ''; position: absolute; border-radius: 50%; filter: blur(60px); pointer-events: none;
}
.cta-section::before { width: 22rem; height: 22rem; top: -8rem; right: -6rem; background: hsl(var(--gold) / 0.18); }
.cta-section::after { width: 18rem; height: 18rem; bottom: -8rem; left: -4rem; background: hsl(0 0% 100% / 0.08); }
.cta-section .container { position: relative; }
.cta-section .eyebrow { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.4em; color: hsl(var(--gold)); margin-bottom: 1.25rem; }
.cta-section h2 { font-size: 2.25rem; color: hsl(var(--background)); margin-bottom: 1.5rem; line-height: 1.2; }
@media (min-width: 768px) { .cta-section h2 { font-size: 3.75rem; } }
.cta-section p { color: hsl(var(--background) / 0.8); margin: 0 auto 2.5rem; max-width: 32rem; }
.btn-cta {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: hsl(var(--background)); color: hsl(var(--primary-deep));
  font-weight: 700; font-size: 1rem; padding: 0.9rem 2.25rem; border-radius: var(--radius);
  box-shadow: 0 18px 40px -12px hsl(0 0% 0% / 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn-cta:hover { transform: translateY(-3px); box-shadow: 0 22px 45px -12px hsl(0 0% 0% / 0.4); }

/* ---------- Footer ---------- */
.site-footer { background: var(--gradient-footer); color: #fff; position: relative; }
.site-footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, hsl(var(--gold) / 0.6), transparent);
}
.site-footer .container { padding-top: 4.5rem; padding-bottom: 3rem; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: repeat(5, 1fr); } }
.footer-brand { grid-column: span 1; }
@media (min-width: 768px) { .footer-brand { grid-column: 1 / -1; } }
@media (min-width: 1024px) { .footer-brand { grid-column: span 2; } }
.footer-brand h3 { font-size: 1.875rem; margin-bottom: 0.75rem; }
.footer-brand p { color: #fff; font-size: 0.875rem; line-height: 1.6; max-width: 24rem; }
.footer-badge {
  margin-top: 1.25rem; display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.25em; color: hsl(var(--gold));
  background: hsl(var(--gold) / 0.1); border: 1px solid hsl(var(--gold) / 0.35); border-radius: 999px; padding: 0.5rem 1rem;
}
.footer-social { display: flex; gap: 0.9rem; margin-top: 1.5rem; }
.footer-social a {
  display: flex; align-items: center; justify-content: center; width: 3.25rem; height: 3.25rem;
  border-radius: 50%; border: 1px solid rgb(255 255 255 / 0.3); color: #fff;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.footer-social a:hover { background: hsl(var(--gold) / 0.15); border-color: hsl(var(--gold) / 0.5); color: hsl(var(--gold)); }
/* Light-background variant (contact page, not the dark footer) */
.footer-social--light { margin-top: 1.5rem; }
.footer-social--light a { border-color: hsl(var(--border)); color: hsl(var(--foreground) / 0.7); }
.footer-social--light a:hover { background: hsl(var(--primary) / 0.08); border-color: hsl(var(--primary) / 0.4); color: hsl(var(--primary)); }
.site-footer h4 { font-family: 'Work Sans', sans-serif; font-weight: 600; margin-bottom: 1rem; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.15em; color: hsl(var(--gold) / 0.85); }
.footer-links { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-links a { color: #fff; font-size: 0.875rem; transition: color 0.2s, padding-left 0.2s; }
.footer-links a:hover { color: #fff; padding-left: 0.25rem; }
.footer-contact { display: flex; flex-direction: column; gap: 0.65rem; font-size: 0.875rem; color: #fff; }
.footer-contact a:hover { color: #fff; }
.footer-contact .wa-link { display: inline-flex; align-items: center; gap: 0.5rem; color: hsl(150 60% 55%); font-weight: 500; margin-top: 0.25rem; }

.footer-owners { display: flex; flex-direction: column; gap: 1rem; }
.footer-owner {
  display: flex; flex-direction: column; gap: 0.2rem;
  border-left: 2px solid hsl(var(--gold) / 0.6); padding-left: 0.75rem;
}
.footer-owner-name { font-weight: 700; font-size: 0.95rem; color: hsl(var(--gold)); }
.footer-owner-designation { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: #fff; }
.footer-owner-phone { display: inline-flex; align-items: center; gap: 0.35rem; font-size: 0.85rem; color: #fff; margin-top: 0.15rem; }
.footer-owner-phone:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgb(255 255 255 / 0.15); margin-top: 3rem; padding-top: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; align-items: center; justify-content: space-between; font-size: 0.8rem; color: #fff; }
@media (min-width: 640px) { .footer-bottom { flex-direction: row; } }

/* ---------- Product cards / grid (Amazon-style catalog tiles) ---------- */
.product-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 560px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .product-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1280px) { .product-grid { grid-template-columns: repeat(5, 1fr); gap: 1.25rem; } }
.product-card {
  display: flex; flex-direction: column;
  background: hsl(var(--card)); border: 1px solid hsl(var(--border)); border-radius: 0.75rem;
  overflow: hidden; transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
}
.product-card:hover { box-shadow: var(--shadow-elegant); transform: translateY(-4px); border-color: hsl(var(--gold) / 0.35); }
.product-card .thumb {
  position: relative; display: block; aspect-ratio: 1 / 1; overflow: hidden;
  background: hsl(0 0% 100%); padding: 1.25rem;
}
.product-card .thumb img { width: 100%; height: 100%; object-fit: contain; transition: transform 0.4s; }
.product-card:hover .thumb img { transform: scale(1.06); }
.product-badge {
  position: absolute; top: 0.6rem; left: 0.6rem; z-index: 2;
  font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em;
  padding: 0.25rem 0.6rem; border-radius: 999px; color: hsl(0 0% 100%);
}
.product-badge.badge-new { background: hsl(150 55% 32%); }
.product-badge.badge-trending { background: hsl(var(--gold)); }
.product-card .body { display: flex; flex-direction: column; flex: 1; padding: 1rem 1.1rem 1.1rem; border-top: 1px solid hsl(var(--border)); }
.product-card .product-category-tag { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase; color: hsl(var(--gold-light)); margin-bottom: 0.3rem; }
.card-title-link { display: block; text-decoration: none; color: inherit; }
.product-card h3 { font-size: 1.05rem; font-weight: 600; margin-bottom: 0.5rem; transition: color 0.2s; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.card-title-link:hover h3 { color: hsl(var(--primary)); }
.product-card .product-code { display: inline-block; font-size: 0.95rem; font-weight: 700; color: hsl(var(--primary)); background: hsl(var(--primary) / 0.08); border-radius: 0.4rem; padding: 0.3rem 0.7rem; margin-bottom: 0.5rem; }
.product-card .price-row { display: flex; align-items: baseline; gap: 0.5rem; margin-bottom: 0.4rem; }
.product-card .price-row .rate { font-size: 1.3rem; font-weight: 700; color: hsl(var(--foreground)); }
.product-card .price-row .gst { font-size: 0.7rem; color: hsl(var(--muted-foreground)); background: hsl(var(--muted)); border-radius: 999px; padding: 0.15rem 0.55rem; }
.product-card .stock-note { display: flex; align-items: center; gap: 0.4rem; font-size: 0.75rem; color: hsl(150 45% 32%); margin: 0 0 0.85rem; }
.product-card .stock-note .dot { width: 0.4rem; height: 0.4rem; border-radius: 50%; background: hsl(150 55% 40%); flex-shrink: 0; }
.product-card .row { margin-top: auto; }
.product-card .row .btn-whatsapp--card { width: 100%; justify-content: center; }

/* ---------- Catalog page ---------- */
.page-head { padding-top: 8.5rem; padding-bottom: 5rem; }
.page-head .container > .intro { max-width: 48rem; margin-bottom: 3rem; }
.page-title { font-size: 3rem; line-height: 1; margin-bottom: 1.25rem; }
@media (min-width: 768px) { .page-title { font-size: 4.5rem; } }
.page-intro-text { font-size: 1.125rem; color: hsl(var(--muted-foreground)); max-width: 36rem; line-height: 1.6; }

/* ---------- Catalog toolbar (search + sort) ---------- */
.catalog-toolbar { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; justify-content: space-between; margin-bottom: 1.5rem; }
.catalog-toolbar .search-box { margin-bottom: 0; flex: 1; min-width: 220px; }
.sort-field { display: flex; align-items: center; gap: 0.6rem; }
.sort-field label { font-size: 0.8rem; color: hsl(var(--muted-foreground)); white-space: nowrap; }
.sort-select {
  border: 1px solid hsl(var(--border)); background: hsl(var(--card)); color: hsl(var(--foreground));
  border-radius: 0.5rem; padding: 0.6rem 0.85rem; font-size: 0.85rem; font-family: inherit; cursor: pointer;
}
.sort-select:focus { outline: none; box-shadow: 0 0 0 3px hsl(var(--primary) / 0.2); }

/* ---------- Product card: stock + packaging tags (Amazon-style catalog tile) ---------- */
.product-card .tag-row { display: flex; flex-wrap: wrap; align-items: center; gap: 0.4rem; margin-bottom: 0.5rem; }
.stock-tag { display: inline-flex; align-items: center; gap: 0.35rem; font-size: 0.72rem; font-weight: 600; }
.stock-tag .dot { width: 0.4rem; height: 0.4rem; border-radius: 50%; flex-shrink: 0; }
.stock-tag.in { color: hsl(150 55% 30%); }
.stock-tag.in .dot { background: hsl(150 55% 40%); }
.stock-tag.out { color: hsl(var(--destructive)); }
.stock-tag.out .dot { background: hsl(var(--destructive)); }
.pack-tag {
  display: inline-flex; align-items: center; font-size: 0.7rem; font-weight: 600;
  color: hsl(var(--primary)); background: hsl(var(--primary) / 0.08);
  border-radius: 999px; padding: 0.15rem 0.6rem;
}

.search-box { position: relative; max-width: 28rem; margin-bottom: 1.5rem; }
.search-box svg { position: absolute; left: 1rem; top: 50%; transform: translateY(-50%); color: hsl(var(--muted-foreground)); }
.search-box input {
  width: 100%; background: hsl(var(--card)); border: 1px solid hsl(var(--border));
  border-radius: 999px; padding: 0.75rem 1rem 0.75rem 2.75rem; font-size: 0.875rem;
}
.search-box input:focus { outline: none; box-shadow: 0 0 0 3px hsl(var(--primary) / 0.3); }

.category-filters { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.25rem; }
.category-filters.subcategory-filters { margin-top: -0.5rem; margin-bottom: 2.5rem; padding-left: 0.5rem; border-left: 2px solid hsl(var(--border)); }
.subcategory-filters .filter-btn { padding: 0.4rem 0.85rem; font-size: 0.8rem; }

.quick-filter-btn { display: inline-flex; align-items: center; gap: 0.4rem; }
.quick-filter-btn.active { background: hsl(var(--gold)); color: hsl(var(--foreground)); border-color: hsl(var(--gold)); box-shadow: var(--shadow-gold); }

/* ---------- Category-wise product grouping (products.php) ---------- */
.category-section { margin-bottom: 3.5rem; }
.category-section-head {
  display: flex; align-items: baseline; gap: 0.75rem; flex-wrap: wrap;
  margin-bottom: 1.5rem; padding-bottom: 0.85rem; border-bottom: 2px solid hsl(var(--border));
}
.category-section-head h2 { font-size: 1.5rem; font-weight: 700; font-family: 'Work Sans', sans-serif; }
.category-section-head .count { font-size: 0.8rem; color: hsl(var(--muted-foreground)); }

/* ---------- HS Code reference table (hs-code.php) ---------- */
.hs-table { border: 1px solid hsl(var(--border)); border-radius: 0.75rem; overflow: hidden; }
.hs-table-row {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 1rem; align-items: center;
  padding: 0.85rem 1.1rem; font-size: 0.875rem; color: hsl(var(--foreground));
}
a.hs-table-row { transition: background 0.15s; }
a.hs-table-row:hover { background: hsl(var(--muted) / 0.6); }
.hs-table-row:not(:last-child) { border-bottom: 1px solid hsl(var(--border)); }
.hs-table-head { background: hsl(var(--muted) / 0.5); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; color: hsl(var(--muted-foreground)); font-weight: 600; }
.hs-table-name { font-weight: 500; }
.hs-table-code { font-weight: 700; color: hsl(var(--primary)); }
.filter-btn {
  padding: 0.5rem 1rem; border-radius: 999px; font-size: 0.875rem; font-weight: 500;
  border: 1px solid hsl(var(--border)); background: hsl(var(--card)); color: hsl(var(--foreground) / 0.7);
  cursor: pointer; transition: all 0.2s;
}
.filter-btn:hover { border-color: hsl(var(--primary) / 0.4); color: hsl(var(--primary)); }
.filter-btn.active { background: hsl(var(--primary)); color: hsl(var(--primary-foreground)); border-color: hsl(var(--primary)); box-shadow: var(--shadow-elegant); }
.filter-btn .count { margin-left: 0.5rem; font-size: 0.75rem; color: hsl(var(--muted-foreground)); }
.filter-btn.active .count { color: hsl(var(--primary-foreground) / 0.7); }

.results-count { font-size: 0.875rem; color: hsl(var(--muted-foreground)); margin-bottom: 1.5rem; }
.results-count strong { color: hsl(var(--foreground)); font-weight: 500; }

.empty-state { text-align: center; padding: 5rem 0; border: 1px dashed hsl(var(--border)); border-radius: 1rem; }
.empty-state p:first-child { font-size: 1.5rem; margin-bottom: 0.5rem; }
.empty-state p:last-child { color: hsl(var(--muted-foreground)); font-size: 0.875rem; }

/* ---------- Product detail ---------- */
.detail-main { padding-top: 7.5rem; padding-bottom: 4rem; }
.breadcrumb { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: hsl(var(--muted-foreground)); margin-bottom: 2rem; flex-wrap: wrap; }
.breadcrumb a:hover { color: hsl(var(--primary)); }
.breadcrumb .current { color: hsl(var(--foreground)); font-weight: 500; min-width: 0; }

.detail-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 1024px) { .detail-grid { grid-template-columns: 1fr 1fr; gap: 4rem; } }

/* ---------- PDP (Amazon-style product detail) grid: gallery | buy box ---------- */
.pdp-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: start; }
@media (min-width: 1024px) { .pdp-grid { grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); gap: 3rem; } }

/* Gallery: thumbnail rail + large main image with hover-zoom pane (desktop only) */
.pdp-gallery { display: flex; flex-direction: column; gap: 0.85rem; }
@media (min-width: 640px) { .pdp-gallery { flex-direction: row; } }
.pdp-thumbs { display: flex; flex-direction: row; gap: 0.6rem; overflow-x: auto; padding-bottom: 0.25rem; order: 2; }
@media (min-width: 640px) {
  .pdp-thumbs { order: 0; flex-direction: column; overflow-x: visible; overflow-y: auto; max-height: 32rem; padding-bottom: 0; }
}
.pdp-thumbs button {
  width: 4rem; height: 4rem; flex-shrink: 0; border-radius: 0.5rem;
  border: 2px solid hsl(var(--border)); background: hsl(0 0% 100%); padding: 0.3rem;
  cursor: pointer; transition: border-color 0.2s;
}
.pdp-thumbs button img { width: 100%; height: 100%; object-fit: contain; }
.pdp-thumbs button:hover { border-color: hsl(var(--primary) / 0.5); }
.pdp-thumbs button.active { border-color: hsl(var(--gold)); box-shadow: 0 0 0 2px hsl(var(--gold) / 0.25); }

.pdp-main-wrap { position: relative; flex: 1; min-width: 0; }
.pdp-main {
  position: relative; aspect-ratio: 1/1; border-radius: 0.75rem; overflow: hidden;
  background: hsl(0 0% 100%); border: 1px solid hsl(var(--border));
}
.pdp-main img { width: 100%; height: 100%; object-fit: contain; padding: 1.25rem; }
@media (min-width: 1024px) { .pdp-main { cursor: zoom-in; } }
.pdp-zoom-lens {
  display: none; position: absolute; top: 0; left: 0; width: 50%; height: 50%;
  border: 1px solid hsl(var(--gold)); background: hsl(var(--gold) / 0.15);
  pointer-events: none; z-index: 6;
}
.pdp-zoom-pane {
  display: none; position: absolute; top: 0; left: calc(100% + 1.5rem); width: 100%; height: 100%;
  background-repeat: no-repeat; background-size: 200%; background-color: hsl(0 0% 100%);
  border: 1px solid hsl(var(--border)); border-radius: 0.75rem; box-shadow: var(--shadow-elegant); z-index: 5;
}
@media (min-width: 1024px) {
  .pdp-main.zoom-active .pdp-zoom-lens { display: block; }
  .pdp-main.zoom-active + .pdp-zoom-pane { display: block; }
}

.detail-title { font-size: 1.875rem; font-weight: 700; margin-bottom: 0.75rem; }
@media (min-width: 768px) { .detail-title { font-size: 2.25rem; } }

.detail-meta {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem 1.5rem;
  background: hsl(var(--muted) / 0.5); border: 1px solid hsl(var(--border));
  border-radius: 0.75rem; padding: 1.25rem; margin-bottom: 1.5rem;
}
@media (min-width: 640px) { .detail-meta { grid-template-columns: repeat(3, 1fr); } }
.detail-meta .meta-item { display: flex; flex-direction: column; gap: 0.2rem; }
.detail-meta .meta-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.15em; color: hsl(var(--muted-foreground)); }
.detail-meta .meta-value { font-size: 0.95rem; font-weight: 600; color: hsl(var(--foreground)); }

.detail-desc { color: hsl(var(--muted-foreground)); line-height: 1.6; margin-bottom: 1.5rem; }

/* ---------- Buy box (Amazon-style purchase panel) ---------- */
.buybox { background: hsl(var(--card)); border: 1px solid hsl(var(--border)); border-radius: 1rem; padding: 1.5rem; box-shadow: var(--shadow-elegant); }
@media (min-width: 768px) { .buybox { padding: 1.75rem; } }

/* Product Code / HSN Code — bold, high-contrast chips (easy to spot at a glance) */
.buybox-codes { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 0.5rem; }
.code-chip {
  display: inline-flex; align-items: center; gap: 0.3rem; font-size: 0.85rem;
  background: hsl(var(--primary) / 0.08); color: hsl(var(--primary));
  border: 1px solid hsl(var(--primary) / 0.25); border-radius: 0.5rem; padding: 0.3rem 0.7rem;
}
.code-chip strong { font-weight: 700; letter-spacing: 0.02em; }
.buybox-category-line { font-size: 0.8rem; color: hsl(var(--muted-foreground)); margin-bottom: 0.75rem; }
.buybox-category-line a:hover { color: hsl(var(--primary)); text-decoration: underline; }

.buybox-rating { display: inline-flex; align-items: center; gap: 0.45rem; font-size: 0.8rem; color: hsl(var(--muted-foreground)); margin-bottom: 0.6rem; }
.buybox-rating .stars { color: hsl(var(--gold)); display: inline-flex; align-items: center; gap: 1px; }
.buybox-rating .stars svg { fill: hsl(var(--gold)); }

.buybox-price-row { display: flex; align-items: baseline; gap: 0.65rem; flex-wrap: wrap; margin-bottom: 0.2rem; }
.buybox-price-row .amount { font-size: 2.1rem; font-weight: 700; color: hsl(var(--foreground)); font-family: 'Work Sans', sans-serif; }
.buybox-price-row .gst-chip { font-size: 0.75rem; font-weight: 500; background: hsl(var(--muted)); color: hsl(var(--muted-foreground)); border-radius: 999px; padding: 0.2rem 0.65rem; }
.buybox-price-note { font-size: 0.8rem; color: hsl(var(--muted-foreground)); margin-bottom: 1rem; }

.buybox-stock { display: flex; align-items: center; gap: 0.4rem; font-size: 0.9rem; font-weight: 600; margin-bottom: 1.25rem; }
.buybox-stock .dot { width: 0.5rem; height: 0.5rem; border-radius: 50%; background: currentColor; flex-shrink: 0; }
.buybox-stock.in { color: hsl(150 55% 30%); }
.buybox-stock.out { color: hsl(var(--destructive)); }

.pack-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.25rem; }
.pack-chip { display: flex; flex-direction: column; gap: 0.1rem; border: 1px solid hsl(var(--border)); border-radius: 0.6rem; padding: 0.5rem 0.8rem; background: hsl(var(--muted) / 0.4); min-width: 5.5rem; }
.pack-chip .k { font-size: 0.63rem; text-transform: uppercase; letter-spacing: 0.08em; color: hsl(var(--muted-foreground)); }
.pack-chip .v { font-size: 0.9rem; font-weight: 700; color: hsl(var(--foreground)); }

.buybox-options { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 1rem; }
.buybox-field { flex: 1; min-width: 140px; }
.buybox-field label { display: block; font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: hsl(var(--muted-foreground)); margin-bottom: 0.4rem; }
.buybox-field select {
  width: 100%; border: 1px solid hsl(var(--border)); border-radius: 0.5rem; padding: 0.6rem 0.75rem;
  font-size: 0.875rem; background: hsl(var(--card)); color: hsl(var(--foreground)); font-family: inherit; cursor: pointer;
}
.buybox-field select:focus { outline: none; box-shadow: 0 0 0 3px hsl(var(--primary) / 0.2); }
.buybox-static-pack { font-size: 0.875rem; font-weight: 600; padding: 0.6rem 0; color: hsl(var(--foreground)); }

.qty-stepper { display: flex; align-items: stretch; border: 1px solid hsl(var(--border)); border-radius: 0.5rem; overflow: hidden; width: fit-content; }
.qty-stepper button { width: 2.35rem; background: hsl(var(--muted)); border: none; font-size: 1.05rem; cursor: pointer; color: hsl(var(--foreground)); transition: background 0.15s; }
.qty-stepper button:hover { background: hsl(var(--border)); }
.qty-stepper input {
  width: 3.25rem; border: none; border-left: 1px solid hsl(var(--border)); border-right: 1px solid hsl(var(--border));
  text-align: center; font-size: 0.9rem; font-weight: 600; font-family: inherit; background: hsl(var(--card)); color: hsl(var(--foreground));
}
.qty-stepper input::-webkit-outer-spin-button, .qty-stepper input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.qty-stepper input[type=number] { -moz-appearance: textfield; }

.buybox-summary { font-size: 0.82rem; line-height: 1.5; color: hsl(var(--muted-foreground)); background: hsl(var(--muted) / 0.5); border-radius: 0.6rem; padding: 0.7rem 0.9rem; margin-bottom: 1.25rem; }
.buybox-summary strong { color: hsl(var(--foreground)); }

.buybox-actions { margin-bottom: 1.35rem; }

.buybox-trust { display: flex; flex-direction: column; gap: 0.75rem; border-top: 1px solid hsl(var(--border)); padding-top: 1.1rem; }
.buybox-trust-item { display: flex; align-items: center; gap: 0.65rem; font-size: 0.8rem; color: hsl(var(--foreground) / 0.8); }
.buybox-trust-item .icon { color: hsl(var(--primary)); flex-shrink: 0; }
.detail-section h3 { font-size: 1.125rem; font-weight: 600; margin-bottom: 0.75rem; }
.features-list { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.5rem; }
.features-list li { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.875rem; color: hsl(var(--muted-foreground)); }
.features-list .check { color: hsl(var(--primary)); flex-shrink: 0; margin-top: 0.15rem; }
.specs-table { border: 1px solid hsl(var(--border)); border-radius: 0.5rem; overflow: hidden; margin-bottom: 2rem; }
.specs-table .row { display: flex; justify-content: space-between; gap: 1rem; padding: 0.75rem 1rem; font-size: 0.875rem; }
.specs-table .row > span { min-width: 0; word-break: break-word; }
.specs-table .row:nth-child(even) { background: hsl(var(--muted) / 0.5); }
.specs-table .key { color: hsl(var(--muted-foreground)); font-weight: 500; }
.back-link { display: inline-flex; align-items: center; gap: 0.5rem; color: hsl(var(--muted-foreground)); margin-top: 1rem; font-size: 0.875rem; }
.back-link:hover { color: hsl(var(--primary)); }

.inquiry-form { background: hsl(var(--muted) / 0.5); border: 1px solid hsl(var(--border)); border-radius: 1rem; padding: 1.5rem; margin-top: 1.5rem; margin-bottom: 1.5rem; }
.inquiry-form h3 { font-size: 1.125rem; margin-bottom: 0.25rem; }
.inquiry-form > p { font-size: 0.85rem; color: hsl(var(--muted-foreground)); margin-bottom: 1.25rem; }
.inquiry-form .field-row { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 0.85rem; }
.inquiry-form .field-row > div { flex: 1; min-width: 140px; }
.inquiry-form label { display: block; font-size: 0.8rem; font-weight: 500; margin-bottom: 0.3rem; color: hsl(var(--foreground) / 0.8); }
.inquiry-form input, .inquiry-form textarea {
  width: 100%; border: 1px solid hsl(var(--border)); background: hsl(var(--card));
  border-radius: 0.5rem; padding: 0.6rem 0.8rem; font-size: 0.875rem; font-family: inherit; resize: vertical;
}
.inquiry-form input:focus, .inquiry-form textarea:focus { outline: none; box-shadow: 0 0 0 3px hsl(var(--primary) / 0.2); }
.inquiry-message-field { margin-bottom: 1rem; }
.inquiry-error { background: hsl(var(--destructive) / 0.1); border: 1px solid hsl(var(--destructive) / 0.3); border-radius: 0.5rem; padding: 0.75rem 1rem; margin-bottom: 1rem; }
.inquiry-error p { margin: 0; font-size: 0.85rem; color: hsl(var(--destructive)); }
.inquiry-error p + p { margin-top: 0.25rem; }
.inquiry-success { background: hsl(142 70% 40% / 0.1); border: 1px solid hsl(142 70% 40% / 0.3); border-radius: 0.5rem; padding: 0.75rem 1rem; margin-bottom: 1rem; }
.inquiry-success p { margin: 0; font-size: 0.85rem; color: hsl(142 70% 30%); }
.btn-primary-submit {
  display: inline-flex; align-items: center; justify-content: center; width: 100%;
  background: hsl(var(--primary)); color: hsl(var(--primary-foreground)); font-weight: 600;
  padding: 0.75rem 1.5rem; border: none; border-radius: var(--radius); cursor: pointer;
  font-size: 1rem; transition: opacity 0.2s;
}
.btn-primary-submit:hover { opacity: 0.9; }

/* ---------- Sticky "Send Inquiry" tab + modal (site-wide) ---------- */
.inquiry-tab {
  position: fixed; top: 50%; right: 0; transform: translateY(-50%);
  writing-mode: vertical-rl; text-orientation: mixed;
  background: hsl(var(--primary)); color: hsl(var(--primary-foreground));
  font-weight: 600; font-size: 0.85rem; letter-spacing: 0.05em;
  padding: 1.1rem 0.6rem; border: none; border-radius: 0.6rem 0 0 0.6rem;
  cursor: pointer; z-index: 70; box-shadow: -2px 2px 12px hsl(0 0% 0% / 0.18);
  transition: background 0.2s;
}
.inquiry-tab:hover { background: hsl(var(--primary-deep)); }

/* On phones, a vertically-centered edge tab collides with whatever content
   sits mid-screen (hero text, search box, product image). Anchor it to the
   bottom-right corner as a small pill instead, like a standard mobile CTA. */
@media (max-width: 767px) {
  .inquiry-tab {
    top: auto; bottom: 1rem; right: 1rem; transform: none;
    writing-mode: horizontal-tb; text-orientation: initial;
    border-radius: 999px; padding: 0.75rem 1.25rem; font-size: 0.8rem;
  }
}

.inquiry-modal-overlay {
  position: fixed; inset: 0; background: hsl(0 0% 0% / 0.55);
  display: flex; align-items: center; justify-content: center;
  z-index: 100; opacity: 0; pointer-events: none; transition: opacity 0.2s;
  padding: 1.5rem;
}
.inquiry-modal-overlay.open { opacity: 1; pointer-events: auto; }
.inquiry-modal {
  background: hsl(var(--card)); border-radius: 1rem; padding: 2rem;
  max-width: 28rem; width: 100%; position: relative; max-height: 90vh; overflow-y: auto;
  transform: translateY(10px); transition: transform 0.2s;
  box-shadow: var(--shadow-elegant);
}
.inquiry-modal-overlay.open .inquiry-modal { transform: translateY(0); }
.inquiry-modal-close {
  position: absolute; top: 1rem; right: 1rem; background: none; border: none;
  font-size: 1.1rem; cursor: pointer; color: hsl(var(--muted-foreground)); line-height: 1; padding: 0.25rem;
}
.inquiry-modal-close:hover { color: hsl(var(--foreground)); }
.inquiry-modal .inquiry-form { background: none; border: none; padding: 0; margin: 0; }

.related-products { margin-top: 5rem; }
.related-products h2 { font-size: 1.5rem; font-weight: 700; margin-bottom: 2rem; text-align: center; }
@media (min-width: 768px) { .related-products h2 { font-size: 1.875rem; } }

/* ---------- About ---------- */
.about-story-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center; margin-bottom: 6rem; }
@media (min-width: 768px) { .about-story-grid { grid-template-columns: repeat(12, 1fr); } }
.about-story-img { grid-column: span 1; border-radius: 1.5rem; overflow: hidden; }
@media (min-width: 768px) { .about-story-img { grid-column: span 7; } }
.about-story-img img { width: 100%; height: 420px; object-fit: cover; }
@media (min-width: 768px) { .about-story-img img { height: 520px; } }
.about-story-text { grid-column: span 1; }
@media (min-width: 768px) { .about-story-text { grid-column: span 5; } }
.about-story-text h2 { font-size: 1.875rem; margin-bottom: 1.25rem; line-height: 1.2; }
@media (min-width: 768px) { .about-story-text h2 { font-size: 2.25rem; } }
.about-story-text p { color: hsl(var(--muted-foreground)); line-height: 1.6; margin-bottom: 1rem; }

.bento-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
@media (min-width: 768px) { .bento-grid { grid-template-columns: repeat(4, 1fr); gap: 1.25rem; } }
.bento-card { border-radius: 1rem; padding: 1.75rem; background: hsl(var(--card)); border: 1px solid hsl(var(--border)); }
.bento-card.highlight { background: var(--gradient-emerald); color: hsl(var(--background)); border: none; }
.bento-card .value { font-size: 2.25rem; margin-bottom: 0.5rem; color: hsl(var(--primary)); }
@media (min-width: 768px) { .bento-card .value { font-size: 3rem; } }
.bento-card.highlight .value { color: hsl(var(--gold)); }
.bento-card .label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.25em; color: hsl(var(--muted-foreground)); }
.bento-card.highlight .label { color: hsl(var(--background) / 0.7); }

.highlights-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 640px) { .highlights-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .highlights-grid { grid-template-columns: repeat(4, 1fr); } }
.highlight-card { background: hsl(var(--card)); border: 1px solid hsl(var(--border)); border-radius: 1rem; padding: 1.5rem; transition: box-shadow 0.2s; }
.highlight-card:hover { box-shadow: var(--shadow-elegant); }
.highlight-card .icon { width: 3rem; height: 3rem; background: hsl(var(--primary) / 0.1); color: hsl(var(--primary)); border-radius: 0.75rem; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.highlight-card h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.highlight-card p { font-size: 0.875rem; color: hsl(var(--muted-foreground)); line-height: 1.6; margin: 0; }
.owner-card .owner-designation { font-size: 0.8rem; color: hsl(var(--muted-foreground)); margin-bottom: 0.75rem; }
.owner-card .owner-contact { display: flex; align-items: center; gap: 0.4rem; font-size: 0.85rem; color: hsl(var(--foreground) / 0.8); margin-top: 0.4rem; }
.owner-card .owner-contact:hover { color: hsl(var(--primary)); }

/* ---------- Core Philosophy (boxed cards, Core Purpose highlighted) ---------- */
.philosophy-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 640px) { .philosophy-grid { grid-template-columns: repeat(3, 1fr); } }
.philosophy-card {
  background: hsl(var(--card)); border: 1px solid hsl(var(--border)); border-radius: 1rem;
  padding: 1.75rem; transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
}
.philosophy-card:hover { box-shadow: var(--shadow-elegant); transform: translateY(-4px); border-color: hsl(var(--gold) / 0.4); }
.philosophy-card .icon {
  width: 3rem; height: 3rem; border-radius: 0.75rem; display: flex; align-items: center; justify-content: center;
  background: hsl(var(--primary) / 0.1); color: hsl(var(--primary)); margin-bottom: 1rem;
}
.philosophy-card h3 { font-size: 1.5rem; margin-bottom: 0.6rem; }
.philosophy-card p { font-size: 0.9rem; color: hsl(var(--muted-foreground)); line-height: 1.65; margin: 0; }
.philosophy-card--purpose {
  grid-column: 1 / -1; background: var(--gradient-emerald); border: none; color: hsl(var(--background)); padding: 2.25rem;
}
@media (min-width: 768px) { .philosophy-card--purpose { padding: 2.75rem 3rem; } }
.philosophy-card--purpose .icon { background: hsl(var(--gold) / 0.2); color: hsl(var(--gold)); }
.philosophy-card--purpose h3 { font-size: 1.875rem; }
@media (min-width: 768px) { .philosophy-card--purpose h3 { font-size: 2.25rem; } }
.philosophy-card--purpose p { color: hsl(var(--background) / 0.85); font-size: 1.05rem; max-width: 42rem; }

/* ---------- Milestones timeline ---------- */
.timeline-grid { position: relative; display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 768px) { .timeline-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 768px) {
  .timeline-grid::before { content: ''; position: absolute; top: 1.45rem; left: 1.5rem; right: 1.5rem; height: 2px; background: hsl(var(--border)); z-index: 0; }
}
.milestone-card { position: relative; z-index: 1; background: hsl(var(--card)); border: 1px solid hsl(var(--border)); border-radius: 1rem; padding: 1.5rem; transition: box-shadow 0.2s, transform 0.2s; }
.milestone-card:hover { box-shadow: var(--shadow-elegant); transform: translateY(-4px); }
.milestone-dot { display: none; width: 0.9rem; height: 0.9rem; border-radius: 50%; background: hsl(var(--gold)); border: 3px solid hsl(var(--background)); margin-bottom: 0.75rem; box-shadow: 0 0 0 1px hsl(var(--gold) / 0.4); }
@media (min-width: 768px) { .milestone-dot { display: block; } }
.milestone-card .year { font-size: 1.875rem; color: hsl(var(--gold)); margin-bottom: 0.6rem; }
.milestone-card h3 { font-size: 1.125rem; margin-bottom: 0.5rem; }
.milestone-card p { font-size: 0.875rem; color: hsl(var(--muted-foreground)); line-height: 1.6; margin: 0; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; margin-bottom: 6rem; }
@media (min-width: 768px) { .contact-grid { grid-template-columns: repeat(12, 1fr); } }
.contact-info { grid-column: span 1; }
@media (min-width: 768px) { .contact-info { grid-column: span 5; } }
.contact-info h2 { font-size: 1.875rem; margin-bottom: 1.5rem; }
.contact-info-list { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.contact-info-item { display: flex; align-items: flex-start; gap: 1rem; background: hsl(var(--card)); border: 1px solid hsl(var(--border)); border-radius: 1rem; padding: 1rem; }
.contact-info-item .icon { width: 2.5rem; height: 2.5rem; background: hsl(var(--primary) / 0.1); color: hsl(var(--primary)); border-radius: 0.75rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-info-item .label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.2em; color: hsl(var(--muted-foreground)); margin-bottom: 0.15rem; }
.contact-info-item .value { font-weight: 500; }
.contact-info-item a.value:hover { color: hsl(var(--primary)); }

.contact-form-wrap { grid-column: span 1; }
@media (min-width: 768px) { .contact-form-wrap { grid-column: span 7; } }
.contact-form { background: var(--gradient-emerald); color: hsl(var(--background)); border-radius: 1.5rem; padding: 1.75rem; box-shadow: var(--shadow-elegant); }
@media (min-width: 768px) { .contact-form { padding: 2.5rem; } }
.contact-form h2 { font-size: 1.875rem; margin-bottom: 0.5rem; }
.contact-form > p { font-size: 0.875rem; color: hsl(var(--background) / 0.7); margin-bottom: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.875rem; font-weight: 500; margin-bottom: 0.4rem; color: hsl(var(--background) / 0.9); }
.form-group input, .form-group textarea {
  width: 100%; border: 1px solid hsl(var(--background) / 0.2); background: hsl(var(--background) / 0.1);
  color: hsl(var(--background)); border-radius: var(--radius); padding: 0.75rem 1rem; font-size: 0.875rem; resize: none;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: hsl(var(--background) / 0.4); }
.form-group input:focus, .form-group textarea:focus { outline: none; box-shadow: 0 0 0 3px hsl(var(--gold) / 0.4); }

.faq-section { max-width: 56rem; margin: 0 auto; }
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item { background: hsl(var(--card)); border: 1px solid hsl(var(--border)); border-radius: 1rem; padding: 1.25rem 1.5rem; }
.faq-item[open] { box-shadow: var(--shadow-elegant); }
.faq-item summary { cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem; font-size: 1.125rem; font-family: 'Instrument Serif', serif; list-style: none; }
@media (min-width: 768px) { .faq-item summary { font-size: 1.25rem; } }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .plus { color: hsl(var(--primary)); font-size: 1.5rem; flex-shrink: 0; transition: transform 0.2s; }
.faq-item[open] summary .plus { transform: rotate(45deg); }
.faq-item .answer { color: hsl(var(--muted-foreground)); font-size: 0.9rem; line-height: 1.6; margin-top: 1rem; }

/* ---------- Gallery page ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
@media (min-width: 640px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); } }
.gallery-grid-item { border-radius: 0.75rem; overflow: hidden; background: hsl(var(--muted)); }
.gallery-grid-item img, .gallery-grid-item video, .gallery-grid-item iframe { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; border: none; }
.gallery-caption { font-size: 0.8rem; color: hsl(var(--muted-foreground)); padding: 0.6rem 0.2rem 0; }

/* ---------- Blog ---------- */
.blog-grid { display: grid; grid-template-columns: 1fr; gap: 1.75rem; }
@media (min-width: 640px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }
.blog-card { display: block; background: hsl(var(--card)); border: 1px solid hsl(var(--border)); border-radius: 0.75rem; overflow: hidden; transition: box-shadow 0.3s, transform 0.3s; }
.blog-card:hover { box-shadow: var(--shadow-elegant); transform: translateY(-4px); }
.blog-card-thumb { aspect-ratio: 16/10; overflow: hidden; background: hsl(var(--muted)); }
.blog-card-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.blog-card:hover .blog-card-thumb img { transform: scale(1.05); }
.blog-card-body { padding: 1.5rem; }
.blog-card-date { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: hsl(var(--gold)); margin-bottom: 0.5rem; }
.blog-card h3 { font-size: 1.25rem; margin-bottom: 0.6rem; line-height: 1.3; }
.blog-card-excerpt { font-size: 0.875rem; color: hsl(var(--muted-foreground)); line-height: 1.6; margin-bottom: 1rem; }
.blog-card-readmore { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.85rem; font-weight: 600; color: hsl(var(--primary)); }

.blog-post-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: start; }
@media (min-width: 1024px) { .blog-post-grid { grid-template-columns: 2fr 1fr; } }
.blog-post-image { border-radius: 1rem; overflow: hidden; margin: 1.5rem 0; }
.blog-post-image img { width: 100%; display: block; }
.blog-post-video { position: relative; padding-top: 56.25%; border-radius: 1rem; overflow: hidden; margin: 1.5rem 0; }
.blog-post-video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }
.blog-post-content { color: hsl(var(--foreground) / 0.85); line-height: 1.8; font-size: 1rem; }
.blog-post-content p { margin: 0 0 1.25rem; }
.blog-post-content h2, .blog-post-content h3 { margin: 2rem 0 1rem; }
.blog-post-content img { max-width: 100%; border-radius: 0.5rem; margin: 1.5rem 0; }
.blog-post-content ul, .blog-post-content ol { margin: 0 0 1.25rem; padding-left: 1.5rem; }
.blog-post-content a { color: hsl(var(--primary)); text-decoration: underline; }

.blog-sidebar { position: sticky; top: 8rem; background: hsl(var(--muted) / 0.5); border: 1px solid hsl(var(--border)); border-radius: 1rem; padding: 1.5rem; }
.blog-sidebar h3 { font-size: 1.1rem; margin-bottom: 1rem; }
.blog-sidebar-list { display: flex; flex-direction: column; gap: 1rem; }
.blog-sidebar-item { display: flex; align-items: center; gap: 0.75rem; }
.blog-sidebar-item img { width: 3.5rem; height: 3.5rem; object-fit: cover; border-radius: 0.5rem; flex-shrink: 0; }
.blog-sidebar-item span { font-size: 0.875rem; font-weight: 500; line-height: 1.4; transition: color 0.2s; }
.blog-sidebar-item:hover span { color: hsl(var(--primary)); }

/* ---------- 404 ---------- */
.notfound { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: hsl(var(--muted)); text-align: center; }
.notfound h1 { font-size: 2.5rem; font-weight: 700; font-family: 'Work Sans', sans-serif; margin-bottom: 1rem; }
.notfound p { font-size: 1.25rem; color: hsl(var(--muted-foreground)); margin-bottom: 1rem; }
.notfound a { color: hsl(var(--primary)); text-decoration: underline; }

/* ---------- Generic helpers ---------- */
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
