/* ============================================================
   Jaipur Handloomia — Native WordPress Theme
   Design system ported from TanStack original
   ============================================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400;1,500&family=Jost:wght@300;400;500;600&family=Tiro+Devanagari+Hindi&display=swap');

/* ─── Design Tokens ─────────────────────────────────────── */
:root {
  --mahogany:        #2d1b13;
  --mahogany-light:  #3d2519;
  --terracotta:      #b5533c;
  --terracotta-hover:#9a4432;
  --gold:            #c9a84c;
  --gold-light:      #d9be7a;
  --cream:           #faf8f4;
  --cream-dark:      #f2ede4;
  --cream-mid:       #f6f2eb;
  --warm-white:      #fefefc;
  --indigo-ink:      #2a3655;
  --henna:           #6b3a28;
  --text-mid:        #6b5d55;
  --text-light:      #9e8f87;
  --border:          rgba(45,27,19,0.12);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-sans:    'Jost', system-ui, sans-serif;
  --font-devanagari: 'Tiro Devanagari Hindi', serif;

  --max-w: 1320px;
  --px: clamp(1.25rem, 4vw, 2.5rem);
  --radius: 2px;
}

/* ─── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--mahogany);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; background: none; border: none; font: inherit; }
ul { list-style: none; }

/* ─── Typography Utilities ───────────────────────────────── */
.font-display  { font-family: var(--font-display); }
.font-sans     { font-family: var(--font-sans); }
.font-devanagari { font-family: var(--font-devanagari); }

.eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
}

.gold-underline {
  position: relative;
}
.gold-underline::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--gold);
  transform: scaleX(0.4);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.gold-underline:hover::after { transform: scaleX(1); }

/* ─── Layout ─────────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--px);
}

/* ─── Announcement Bar ───────────────────────────────────── */
.jh-announcement {
  background: var(--mahogany);
  color: var(--gold);
  text-align: center;
  padding: 10px 1rem;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  overflow: hidden;
}

/* ─── Header ─────────────────────────────────────────────── */
.jh-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(254,254,252,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.jh-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.jh-nav-left, .jh-nav-right {
  display: flex;
  gap: 2.25rem;
  flex: 1;
}
.jh-nav-right {
  justify-content: flex-end;
  align-items: center;
}
.jh-nav-left a, .jh-nav-right a {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--text-mid);
  transition: color 0.2s;
}
.jh-nav-left a:hover, .jh-nav-right a:hover,
.jh-nav-left a.active, .jh-nav-right a.active { color: var(--mahogany); }

.jh-logo {
  text-align: center;
  flex-shrink: 0;
}
.jh-logo-en {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 26px;
  line-height: 1;
  color: var(--mahogany);
  letter-spacing: -0.01em;
}
.jh-logo-hi {
  font-family: var(--font-devanagari);
  font-size: 10px;
  color: var(--gold);
  letter-spacing: 0.3em;
  display: block;
  margin-top: 3px;
}
.jh-header-icons {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-left: 1.5rem;
}
.jh-header-icons button,
.jh-header-icons a {
  color: var(--mahogany);
  transition: color 0.2s;
  display: flex;
  align-items: center;
  position: relative;
}
.jh-header-icons button:hover,
.jh-header-icons a:hover { color: var(--terracotta); }
.jh-cart-count {
  position: absolute;
  top: -6px; right: -8px;
  background: var(--terracotta);
  color: var(--cream);
  font-size: 9px;
  width: 16px; height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}
.jh-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  color: var(--mahogany);
}
.jh-hamburger span {
  display: block;
  width: 22px; height: 1.5px;
  background: currentColor;
  transition: transform 0.3s;
}

/* Mobile nav */
.jh-mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--warm-white);
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.jh-mobile-nav.open { display: flex; }
.jh-mobile-nav a {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 2.5rem;
  color: var(--mahogany);
  transition: color 0.2s;
}
.jh-mobile-nav a:hover { color: var(--terracotta); }
.jh-mobile-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  font-size: 1.5rem;
  color: var(--mahogany);
}

