/* Jora Junction — Ultra-modern luxury fashion */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #FFFFFF;
  --bg-soft: #FBF9F7;
  --bg-warm: #F7F4F1;
  --bg-blush: #FAF5F4;
  --bg-cream: #F3EFE8;
  --text: #1A1A1A;
  --text-soft: #5A5A5A;
  --accent: #9E6B5A;
  --accent-light: #C9A882;
  --rose: #B76E79;
  --gold: #A67C52;
  --gold-light: #C9A882;
  --maroon: #8B3A4A;
  --dark: #141414;
  --border: #EBE6E1;
  --border-dark: #D8D2CB;
  --muted: #8A8580;
  --muted-light: #B0AAA3;
  --white: #FFFFFF;
  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-sans: 'Jost', system-ui, -apple-system, sans-serif;
  --ease-luxury: cubic-bezier(0.22, 1, 0.36, 1);
  --space-section: clamp(56px, 10vw, 112px);
  --header-h: 118px;
  /* legacy aliases */
  --font-serif: var(--font-display);
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-size: 15px;
  line-height: 1.6;
  font-weight: 400;
}
::selection { background: var(--bg-blush); color: var(--text); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select { font-family: inherit; }

.jj-scroll { scrollbar-width: thin; scrollbar-color: #C4BDB3 transparent; }
.jj-scroll::-webkit-scrollbar { height: 4px; width: 4px; }
.jj-scroll::-webkit-scrollbar-thumb { background: #C4BDB3; }

@keyframes jjFade { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
@keyframes jjSlideIn { from { transform: translateX(100%); } to { transform: translateX(0); } }
@keyframes jjMenuIn { from { transform: translateX(-100%); } to { transform: translateX(0); } }
@keyframes jjFadeBg { from { opacity: 0; } to { opacity: 1; } }
@keyframes jjKenburns { from { transform: scale(1); } to { transform: scale(1.06); } }
@keyframes jjMarquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes jjNudge { 0%, 100% { transform: translateX(0); } 50% { transform: translateX(5px); } }

.jj-wrap { min-height: 100vh; display: flex; flex-direction: column; }
.jj-container { max-width: 1440px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px); }
.jj-container--narrow { max-width: 1200px; }
main { flex: 1; }

/* Utility bar — refined light strip */
.jj-utility {
  background: var(--bg);
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-align: center;
  padding: 10px 16px;
  border-bottom: 1px solid var(--border);
}
.jj-utility a { color: var(--text); text-decoration: underline; text-underline-offset: 3px; font-weight: 500; }
.jj-utility a:hover { color: var(--accent); }

/* Announcement */
.jj-announce {
  background: var(--bg-blush);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  white-space: nowrap;
}
.jj-announce__track {
  display: inline-flex;
  gap: 48px;
  padding: 10px 0;
  animation: jjMarquee 32s linear infinite;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-soft);
}

/* Header — centered luxury logo */
.jj-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.jj-header__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px clamp(20px, 4vw, 48px);
  border-bottom: 1px solid var(--border);
}
.jj-header__icons { display: flex; align-items: center; gap: 20px; }
.jj-logo {
  text-align: center;
  flex: 1;
  cursor: pointer;
  padding: 4px 0;
}
.jj-logo__name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(24px, 4vw, 34px);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  line-height: 1;
  color: var(--text);
}
.jj-logo__tag {
  font-size: 9px;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 8px;
  font-weight: 400;
}
.jj-header__nav-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 3vw, 36px);
  padding: 0 clamp(20px, 4vw, 48px);
  height: 48px;
  overflow-x: auto;
}
.jj-desktop-nav { display: flex; gap: clamp(16px, 3vw, 36px); align-items: center; white-space: nowrap; }
.jj-nav-link {
  cursor: pointer;
  padding: 14px 0;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--text);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  font-family: inherit;
  transition: color 0.2s, border-color 0.2s;
}
.jj-nav-link:hover, .jj-nav-link.is-active { border-bottom-color: var(--accent); color: var(--text); }
.jj-nav-link--sale { color: var(--rose); }
.jj-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 24px;
  height: 16px;
  flex-direction: column;
  justify-content: space-between;
  padding: 0;
}
.jj-menu-btn span { display: block; height: 1.5px; background: var(--text); }
.jj-icon-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
  display: flex;
  position: relative;
  padding: 0;
  transition: opacity 0.2s;
}
.jj-icon-btn:hover { opacity: 0.6; }
.jj-cart-count {
  position: absolute;
  top: -6px;
  right: -8px;
  background: var(--text);
  color: var(--white);
  font-size: 9px;
  min-width: 15px;
  height: 15px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

/* Currency selector */
.jj-currency-sel { position: relative; }
.jj-currency-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: 1px solid var(--border-dark);
  padding: 6px 10px;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.12em;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text);
  transition: border-color 0.2s, color 0.2s;
}
.jj-currency-btn:hover { border-color: var(--text); }
.jj-currency-drop {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  min-width: 200px;
  z-index: 50;
}
.jj-currency-drop.is-open { display: block; }
.jj-currency-opt {
  display: block;
  width: 100%;
  padding: 13px 16px;
  background: none;
  border: none;
  font-family: var(--font-sans);
  font-size: 12px;
  text-align: left;
  cursor: pointer;
  color: var(--text-soft);
  transition: background 0.15s;
  letter-spacing: 0.04em;
}
.jj-currency-opt:hover { background: var(--bg-soft); color: var(--text); }
.jj-currency-opt.is-active { color: var(--accent); font-weight: 600; }

