/* ======================================================================
   S&J Leathers - Global Theme Styles
   Leather goods boutique ecommerce
   ====================================================================== */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; }

:root {
  --color-primary: #3e2723;
  --color-secondary: #8d6e63;
  --color-accent: #c9a96e;
  --color-bg: #faf8f5;
  --color-bg-warm: #f5f0eb;
  --color-text: #333;
  --color-text-light: #777;
  --color-text-muted: #999;
  --color-border: #e8e0d5;
  --color-border-light: #f0ebe3;
  --color-white: #fff;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --radius: 4px;
  --max-width: 1200px;
  --font-body: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-heading: "Playfair Display", Georgia, "Times New Roman", serif;
}

body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  margin: 0;
  padding: 0;
  line-height: 1.6;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary); text-decoration: none; }
a:hover { color: var(--color-secondary); }
h1, h2, h3, h4 { margin: 0; font-weight: 600; }

/* ======================================================================
   Layout system (template.vtl)
   ====================================================================== */
.syj-layout {
  min-height: 60vh;
}
.syj-layout__section + .syj-layout__section {
  margin-top: 0;
}
.syj-layout__container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 16px;
}
.syj-layout__row {
  display: flex;
  flex-wrap: wrap;
}
.syj-layout__column {
  flex: 1;
  min-width: 0;
}

/* ======================================================================
   Theme Header (header.vtl)
   ====================================================================== */
.site-header {
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 16px;
}
.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}
.header-spacer {
  width: 40px;
}
.brand-identity { text-align: center; }
.brand-link {
  text-decoration: none;
  color: var(--color-primary);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.brand-name {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1.1;
}
.brand-tagline {
  font-size: 11px;
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-top: 2px;
}
.header-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}
.header-icon {
  background: none;
  border: none;
  color: var(--color-text);
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}
.header-icon:hover {
  background: var(--color-bg);
  color: var(--color-primary);
}
.main-nav {
  border-top: 1px solid var(--color-border-light);
  padding: 0;
}
.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 32px;
}
.nav-item {}
.nav-link {
  display: inline-block;
  padding: 12px 0;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.15s;
  position: relative;
}
.nav-link:hover {
  color: var(--color-accent);
}

/* ======================================================================
   SYJ Top Bar (container)
   ====================================================================== */
.syj-top-bar {
  background: var(--color-primary);
  font-size: 12px;
  color: rgba(255,255,255,0.9);
}
.syj-top-bar__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 5px 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.syj-top-bar__social a {
  margin-right: 14px;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-weight: 500;
  font-size: 11px;
  transition: color 0.15s;
}
.syj-top-bar__social a:hover { color: var(--color-accent); }
.syj-top-bar__message {
  text-align: center;
  flex: 1;
  min-width: 200px;
  font-weight: 500;
}
.syj-top-bar__shipping {
  display: block;
  font-size: 10px;
  color: rgba(255,255,255,0.55);
  margin-top: 1px;
}
.syj-top-bar__links a {
  margin-left: 16px;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-weight: 500;
  font-size: 11px;
  transition: color 0.15s;
}
.syj-top-bar__links a:hover { color: var(--color-accent); }

/* ======================================================================
   SYJ Main Header (container)
   ====================================================================== */
.syj-main-header {
  background: var(--color-white);
  border-bottom: 2px solid var(--color-primary);
}
.syj-main-header__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 14px 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.syj-main-header__nav {
  display: flex;
  gap: 24px;
}
.syj-main-header__nav a {
  color: var(--color-text);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  transition: color 0.15s;
}
.syj-main-header__nav a:hover { color: var(--color-accent); }
.syj-main-header__logo { text-align: center; }
.syj-main-header__logo-link {
  text-decoration: none;
  color: var(--color-primary);
}
.syj-main-header__logo-text {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
}
.syj-main-header__actions {
  display: flex;
  gap: 18px;
}
.syj-main-header__action {
  color: var(--color-text-light);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: color 0.15s;
}
.syj-main-header__action:hover { color: var(--color-primary); }

/* ======================================================================
   SYJ Hero Slider (container)
   ====================================================================== */
.syj-hero-slider {
  position: relative;
  overflow: hidden;
  background: var(--color-primary);
  max-width: var(--max-width);
  margin: 0 auto;
}
.syj-hero-slider--empty {
  min-height: 200px;
  background: var(--color-bg-warm);
  border: 2px dashed var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  font-size: 14px;
}
.syj-hero-slider__track {
  position: relative;
}
.syj-hero-slide {
  display: none;
  position: relative;
  aspect-ratio: 21 / 9;
}
.syj-hero-slide:first-child {
  display: block;
}
.syj-hero-slide.is-active {
  display: block;
}
.syj-hero-slide__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.syj-hero-slide__placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
}
.syj-hero-slide__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.45));
}
.syj-hero-slide__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 48px 32px;
  color: #fff;
}
.syj-hero-slide__title {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 16px;
  line-height: 1.15;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}
.syj-hero-slide__button {
  display: inline-block;
  background: var(--color-accent);
  color: var(--color-primary);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 10px 28px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.syj-hero-slide__button:hover {
  background: var(--color-white);
  color: var(--color-primary);
}

/* --- Slider nav --- */
.syj-hero-slider__nav {
  position: absolute;
  bottom: 12px;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  z-index: 10;
}
.syj-hero-slider__prev,
.syj-hero-slider__next {
  background: rgba(255,255,255,0.2);
  border: none;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  padding: 0;
  line-height: 1;
}
.syj-hero-slider__prev:hover,
.syj-hero-slider__next:hover {
  background: rgba(255,255,255,0.4);
}
.syj-hero-slider__dots {
  display: flex;
  gap: 8px;
  align-items: center;
}
.syj-hero-slider__dot {
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}
.syj-hero-slider__dot.is-active {
  background: var(--color-accent);
  transform: scale(1.3);
}
.syj-hero-slider__dot:hover {
  background: rgba(255,255,255,0.75);
}

/* ======================================================================
   SYJ Breadcrumb (container)
   ====================================================================== */
.syj-breadcrumb-links {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 12px 16px 8px;
  font-size: 13px;
  color: var(--color-text-light);
}
.syj-breadcrumb-links a {
  color: var(--color-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.15s;
}
.syj-breadcrumb-links a:hover { color: var(--color-primary); }
.syj-breadcrumb-links__sep {
  margin: 0 10px;
  color: var(--color-border);
}

/* ======================================================================
   SYJ Product Grid
   ====================================================================== */
.syj-product-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 20px 16px 48px;
}
.syj-product-grid__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.syj-product-grid--empty .syj-product-grid__inner {
  display: block;
  text-align: center;
}
.syj-product-grid__empty-msg {
  color: var(--color-text-muted);
  font-size: 16px;
  padding: 60px 0;
}

/* --- Product Card --- */
.syj-product-card {
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  height: 100%;
}
.syj-product-card:hover {
  border-color: var(--color-border);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.syj-product-card__link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.syj-product-card__image-wrapper {
  aspect-ratio: 1 / 1;
  background: var(--color-bg-warm);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.syj-product-card__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
}
.syj-product-card__image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  font-size: 13px;
}
.syj-product-card__info {
  padding: 12px 14px 4px;
  flex: 1;
}
.syj-product-card__title {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text);
  margin: 0 0 4px 0;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.syj-product-card__price {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-primary);
  white-space: nowrap;
}
.syj-product-card__price--consult {
  font-size: 12px;
  color: var(--color-text-muted);
  font-weight: 400;
}
.syj-product-card__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 14px 12px;
}
.syj-product-card__wishlist {
  background: none;
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  font-size: 16px;
  cursor: pointer;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: var(--radius);
  transition: color 0.15s, border-color 0.15s;
}
.syj-product-card__wishlist:hover {
  color: #c0392b;
  border-color: #c0392b;
}
.syj-product-card__view-more {
  font-size: 11px;
  color: var(--color-secondary);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 4px 10px;
  transition: color 0.15s, border-color 0.15s, background 0.15s;
}
.syj-product-card__view-more:hover {
  color: var(--color-white);
  background: var(--color-primary);
  border-color: var(--color-primary);
}

/* ======================================================================
   Product Detail Page - Stitch editorial iteration
   ====================================================================== */