/* ─── Hero Carousel ──────────────────────────────────────── */
.jh-hero {
  position: relative;
  height: 88vh;
  min-height: 640px;
  overflow: hidden;
}
.jh-hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}
.jh-hero-slide.active { opacity: 1; }
.jh-hero-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  animation: kenBurns 8s ease-in-out infinite alternate;
}
@keyframes kenBurns {
  from { transform: scale(1); }
  to   { transform: scale(1.06); }
}
.jh-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(45,27,19,0.1), transparent 40%, rgba(45,27,19,0.4));
}
.jh-hero-content {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 6rem;
  color: var(--cream);
}
.jh-hero-content .eyebrow { color: var(--gold-light); margin-bottom: 1.25rem; }
.jh-hero-title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  line-height: 1.02;
  letter-spacing: -0.01em;
  max-width: 700px;
}
.jh-hero-desc {
  margin-top: 1.5rem;
  font-size: 1rem;
  color: rgba(250,248,244,0.85);
  font-weight: 300;
  max-width: 400px;
}
.jh-hero-ctas {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
}
.jh-hero-ctas a {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  padding-bottom: 6px;
}
.jh-hero-ctas a:first-child { color: var(--gold); }
.jh-hero-ctas a:last-child  { color: rgba(250,248,244,0.7); }
.jh-hero-ctas a:last-child:hover { color: var(--cream); }

.jh-hero-arrows {
  position: absolute;
  bottom: 2rem; left: var(--px);
  display: flex; gap: 0.75rem;
  z-index: 10;
}
.jh-hero-arrows button {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(250,248,244,0.5);
  color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.2s, color 0.2s;
}
.jh-hero-arrows button:hover { border-color: var(--gold); color: var(--gold); }

.jh-hero-dots {
  position: absolute;
  bottom: 2.25rem; right: var(--px);
  display: flex; gap: 0.5rem;
  z-index: 10; align-items: center;
}
.jh-hero-dots button {
  height: 4px;
  background: rgba(250,248,244,0.4);
  width: 8px;
  border-radius: 2px;
  transition: all 0.3s;
}
.jh-hero-dots button.active { width: 24px; background: var(--gold); }

/* ─── Trust Bar ──────────────────────────────────────────── */
.jh-trust-bar {
  padding: 6rem 0;
}
.jh-trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
}
.jh-trust-bar .eyebrow { color: var(--text-light); white-space: nowrap; }

/* ─── Section Headings ───────────────────────────────────── */
.jh-section { padding: 7rem 0; }
.jh-section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}
.jh-section-header-center { text-align: center; margin-bottom: 5rem; }
.jh-section-eyebrow { color: var(--terracotta); margin-bottom: 0.75rem; }
.jh-section-title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3.25rem);
  color: var(--mahogany);
  line-height: 1.1;
}
.jh-view-all {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--mahogany);
  padding-bottom: 4px;
  white-space: nowrap;
}

/* ─── Artisan Grid ───────────────────────────────────────── */
.jh-artisan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}
.jh-artisan-card .img-wrap {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--cream-dark);
  margin-bottom: 1.5rem;
}
.jh-artisan-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  transition: filter 0.7s ease;
}
.jh-artisan-card:hover img { filter: grayscale(0); }
.jh-artisan-card .card-body { text-align: center; }
.jh-artisan-card h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--mahogany);
  margin-bottom: 0.5rem;
}
.jh-artisan-card p { font-size: 0.875rem; color: var(--text-mid); max-width: 240px; margin-inline: auto; }

/* ─── Collections Grid ───────────────────────────────────── */
.jh-collections-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.jh-collections-right { display: grid; gap: 1.25rem; }
.jh-collection-card {
  position: relative;
  overflow: hidden;
  display: block;
  background: var(--cream-dark);
}
.jh-collection-card.tall { aspect-ratio: 4/5; }
.jh-collection-card.short { aspect-ratio: 16/10; }
.jh-collection-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease;
}
.jh-collection-card:hover img { transform: scale(1.05); }
.jh-collection-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(45,27,19,0.7), transparent 50%);
}
.jh-collection-card-body {
  position: absolute;
  inset-inline: 2rem;
  bottom: 2rem;
  color: var(--cream);
}
.jh-collection-card-body .eyebrow { color: var(--gold-light); margin-bottom: 0.5rem; }
.jh-collection-card-body h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
}
.jh-collection-card-body .explore {
  display: inline-block;
  margin-top: 1rem;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--gold);
  padding-bottom: 4px;
}