/* Mega menu */
.jj-mega {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 24px 48px rgba(0,0,0,0.08);
  display: none;
}
.jj-mega.is-open { display: block; }
.jj-mega__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 40px clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 48px;
}
.jj-mega__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.jj-mega__col-title {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--muted);
}
.jj-mega__link {
  display: block;
  font-size: 13px;
  color: var(--text-soft);
  padding: 7px 0;
  transition: color 0.15s;
}
.jj-mega__link:hover { color: var(--text); }
.jj-mega__feature {
  position: relative;
  display: block;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--dark);
}
.jj-mega__feature img { width: 100%; height: 100%; object-fit: cover; }
.jj-mega__feature-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.65) 100%);
}
.jj-mega__feature-text {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 24px;
  color: var(--white);
}
.jj-mega__feature-kicker { font-size: 9px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold-light); }
.jj-mega__feature-title { font-family: var(--font-display); font-size: 22px; margin-top: 6px; }

/* Buttons */
.jj-btn {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  font-weight: 600;
  border: none;
  padding: 16px 36px;
  transition: all 0.25s;
  display: inline-block;
  text-align: center;
}
.jj-btn--dark { background: var(--text); color: var(--white); }
.jj-btn--dark:hover { background: var(--accent); }
.jj-btn--outline { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.75); }
.jj-btn--outline:hover { background: var(--white); color: var(--text); }
.jj-btn--gold { background: var(--gold); color: var(--white); }
.jj-btn--gold:hover { background: var(--accent); }
.jj-btn--light { background: var(--white); color: var(--text); border: 1px solid var(--border); }
.jj-btn--light:hover { border-color: var(--text); }
.jj-btn--full { width: 100%; }

/* Style toggle (Unstitched / Stitched) — Baroque signature */
.jj-style-toggle {
  display: flex;
  gap: 0;
  margin-top: 20px;
}
.jj-style-toggle a {
  flex: 1;
  text-align: center;
  padding: 14px 20px;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid var(--white);
  color: var(--white);
  transition: all 0.2s;
}
.jj-style-toggle a:hover { background: var(--white); color: var(--text); }
.jj-style-toggle--dark a { border-color: var(--text); color: var(--text); }
.jj-style-toggle--dark a:hover { background: var(--text); color: var(--white); }

/* Hero & Slideshow — mobile portrait, desktop full-width banner */
.jj-hero,
.jj-slideshow {
  position: relative;
  overflow: hidden;
  background: var(--bg-soft);
}
.jj-page-home .jj-hero,
.jj-page-home .jj-slideshow {
  width: 100%;
  margin-inline: auto;
  aspect-ratio: 3 / 4;
  height: auto;
  max-height: min(90dvh, calc(100vw * 4 / 3));
}
.jj-hero__bg { position: absolute; inset: 0; }
.jj-hero__bg img {
  width: 100%;
  height: 100%;
  display: block;
}
.jj-hero__bg .jj-img-focus,
.jj-hero__bg img {
  object-fit: cover;
  object-position: var(--img-focus, center 30%);
}
/* Desktop / large screens — full-bleed banner */
@media (min-width: 901px) {
  .jj-page-home .jj-hero,
  .jj-page-home .jj-slideshow {
    width: 100%;
    max-width: none;
    aspect-ratio: unset;
    height: clamp(520px, 82vh, 900px);
    max-height: none;
  }
  .jj-page-home .jj-hero__bg img {
    object-fit: cover;
    object-position: center 22%;
  }
}
@media (min-width: 768px) {
  .jj-hero__bg { animation: jjKenburns 24s var(--ease-luxury) infinite alternate; }
}
@media (prefers-reduced-motion: reduce) {
  .jj-hero__bg { animation: none !important; }
}