.syj-pdp {
  --pdp-surface: #fbf9f8;
  --pdp-panel-soft: #f6f3f2;
  --pdp-ink: #1b1c1c;
  --pdp-muted: #4f4542;
  --pdp-primary: #130805;
  --pdp-line: #d2c3bf;
  --pdp-gold: #d4af37;
  color: var(--pdp-ink);
  padding: 8px 0 72px;
}
.syj-pdp--editorial {
  max-width: 1180px;
  margin: 0 auto;
}
.syj-pdp__crumbs {
  align-items: center;
  color: var(--pdp-primary);
  display: flex;
  flex-wrap: wrap;
  font-size: 11px;
  font-weight: 700;
  gap: 9px;
  letter-spacing: 0.14em;
  margin: 0 0 48px;
  text-transform: uppercase;
}
.syj-pdp__crumbs a,
.syj-pdp__crumbs strong {
  color: var(--pdp-primary);
}
.syj-pdp__hero {
  align-items: start;
  display: grid;
  grid-template-columns: minmax(0, 58%) minmax(310px, 1fr);
  gap: 48px;
  margin-bottom: 124px;
}
.syj-pdp__media {
  display: grid;
  gap: 24px;
  grid-template-columns: 80px minmax(0, 1fr);
  min-width: 0;
}
.syj-pdp__media--single {
  display: block;
}
.syj-pdp__thumbs {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.syj-pdp__thumb {
  aspect-ratio: 4 / 5;
  background: var(--pdp-panel-soft);
  border: 1px solid transparent;
  cursor: pointer;
  padding: 7px;
  transition: border-color 0.18s ease, transform 0.18s ease;
}
.syj-pdp__thumb:hover,
.syj-pdp__thumb.is-active {
  border-color: var(--pdp-line);
}
.syj-pdp__thumb img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.syj-pdp__image-frame,
.syj-pdp__image-placeholder {
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, #f3eadc 0%, #fbf9f8 55%, #d8cec4 100%);
  overflow: hidden;
}
.syj-pdp__main-image {
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease, opacity 0.18s ease;
  width: 100%;
}
.syj-pdp__image-frame:hover .syj-pdp__main-image {
  transform: scale(1.025);
}
.syj-pdp__image-placeholder {
  align-items: center;
  color: var(--color-text-muted);
  display: flex;
  justify-content: center;
}
.syj-pdp__summary {
  padding-top: 46px;
}
.syj-pdp__rating {
  align-items: center;
  color: var(--pdp-gold);
  display: flex;
  gap: 2px;
  margin-bottom: 22px;
}
.syj-pdp__rating small {
  color: var(--pdp-primary);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  margin-left: 8px;
  text-transform: uppercase;
}
.syj-pdp__title {
  color: #0f0603;
  font-family: var(--font-heading);
  font-size: clamp(36px, 3.7vw, 52px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.03;
  margin: 0 0 10px;
}
.syj-pdp__price {
  margin-bottom: 30px;
}
.syj-pdp__price-value {
  color: var(--pdp-primary);
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 500;
  line-height: 1.2;
}
.syj-pdp__price--consult {
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 700;
}
.syj-pdp__intro {
  color: var(--pdp-muted);
  font-size: 16px;
  line-height: 1.75;
  margin: 0 0 38px;
  max-width: 460px;
}
.syj-pdp__options {
  margin-bottom: 40px;
}
.syj-pdp__option-label {
  color: var(--pdp-primary);
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  margin-bottom: 14px;
  text-transform: uppercase;
}
.syj-pdp__swatches {
  display: flex;
  gap: 14px;
}
.syj-pdp__swatch {
  background: var(--swatch-color);
  border: 1px solid rgba(255,255,255,0.95);
  border-radius: 11px;
  cursor: pointer;
  height: 40px;
  outline: 0;
  transition: box-shadow 0.18s ease, transform 0.18s ease;
  width: 40px;
}
.syj-pdp__swatch:hover,
.syj-pdp__swatch.is-active {
  box-shadow: 0 0 0 2px var(--pdp-primary), 0 0 0 6px var(--pdp-surface);
}
.syj-pdp__purchase {
  display: grid;
  gap: 18px;
  grid-template-columns: 128px minmax(0, 1fr);
  margin-bottom: 48px;
}
.syj-pdp__quantity {
  align-items: center;
  border: 1px solid #817471;
  display: flex;
  height: 56px;
  justify-content: space-between;
  padding: 0 18px;
}
.syj-pdp__quantity button {
  background: transparent;
  border: 0;
  color: var(--pdp-primary);
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  padding: 0;
}
.syj-pdp__quantity span {
  font-size: 12px;
  font-weight: 800;
}
.syj-pdp__cta-btn {
  align-items: center;
  background: var(--pdp-primary);
  border: 1px solid var(--pdp-primary);
  color: #ffffff;
  display: inline-flex;
  font-size: 12px;
  font-weight: 800;
  justify-content: center;
  letter-spacing: 0.18em;
  min-height: 56px;
  padding: 14px 28px;
  text-align: center;
  text-transform: uppercase;
  transition: opacity 0.18s ease, transform 0.18s ease;
}
.syj-pdp__cta-btn:hover {
  color: #ffffff;
  opacity: 0.9;
}
.syj-pdp__meta-actions {
  align-items: center;
  border-top: 1px solid var(--pdp-line);
  color: var(--pdp-primary);
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  padding-top: 26px;
}
.syj-pdp__meta-actions button,
.syj-pdp__meta-actions a,
.syj-pdp__meta-actions b {
  background: transparent;
  border: 0;
  color: var(--pdp-primary);
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  padding: 0;
  text-transform: uppercase;
}
.syj-pdp__meta-actions span {
  background: var(--pdp-line);
  height: 18px;
  width: 1px;
}
.syj-pdp__tabs {
  border-top: 1px solid var(--pdp-line);
  padding-top: 72px;
}
.syj-pdp__tab-list {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  justify-content: center;
  margin-bottom: 42px;
}
.syj-pdp__tab-list button {
  background: transparent;
  border: 0;
  color: var(--pdp-primary);
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 32px;
  padding: 0 0 7px;
}
.syj-pdp__tab-list button.is-active {
  border-bottom: 2px solid var(--pdp-primary);
}
.syj-pdp__tab-list span {
  background: #e4e2e1;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 12px;
  padding: 2px 7px;
}
.syj-pdp__tab-panel {
  color: var(--pdp-muted);
  font-size: 16px;
  line-height: 1.75;
  margin: 0 auto;
  max-width: 760px;
  text-align: center;
}
.syj-pdp__quote {
  color: var(--pdp-ink);
  font-size: 17px;
  font-style: italic;
  margin: 0 0 28px;
}
.syj-pdp__detail-grid {
  border-top: 1px solid var(--pdp-line);
  display: grid;
  gap: 44px;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 38px;
  padding-top: 30px;
  text-align: left;
}
.syj-pdp__detail-grid h4 {
  color: var(--pdp-primary);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  margin: 0 0 10px;
  text-transform: uppercase;
}
.syj-pdp__detail-grid p {
  margin: 0;
}
.syj-pdp__specs {
  border: 1px solid var(--pdp-line);
  margin: 0;
  padding: 28px;
  text-align: left;
}
.syj-pdp__specs div {
  border-bottom: 1px solid rgba(210,195,191,0.45);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 0;
}
.syj-pdp__specs div:last-child {
  border-bottom: 0;
}
.syj-pdp__specs dt {
  color: var(--pdp-primary);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.syj-pdp__specs dd {
  margin: 0;
  text-align: right;
}
.syj-pdp__review {
  border-bottom: 1px solid var(--pdp-line);
  margin-bottom: 22px;
  padding-bottom: 22px;
  text-align: left;
}
.syj-pdp__review div {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}
.syj-pdp__review span {
  color: var(--pdp-muted);
  font-size: 12px;
  text-transform: uppercase;
}
.syj-pdp__review-cta {
  border: 1px solid var(--pdp-primary);
  color: var(--pdp-primary);
  display: inline-flex;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 13px 24px;
  text-transform: uppercase;
}
.syj-pdp__review-cta:hover {
  background: var(--pdp-primary);
  color: #ffffff;
}
.syj-pdp--empty {
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  margin: 36px 0;
  padding: 28px;
}
@media (max-width: 820px) {
  .syj-pdp__hero {
    grid-template-columns: 1fr;
    gap: 36px;
    margin-bottom: 76px;
  }
  .syj-pdp__summary {
    padding-top: 0;
  }
}
@media (max-width: 620px) {
  .syj-pdp {
    padding: 20px 0 54px;
  }
  .syj-pdp__crumbs {
    margin-bottom: 24px;
  }
  .syj-pdp__media {
    display: flex;
    flex-direction: column-reverse;
  }
  .syj-pdp__thumbs {
    flex-direction: row;
    overflow-x: auto;
    padding-bottom: 4px;
  }
  .syj-pdp__thumb {
    flex: 0 0 72px;
  }
  .syj-pdp__purchase {
    grid-template-columns: 1fr;
  }
  .syj-pdp__tab-list {
    gap: 18px;
    justify-content: flex-start;
  }
  .syj-pdp__tab-list button {
    font-size: 22px;
  }
  .syj-pdp__tab-panel {
    text-align: left;
  }
  .syj-pdp__detail-grid,
  .syj-pdp__specs div,
  .syj-pdp__review div {
    display: block;
  }
  .syj-pdp__specs dd {
    margin-top: 4px;
    text-align: left;
  }
}

/* ======================================================================
   Theme Footer (footer.vtl)
   ====================================================================== */
.site-footer {
  background: var(--color-primary);
  color: rgba(255,255,255,0.8);
  padding: 48px 16px 0;
  margin-top: 48px;
}
.footer-container {
  max-width: var(--max-width);
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding-bottom: 40px;
}
.footer-col {}
.footer-heading {
  color: var(--color-white);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li { margin-bottom: 8px; }
.footer-links a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.15s;
}
.footer-links a:hover { color: var(--color-accent); }
.newsletter-form { margin-top: 4px; }
.newsletter-input-group {
  display: flex;
  border-bottom: 1px solid rgba(255,255,255,0.3);
}
.newsletter-input {
  flex: 1;
  background: none;
  border: none;
  color: var(--color-white);
  font-size: 13px;
  padding: 8px 0;
  outline: none;
  font-family: var(--font-body);
}
.newsletter-input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  padding: 8px;
  transition: color 0.15s;
}
.newsletter-btn:hover { color: var(--color-accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 16px 0;
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

/* ======================================================================
   Placeholder sections
   ====================================================================== */
.syj-hero-placeholder {
  background: var(--color-bg-warm);
  text-align: center;
  padding: 80px 16px;
  color: var(--color-text-muted);
  font-size: 16px;
  margin: 0;
  border-bottom: 1px solid var(--color-border-light);
}

/* ======================================================================
   Responsive
   ====================================================================== */
@media (max-width: 1024px) {
  .syj-product-grid__inner {
    grid-template-columns: repeat(3, 1fr);
  }
  .syj-pdp__grid {
    gap: 30px;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.9fr);
  }
  .syj-pdp__title {
    font-size: 38px;
  }
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .syj-top-bar__inner {
    flex-direction: column;
    text-align: center;
  }
  .syj-top-bar__links { margin-top: 4px; }
  .syj-top-bar__links a { margin: 0 8px; }

  .syj-main-header__inner {
    flex-direction: column;
    gap: 10px;
  }
  .syj-main-header__nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
  }
  .syj-main-header__nav a { font-size: 13px; }
  .syj-main-header__actions {
    justify-content: center;
  }

  .syj-hero-slide__title { font-size: 26px; }
  .syj-hero-slide__content { padding: 28px 32px 24px; }
  .syj-hero-slide__button { font-size: 12px; padding: 8px 20px; }
  .syj-hero-slide { aspect-ratio: 16 / 9; }

  .header-top {
    flex-direction: column;
    gap: 8px;
  }
  .header-spacer { display: none; }
  .nav-list { gap: 20px; }

  .syj-product-grid__inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .syj-pdp {
    padding: 24px 0 42px;
  }
  .syj-pdp__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .syj-pdp__info-col {
    padding: 24px;
  }
  .syj-pdp__title {
    font-size: 34px;
  }

  .syj-breadcrumb-links {
    font-size: 12px;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 480px) {
  .syj-product-grid__inner {
    grid-template-columns: 1fr;
  }
  .syj-pdp__info-col {
    padding: 20px;
  }
  .syj-pdp__title {
    font-size: 30px;
  }
  .syj-pdp__image {
    padding: 18px;
  }
  .syj-pdp__cta-btn {
    width: 100%;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .brand-name { font-size: 22px; }
  .syj-main-header__logo-text { font-size: 22px; }
  .syj-hero-slide__title { font-size: 20px; }
  .syj-hero-slide__content { padding: 20px 20px 16px; }
  .syj-hero-slide { aspect-ratio: 4 / 3; }
  .syj-hero-slide__button { font-size: 11px; padding: 6px 16px; }
  .syj-hero-slider__nav { bottom: 6px; }
  .syj-hero-slider__prev, .syj-hero-slider__next { width: 26px; height: 26px; font-size: 13px; }
  .syj-hero-slider__dot { width: 8px; height: 8px; }
}

/* ======================================================================
   Editorial Homepage + Theme Refresh
   Based on stitch_s_j_leathers_lifestyle_homepage/s_j_leathers_editorial_homepage_2
   ====================================================================== */
:root {
  --color-primary: #1c1c1c;
  --color-secondary: #2c241e;
  --color-accent: #8b4513;
  --color-bg: #f9f7f2;
  --color-bg-warm: #f9f7f2;
  --color-text: #1c1c1c;
  --color-text-light: #6f6a64;
  --color-text-muted: #8a827a;
  --color-border: #dfdbd4;
  --color-border-light: #ece8e1;
  --color-white: #fff;
  --max-width: 1280px;
  --font-heading: "Times New Roman", Georgia, serif;
  --font-body: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
body {
  background: var(--color-bg);
  color: var(--color-text);
}
.site-header {
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border-light);
  box-shadow: none;
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-container {
  max-width: var(--max-width);
  padding: 0 24px;
}
.header-top {
  padding: 24px 0 14px;
}
.header-spacer,
.header-actions {
  width: 112px;
}
.header-actions {
  justify-content: flex-end;
  gap: 24px;
}
.brand-name {
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 500;
  letter-spacing: 0.14em;
  line-height: 0.95;
}
.brand-tagline {
  color: var(--color-primary);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  margin-top: 8px;
}
.header-icon {
  border-radius: 0;
  color: var(--color-primary);
  padding: 0;
}
.header-icon:hover {
  background: transparent;
  color: var(--color-accent);
}
.main-nav {
  border-top: 0;
  padding: 0 0 18px;
}
.nav-list {
  gap: 48px;
}
.nav-link {
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  padding: 0;
}
.nav-link:hover {
  color: var(--color-accent);
}
.syj-layout__container {
  max-width: var(--max-width);
  padding: 0 24px;
}
.syj-layout__column {
  width: 100%;
}
.syj-home-hero-section .syj-layout__container {
  max-width: none;
  padding: 0;
}
.syj-home-hero-section .syj-layout__row,
.syj-home-hero-section .syj-layout__column {
  display: block;
}
.syj-home-collections-section .syj-layout__container,
.syj-home-products-section .syj-layout__container,
.syj-home-spotlight-section .syj-layout__container {
  max-width: none;
  padding: 0;
}
.section,
.collections-section,
.products-section,
.spotlight-section {
  padding: 80px 0;
}
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.section-heading {
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 1.2;
  margin: 0 0 48px;
  text-align: center;
  text-transform: uppercase;
}
.hero-section {
  background: var(--color-secondary);
  height: 650px;
  overflow: hidden;
  position: relative;
}
.hero-background,
.hero-background img,
.hero-image {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
}
.hero-overlay {
  background: rgba(0,0,0,0.12);
  inset: 0;
  position: absolute;
}
.hero-content {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  margin: 0 auto;
  max-width: var(--max-width);
  padding: 0 24px;
  position: relative;
  z-index: 1;
}
.hero-headline {
  color: #fff;
  font-family: var(--font-heading);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.08;
  margin: 0 0 34px;
  max-width: 560px;
  text-transform: uppercase;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.12);
}
.hero-cta {
  border-bottom: 2px solid #fff;
  color: #fff;
  display: inline-flex;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
  padding-bottom: 4px;
  text-transform: uppercase;
}
.hero-cta:hover {
  color: rgba(255,255,255,0.78);
}
.collections-section {
  background: var(--color-bg);
}
.collections-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(3, 1fr);
}
.collection-card {
  background: var(--color-secondary);
  height: 500px;
  overflow: hidden;
  position: relative;
}
.collection-card-bg,
.collection-card-bg img,
.collection-card-image {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  transition: transform 0.7s ease;
  width: 100%;
}
.collection-card:hover .collection-card-image {
  transform: scale(1.05);
}
.collection-card-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.58), rgba(0,0,0,0.08));
  inset: 0;
  position: absolute;
}
.collection-card-content {
  bottom: 0;
  color: #fff;
  left: 0;
  padding: 32px;
  position: absolute;
  right: 0;
  z-index: 1;
}
.collection-card-title {
  color: #fff;
  font-family: var(--font-heading);
  font-size: 23px;
  font-weight: 500;
  letter-spacing: 0.12em;
  margin: 0 0 24px;
  text-transform: uppercase;
}
.collection-card-cta,
.btn-outline-light {
  background: #fff;
  color: var(--color-primary);
  display: inline-flex;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  padding: 12px 28px;
  text-transform: uppercase;
}
.collection-card-cta:hover,
.btn-outline-light:hover {
  background: var(--color-primary);
  color: #fff;
}
.products-section {
  background: rgba(255,255,255,0.36);
}
.products-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(4, 1fr);
}
.product-card {
  text-align: center;
}
.product-card-image-wrapper {
  aspect-ratio: 1 / 1;
  background: transparent;
  margin-bottom: 16px;
  overflow: hidden;
  position: relative;
}
.product-card-image {
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.product-card-quick-view {
  display: none;
}
.product-card-title {
  color: var(--color-primary);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  margin: 0;
  text-transform: uppercase;
}
.product-card-price {
  color: var(--color-text-light);
  display: block;
  font-size: 11px;
  margin-top: 4px;
}
.carousel-indicators {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 34px;
}
.carousel-dot {
  background: #d2d2d2;
  border-radius: 50%;
  display: block;
  height: 8px;
  width: 8px;
}
.carousel-dot.active {
  background: var(--color-primary);
}
.spotlight-section {
  background: var(--color-bg);
}
.spotlight-container {
  background: var(--color-secondary);
  color: #fff;
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 0 auto;
  max-width: var(--max-width);
  overflow: hidden;
}
.spotlight-content {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 400px;
  padding: 72px 80px;
}
.spotlight-headline {
  color: #fff;
  font-family: var(--font-heading);
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.18;
  margin: 0 0 36px;
  text-transform: uppercase;
}
.spotlight-cta {
  background: #fff;
  color: var(--color-primary);
}
.spotlight-image-wrapper {
  min-height: 400px;
}
.spotlight-image {
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.site-footer {
  background: var(--color-bg);
  border-top: 1px solid var(--color-border-light);
  color: var(--color-primary);
  margin-top: 0;
  padding: 64px 0 0;
}
.footer-container {
  max-width: var(--max-width);
  padding: 0 24px;
}
.footer-grid {
  display: grid;
  gap: 48px;
  grid-template-columns: repeat(4, 1fr);
  padding-bottom: 64px;
}
.footer-heading {
  color: var(--color-accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  margin: 0 0 24px;
  text-transform: uppercase;
}
.footer-links a {
  color: var(--color-text-light);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.newsletter-input-group {
  align-items: flex-end;
  display: flex;
  gap: 8px;
}
.newsletter-input {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-primary);
  font-size: 12px;
  padding: 8px 0;
  width: 100%;
}
.newsletter-input::placeholder {
  color: #9a948c;
}
.newsletter-btn {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--color-border);
  color: #9a948c;
  cursor: pointer;
  padding: 8px 0;
}
.footer-bottom {
  border-top: 1px solid var(--color-border-light);
  color: #9a948c;
  font-size: 10px;
  letter-spacing: 0.16em;
  padding: 32px 0;
  text-align: center;
  text-transform: uppercase;
}
@media (max-width: 900px) {
  .nav-list {
    flex-wrap: wrap;
    gap: 22px;
  }
  .hero-section {
    height: 540px;
  }
  .collections-grid,
  .spotlight-container {
    grid-template-columns: 1fr;
  }
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .spotlight-content {
    min-height: auto;
    padding: 48px 32px;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 620px) {
  .header-top {
    align-items: center;
    gap: 12px;
    padding-top: 18px;
  }
  .header-spacer {
    display: none;
  }
  .header-actions {
    width: auto;
    gap: 14px;
  }
  .brand-name {
    font-size: 30px;
  }
  .brand-tagline {
    letter-spacing: 0.18em;
  }
  .nav-list {
    gap: 16px;
  }
  .nav-link {
    font-size: 10px;
  }
  .hero-section {
    height: 480px;
  }
  .hero-headline {
    font-size: 34px;
  }
  .section,
  .collections-section,
  .products-section,
  .spotlight-section {
    padding: 56px 0;
  }
  .collection-card {
    height: 380px;
  }
  .products-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    text-align: left;
  }
}

/* ======================================================================
   Editorial Hero Slider MVP
   ====================================================================== */
.syj-editorial-hero {
  background: #d8d8d8;
  height: min(650px, 58vw);
  min-height: 420px;
  max-width: none;
  width: 100%;
}
.syj-editorial-hero .syj-hero-slider__track,
.syj-editorial-hero .syj-hero-slide {
  height: 100%;
  min-height: inherit;
}
.syj-editorial-hero .syj-hero-slide {
  aspect-ratio: auto;
  display: block;
  inset: 0;
  opacity: 0;
  position: absolute;
  transition: opacity 900ms ease;
  visibility: hidden;
}
.syj-editorial-hero .syj-hero-slide.is-active {
  opacity: 1;
  position: relative;
  visibility: visible;
  z-index: 1;
}
.syj-editorial-hero .syj-hero-slide__image {
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.syj-editorial-hero .syj-hero-slide__placeholder {
  height: 100%;
}
.syj-editorial-hero .syj-hero-slide__overlay,
.syj-editorial-hero .syj-hero-slide__title {
  display: none;
}
.syj-editorial-hero .syj-hero-slide__content {
  align-items: flex-start;
  bottom: 64px;
  color: var(--color-primary);
  display: flex;
  left: 50%;
  max-width: 1280px;
  padding: 0 24px;
  position: absolute;
  right: auto;
  top: auto;
  transform: translateX(-50%);
  width: 100%;
  z-index: 3;
}
.syj-editorial-hero .syj-editorial-hero__cta {
  background: rgba(249,247,242,0.88);
  border: 1px solid rgba(28,28,28,0.18);
  color: var(--color-primary);
  display: inline-flex;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  min-width: 142px;
  padding: 15px 24px;
  text-align: center;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.syj-editorial-hero .syj-editorial-hero__cta:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}
.syj-editorial-hero .syj-hero-slider__nav {
  bottom: 28px;
}
.syj-editorial-hero .syj-hero-slider__prev,
.syj-editorial-hero .syj-hero-slider__next {
  display: none;
}
.syj-editorial-hero .syj-hero-slider__dot {
  background: rgba(28,28,28,0.22);
  height: 7px;
  width: 7px;
}
.syj-editorial-hero .syj-hero-slider__dot.is-active {
  background: var(--color-primary);
  transform: none;
}
@media (max-width: 720px) {
  .syj-editorial-hero {
    height: 460px;
    min-height: 460px;
  }
  .syj-editorial-hero .syj-hero-slide__content {
    bottom: 54px;
  }
}

/* ======================================================================
   Premium Product Listing Page - Stitch editorial alignment
   ====================================================================== */
.syj-plp-section .syj-layout__container {
  max-width: none;
  padding: 0;
}

.syj-plp-section .syj-layout__row,
.syj-plp-section .syj-layout__column {
  display: block;
  width: 100%;
}

.syj-product-listing {
  --plp-cream: #f9f7f2;
  --plp-ink: #1a1a1a;
  --plp-muted: #8b7e6d;
  --plp-gold: #a68953;
  --plp-border: #d8d2c8;
  --plp-soft: #f2f0eb;
  background: var(--plp-cream);
  color: var(--plp-ink);
  padding: 54px 0 86px;
}

.syj-product-listing__shell {
  width: min(1440px, calc(100% - 64px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 264px minmax(0, 1fr);
  gap: 56px;
}

.syj-product-filters__sticky {
  position: sticky;
  top: 28px;
}

.syj-product-filters__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--plp-border);
  padding-bottom: 18px;
  margin-bottom: 28px;
}

.syj-product-filters__eyebrow,
.syj-product-listing__kicker,
.syj-product-search__label,
.syj-product-sort label,
.syj-product-card__brand {
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
}

.syj-product-filters__reset {
  color: var(--plp-muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.syj-product-search {
  margin-bottom: 30px;
}

.syj-product-search__label {
  display: block;
  margin-bottom: 12px;
}

.syj-product-search__control {
  display: flex;
  border: 1px solid var(--plp-border);
  background: #fff;
  min-height: 44px;
}

.syj-product-search__control input {
  min-width: 0;
  flex: 1;
  border: 0;
  background: transparent;
  padding: 0 13px;
  font: inherit;
  color: var(--plp-ink);
}

.syj-product-search__control button {
  width: 44px;
  border: 0;
  border-left: 1px solid var(--plp-border);
  background: transparent;
  color: var(--plp-ink);
  cursor: pointer;
  font-size: 18px;
}

.syj-filter-group {
  border-bottom: 1px solid var(--plp-border);
  padding: 0 0 24px;
  margin-bottom: 24px;
}

.syj-filter-group__toggle {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--plp-ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  margin-bottom: 16px;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.syj-filter-group__toggle::after {
  content: "+";
  color: var(--plp-muted);
  font-size: 16px;
  line-height: 1;
}

.syj-filter-group.is-open .syj-filter-group__toggle::after {
  content: "-";
}

.syj-filter-group__body {
  display: grid;
  gap: 11px;
}

.syj-filter-group:not(.is-open) .syj-filter-group__body,
.syj-filter-group:not(.is-open) .syj-filter-swatches {
  display: none;
}

.syj-filter-link,
.syj-filter-static {
  color: #61584f;
  font-size: 14px;
  line-height: 1.35;
}

.syj-filter-link:hover,
.syj-filter-link.is-active {
  color: var(--plp-gold);
}

.syj-filter-swatches {
  display: flex;
  gap: 13px;
}

.syj-filter-swatch {
  width: 25px;
  height: 25px;
  border: 0;
  border-radius: 50%;
  background: var(--swatch);
  cursor: pointer;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.08);
}

.syj-filter-swatch.is-active {
  outline: 1px solid var(--plp-ink);
  outline-offset: 3px;
}

.syj-filter-price__bar {
  position: relative;
  height: 2px;
  margin: 4px 6px 16px;
  background: var(--plp-border);
}

.syj-filter-price__bar span {
  position: absolute;
  inset: 0 28% 0 0;
  background: var(--plp-gold);
}

.syj-filter-price__bar::before,
.syj-filter-price__bar::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--plp-gold);
  transform: translateY(-50%);
}

.syj-filter-price__bar::before { left: 0; }
.syj-filter-price__bar::after { right: 28%; }

.syj-filter-price__labels {
  display: flex;
  justify-content: space-between;
  color: #61584f;
  font-size: 12px;
}

.syj-listing-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--plp-muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.syj-listing-breadcrumb a {
  color: var(--plp-muted);
}

.syj-listing-breadcrumb strong {
  color: var(--plp-ink);
  font-weight: 700;
}

.syj-product-listing__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
}

.syj-product-listing__kicker {
  color: var(--plp-muted);
  margin: 0 0 12px;
}

.syj-product-listing__title {
  font-family: var(--font-heading);
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 600;
  line-height: 0.96;
  color: var(--plp-ink);
  text-transform: capitalize;
}

.syj-product-sort {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--plp-border);
  background: #fff;
  min-height: 44px;
  padding: 0 12px;
}

.syj-product-sort label {
  color: var(--plp-muted);
  white-space: nowrap;
}

.syj-product-sort select {
  border: 0;
  background: transparent;
  color: var(--plp-ink);
  font: inherit;
  min-width: 154px;
  outline: none;
}

.syj-product-listing .syj-product-grid {
  max-width: none;
  margin: 0;
  padding: 0;
}

.syj-product-listing .syj-product-grid__inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 44px 28px;
}