/* ─── Products Grid ──────────────────────────────────────── */
.jh-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.jh-product-card { position: relative; }
.jh-product-card .img-wrap {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--cream-dark);
  margin-bottom: 1rem;
  position: relative;
}
.jh-product-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.jh-product-card:hover img { transform: scale(1.04); }
.jh-atb-btn {
  position: absolute;
  inset-inline: 1rem;
  bottom: 1rem;
  background: rgba(250,248,244,0.95);
  color: var(--mahogany);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 0.75rem;
  text-align: center;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s, transform 0.4s, background 0.2s, color 0.2s;
  border: none;
  cursor: pointer;
  width: calc(100% - 2rem);
}
.jh-product-card:hover .jh-atb-btn { opacity: 1; transform: translateY(0); }
.jh-atb-btn:hover { background: var(--terracotta); color: var(--cream); }
.jh-product-card h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  color: var(--mahogany);
}
.jh-product-card .price { font-size: 0.875rem; color: var(--text-mid); margin-top: 4px; }

/* ─── Craft Film Banner ──────────────────────────────────── */
.jh-film-banner {
  position: relative;
  height: 70vh;
  min-height: 500px;
  overflow: hidden;
  background: var(--mahogany);
  display: flex;
  align-items: center;
  justify-content: center;
}
.jh-film-banner img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.7;
}
.jh-film-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--mahogany) 0%, rgba(45,27,19,0.4) 40%, transparent 100%);
}
.jh-film-content {
  position: relative;
  text-align: center;
  color: var(--cream);
  padding: 2rem;
}
.jh-play-btn {
  width: 80px; height: 80px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 2rem;
  transition: background 0.2s;
  color: var(--gold);
}
.jh-play-btn:hover { background: rgba(201,168,76,0.1); }
.jh-play-btn svg { margin-left: 4px; }
.jh-film-content .eyebrow { color: var(--gold-light); margin-bottom: 1rem; }
.jh-film-content h2 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(2rem, 5vw, 3.75rem);
  line-height: 1.1;
  max-width: 700px;
  margin-inline: auto;
}

/* ─── Silhouette Circles ──────────────────────────────────── */
.jh-silhouette-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
}
.jh-silhouette-item { text-align: center; }
.jh-silhouette-circle {
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--cream-dark);
  border: 1px solid transparent;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 0.75rem;
  transition: border-color 0.4s, transform 0.4s;
}
.jh-silhouette-item:hover .jh-silhouette-circle {
  border-color: var(--gold);
  transform: translateY(-4px);
}
.jh-silhouette-circle span {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--mahogany);
}
.jh-silhouette-item .eyebrow { color: var(--text-mid); }
.jh-silhouette-item:hover .eyebrow { color: var(--mahogany); }

/* ─── Journal Section ────────────────────────────────────── */
.jh-journal-bg { background: var(--cream-dark); }
.jh-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
.jh-post-card .eyebrow { color: var(--text-light); margin-bottom: 1rem; }
.jh-post-card h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.75rem;
  color: var(--mahogany);
  line-height: 1.2;
  transition: color 0.2s;
}
.jh-post-card:hover h3 { color: var(--terracotta); }
.jh-post-card p { margin-top: 1rem; font-size: 0.875rem; color: var(--text-mid); }
.jh-post-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.25rem;
}
.jh-post-card-footer .read-more {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--mahogany);
  padding-bottom: 4px;
}
.jh-post-card-footer .read-time { font-size: 11px; color: var(--text-light); }

/* ─── Instagram Grid ─────────────────────────────────────── */
.jh-insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.5rem;
}
.jh-insta-grid a { aspect-ratio: 1; overflow: hidden; display: block; }
.jh-insta-grid img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: sepia(0.15);
  transition: transform 0.7s ease, filter 0.7s ease;
}
.jh-insta-grid a:hover img { transform: scale(1.05); filter: sepia(0); }

/* ─── Newsletter ─────────────────────────────────────────── */
.jh-newsletter {
  background: var(--mahogany);
  color: var(--cream);
  padding: 6rem 0;
  text-align: center;
}
.jh-newsletter .eyebrow { color: var(--gold); margin-bottom: 1rem; }
.jh-newsletter h2 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(2rem, 4vw, 3rem);
}
.jh-newsletter p { margin-top: 1.25rem; color: rgba(250,248,244,0.8); font-weight: 300; }
.jh-newsletter form {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  max-width: 400px;
  margin: 2.5rem auto 0;
  justify-content: center;
}
.jh-newsletter input {
  flex: 1;
  min-width: 200px;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(201,168,76,0.4);
  color: var(--cream);
  padding: 0.75rem 0;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  outline: none;
  text-align: center;
  transition: border-color 0.2s;
}
.jh-newsletter input:focus { border-color: var(--gold); }
.jh-newsletter input::placeholder { color: rgba(250,248,244,0.4); }
.jh-newsletter button {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--gold);
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
.jh-newsletter button:hover { border-color: var(--gold); }