/* Carousel & Slideshow transitions */
.jj-carousel {
  position: relative;
  width: 100%;
  height: 100%;
}
.jj-carousel__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.2s var(--ease-luxury), visibility 1.2s var(--ease-luxury);
  z-index: 1;
}
.jj-carousel__slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}
.jj-slideshow__dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
}
.jj-slideshow__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, transform 0.3s;
}
.jj-slideshow__dot:hover {
  transform: scale(1.2);
  background: rgba(255, 255, 255, 0.7);
}
.jj-slideshow__dot.is-active {
  background: var(--white);
  transform: scale(1.2);
}
.jj-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(0,0,0,0.08) 45%, rgba(0,0,0,0.38) 100%);
}
.jj-hero__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  text-align: center;
  padding: 0 24px clamp(56px, 10vh, 100px);
  color: var(--white);
}
.jj-hero__kicker { font-size: 10px; letter-spacing: 0.45em; text-transform: uppercase; opacity: 0.85; }
.jj-hero__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(42px, 8vw, 88px);
  line-height: 0.95;
  margin: 16px 0 12px;
  letter-spacing: -0.02em;
}
.jj-hero__desc {
  max-width: 480px;
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255,255,255,0.8);
  font-weight: 300;
}
.jj-hero__overlay--light {
  background: linear-gradient(180deg, rgba(0,0,0,0.12) 0%, rgba(0,0,0,0.08) 50%, rgba(0,0,0,0.35) 100%);
}
.jj-hero__content--center {
  justify-content: center;
  padding: 0 24px;
}
.jj-hero__content--baroque {
  justify-content: flex-end;
  padding: 0 clamp(16px, 4vw, 32px) clamp(24px, 6vw, 56px);
}
.jj-style-toggle--hero {
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
}
.jj-style-toggle--hero a { padding: 14px 16px; }
.jj-hero__title--baroque {
  font-family: var(--font-display);
  font-size: clamp(22px, 6.5vw, 40px);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.15;
  margin: 0 0 clamp(20px, 5vw, 28px);
  color: var(--white);
}
.jj-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(10px, 2.5vw, 18px);
  justify-content: center;
  width: min(380px, calc(100% - 32px));
  margin: 0 auto;
}
.jj-hero__cta .jj-btn {
  flex: 1 1 120px;
  min-width: 120px;
  padding: clamp(11px, 2.5vw, 14px) clamp(12px, 3vw, 20px);
  font-size: clamp(9px, 2vw, 10px);
  letter-spacing: 0.18em;
  border-radius: 0;
}
.jj-btn--hero-white {
  background: var(--white);
  color: var(--text);
  border: 1px solid var(--white);
}
.jj-btn--hero-black {
  background: var(--text);
  color: var(--white);
  border: 1px solid var(--text);
}
.jj-btn--hero-white:hover { background: transparent; color: var(--white); }
.jj-btn--hero-black:hover { background: transparent; color: var(--white); border-color: var(--white); }

/* Homepage — Baroque editorial sections */
.jj-home {
  background: var(--bg);
  overflow-x: hidden;
}
.jj-home-section {
  padding: 0;
  margin: 0;
  clear: both;
}
.jj-home-section--last { margin-bottom: 0; }
.jj-home-section__head {
  position: relative;
  z-index: 2;
  background: var(--bg);
  padding: clamp(36px, 8vw, 64px) 20px clamp(28px, 6vw, 48px);
  text-align: center;
}
.jj-home-section__media {
  width: 100%;
  margin: 0;
  padding: 0;
}
.jj-home-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 6.5vw, 42px);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  margin: 0;
  line-height: 1.15;
  color: var(--text);
}

.jj-home-section__blurb {
  font-size: 13px;
  color: var(--text-soft);
  margin-top: 10px;
  font-weight: 300;
  line-height: 1.6;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}
.jj-home-section__viewall {
  display: inline-block;
  margin-top: 18px;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  border-bottom: 1px solid var(--text);
  padding-bottom: 3px;
  transition: color 0.2s, border-color 0.2s;
}
.jj-home-section__viewall:hover { color: var(--accent); border-color: var(--accent); }

/* Two-column collection grids — side by side on all screens */
.jj-home-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(10px, 2.5vw, 20px);
  width: 100%;
  margin: 0;
  padding: 0 clamp(12px, 3vw, 24px);
}
/* Baroque-style responsive collection grid */
.jj-collection-grid {
  display: grid;
  grid-template-columns: repeat(var(--grid-cols, 1), minmax(0, 1fr));
  gap: var(--grid-gap, 1.25rem);
  width: 100%;
  margin: 0;
  padding: 0 clamp(16px, 4vw, 32px);
}
@media (min-width: 700px) {
  .jj-collection-grid {
    --grid-cols: 2;
    --grid-gap: 1.5rem;
  }
}
@media (min-width: 1150px) {
  .jj-collection-grid {
    --grid-cols: 2;
    --grid-gap: 1.875rem;
  }
}
.jj-home-tile {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  background: var(--bg-soft);
  aspect-ratio: 1 / 1;
}
.jj-img-focus {
  object-fit: cover;
  object-position: var(--img-focus, center 40%);
}
.jj-home-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  transition: transform 0.6s var(--ease-luxury);
}
.jj-home-tile:hover img { transform: scale(1.02); }
.jj-btn--shop-overlay {
  position: absolute;
  left: 50%;
  bottom: clamp(16px, 4vw, 28px);
  transform: translateX(-50%);
  z-index: 2;
  background: var(--white);
  color: var(--text);
  min-width: 0;
  width: auto;
  padding: 11px 18px;
  pointer-events: none;
  border: none;
  border-radius: 0;
  font-size: 9px;
  letter-spacing: 0.18em;
  font-weight: 600;
}

/* Full-width banner sections — fluid aspect ratios */
.jj-home-banner {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--bg-soft);
  width: 100%;
  margin: 0;
  max-width: none;
  aspect-ratio: 4 / 3;
}
.jj-home-banner--wide {
  aspect-ratio: 4 / 3;
}
@media (min-width: 600px) {
  .jj-home-banner--wide { aspect-ratio: 3 / 2; }
}
@media (min-width: 900px) {
  .jj-home-banner--wide { aspect-ratio: 16 / 9; }
}
@media (min-width: 1200px) {
  .jj-home-banner--wide { aspect-ratio: 21 / 9; }
}
.jj-home-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  transition: transform 0.6s var(--ease-luxury);
}
.jj-home-banner:hover img { transform: scale(1.02); }