.syj-product-listing .syj-product-grid--empty .syj-product-grid__inner {
  display: block;
}

.syj-product-listing .syj-product-card {
  background: transparent;
  border: 0;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
  transform: none;
}

.syj-product-listing .syj-product-card:hover {
  border-color: transparent;
  box-shadow: none;
  transform: none;
}

.syj-product-listing .syj-product-card__image-wrapper {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 8px;
  background: #e8e5df;
  overflow: hidden;
  padding: 30px;
}

.syj-product-listing .syj-product-card:nth-child(3n + 2) .syj-product-card__image-wrapper {
  background: #ddd9d2;
}

.syj-product-listing .syj-product-card:nth-child(3n) .syj-product-card__image-wrapper {
  background: var(--plp-soft);
}

.syj-product-listing .syj-product-card__image {
  width: 100%;
  height: 100%;
  padding: 0;
  object-fit: contain;
  filter: drop-shadow(0 20px 22px rgba(45, 30, 20, 0.18));
  transition: transform 500ms ease;
}

.syj-product-listing .syj-product-card:hover .syj-product-card__image {
  transform: scale(1.035);
}

.syj-product-card__quick-view {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -42%);
  opacity: 0;
  background: var(--plp-gold);
  color: #fff;
  padding: 12px 22px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: opacity 220ms ease, transform 220ms ease, background 220ms ease;
  pointer-events: none;
}