/* ─── Footer ─────────────────────────────────────────────── */
.jh-footer {
  background: var(--warm-white);
  border-top: 1px solid var(--border);
  margin-top: 0;
}
.jh-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding: 5rem 0;
}
.jh-footer-brand .logo-en {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--mahogany);
}
.jh-footer-brand .logo-hi {
  font-family: var(--font-devanagari);
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.3em;
  display: block;
  margin-top: 4px;
}
.jh-footer-brand p {
  margin-top: 1.5rem;
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.7;
  max-width: 240px;
}
.jh-footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}
.jh-footer-social a {
  color: var(--mahogany);
  transition: color 0.2s;
}
.jh-footer-social a:hover { color: var(--terracotta); }
.jh-footer-col h4 {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--mahogany);
  margin-bottom: 1.25rem;
}
.jh-footer-col ul { display: flex; flex-direction: column; gap: 0.75rem; }
.jh-footer-col a {
  font-size: 0.875rem;
  color: var(--text-mid);
  transition: color 0.2s;
}
.jh-footer-col a:hover { color: var(--terracotta); }
.jh-footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light);
}
.jh-footer-bottom-right { display: flex; gap: 1.5rem; }

/* ─── WooCommerce Overrides ──────────────────────────────── */
.woocommerce ul.products {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 1.5rem !important;
  margin: 0 !important;
}
.woocommerce ul.products li.product {
  float: none !important;
  width: 100% !important;
}
.woocommerce ul.products li.product a img {
  aspect-ratio: 4/5;
  object-fit: cover;
  margin: 0 !important;
}
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-family: var(--font-display) !important;
  font-style: italic !important;
  font-size: 1.125rem !important;
  color: var(--mahogany) !important;
  padding: 0.5rem 0 0 !important;
}
.woocommerce ul.products li.product .price {
  color: var(--text-mid) !important;
  font-size: 0.875rem !important;
}
.woocommerce ul.products li.product .button {
  background: var(--mahogany) !important;
  color: var(--cream) !important;
  border-radius: 0 !important;
  font-size: 11px !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  font-weight: 500 !important;
  padding: 0.6rem 1.25rem !important;
  margin-top: 0.75rem !important;
  transition: background 0.2s !important;
}
.woocommerce ul.products li.product .button:hover {
  background: var(--terracotta) !important;
}

/* ─── Page Content ───────────────────────────────────────── */
.jh-page-content {
  max-width: 800px;
  margin: 4rem auto;
  padding-inline: var(--px);
  color: var(--text-mid);
  line-height: 1.8;
}
.jh-page-content h1, .jh-page-content h2 {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--mahogany);
  margin-bottom: 1rem;
}
.jh-page-content h1 { font-size: 3rem; }
.jh-page-content h2 { font-size: 2rem; margin-top: 2.5rem; }
.jh-page-content p { margin-bottom: 1.25rem; }

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .jh-nav-left, .jh-nav-right nav { display: none; }
  .jh-hamburger { display: flex; }
  .jh-products-grid { grid-template-columns: repeat(2, 1fr); }
  .jh-artisan-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
  .jh-silhouette-grid { grid-template-columns: repeat(3, 1fr); }
  .jh-footer-grid { grid-template-columns: 1fr 1fr; }
  .jh-insta-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .jh-hero { height: 75vh; }
  .jh-artisan-grid { grid-template-columns: 1fr; }
  .jh-collections-grid { grid-template-columns: 1fr; }
  .jh-collection-card.tall { aspect-ratio: 4/5; }
  .jh-posts-grid { grid-template-columns: 1fr; }
  .jh-silhouette-grid { grid-template-columns: repeat(3, 1fr); }
  .jh-footer-grid { grid-template-columns: 1fr; }
  .jh-trust-bar-inner { gap: 1.5rem; }
  .woocommerce ul.products { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 480px) {
  .jh-products-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .jh-silhouette-grid { grid-template-columns: repeat(3, 1fr); }
  .jh-insta-grid { grid-template-columns: repeat(3, 1fr); }
}