/* Banner CTA pairs */
.jj-home-banner__actions {
  position: absolute;
  bottom: clamp(12px, 3vw, 28px);
  display: flex;
  flex-wrap: wrap;
  gap: clamp(8px, 2vw, 14px);
  z-index: 2;
  max-width: calc(100% - 32px);
}
.jj-home-banner__actions--left {
  left: clamp(12px, 3vw, 32px);
  right: auto;
}
.jj-home-banner__actions--right {
  right: clamp(12px, 3vw, 32px);
  left: auto;
  justify-content: flex-end;
}
.jj-home-banner__actions .jj-btn {
  min-width: 0;
  padding: clamp(10px, 2vw, 13px) clamp(12px, 2.5vw, 18px);
  font-size: clamp(8px, 1.8vw, 10px);
  letter-spacing: 0.16em;
  font-weight: 600;
  border-radius: 0;
  white-space: nowrap;
}
.jj-home-banner__actions .jj-btn--hero-white {
  border: 1px solid var(--white);
}
.jj-home-banner__actions .jj-btn--hero-black {
  border: 1px solid var(--text);
}

/* Collection banner — legacy blocks */
.jj-collection-banner {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--dark);
  min-height: clamp(380px, 55vw, 620px);
}
.jj-collection-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.jj-collection-banner:hover img { transform: scale(1.03); }
.jj-collection-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.55) 100%);
}
.jj-collection-banner__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  text-align: center;
  padding: clamp(32px, 6vw, 64px);
  color: var(--white);
}
.jj-collection-banner__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
}
.jj-collection-banner--half { min-height: clamp(320px, 45vw, 500px); }

/* Dual collection grid */
.jj-dual-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: var(--border); }
.jj-dual-grid > * { background: var(--white); }

/* Essentials strip */
.jj-essentials {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border);
}
.jj-essential-tile {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--bg-warm);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 24px;
  text-align: center;
}
.jj-essential-tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.85; transition: transform 0.5s, opacity 0.3s; }
.jj-essential-tile:hover img { transform: scale(1.05); opacity: 1; }
.jj-essential-tile__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.5) 100%); }
.jj-essential-tile__label {
  position: relative;
  z-index: 1;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--white);
}

/* Trust strip */
.jj-trust {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-warm);
}
.jj-trust__grid {
  max-width: 1440px;
  margin: 0 auto;
  padding: 20px clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.jj-trust__item { display: flex; align-items: center; gap: 12px; justify-content: center; text-align: left; }
.jj-trust__title { font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
.jj-trust__sub { font-size: 11px; color: var(--muted); margin-top: 2px; }

/* Section headings */
.jj-section-head { text-align: center; margin-bottom: clamp(28px, 4vw, 48px); }
.jj-section-head--row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: clamp(24px, 3vw, 40px);
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.jj-kicker { font-size: 10px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--accent); font-weight: 500; }
.jj-heading {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(32px, 4.5vw, 48px);
  line-height: 1.08;
  margin-top: 10px;
  letter-spacing: 0.02em;
}
.jj-link-underline {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  border-bottom: 1px solid var(--text);
  padding-bottom: 4px;
  white-space: nowrap;
  transition: color 0.2s, border-color 0.2s;
}
.jj-link-underline:hover { color: var(--accent); border-color: var(--accent); }

/* Product card — image-led luxury grid */
.jj-product-card { position: relative; }
.jj-product-card__img-wrap {
  display: block;
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--bg-soft);
  cursor: pointer;
}
.jj-product-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transition: transform 0.7s var(--ease-luxury), opacity 0.3s;
}
.jj-product-card:hover .jj-product-card__img { transform: scale(1.03); }
.jj-product-card__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--white);
  color: var(--text);
  font-size: 8px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 10px;
  font-weight: 600;
  border: 1px solid var(--border);
}
.jj-product-card__badge--sale { background: var(--rose); color: var(--white); border-color: var(--rose); }
.jj-product-card__badge--new { background: var(--text); color: var(--white); border-color: var(--text); }
.jj-product-card__wish {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  background: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.jj-product-card:hover .jj-product-card__wish { opacity: 1; }
.jj-product-card__add {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  background: var(--text);
  color: var(--white);
  border: none;
  padding: 14px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  font-weight: 600;
  transform: translateY(100%);
  transition: transform 0.35s var(--ease-luxury);
}
.jj-product-card:hover .jj-product-card__add,
.jj-product-card__add.is-visible { transform: translateY(0); }
.jj-product-card__info { padding: 14px 2px 10px; text-align: center; }
.jj-product-card__sku { font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.jj-product-card__name {
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
  display: block;
  margin-top: 6px;
  line-height: 1.4;
  cursor: pointer;
}
.jj-product-card__name:hover { color: var(--accent); }
.jj-product-card__type { font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted-light); margin-top: 4px; }
.jj-product-card__price { margin-top: 8px; font-size: 13px; font-weight: 500; }
.jj-product-card__price del { text-decoration: line-through; color: var(--muted-light); font-size: 12px; margin-left: 8px; font-weight: 400; }
.jj-swatches { display: flex; gap: 5px; justify-content: center; margin-top: 10px; }
.jj-swatch { width: 12px; height: 12px; border-radius: 50%; box-shadow: 0 0 0 1px rgba(0,0,0,0.1); }

/* Product grids — mobile-first */
.jj-prail {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.jj-mrail { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.jj-product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(10px, 2vw, 20px);
}
@media (min-width: 768px) {
  .jj-product-grid, .jj-prail { grid-template-columns: repeat(3, 1fr); gap: 16px; }
}
@media (min-width: 1100px) {
  .jj-product-grid, .jj-prail, .jj-mrail { grid-template-columns: repeat(4, 1fr); gap: 20px; }
}
.jj-swipe-hint {
  display: none;
  align-items: center;
  justify-content: flex-end;
  gap: 7px;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}

/* Category tiles */
.jj-cat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; background: var(--border); }

/* Promo / lookbook */
.jj-promo-split { display: grid; grid-template-columns: 1fr 1fr; gap: 0; background: var(--dark); color: var(--white); }
.jj-promo-split__img { position: relative; min-height: 480px; }
.jj-promo-split__img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.jj-promo-split__body { padding: clamp(40px, 6vw, 80px); display: flex; flex-direction: column; justify-content: center; }
.jj-lookbook {
  position: relative;
  display: block;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--dark);
}
.jj-lookbook img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.jj-lookbook:hover img { transform: scale(1.04); }
.jj-lookbook__overlay { position: absolute; inset: 0; background: linear-gradient(110deg, rgba(0,0,0,0.5) 0%, transparent 60%); }
.jj-lookbook__text {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 5vw, 56px);
  color: var(--white);
  max-width: 70%;
}