.syj-product-listing .syj-product-card:hover .syj-product-card__quick-view {
  opacity: 1;
  transform: translate(-50%, -50%);
}

.syj-product-listing .syj-product-card__info {
  padding: 18px 0 0;
}

.syj-product-listing .syj-product-card__brand {
  color: var(--plp-muted);
  margin: 0 0 8px;
}

.syj-product-listing .syj-product-card__title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.15;
  color: var(--plp-ink);
  margin: 0 0 9px;
  display: block;
  overflow: visible;
}

.syj-product-listing .syj-product-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.syj-product-listing .syj-product-card__price {
  color: var(--plp-ink);
  font-size: 14px;
  font-weight: 700;
}

.syj-product-listing .syj-product-card__price--consult {
  color: var(--plp-muted);
  font-weight: 500;
}

.syj-product-card__stock {
  color: var(--plp-muted);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.syj-product-listing .syj-product-card__actions {
  display: none;
}

@media (max-width: 1100px) {
  .syj-product-listing__shell {
    width: min(100% - 32px, 920px);
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .syj-product-filters__sticky {
    position: static;
  }

  .syj-product-filters {
    border-bottom: 1px solid var(--plp-border);
    padding-bottom: 14px;
  }

  .syj-product-filters__sticky {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 28px;
  }

  .syj-product-filters__head,
  .syj-product-search,
  .syj-filter-group,
  .syj-filter-price {
    margin: 0;
  }

  .syj-product-filters__head {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .syj-product-listing {
    padding: 34px 0 58px;
  }

  .syj-product-listing__shell {
    width: min(100% - 24px, 620px);
  }

  .syj-product-filters__sticky {
    grid-template-columns: 1fr;
  }

  .syj-product-listing__header {
    align-items: stretch;
    flex-direction: column;
    margin-bottom: 28px;
  }

  .syj-product-sort {
    width: 100%;
    justify-content: space-between;
  }

  .syj-product-listing .syj-product-grid__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px 16px;
  }

  .syj-product-listing .syj-product-card__image-wrapper {
    padding: 18px;
    border-radius: 6px;
  }

  .syj-product-listing .syj-product-card__title {
    font-size: 18px;
  }
}

@media (max-width: 520px) {
  .syj-product-listing .syj-product-grid__inner {
    grid-template-columns: 1fr;
  }
}

/* ======================================================================
   About Us - Heritage Editorial MVP
   ====================================================================== */
.syj-about-hero-section .syj-layout__container,
.syj-about-story-section .syj-layout__container,
.syj-about-process-section .syj-layout__container,
.syj-about-workshop-section .syj-layout__container,
.syj-about-cta-section .syj-layout__container {
  max-width: none;
  padding: 0;
}

.syj-about-hero-section .syj-layout__row,
.syj-about-story-section .syj-layout__row,
.syj-about-process-section .syj-layout__row,
.syj-about-workshop-section .syj-layout__row,
.syj-about-cta-section .syj-layout__row,
.syj-about-hero-section .syj-layout__column,
.syj-about-story-section .syj-layout__column,
.syj-about-process-section .syj-layout__column,
.syj-about-workshop-section .syj-layout__column,
.syj-about-cta-section .syj-layout__column {
  display: block;
  width: 100%;
}

.syj-about {
  --about-bg: #fbf9f8;
  --about-panel: #f6f3f2;
  --about-panel-strong: #e4e2e1;
  --about-ink: #1b1c1c;
  --about-muted: #5f5e5a;
  --about-primary: #130805;
  --about-rule: #d2c3bf;
  --about-max: 1280px;
  --about-gutter: clamp(24px, 5vw, 64px);
  background: var(--about-bg);
  color: var(--about-ink);
  font-family: "Work Sans", var(--font-body);
}

.syj-about h1,
.syj-about h2,
.syj-about h3,
.syj-about blockquote {
  font-family: var(--font-heading);
  letter-spacing: 0;
}

.syj-about-kicker {
  display: block;
  color: var(--about-primary);
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.syj-about-hero {
  position: relative;
  min-height: min(90vh, 820px);
  overflow: hidden;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.syj-about-hero__image {
  position: absolute;
  inset: -8% 0 0;
  width: 100%;
  height: 112%;
  object-fit: cover;
  object-position: center;
  z-index: -2;
}

.syj-about-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: -1;
}

.syj-about-hero__content {
  width: min(900px, calc(100% - 48px));
  text-align: center;
  color: #fff;
  padding-top: 20px;
}

.syj-about-hero__content h1 {
  margin: 0 0 24px;
  font-size: clamp(48px, 8vw, 92px);
  font-weight: 500;
  font-style: italic;
  line-height: 1.05;
}

.syj-about-hero__content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.syj-about-hero__cue {
  position: absolute;
  left: 50%;
  bottom: 34px;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.72);
  font-size: 28px;
  line-height: 1;
  animation: syjAboutCue 1.8s ease-in-out infinite;
}

@keyframes syjAboutCue {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 8px); }
}