/* Value props */
.jj-value-props { background: var(--bg-warm); border-top: 1px solid var(--border); }
.jj-value-props__grid {
  max-width: 1440px;
  margin: 0 auto;
  padding: 48px clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.jj-value-prop { text-align: center; }
.jj-value-prop__icon { font-size: 24px; color: var(--gold); margin-bottom: 12px; }
.jj-value-prop__title { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600; }
.jj-value-prop__text { font-size: 12px; color: var(--muted); margin-top: 8px; line-height: 1.6; }

/* Testimonials */
.jj-testimonial {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 32px;
}
.jj-testimonial__stars { color: var(--gold-light); font-size: 12px; letter-spacing: 2px; margin-bottom: 16px; }
.jj-testimonial__quote {
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1.45;
  font-weight: 400;
  font-style: italic;
}
.jj-testimonial__meta { margin-top: 20px; font-size: 12px; color: var(--muted); }

/* Blog */
.jj-blog-card { display: block; cursor: pointer; }
.jj-blog-card__img { position: relative; aspect-ratio: 3/2; overflow: hidden; background: var(--bg-cream); }
.jj-blog-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.jj-blog-card:hover .jj-blog-card__img img { transform: scale(1.04); }
.jj-blog-card__tag {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--white);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 12px;
  font-weight: 600;
}
.jj-blog-card__title { font-family: var(--font-display); font-size: 20px; padding-top: 16px; line-height: 1.3; }
.jj-blog-card__meta { font-size: 11px; color: var(--muted); margin-top: 8px; }

/* Newsletter — Baroque style */
.jj-newsletter {
  background: var(--dark);
  color: var(--white);
  text-align: center;
  padding: clamp(56px, 8vw, 96px) clamp(20px, 4vw, 48px);
}
.jj-newsletter .jj-kicker { color: var(--gold-light); }
.jj-newsletter .jj-heading { color: var(--white); }
.jj-newsletter__offer {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 8px 16px;
  margin: 16px 0 8px;
}
.jj-newsletter__form {
  display: flex;
  gap: 0;
  max-width: 480px;
  margin: 28px auto 0;
  border: 1px solid rgba(255,255,255,0.3);
}
.jj-newsletter__input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 16px 20px;
  font-size: 13px;
  outline: none;
  color: var(--white);
}
.jj-newsletter__input::placeholder { color: rgba(255,255,255,0.45); }
.jj-newsletter .jj-btn { border-radius: 0; }

/* Shop page */
.jj-breadcrumb { font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 24px; }
.jj-breadcrumb a:hover { color: var(--text); }
.jj-shop-header { text-align: center; padding: clamp(16px, 3vw, 32px) 0 clamp(32px, 5vw, 56px); border-bottom: 1px solid var(--border); margin-bottom: 40px; }
.jj-shop-title { font-family: var(--font-display); font-size: clamp(34px, 5.5vw, 52px); font-weight: 500; letter-spacing: 0.04em; line-height: 1.05; }
.jj-shop-blurb { font-size: 15px; color: var(--text-soft); margin-top: 14px; max-width: 520px; margin-left: auto; margin-right: auto; line-height: 1.75; font-weight: 300; }
.jj-shop-layout { display: grid; grid-template-columns: 220px 1fr; gap: 40px; align-items: start; }
.jj-filters { position: sticky; top: 140px; }
.jj-filter-group { border-bottom: 1px solid var(--border); padding: 20px 0; }
.jj-filter-group__title { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 600; margin-bottom: 14px; }
.jj-filter-label { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--text-soft); cursor: pointer; margin-bottom: 10px; }
.jj-filter-label input { accent-color: var(--text); }
.jj-shop-toolbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; flex-wrap: wrap; gap: 16px; }
.jj-shop-trust {
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--text-soft);
  width: 100%;
}
@media (min-width: 768px) {
  .jj-shop-trust { width: auto; margin-left: 8px; }
}
.jj-filter-btn {
  display: none;
  align-items: center;
  gap: 8px;
  background: none;
  border: 1px solid var(--border-dark);
  padding: 10px 18px;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  font-weight: 600;
}

/* PDP */
.jj-pdp-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(32px, 5vw, 72px); align-items: start; }
.jj-pdp-gallery__main { position: relative; aspect-ratio: 3/4; overflow: hidden; background: var(--bg-soft); }
.jj-pdp-gallery__main img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.jj-pdp-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-top: 8px; }
.jj-pdp-thumb { aspect-ratio: 3/4; cursor: pointer; border: 2px solid transparent; overflow: hidden; }
.jj-pdp-thumb.is-active { border-color: var(--text); }
.jj-pdp-thumb img { width: 100%; height: 100%; object-fit: cover; }
.jj-pdp-info { position: sticky; top: 140px; }
.jj-pdp-sku { font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.jj-pdp-brand { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-top: 8px; }
.jj-pdp-title { font-size: clamp(22px, 3vw, 32px); letter-spacing: 0.04em; text-transform: uppercase; font-weight: 500; margin: 12px 0 16px; line-height: 1.25; }
.jj-pdp-price strong { font-size: 20px; font-weight: 600; }
.jj-pdp-price del { text-decoration: line-through; color: var(--muted); font-size: 15px; margin-left: 10px; }
.jj-pdp-meta { font-size: 11px; letter-spacing: 0.08em; color: var(--muted); margin: 12px 0; padding: 12px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.jj-pdp-desc { font-size: 14px; line-height: 1.8; color: var(--text-soft); margin: 20px 0; }
.jj-size-btn {
  min-width: 44px;
  padding: 12px 14px;
  border: 1px solid var(--border-dark);
  background: transparent;
  font-size: 11px;
  letter-spacing: 0.08em;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.15s;
}
.jj-size-btn.is-active { border-color: var(--text); background: var(--text); color: var(--white); }
.jj-size-btn--custom { letter-spacing: 0.04em; font-size: 10px; }
.jj-color-btn { width: 32px; height: 32px; border-radius: 50%; border: none; background: none; cursor: pointer; padding: 0; display: flex; align-items: center; justify-content: center; }
.jj-color-btn span { border-radius: 50%; display: block; box-shadow: inset 0 0 0 2px var(--white); }
.jj-color-btn.is-active span { box-shadow: 0 0 0 2px var(--text), inset 0 0 0 2px var(--white); }
.jj-qty-wrap { display: flex; align-items: center; border: 1px solid var(--border-dark); }
.jj-qty-btn { background: none; border: none; width: 44px; height: 50px; font-size: 18px; cursor: pointer; }
.jj-qty-val { width: 36px; text-align: center; font-size: 14px; font-weight: 500; }
.jj-accordion-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  padding: 18px 0;
  cursor: pointer;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
}
.jj-accordion-body { padding-bottom: 20px; font-size: 13px; line-height: 1.8; color: var(--text-soft); }
.jj-accordion-item { border-bottom: 1px solid var(--border); }
.jj-dispatch-note { font-size: 11px; color: var(--muted); margin-top: 16px; padding: 12px 16px; background: var(--bg-warm); border-left: 3px solid var(--gold); }

/* Checkout */
.jj-checkout-stepper { display: flex; align-items: center; justify-content: center; margin-bottom: 48px; flex-wrap: wrap; }
.jj-step { display: flex; align-items: center; gap: 10px; }
.jj-step__num {
  width: 28px; height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
  border: 1.5px solid var(--border-dark);
  color: var(--muted);
}
.jj-step.is-active .jj-step__num { border-color: var(--text); background: var(--text); color: var(--white); }
.jj-step.is-active .jj-step__label { color: var(--text); }
.jj-step__label { font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.jj-step__line { width: 48px; height: 1px; background: var(--border); margin: 0 12px; }
.jj-form-input {
  background: var(--white);
  border: 1px solid var(--border-dark);
  padding: 14px 16px;
  font-size: 14px;
  outline: none;
  width: 100%;
  transition: border-color 0.2s;
}
.jj-form-input:focus { border-color: var(--text); }
.jj-form-grid { display: grid; gap: 14px; }
.jj-form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.jj-ship-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1.5px solid var(--border-dark);
  padding: 18px 20px;
  cursor: pointer;
  transition: border-color 0.2s;
}
.jj-ship-option.is-selected { border-color: var(--text); }
.jj-order-summary { background: var(--bg-warm); border: 1px solid var(--border); padding: 28px; position: sticky; top: 140px; }
.jj-order-item { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--border); }
.jj-order-item__thumb { width: 52px; height: 68px; background: var(--bg-cream); display: flex; align-items: center; justify-content: center; font-size: 10px; color: var(--muted); flex-shrink: 0; }
.jj-confirmed { text-align: center; max-width: 560px; margin: 0 auto; padding: 60px 0; }
.jj-confirmed__icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 26px;
}