.syj-about-fade-in {
  animation: syjAboutFadeIn 900ms ease-out both;
}

@keyframes syjAboutFadeIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

.syj-about-story {
  padding: clamp(88px, 12vw, 150px) var(--about-gutter);
}

.syj-about-story__inner {
  max-width: var(--about-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 5fr) minmax(420px, 7fr);
  gap: clamp(48px, 8vw, 104px);
  align-items: center;
}

.syj-about-story__copy h2,
.syj-about-section-head h2,
.syj-about-cta h2 {
  color: var(--about-primary);
  font-weight: 500;
  line-height: 1.12;
}

.syj-about-story__copy h2 {
  max-width: 420px;
  margin: 18px 0 32px;
  font-size: clamp(38px, 4.5vw, 58px);
}

.syj-about-story__text {
  max-width: 520px;
  color: var(--about-muted);
  font-size: 17px;
  line-height: 1.75;
}

.syj-about-story__text p {
  margin: 0 0 24px;
}

.syj-about-story__text blockquote {
  margin: 30px 0 0;
  padding: 8px 0 8px 24px;
  border-left: 2px solid var(--about-primary);
  color: var(--about-primary);
  font-size: 21px;
  font-style: italic;
  line-height: 1.5;
}

.syj-about-image-zoom {
  aspect-ratio: 4 / 5;
  background: var(--about-panel-strong);
  overflow: hidden;
}

.syj-about-image-zoom img,
.syj-about-workshop__tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1200ms ease;
}

.syj-about-image-zoom:hover img,
.syj-about-workshop__tile:hover img {
  transform: scale(1.045);
}

.syj-about-process {
  padding: clamp(84px, 11vw, 132px) var(--about-gutter);
  background: var(--about-panel);
}

.syj-about-process__inner {
  max-width: var(--about-max);
  margin: 0 auto;
}

.syj-about-section-head {
  text-align: center;
  margin-bottom: clamp(64px, 8vw, 100px);
}

.syj-about-section-head h2 {
  margin: 18px 0 0;
  font-size: clamp(38px, 4vw, 56px);
}

.syj-about-section-head__rule {
  display: block;
  width: 96px;
  height: 1px;
  margin: 34px auto 0;
  background: rgba(19, 8, 5, 0.18);
}

.syj-about-process__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(30px, 5vw, 64px);
}