/* Footer — Baroque-style */
.jj-footer {
  background: #262626;
  color: rgba(255, 255, 255, 0.88);
  margin-top: auto;
  font-size: 13px;
  line-height: 1.65;
}
.jj-footer__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(48px, 6vw, 72px) clamp(24px, 5vw, 56px) 0;
}
.jj-foot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
.jj-footer__acc-trigger {
  display: none;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  text-align: left;
}
.jj-footer__acc-icon {
  font-size: 18px;
  font-weight: 300;
  line-height: 1;
  transition: transform 0.2s;
}
.jj-footer__col.is-open .jj-footer__acc-icon { transform: rotate(45deg); }
.jj-footer__acc-body { display: block; }
.jj-footer__mobile-meta {
  display: none;
  text-align: center;
  padding: 28px 0 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 8px;
}
.jj-footer__mobile-logo {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
  margin-top: 24px;
}
.jj-footer__mobile-copy {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 10px;
}
.jj-social--mobile { justify-content: center; margin-top: 0; }
.jj-footer__col-title {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
  font-weight: 500;
  margin-bottom: 20px;
}
.jj-footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.jj-footer__link {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.88);
  display: block;
  transition: opacity 0.2s;
}
.jj-footer__link:hover { opacity: 0.65; }
.jj-footer__address {
  margin-top: 22px;
  font-size: 12px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  max-width: 280px;
}
.jj-footer__contact {
  margin-top: 22px;
  font-size: 12px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.75);
}
.jj-footer__contact a {
  color: rgba(255, 255, 255, 0.88);
  transition: opacity 0.2s;
}
.jj-footer__contact a:hover { opacity: 0.65; }
.jj-social {
  display: flex;
  gap: 14px;
  margin-top: 22px;
  align-items: center;
}
.jj-social a {
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.9;
  transition: opacity 0.2s;
}
.jj-social a:hover { opacity: 0.55; }
.jj-social svg { width: 18px; height: 18px; fill: currentColor; }
.jj-footer__bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  margin-top: clamp(40px, 5vw, 56px);
  padding: 20px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}
.jj-footer__region {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.88);
  font-family: inherit;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 0;
  justify-self: start;
}
.jj-footer__region:hover { opacity: 0.7; }
.jj-footer__copy {
  text-align: center;
  justify-self: center;
  font-size: 11px;
  letter-spacing: 0.06em;
}
.jj-footer__payments {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-self: end;
}
.jj-pay-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: 3px;
  padding: 4px 6px;
  height: 22px;
}
.jj-pay-icon svg { display: block; height: 14px; width: auto; }

/* Overlays */
.jj-overlay { position: fixed; inset: 0; z-index: 60; display: none; }
.jj-overlay.is-open { display: block; }
.jj-overlay__backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.5); }
.jj-cart-drawer {
  position: absolute;
  top: 0; right: 0;
  height: 100%;
  width: min(420px, 100vw);
  background: var(--white);
  display: flex;
  flex-direction: column;
  animation: jjSlideIn 0.3s ease both;
  box-shadow: -8px 0 40px rgba(0,0,0,0.12);
}
.jj-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 28px;
  border-bottom: 1px solid var(--border);
}
.jj-drawer-title { font-family: var(--font-display); font-size: 22px; font-weight: 500; }
.jj-drawer-close { background: none; border: none; cursor: pointer; font-size: 24px; line-height: 1; }
.jj-cart-empty { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 48px; gap: 20px; text-align: center; }
.jj-cart-item { display: flex; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--border); }
.jj-cart-item__thumb { width: 72px; height: 96px; background: var(--bg-warm); flex-shrink: 0; }
.jj-cart-footer { border-top: 1px solid var(--border); padding: 24px 28px; }
.jj-menu-drawer {
  position: absolute;
  top: 0; left: 0;
  height: 100%;
  width: min(360px, 90vw);
  background: var(--white);
  display: flex;
  flex-direction: column;
  animation: jjMenuIn 0.3s ease both;
  padding: 28px;
}
.jj-mobile-nav-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  padding: 16px 0;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  border-bottom: 1px solid var(--border);
}
.jj-search-panel {
  position: absolute;
  top: 0; left: 0; right: 0;
  background: var(--white);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  z-index: 70;
  border-bottom: 1px solid var(--border);
}
.jj-filter-drawer {
  position: absolute;
  top: 0; left: 0;
  height: 100%;
  width: min(360px, 90vw);
  background: var(--white);
  display: flex;
  flex-direction: column;
  animation: jjMenuIn 0.3s ease both;
}

/* Account */
.jj-account-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; max-width: 900px; margin: 0 auto; }
.jj-account-card { background: var(--white); border: 1px solid var(--border); padding: 40px; }
.jj-account-card h2 { font-family: var(--font-display); font-size: 26px; margin-bottom: 24px; }

.jj-section { padding: clamp(48px, 7vw, 88px) 0; }
.jj-section--sm { padding: clamp(40px, 6vw, 72px) 0; }
.jj-section--tight { padding: clamp(24px, 4vw, 40px) 0; }
.jj-hidden { display: none !important; }

/* Desktop homepage */
@media (min-width: 901px) {
  .jj-page-home .jj-hero__content--baroque {
    justify-content: flex-end;
    padding-bottom: clamp(40px, 6vw, 72px);
  }
  .jj-page-home .jj-home-section__head {
    padding: clamp(48px, 6vw, 72px) clamp(32px, 4vw, 48px) clamp(32px, 4vw, 44px);
  }
  .jj-page-home .jj-home-grid-2 {
    padding: 0 clamp(24px, 3vw, 48px);
    gap: clamp(16px, 2vw, 24px);
    margin-inline: auto;
  }
  .jj-page-home .jj-home-section__media {
    margin-inline: auto;
  }
}