.syj-about-process__step span {
  display: block;
  margin-bottom: 24px;
  color: var(--about-rule);
  font-family: var(--font-heading);
  font-size: 54px;
  line-height: 1;
  transition: color 180ms ease;
}

.syj-about-process__step:hover span {
  color: var(--about-primary);
}

.syj-about-process__step h3 {
  margin: 0 0 14px;
  color: var(--about-primary);
  font-size: 20px;
  font-weight: 500;
  text-transform: uppercase;
}

.syj-about-process__step p {
  margin: 0;
  color: var(--about-muted);
  font-size: 15px;
  line-height: 1.7;
}

.syj-about-workshop {
  padding: clamp(84px, 11vw, 132px) var(--about-gutter);
}

.syj-about-workshop__grid {
  max-width: var(--about-max);
  min-height: 620px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(220px, 1fr);
  gap: 24px;
}

.syj-about-workshop__tile,
.syj-about-workshop__statement {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  background: var(--about-panel-strong);
}

.syj-about-workshop__tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  pointer-events: none;
}

.syj-about-workshop__tile--wide {
  grid-column: span 8;
}

.syj-about-workshop__grid > .syj-about-workshop__tile:nth-child(2) {
  grid-column: span 4;
}

.syj-about-workshop__grid > .syj-about-workshop__tile:nth-child(3) {
  grid-column: span 4;
}

.syj-about-workshop__statement {
  grid-column: span 8;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(32px, 5vw, 68px);
  background: var(--about-primary);
  color: #fff;
}

.syj-about-workshop__caption {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 30px;
  z-index: 1;
  color: #fff;
}

.syj-about-workshop__caption p {
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.syj-about-workshop__caption h3,
.syj-about-workshop__statement h3 {
  margin: 0;
  font-weight: 500;
  font-style: italic;
}

.syj-about-workshop__caption h3 {
  font-size: 28px;
}

.syj-about-workshop__statement h3 {
  margin-bottom: 18px;
  font-size: clamp(28px, 3vw, 42px);
}

.syj-about-workshop__statement p {
  max-width: 580px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.75;
}

.syj-about-cta {
  padding: clamp(84px, 12vw, 150px) var(--about-gutter);
  text-align: center;
}

.syj-about-cta__inner {
  max-width: 760px;
  margin: 0 auto;
}

.syj-about-cta h2 {
  margin: 24px 0 46px;
  font-size: clamp(38px, 5vw, 64px);
}

.syj-about-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 42px;
  border-radius: 4px;
  background: var(--about-primary);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.syj-about-button:hover {
  color: #fff;
  opacity: 0.9;
}

.syj-about-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.syj-about-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .syj-about-reveal,
  .syj-about-fade-in,
  .syj-about-hero__cue,
  .syj-about-image-zoom img,
  .syj-about-workshop__tile img {
    animation: none;
    transition: none;
  }
}

@media (max-width: 980px) {
  .syj-about-story__inner {
    grid-template-columns: 1fr;
  }

  .syj-about-story__copy,
  .syj-about-story__text {
    max-width: none;
  }

  .syj-about-process__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .syj-about-workshop__grid {
    min-height: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 280px;
  }

  .syj-about-workshop__tile--wide,
  .syj-about-workshop__grid > .syj-about-workshop__tile:nth-child(2),
  .syj-about-workshop__grid > .syj-about-workshop__tile:nth-child(3),
  .syj-about-workshop__statement {
    grid-column: span 1;
  }

  .syj-about-workshop__statement {
    min-height: 280px;
  }
}

@media (max-width: 640px) {
  .syj-about-hero {
    min-height: 72vh;
  }

  .syj-about-hero__content h1 {
    font-size: clamp(42px, 15vw, 62px);
  }

  .syj-about-story,
  .syj-about-process,
  .syj-about-workshop,
  .syj-about-cta {
    padding-left: 24px;
    padding-right: 24px;
  }

  .syj-about-process__grid,
  .syj-about-workshop__grid {
    grid-template-columns: 1fr;
  }

  .syj-about-workshop__grid {
    grid-auto-rows: auto;
  }

  .syj-about-workshop__tile,
  .syj-about-workshop__statement {
    min-height: 260px;
  }

  .syj-about-workshop__statement {
    padding: 30px;
  }
}

/* ======================================================================
   Collections - Curated Editorial MVP
   ====================================================================== */
.syj-collections-hero-section .syj-layout__container,
.syj-collections-grid-section .syj-layout__container,
.syj-collections-craft-section .syj-layout__container,
.syj-collections-bespoke-section .syj-layout__container {
  max-width: none;
  padding: 0;
}

.syj-collections-hero-section .syj-layout__row,
.syj-collections-grid-section .syj-layout__row,
.syj-collections-craft-section .syj-layout__row,
.syj-collections-bespoke-section .syj-layout__row,
.syj-collections-hero-section .syj-layout__column,
.syj-collections-grid-section .syj-layout__column,
.syj-collections-craft-section .syj-layout__column,
.syj-collections-bespoke-section .syj-layout__column {
  display: block;
  width: 100%;
}

.syj-collections {
  --collections-bg: #fbf9f8;
  --collections-panel: #f6f3f2;
  --collections-ink: #1b1c1c;
  --collections-muted: #5f5e5a;
  --collections-primary: #130805;
  --collections-rule: #d2c3bf;
  --collections-max: 1280px;
  --collections-gutter: clamp(24px, 5vw, 64px);
  background: var(--collections-bg);
  color: var(--collections-ink);
  font-family: "Work Sans", var(--font-body);
}

.syj-collections h1,
.syj-collections h2,
.syj-collections h3 {
  font-family: var(--font-heading);
  letter-spacing: 0;
}

.syj-collections-kicker {
  display: block;
  color: var(--collections-muted);
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.syj-collections-hero {
  position: relative;
  min-height: min(62vh, 716px);
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  text-align: center;
}

.syj-collections-hero__backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(19, 8, 5, 0.28), rgba(19, 8, 5, 0.28)),
    url("https://images.unsplash.com/photo-1547991230-512a4666c403?q=80&w=2564&auto=format&fit=crop") center / cover;
  filter: grayscale(20%);
  z-index: -1;
}

.syj-collections-hero__content {
  width: min(760px, calc(100% - 48px));
  color: #fff;
}

.syj-collections-hero .syj-collections-kicker {
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 18px;
  letter-spacing: 0.3em;
}

.syj-collections-hero h1 {
  margin: 0 0 24px;
  font-size: clamp(56px, 8vw, 94px);
  font-weight: 500;
  line-height: 0.98;
}

.syj-collections-hero p {
  max-width: 720px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(17px, 1.8vw, 22px);
  font-style: italic;
  font-weight: 300;
  line-height: 1.6;
}

.syj-collections-grid {
  padding: clamp(76px, 11vw, 142px) var(--collections-gutter);
}

.syj-collections-grid__inner {
  max-width: var(--collections-max);
  margin: 0 auto;
  display: grid;
  gap: clamp(76px, 12vw, 150px);
}

.syj-collection-row {
  display: grid;
  grid-template-columns: minmax(360px, 7fr) minmax(280px, 5fr);
  gap: clamp(42px, 7vw, 96px);
  align-items: center;
}

.syj-collection-row--reverse {
  grid-template-columns: minmax(280px, 5fr) minmax(360px, 7fr);
}

.syj-collection-row--reverse .syj-collection-row__media {
  order: 2;
}

.syj-collection-row__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--collections-panel);
}

.syj-collection-row__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 42%, rgba(19, 8, 5, 0.36));
  pointer-events: none;
}

.syj-collection-row__media img,
.syj-collections-bespoke__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1600ms ease;
}

.syj-collection-row:hover .syj-collection-row__media img,
.syj-collections-bespoke:hover .syj-collections-bespoke__media img {
  transform: scale(1.055);
}

.syj-collection-row__copy {
  max-width: 500px;
}

.syj-collection-row__copy h2 {
  margin: 18px 0 20px;
  color: var(--collections-primary);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 500;
  line-height: 1.05;
}

.syj-collection-row__copy p {
  margin: 0 0 34px;
  color: var(--collections-muted);
  font-size: 16px;
  line-height: 1.75;
}

.syj-collections-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--collections-primary);
  padding-bottom: 8px;
  color: var(--collections-primary);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: gap 180ms ease;
}

.syj-collections-link:hover {
  gap: 20px;
  color: var(--collections-primary);
}

.syj-collections-craft {
  padding: clamp(74px, 10vw, 124px) var(--collections-gutter);
  background: var(--collections-panel);
  text-align: center;
}

.syj-collections-craft__inner {
  max-width: 900px;
  margin: 0 auto;
}

.syj-collections-craft h2 {
  max-width: 820px;
  margin: 0 auto 54px;
  color: var(--collections-primary);
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 400;
  line-height: 1.25;
}

.syj-collections-proof-grid {
  display: inline-grid;
  grid-template-columns: repeat(3, minmax(150px, 1fr));
  gap: 0;
  border-top: 1px solid transparent;
}

.syj-collections-proof {
  min-width: 170px;
  padding: 0 34px;
  color: var(--collections-primary);
}

.syj-collections-proof + .syj-collections-proof {
  border-left: 1px solid rgba(19, 8, 5, 0.12);
}