/* Small phones */
@media (max-width: 380px) {
  .jj-home-grid-2 {
    gap: 8px;
    padding: 0 8px;
  }
  .jj-btn--shop-overlay {
    padding: 9px 14px;
    font-size: 8px;
    bottom: 12px;
  }
  .jj-home-title {
    font-size: clamp(20px, 6vw, 24px);
  }
}

/* Responsive — layout overrides (grids are mobile-first above) */
@media (max-width: 1100px) {
  .jj-mega__inner { grid-template-columns: 1fr; }
  .jj-mega__cols { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .jj-header__nav-row { display: none; }
  .jj-menu-btn { display: inline-flex !important; }
  .jj-filter-btn { display: inline-flex !important; }
  .jj-hide-mobile { display: none !important; }
  .jj-currency-sel { display: none !important; }
  .jj-shop-layout { grid-template-columns: 1fr; }
  .jj-filters-desktop { display: none !important; }
  .jj-pdp-grid { grid-template-columns: 1fr; }
  .jj-dual-grid, .jj-promo-split { grid-template-columns: 1fr; }
  .jj-essentials { grid-template-columns: repeat(2, 1fr); }
  .jj-trust__grid, .jj-value-props__grid { grid-template-columns: repeat(2, 1fr); }
  .jj-foot-grid { grid-template-columns: 1fr; gap: 0; }
  .jj-footer__acc-trigger { display: flex; }
  .jj-footer__col-title { display: none; }
  .jj-footer__acc-body { display: none; padding-bottom: 18px; }
  .jj-footer__col.is-open .jj-footer__acc-body { display: block; }
  .jj-footer__address--desktop,
  .jj-social--desktop { display: none; }
  .jj-footer__mobile-meta { display: block; }
  .jj-footer__bar {
    grid-template-columns: 1fr;
    text-align: center;
    border-top: none;
    margin-top: 0;
    padding-top: 12px;
  }
  .jj-footer__region { display: none; }
  .jj-footer__copy { display: none; }
  .jj-footer__region, .jj-footer__payments { justify-self: center; }
  .jj-footer__inner { padding-top: 8px; padding-bottom: 0; }
  .jj-pdp-info { position: static; }
  .jj-account-grid { grid-template-columns: 1fr; }
  .jj-form-row-2 { grid-template-columns: 1fr; }
  body.jj-has-pdp-bar { padding-bottom: 72px; }

  /* Homepage — Baroque mobile */
  .jj-page-home .jj-utility,
  .jj-page-home .jj-announce { display: none; }
  .jj-page-home #jj-header-wrap {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 45;
  }
  .jj-page-home .jj-header {
    background: rgba(38, 38, 38, 0.97);
    border: none;
  }
  .jj-page-home .jj-header__top { border: none; padding: 14px 16px; }
  .jj-page-home .jj-logo__tag { display: none; }
  .jj-page-home .jj-logo__name {
    color: var(--white);
    font-size: 17px;
    letter-spacing: 0.24em;
    font-family: var(--font-display);
  }
  .jj-page-home .jj-icon-btn { color: var(--white); }
  .jj-page-home .jj-menu-btn span { background: var(--white); }
  .jj-page-home .jj-cart-count { background: var(--white); color: var(--text); }
  .jj-page-home .jj-hero__title--baroque {
    font-size: clamp(18px, 5.5vw, 32px);
    letter-spacing: 0.08em;
    margin-bottom: clamp(14px, 4vw, 22px);
  }
  .jj-page-home .jj-home-section__head {
    padding: clamp(32px, 8vw, 48px) 16px clamp(24px, 5vw, 36px);
  }
}
@media (min-width: 901px) {
  .jj-footer__acc-trigger {
    display: block;
    pointer-events: none;
    padding: 0;
    border: none;
    margin-bottom: 20px;
    cursor: default;
  }
  .jj-footer__acc-icon { display: none; }
  .jj-footer__acc-body { display: block !important; padding-bottom: 0; }
  .jj-footer__mobile-meta { display: none !important; }
}
@media (max-width: 600px) {
  .jj-foot-grid, .jj-trust__grid, .jj-value-props__grid { grid-template-columns: 1fr; }
  .jj-cart-drawer { width: 100vw !important; }
  .jj-cat-grid { grid-template-columns: 1fr; }
  .jj-newsletter__form { flex-direction: column; border: none; gap: 8px; }
  .jj-newsletter__input { border: 1px solid rgba(255,255,255,0.3); }
  .jj-swipe-hint { display: flex !important; }
}

/* Touch devices — always show quick-add for conversion */
@media (hover: none) {
  .jj-product-card__add { transform: translateY(0); }
  .jj-product-card__wish { opacity: 1; }
}

/* Sticky mobile buy bar — PDP conversion */
.jj-pdp-sticky {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 35;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 12px clamp(16px, 4vw, 24px);
  box-shadow: 0 -8px 32px rgba(0,0,0,0.06);
  align-items: center;
  gap: 12px;
}
.jj-pdp-sticky__price {
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}
.jj-pdp-sticky__btn {
  flex: 1;
  min-height: 48px;
}
@media (max-width: 900px) {
  .jj-pdp-sticky { display: flex; }
}

/* Performance & accessibility */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .jj-hero__bg { animation: none !important; }
}

img[loading="lazy"] { content-visibility: auto; }