.syj-collections-proof span {
  display: block;
  margin-bottom: 14px;
  font-size: 24px;
  line-height: 1;
}

.syj-collections-proof p {
  margin: 0;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.syj-collections-bespoke {
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(360px, 1fr) minmax(420px, 1fr);
  background: var(--collections-primary);
}

.syj-collections-bespoke__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 560px;
  padding: clamp(48px, 8vw, 96px);
  color: #fff;
}

.syj-collections-bespoke .syj-collections-kicker {
  color: rgba(255, 255, 255, 0.68);
  margin-bottom: 20px;
}

.syj-collections-bespoke h2 {
  margin: 0 0 24px;
  color: #fff;
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 500;
  line-height: 1.08;
}

.syj-collections-bespoke p {
  margin: 0 0 34px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 1.75;
}

.syj-collections-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  min-height: 48px;
  padding: 0 30px;
  border-radius: 4px;
  background: #fff;
  color: var(--collections-primary);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.syj-collections-button:hover {
  color: var(--collections-primary);
  background: #e4e2e1;
}

.syj-collections-bespoke__media {
  min-height: 520px;
  overflow: hidden;
}

.syj-collections-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 720ms ease, transform 720ms ease;
}

.syj-collections-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .syj-collections-reveal,
  .syj-collection-row__media img,
  .syj-collections-bespoke__media img {
    transition: none;
  }
}

@media (max-width: 960px) {
  .syj-collection-row,
  .syj-collection-row--reverse,
  .syj-collections-bespoke {
    grid-template-columns: 1fr;
  }

  .syj-collection-row--reverse .syj-collection-row__media {
    order: 0;
  }

  .syj-collection-row__copy {
    max-width: none;
  }

  .syj-collections-bespoke__copy {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .syj-collections-hero {
    min-height: 520px;
  }

  .syj-collections-grid,
  .syj-collections-craft {
    padding-left: 24px;
    padding-right: 24px;
  }

  .syj-collections-proof-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .syj-collections-proof {
    min-width: 0;
    padding: 0;
  }

  .syj-collections-proof + .syj-collections-proof {
    border-left: 0;
  }

  .syj-collections-bespoke__copy {
    padding: 44px 24px;
  }
}

/* ======================================================================
   Everyday Essentials - Query-driven Collection MVP
   ====================================================================== */
.syj-essentials-products-section .syj-layout__container {
  max-width: none;
  padding: 0;
}

.syj-essentials-products-section .syj-layout__row,
.syj-essentials-products-section .syj-layout__column {
  display: block;
  width: 100%;
}

.syj-essentials {
  --ess-bg: #fbf9f8;
  --ess-panel: #f6f3f2;
  --ess-panel-strong: #e4e2e1;
  --ess-ink: #1b1c1c;
  --ess-muted: #5f5e5a;
  --ess-primary: #130805;
  --ess-rule: #d2c3bf;
  --ess-max: 1280px;
  --ess-gutter: clamp(24px, 5vw, 64px);
  background: var(--ess-bg);
  color: var(--ess-ink);
  font-family: "Work Sans", var(--font-body);
  padding: clamp(64px, 8vw, 118px) var(--ess-gutter) clamp(90px, 12vw, 150px);
}

.syj-essentials h1,
.syj-essentials h2,
.syj-essentials h3 {
  font-family: var(--font-heading);
  letter-spacing: 0;
}

.syj-essentials__shell {
  max-width: var(--ess-max);
  margin: 0 auto;
}

.syj-essentials-kicker {
  display: block;
  color: var(--ess-muted);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.syj-essentials__header {
  margin-bottom: clamp(54px, 7vw, 86px);
}

.syj-essentials__header-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  margin-top: 18px;
}

.syj-essentials__header h1 {
  margin: 0 0 22px;
  color: var(--ess-primary);
  font-size: clamp(48px, 6vw, 76px);
  font-weight: 500;
  line-height: 1.02;
}

.syj-essentials__header p {
  max-width: 820px;
  margin: 0;
  color: var(--ess-muted);
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.65;
}

.syj-essentials-sort {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid var(--ess-rule);
  background: #fff;
  flex: 0 0 auto;
}

.syj-essentials-sort label {
  color: var(--ess-muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.syj-essentials-sort select {
  border: 0;
  background: transparent;
  color: var(--ess-primary);
  font: inherit;
  outline: none;
}

.syj-essentials__body {
  display: grid;
  grid-template-columns: 264px minmax(0, 1fr);
  gap: clamp(32px, 5vw, 58px);
}

.syj-essentials-filter {
  min-width: 0;
}

.syj-essentials-filter__panel {
  position: sticky;
  top: 120px;
  display: grid;
  gap: 28px;
  padding: 30px 26px;
  background: var(--ess-panel);
  border-radius: 8px;
}

.syj-essentials-filter__head h2 {
  margin: 0 0 8px;
  color: var(--ess-primary);
  font-size: 26px;
  font-weight: 500;
  text-transform: uppercase;
}

.syj-essentials-filter__head p {
  margin: 0;
  color: rgba(95, 94, 90, 0.74);
  font-size: 14px;
}

.syj-essentials-filter__nav,
.syj-essentials-filter__materials {
  display: grid;
  gap: 14px;
}

.syj-essentials-filter__link {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ess-muted);
  font-size: 16px;
}

.syj-essentials-filter__link.is-active,
.syj-essentials-filter__link:hover {
  color: var(--ess-primary);
  text-decoration: underline;
  text-underline-offset: 5px;
}

.syj-essentials-filter__materials {
  padding-top: 24px;
  border-top: 1px solid rgba(19, 8, 5, 0.1);
  color: var(--ess-muted);
  font-size: 14px;
}

.syj-essentials-filter__materials > span {
  color: var(--ess-muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.syj-essentials-filter__materials label {
  display: flex;
  gap: 9px;
  align-items: center;
}

.syj-essentials-filter__button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 46px;
  background: var(--ess-primary);
  color: #fff;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.syj-essentials-filter__button:hover {
  color: #fff;
  opacity: 0.9;
}

.syj-essentials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 48px 32px;
}

.syj-essentials-card__link {
  display: block;
  color: inherit;
}

.syj-essentials-card__media {
  position: relative;
  aspect-ratio: 4 / 5;
  margin-bottom: 18px;
  overflow: hidden;
  background: var(--ess-panel-strong);
}

.syj-essentials-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.syj-essentials-card:hover .syj-essentials-card__media img {
  transform: scale(1.045);
}

.syj-essentials-card__placeholder {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  color: var(--ess-muted);
  font-size: 13px;
}

.syj-essentials-card__quick {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  min-height: 44px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ess-primary);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 220ms ease, transform 220ms ease, background 220ms ease, color 220ms ease;
}

.syj-essentials-card:hover .syj-essentials-card__quick {
  opacity: 1;
  transform: translateY(0);
}

.syj-essentials-card__quick:hover {
  background: var(--ess-primary);
  color: #fff;
}

.syj-essentials-card__info {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
}

.syj-essentials-card__info h2 {
  margin: 0 0 6px;
  color: var(--ess-primary);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.22;
}

.syj-essentials-card__info p {
  margin: 0;
  color: var(--ess-muted);
  font-size: 14px;
  line-height: 1.4;
}

.syj-essentials-card__price {
  color: var(--ess-primary);
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
}

.syj-essentials-card__price--consult {
  color: var(--ess-muted);
  font-weight: 500;
}

.syj-essentials-pagination {
  margin-top: 72px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  color: var(--ess-muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.syj-essentials-pagination strong {
  color: var(--ess-primary);
  border-bottom: 1px solid var(--ess-primary);
}

.syj-essentials-pagination a {
  color: var(--ess-primary);
}

.syj-essentials-pagination .is-disabled {
  opacity: 0.45;
}

.syj-essentials-empty {
  padding: 80px 32px;
  background: var(--ess-panel);
  text-align: center;
}

.syj-essentials-empty h2 {
  margin: 0 0 14px;
  color: var(--ess-primary);
  font-size: 34px;
  font-weight: 500;
}

.syj-essentials-empty p {
  margin: 0;
  color: var(--ess-muted);
}

.syj-essentials-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 680ms ease, transform 680ms ease;
}

.syj-essentials-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .syj-essentials-reveal,
  .syj-essentials-card__media img,
  .syj-essentials-card__quick {
    transition: none;
  }
}

@media (max-width: 1080px) {
  .syj-essentials__body {
    grid-template-columns: 1fr;
  }

  .syj-essentials-filter__panel {
    position: static;
  }

  .syj-essentials-filter__panel,
  .syj-essentials-filter__nav,
  .syj-essentials-filter__materials {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .syj-essentials-filter__head,
  .syj-essentials-filter__button {
    grid-column: 1 / -1;
  }
}

@media (max-width: 780px) {
  .syj-essentials__header-grid {
    display: grid;
    align-items: start;
  }

  .syj-essentials-sort {
    width: 100%;
    justify-content: space-between;
  }

  .syj-essentials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 18px;
  }
}

@media (max-width: 540px) {
  .syj-essentials {
    padding-left: 24px;
    padding-right: 24px;
  }

  .syj-essentials-filter__panel,
  .syj-essentials-filter__nav,
  .syj-essentials-filter__materials,
  .syj-essentials-grid {
    grid-template-columns: 1fr;
  }

  .syj-essentials-card__info {
    display: grid;
  }
}

/* ======================================================================
   The Workshop - Limited Editions MVP
   ====================================================================== */
.syj-workshop-hero-section .syj-layout__container,
.syj-workshop-tanning-section .syj-layout__container,
.syj-workshop-techniques-section .syj-layout__container,
.syj-workshop-limited-products-section .syj-layout__container,
.syj-workshop-cta-section .syj-layout__container {
  max-width: none;
  padding: 0;
}

.syj-workshop-hero-section .syj-layout__row,
.syj-workshop-tanning-section .syj-layout__row,
.syj-workshop-techniques-section .syj-layout__row,
.syj-workshop-limited-products-section .syj-layout__row,
.syj-workshop-cta-section .syj-layout__row,
.syj-workshop-hero-section .syj-layout__column,
.syj-workshop-tanning-section .syj-layout__column,
.syj-workshop-techniques-section .syj-layout__column,
.syj-workshop-limited-products-section .syj-layout__column,
.syj-workshop-cta-section .syj-layout__column {
  display: block;
  width: 100%;
}

.syj-workshop {
  --workshop-bg: #fbf9f8;
  --workshop-panel: #f6f3f2;
  --workshop-surface: #ffffff;
  --workshop-ink: #1b1c1c;
  --workshop-muted: #5f5e5a;
  --workshop-primary: #130805;
  --workshop-rule: #d2c3bf;
  --workshop-max: 1280px;
  --workshop-gutter: clamp(24px, 5vw, 64px);
  background: var(--workshop-bg);
  color: var(--workshop-ink);
  font-family: "Work Sans", var(--font-body);
}

.syj-workshop h1,
.syj-workshop h2,
.syj-workshop h3 {
  font-family: var(--font-heading);
  letter-spacing: 0;
}

.syj-workshop-kicker {
  display: block;
  color: var(--workshop-muted);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.syj-workshop-hero {
  position: relative;
  min-height: min(88vh, 920px);
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  text-align: center;
}

.syj-workshop-hero__image {
  position: absolute;
  inset: -8% 0 0;
  z-index: -2;
  width: 100%;
  height: 112%;
  object-fit: cover;
}

.syj-workshop-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(19, 8, 5, 0.22);
}

.syj-workshop-hero__content {
  width: min(920px, calc(100% - 48px));
  color: #fff;
}

.syj-workshop-hero .syj-workshop-kicker {
  color: rgba(255, 255, 255, 0.86);
  margin-bottom: 24px;
  letter-spacing: 0.3em;
}

.syj-workshop-hero h1 {
  margin: 0 0 28px;
  font-size: clamp(58px, 10vw, 112px);
  font-weight: 500;
  line-height: 0.9;
  text-transform: uppercase;
}

.syj-workshop-hero p {
  max-width: 640px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(16px, 1.7vw, 21px);
  line-height: 1.65;
}

.syj-workshop-tanning {
  padding: clamp(86px, 11vw, 142px) var(--workshop-gutter);
}

.syj-workshop-tanning__inner {
  max-width: var(--workshop-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 5fr) minmax(420px, 7fr);
  gap: clamp(42px, 7vw, 96px);
  align-items: center;
}

.syj-workshop-tanning__copy h2,
.syj-workshop-section-head h2,
.syj-workshop-limited__head h2,
.syj-workshop-cta h2 {
  color: var(--workshop-primary);
  font-weight: 500;
  line-height: 1.12;
}

.syj-workshop-tanning__copy h2 {
  margin: 18px 0 24px;
  font-size: clamp(36px, 4vw, 54px);
}

.syj-workshop-tanning__copy p {
  margin: 0 0 32px;
  color: var(--workshop-muted);
  font-size: 16px;
  line-height: 1.78;
}

.syj-workshop-link {
  display: inline-flex;
  border-bottom: 1px solid var(--workshop-primary);
  padding-bottom: 6px;
  color: var(--workshop-primary);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.syj-workshop-tanning__media {
  height: min(600px, 62vw);
  min-height: 420px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--workshop-panel);
}

.syj-workshop-tanning__media img,
.syj-workshop-techniques__image img,
.syj-workshop-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms ease;
}

.syj-workshop-tanning__media:hover img,
.syj-workshop-card:hover .syj-workshop-card__media img {
  transform: scale(1.055);
}

.syj-workshop-techniques {
  padding: clamp(84px, 10vw, 132px) var(--workshop-gutter);
  background: var(--workshop-panel);
}

.syj-workshop-techniques__inner {
  max-width: var(--workshop-max);
  margin: 0 auto;
}

.syj-workshop-section-head {
  margin-bottom: 56px;
  text-align: center;
}

.syj-workshop-section-head h2 {
  margin: 18px 0 0;
  font-size: clamp(34px, 4vw, 52px);
}

.syj-workshop-techniques__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.syj-workshop-technique {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 36px 28px;
  background: var(--workshop-bg);
  border: 1px solid rgba(19, 8, 5, 0.06);
  text-align: center;
}

.syj-workshop-technique > span {
  margin-bottom: 24px;
  color: var(--workshop-primary);
  font-size: 42px;
  line-height: 1;
}

.syj-workshop-technique h3 {
  margin: 0 0 16px;
  color: var(--workshop-primary);
  font-size: 22px;
  font-weight: 500;
}

.syj-workshop-technique p {
  margin: 0;
  color: var(--workshop-muted);
  font-size: 15px;
  line-height: 1.7;
}

.syj-workshop-techniques__image {
  height: min(500px, 55vw);
  min-height: 320px;
  margin-top: 80px;
  overflow: hidden;
  border-radius: 8px;
}

.syj-workshop-limited {
  padding: clamp(86px, 11vw, 142px) var(--workshop-gutter);
}

.syj-workshop-limited__inner {
  max-width: var(--workshop-max);
  margin: 0 auto;
}

.syj-workshop-limited__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 60px;
}

.syj-workshop-limited__head h2 {
  margin: 18px 0 18px;
  font-size: clamp(34px, 4vw, 54px);
}

.syj-workshop-limited__head p {
  max-width: 560px;
  margin: 0;
  color: var(--workshop-muted);
  font-size: 16px;
  line-height: 1.7;
}

.syj-workshop-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 30px;
  border-radius: 3px;
  background: var(--workshop-primary);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
}

.syj-workshop-button:hover {
  color: #fff;
  opacity: 0.9;
}

.syj-workshop-limited__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.syj-workshop-card__link {
  display: block;
  color: inherit;
}

.syj-workshop-card__media {
  position: relative;
  aspect-ratio: 4 / 5;
  margin-bottom: 22px;
  overflow: hidden;
  background: var(--workshop-panel);
}

.syj-workshop-card__placeholder {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  color: var(--workshop-muted);
  font-size: 13px;
}

.syj-workshop-card__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 5px 10px;
  background: var(--workshop-primary);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.syj-workshop-card__badge--limited {
  background: #2f1e07;
}

.syj-workshop-card__info {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.syj-workshop-card__info h3 {
  margin: 0 0 6px;
  color: var(--workshop-primary);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.2;
}

.syj-workshop-card__info p {
  margin: 0;
  color: var(--workshop-muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.syj-workshop-card__info span {
  color: var(--workshop-primary);
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
}

.syj-workshop-empty {
  padding: 78px 30px;
  background: var(--workshop-panel);
  text-align: center;
}

.syj-workshop-empty h3 {
  margin: 0 0 14px;
  color: var(--workshop-primary);
  font-size: 34px;
  font-weight: 500;
}

.syj-workshop-empty p {
  margin: 0;
  color: var(--workshop-muted);
}

.syj-workshop-cta {
  padding: clamp(78px, 10vw, 116px) var(--workshop-gutter);
  background: var(--workshop-primary);
  text-align: center;
}

.syj-workshop-cta__inner {
  max-width: 720px;
  margin: 0 auto;
  color: #fff;
}

.syj-workshop-cta h2 {
  margin: 0 0 22px;
  color: #fff;
  font-size: clamp(34px, 4vw, 52px);
}

.syj-workshop-cta p {
  margin: 0 auto 38px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.65;
}

.syj-workshop-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 34px;
  border: 1px solid #fff;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.syj-workshop-cta__button:hover {
  background: #fff;
  color: var(--workshop-primary);
}

.syj-workshop-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 720ms ease, transform 720ms ease;
}

.syj-workshop-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .syj-workshop-reveal,
  .syj-workshop-hero__image,
  .syj-workshop-tanning__media img,
  .syj-workshop-card__media img {
    transition: none;
  }
}

@media (max-width: 980px) {
  .syj-workshop-tanning__inner,
  .syj-workshop-techniques__grid,
  .syj-workshop-limited__grid {
    grid-template-columns: 1fr;
  }

  .syj-workshop-limited__head {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .syj-workshop-hero {
    min-height: 620px;
  }

  .syj-workshop-tanning,
  .syj-workshop-techniques,
  .syj-workshop-limited,
  .syj-workshop-cta {
    padding-left: 24px;
    padding-right: 24px;
  }

  .syj-workshop-tanning__media,
  .syj-workshop-techniques__image {
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 5;
  }
}
