/** Shopify CDN: Minification failed

Line 1869:0 Unexpected "}"

**/
/* ─── DESIGN TOKENS ─── */
:root {
  --ink: #1a1410;
  --navy: #1c2b3a;
  --vermillion: #c0392b;
  --paper: #f5f0e8;
  --paper-dark: #ede6d6;
  --paper-mid: #ece5d5;
  --gold: #c9a84c;
  --mist: #d4cfc5;
  --text-body: #2e2720;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --display: 'Cinzel', serif;
  --sans: 'DM Sans', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23noise)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1000;
  opacity: 0.5;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ─── ANNOUNCEMENT BAR ─── */
.announcement-bar {
  background: var(--navy);
  color: #e8dfc8;
  text-align: center;
  padding: 9px 20px;
  font-size: 12px;
  letter-spacing: 0.12em;
  font-family: var(--sans);
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.announcement-bar svg { opacity: 0.75; }

/* ─── HEADER ─── */
.site-header {
  background: var(--paper);
  border-bottom: 1px solid rgba(26,20,16,0.12);
  padding: 0 60px;
  display: flex;
  align-items: center;
  height: 80px;
  position: sticky;
  top: 0;
  z-index: 900;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--ink);
  padding: 4px;
  align-items: center;
  flex-shrink: 0;
  transition: color 0.2s;
}
.hamburger:hover { color: var(--vermillion); }

.logo-wrap {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.site-logo {
  height: 36px;
  width: auto;
  display: block;
}

.site-nav {
  display: flex;
  gap: 32px;
  align-items: center;
  flex: 1;
  justify-content: center;
}
.site-nav a {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 500;
  position: relative;
  padding-bottom: 2px;
  transition: color 0.2s;
  white-space: nowrap;
}
.site-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--vermillion);
  transition: width 0.25s;
}
.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after { width: 100%; }
.site-nav a:hover,
.site-nav a[aria-current="page"] { color: var(--vermillion); }

.header-cart {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.cart-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--ink);
  padding: 4px;
  display: flex;
  align-items: center;
  position: relative;
  transition: color 0.2s;
}
.cart-btn:hover { color: var(--vermillion); }

.cart-count {
  position: absolute;
  top: -2px;
  right: -6px;
  background: var(--vermillion);
  color: white;
  font-size: 10px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}
.cart-count:empty { display: none; }

/* ─── HERO ─── */
.hero-simple {
  background: var(--paper-dark);
  border-bottom: 1px solid rgba(26,20,16,0.1);
  padding: 28px 60px 32px;
  text-align: center;
}
.hero-simple-inner {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-eyebrow {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--vermillion);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--vermillion);
}
.hero-logo {
  width: 160px;
  height: auto;
  display: block;
  margin: 0 auto 18px;
}
.hero-divider {
  width: 48px;
  height: 1px;
  background: var(--vermillion);
  margin: 0 auto 24px;
}
.hero-title {
  font-family: var(--display);
  font-size: 38px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 14px;
  letter-spacing: 0.04em;
}
.hero-title em {
  font-style: normal;
  color: var(--vermillion);
}
.hero-sub {
  font-family: var(--serif);
  font-size: 16px;
  color: #5a4e42;
  line-height: 1.6;
  margin-bottom: 20px;
  font-weight: 400;
  font-style: italic;
  max-width: 460px;
  text-align: center;
}
.hero-product-desc {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #7a6e62;
  margin-bottom: 22px;
}
.hero-ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.hero-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  padding: 0 28px;
  background: var(--vermillion);
  color: white;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.2s;
}
.hero-btn-primary:hover { background: #a93226; }
.hero-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  padding: 0 28px;
  background: transparent;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1.5px solid rgba(26,20,16,0.35);
  border-radius: 2px;
  transition: border-color 0.2s;
}
.hero-btn-secondary:hover { border-color: var(--ink); }
.hero-view-all-link {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #9a8e82;
  text-decoration: underline;
  text-underline-offset: 3px;
  margin-bottom: 28px;
}
.hero-product-row {
  display: flex;
  gap: 16px;
  justify-content: center;
}
.hero-product-img {
  width: 130px;
  height: 130px;
  object-fit: cover;
  border-radius: 2px;
  border: 1px solid rgba(26,20,16,0.1);
  transition: transform 0.2s;
}
.hero-product-img:hover { transform: translateY(-3px); }

.hero-art-previews {
  display: flex;
  gap: 12px;
  justify-content: center;
}
.hero-art-thumb {
  width: 80px;
  height: 107px;
  object-fit: cover;
  border: 1px solid rgba(26,20,16,0.12);
  transition: transform 0.2s, box-shadow 0.2s;
}
.hero-art-thumb:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(26,20,16,0.15);
}

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 14px 32px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  width: fit-content;
  font-weight: 500;
}
.btn-primary:hover { background: var(--navy); transform: translateY(-1px); color: var(--paper); }
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 13px 31px;
  border: 1.5px solid var(--ink);
  cursor: pointer;
  transition: all 0.2s;
  width: fit-content;
  font-weight: 500;
}
.btn-outline:hover { background: var(--ink); color: var(--paper); }

/* ─── SECTION HEADER ─── */
.section-header { text-align: center; margin-bottom: 32px; }
.section-label {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--text-body);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.section-label::before,
.section-label::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--vermillion);
}
.section-label--left { justify-content: flex-start; }
.section-label--left::before { display: none; }
.section-title {
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ink);
  margin-top: 4px;
}
.red-rule {
  width: 32px;
  height: 2px;
  background: var(--vermillion);
  margin: 0 auto 8px;
}
.red-rule--left { margin-left: 0; }
.section-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 28px;
}
.view-all {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
  transition: color 0.2s;
  cursor: pointer;
  white-space: nowrap;
}
.view-all:hover { color: var(--vermillion); }

/* ─── TWO WAYS TO SHOP ─── */
.two-ways { padding: 44px 60px; background: var(--paper-dark); }
.two-ways-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
}
.way-card {
  padding: 52px 56px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
}
.way-or {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  pointer-events: none;
}
.way-or span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--paper-dark);
  border: 1.5px solid rgba(26,20,16,0.32);
  font-family: var(--serif);
  font-size: 11px;
  font-style: italic;
  letter-spacing: 0.14em;
  color: #4a4038;
}
.way-card--art { background: var(--paper); transition: background 0.3s; }
.way-card--art:hover { background: #ede8de; }
.way-card--product { background: #e4e1da; color: var(--ink); transition: background 0.3s; }
.way-card--product:hover { background: #d9d6cf; }
.way-overline {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 6px;
  opacity: 0.6;
}
.way-title {
  font-family: var(--display);
  font-size: 44px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: 0.03em;
}
.way-card--art .way-title { color: var(--ink); }
.way-card--product .way-title { color: var(--ink); }
.way-desc {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 260px;
}
.way-card--art .way-desc { color: #5a4e42; }
.way-card--product .way-desc { color: #5a5550; }
.way-steps {
  list-style: none;
  display: inline-flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
  text-align: left;
}
.way-steps li {
  font-family: var(--serif);
  font-size: 16px;
  font-style: italic;
  color: #5a4e42;
  display: flex;
  align-items: baseline;
  gap: 10px;
  line-height: 1.5;
}
.way-card--product .way-steps li { color: #5a5550; }
.step-n {
  font-family: var(--sans);
  font-size: 9px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--vermillion);
  min-width: 18px;
}
.way-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.2s;
}
.way-art-previews {
  display: flex;
  gap: 8px;
  margin-bottom: 4px;
  min-height: 100px;
  align-items: flex-end;
  justify-content: center;
}
.way-art-thumb {
  width: 86px;
  height: 114px;
  object-fit: cover;
  border: 1px solid rgba(26,20,16,0.12);
  transition: transform 0.2s;
}
.way-card--art:hover .way-art-thumb,
.way-card--product:hover .way-art-thumb { transform: translateY(-2px); }
.way-art-thumb--product {
  width: 80px;
  height: 80px;
  border: none;
}

.way-card--art .way-arrow { border: 1.5px solid var(--ink); color: var(--ink); }
.way-card--art:hover .way-arrow { background: var(--ink); color: var(--paper); }
.way-card--product .way-arrow { border: 1.5px solid var(--ink); color: var(--ink); }
.way-card--product:hover .way-arrow { background: var(--ink); color: #e8e6e1; }

.way-cta-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  margin-top: auto;
  padding-top: 20px;
}
.way-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 28px;
  background: var(--vermillion);
  color: white;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.2s;
}
.way-card:hover .way-cta-btn { background: #a93226; }
.way-cta-sub {
  font-family: var(--serif);
  font-size: 12px;
  color: #7a6e62;
  font-style: italic;
}

.way-previews-wrap { position: relative; width: 100%; }
.way-and-more {
  font-family: var(--serif);
  font-style: italic;
  font-size: 11px;
  color: #9a8e82;
  letter-spacing: 0.05em;
  text-align: right;
  margin-top: 6px;
  padding-right: 2px;
}
.way-product-icons {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: flex-end;
  min-height: 110px;
}
.way-product-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.way-product-icon img {
  height: 110px;
  width: auto;
  object-fit: contain;
  opacity: 0.88;
  transition: opacity 0.2s, transform 0.25s;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.15));
}
.way-card:hover .way-product-icon img { opacity: 1; transform: scale(1.05) translateY(-3px); }
.way-product-icon span {
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #5a5550;
}

/* ─── POPULAR ARTWORKS ─── */
.popular { padding: 64px 60px; background: var(--paper); }
.artwork-grid {
  display: grid;
  gap: 20px;
}
.artwork-grid--6 { grid-template-columns: repeat(6, 1fr); }
.artwork-grid--4 { grid-template-columns: repeat(4, 1fr); }
.artwork-grid--3 { grid-template-columns: repeat(3, 1fr); }
.artwork-card { cursor: pointer; }
.artwork-img {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--paper-dark);
  overflow: hidden;
  margin-bottom: 12px;
  position: relative;
}
.artwork-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.artwork-card:hover .artwork-img img { transform: scale(1.04); }
.artwork-overlay {
  position: absolute;
  inset: 0;
  background: rgba(28,43,58,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.artwork-card:hover .artwork-overlay { opacity: 1; }
.artwork-overlay-text {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #e8dfc8;
  border: 1px solid rgba(232,223,200,0.5);
  padding: 8px 16px;
}
.artwork-title {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 3px;
}
.artwork-copy {
  font-size: 12px;
  color: #7a6e62;
  margin-bottom: 10px;
  font-style: italic;
  font-family: var(--serif);
}
.artwork-icons { display: flex; gap: 8px; align-items: center; }
.art-icon {
  width: 22px;
  height: 22px;
  opacity: 0.45;
  transition: opacity 0.2s;
  cursor: pointer;
}
.art-icon:hover { opacity: 1; }

/* ─── SHOP BY PRODUCT ─── */
.shop-product { padding: 80px 60px; background: var(--paper-dark); }
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.product-type-card { cursor: pointer; overflow: hidden; position: relative; }
.product-type-img {
  width: 100%;
  aspect-ratio: 4/5;
  background: var(--mist);
  overflow: hidden;
}
.product-type-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.product-type-card:hover .product-type-img img { transform: scale(1.03); }
.product-type-info {
  padding: 16px 0;
  border-top: 1px solid rgba(26,20,16,0.1);
  margin-top: 14px;
}
.product-type-name {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
}
.product-type-desc {
  font-size: 13px;
  color: #7a6e62;
  font-family: var(--serif);
  font-style: italic;
}

/* ─── POPULAR PRODUCTS ─── */
.popular-products { padding: 64px 60px; background: var(--paper); }
.popular-products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 780px;
  margin: 0 auto;
}
.popular-product-card { cursor: pointer; }
.popular-product-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: var(--paper-dark);
  overflow: hidden;
  position: relative;
  margin-bottom: 14px;
}
.popular-product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.popular-product-card:hover .popular-product-img img { transform: scale(1.03); }
.popular-product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(28,43,58,0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.popular-product-card:hover .popular-product-overlay { opacity: 1; }
.popular-product-info {
  padding: 4px 0 16px;
  border-top: 1px solid rgba(26,20,16,0.1);
}

/* ─── EXPLORE COLLECTIONS (legacy) ─── */
.collections { padding: 64px 60px; background: var(--paper); }
.collection-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.coll-card {
  text-align: center;
  cursor: pointer;
  padding: 24px 8px;
  border: 1px solid transparent;
  transition: all 0.25s;
}
.coll-card:hover {
  border-color: rgba(26,20,16,0.15);
  background: var(--paper-dark);
}
.coll-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 12px;
  background: var(--paper-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  transition: background 0.25s;
}
.coll-card:hover .coll-icon { background: rgba(192,57,43,0.1); }
.coll-name {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink);
}

/* ─── FEATURE BAR ─── */
.features-bar {
  background: var(--navy);
  padding: 32px 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  border-top: 3px solid var(--vermillion);
}
.feature-item { display: flex; gap: 16px; align-items: flex-start; }
.feature-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  color: var(--gold);
  opacity: 0.9;
}
.feature-title {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: #e8dfc8;
  margin-bottom: 5px;
}
.feature-desc {
  font-size: 13px;
  color: rgba(216,207,192,0.65);
  line-height: 1.6;
}

/* ─── NEWSLETTER ─── */
.newsletter {
  background: var(--paper-dark);
  padding: 44px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.newsletter::before {
  content: 'ネオ浮世絵';
  position: absolute;
  font-size: 160px;
  color: rgba(26,20,16,0.04);
  font-family: serif;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  line-height: 1;
  white-space: nowrap;
  letter-spacing: 0.05em;
}
.newsletter-inner { position: relative; z-index: 2; max-width: 500px; margin: 0 auto; }
.newsletter h2 {
  font-family: var(--display);
  font-size: 36px;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
  color: var(--ink);
}
.newsletter p {
  font-family: var(--serif);
  font-size: 17px;
  color: #5a4e42;
  font-style: italic;
  margin-bottom: 32px;
  line-height: 1.7;
}
.newsletter-form {
  display: flex;
  border: 1.5px solid var(--ink);
  overflow: hidden;
  max-width: 420px;
  margin: 0 auto;
}
.newsletter-form input {
  flex: 1;
  border: none;
  padding: 13px 18px;
  font-family: var(--sans);
  font-size: 14px;
  background: transparent;
  color: var(--ink);
  outline: none;
}
.newsletter-form input::placeholder { color: #9a8e82; }
.newsletter-form button {
  background: var(--vermillion);
  color: white;
  border: none;
  padding: 13px 24px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.2s;
}
.newsletter-form button:hover { background: #a93226; }

.ig-follow-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  padding: 14px 32px;
  background: var(--vermillion);
  color: white;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.2s, transform 0.15s;
}
.ig-follow-btn:hover {
  background: #a93226;
  transform: translateY(-1px);
}

/* ─── FOOTER ─── */
.site-footer {
  background: var(--ink);
  color: rgba(240,234,220,0.8);
  padding: 64px 60px 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.4fr;
  gap: 48px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(240,234,220,0.12);
}
.footer-brand .logo-name { color: #e8dfc8; font-size: 15px; }
.footer-brand .logo-name span { color: var(--vermillion); }
.footer-brand .logo-tag { color: rgba(240,234,220,0.45); }
.footer-tagline {
  font-family: var(--serif);
  font-size: 14px;
  color: rgba(240,234,220,0.5);
  margin: 16px 0 20px;
  font-style: italic;
  line-height: 1.6;
}
.social-links { display: flex; gap: 14px; }
.social-links a {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(240,234,220,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  transition: all 0.2s;
  color: rgba(240,234,220,0.6);
}
.social-links a:hover { border-color: var(--vermillion); color: var(--vermillion); }
.footer-col h4 {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: #e8dfc8;
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 9px; }
.footer-col a {
  font-size: 13px;
  color: rgba(240,234,220,0.55);
  transition: color 0.2s;
}
.footer-col a:hover { color: #e8dfc8; }
.footer-ig-desc {
  font-size: 13px;
  color: rgba(240,234,220,0.5);
  line-height: 1.7;
  margin-bottom: 18px;
}
.footer-ig-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--vermillion);
  color: #fff;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 10px 18px;
  transition: background 0.2s;
}
.footer-ig-btn:hover { background: #a93226; color: #fff; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(240,234,220,0.3);
  letter-spacing: 0.06em;
}

/* ─── LANGUAGE SWITCHER ─── */
.lang-form { display: inline-flex; }
.header-lang {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-right: 12px;
}
.header-lang select,
.lang-switcher select {
  background: none;
  border: none;
  color: inherit;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.1em;
  cursor: pointer;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  padding-right: 2px;
}
.header-lang select { color: var(--ink); }
.header-lang select:hover { color: var(--vermillion); }
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(240,234,220,0.4);
}
.lang-switcher select { color: rgba(240,234,220,0.4); font-size: 11px; }
.footer-logo { filter: brightness(0) invert(1); opacity: 0.85; height: 28px; width: auto; }
.mobile-lang-switcher {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 0;
  margin-bottom: 8px;
  border-bottom: 1px solid rgba(26,20,16,0.1);
  color: var(--ink);
}
.mobile-lang-switcher select {
  background: none;
  border: none;
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink);
  cursor: pointer;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  flex: 1;
}

/* ─── CART DRAWER ─── */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26,20,16,0.5);
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.cart-overlay.is-open { opacity: 1; pointer-events: all; }
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 420px;
  max-width: 100vw;
  height: 100vh;
  background: var(--paper);
  z-index: 9999;
  transform: translateX(100%);
  transition: transform 0.35s ease;
  display: flex;
  flex-direction: column;
}
.cart-drawer.is-open { transform: translateX(0); }
.cart-drawer-header {
  padding: 24px 28px;
  border-bottom: 1px solid rgba(26,20,16,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cart-drawer-title {
  font-family: var(--display);
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.cart-close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--ink);
  padding: 4px;
  transition: color 0.2s;
}
.cart-close:hover { color: var(--vermillion); }
.cart-body { flex: 1; overflow-y: auto; padding: 24px 28px; }
.cart-empty {
  text-align: center;
  padding: 60px 0;
  font-family: var(--serif);
  font-style: italic;
  color: #7a6e62;
  font-size: 16px;
}
.cart-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(26,20,16,0.08);
}
.cart-item-img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  background: var(--paper-dark);
}
.cart-item-name {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
}
.cart-item-variant {
  font-size: 12px;
  color: #7a6e62;
  margin-bottom: 8px;
  font-family: var(--serif);
  font-style: italic;
}
.cart-item-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.qty-control {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(26,20,16,0.2);
  padding: 4px 12px;
}
.qty-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
  color: var(--ink);
  line-height: 1;
  transition: color 0.2s;
}
.qty-btn:hover { color: var(--vermillion); }
.qty-value { font-size: 14px; font-weight: 500; min-width: 20px; text-align: center; }
.cart-item-price { font-family: var(--serif); font-size: 15px; font-weight: 600; }
.cart-footer {
  padding: 24px 28px;
  border-top: 1px solid rgba(26,20,16,0.1);
}
.cart-subtotal {
  display: flex;
  justify-content: space-between;
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}
.cart-subtotal-note {
  font-size: 12px;
  color: #7a6e62;
  text-align: center;
  margin-bottom: 16px;
  font-style: italic;
}
.btn-checkout {
  width: 100%;
  background: var(--vermillion);
  color: white;
  border: none;
  padding: 16px;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-checkout:hover { background: #a93226; }
.btn-continue {
  width: 100%;
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
  padding: 12px;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 10px;
}
.btn-continue:hover { background: var(--ink); color: var(--paper); }

/* ─── PRODUCT PAGE ─── */
.product-page { padding: 60px; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; max-width: 1200px; margin: 0 auto; }
.product-gallery-main { position: relative; aspect-ratio: 1; background: var(--paper-dark); overflow: hidden; }
.product-gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.gallery-slide { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; transition: opacity 0.25s ease; }
.gallery-slide.active { opacity: 1; }
.product-thumbnails { display: flex; gap: 10px; margin-top: 12px; }
.product-thumb {
  width: 72px;
  height: 72px;
  background: var(--paper-dark);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s;
}
.product-thumb.active { border-color: var(--vermillion); }
.product-thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-info-panel { padding: 12px 0; }
.product-vendor {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #7a6e62;
  margin-bottom: 10px;
}
.product-page-title {
  font-family: var(--display);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 12px;
  letter-spacing: 0.03em;
}
.product-tagline {
  font-family: var(--serif);
  font-size: 16px;
  font-style: italic;
  color: #5a4e42;
  margin-bottom: 24px;
}
.product-price {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 28px;
}
.variant-label {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--ink);
}
.variant-options { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.variant-btn {
  padding: 8px 16px;
  border: 1.5px solid rgba(26,20,16,0.25);
  background: transparent;
  font-family: var(--sans);
  font-size: 12px;
  cursor: pointer;
  transition: all 0.2s;
  color: var(--ink);
}
.variant-btn.active { border-color: var(--ink); background: var(--ink); color: var(--paper); }
.variant-btn:hover:not(.active) { border-color: var(--ink); }
.btn-add-to-cart {
  width: 100%;
  background: var(--vermillion);
  color: white;
  border: none;
  padding: 16px;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  margin-top: 8px;
}
.btn-add-to-cart:hover { background: #a93226; transform: translateY(-1px); }

/* ─── COLLECTION/LISTING PAGE ─── */
.collection-page { padding: 60px; }
.collection-header { margin-bottom: 40px; }
.collection-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
}
.collection-count {
  font-size: 12px;
  color: #7a6e62;
  letter-spacing: 0.08em;
  margin: 0;
}
.collection-sort {
  display: flex;
  align-items: center;
  gap: 10px;
}
.collection-sort label {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: #7a6e62;
  text-transform: uppercase;
}
.collection-sort select {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--ink);
  background: transparent;
  border: 1px solid rgba(26,20,16,0.2);
  border-radius: 2px;
  padding: 6px 28px 6px 10px;
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%231a1410' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
  min-width: 160px;
}
.collection-sort select:focus { outline: none; border-color: var(--vermillion); }
.collection-listing {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.listing-card { cursor: pointer; }
.listing-img {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--paper-dark);
  overflow: hidden;
  margin-bottom: 14px;
  position: relative;
}
.listing-img img { width: 100%; height: 100%; object-fit: cover; }
.img-primary { transition: opacity 0.35s ease, transform 0.4s ease; }
.img-secondary { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 0.35s ease, transform 0.4s ease; }
.listing-card:hover .img-primary { transform: scale(1.05); }
.listing-card:hover .img-secondary { transform: scale(1.05); }
.listing-card:hover .listing-img:has(.img-secondary) .img-primary { opacity: 0; }
.listing-card:hover .img-secondary { opacity: 1; }
.listing-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 64px;
  background: linear-gradient(transparent, rgba(26,20,16,0.55));
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 12px;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.listing-card:hover .listing-overlay { opacity: 1; }
.listing-overlay span {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #e8dfc8;
}
.listing-info { padding-top: 2px; }
.listing-title { font-family: var(--serif); font-size: 15px; font-weight: 600; margin-bottom: 3px; line-height: 1.35; }
.listing-type {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9a8e82;
  margin-bottom: 6px;
}
.listing-price { font-family: var(--serif); font-size: 15px; font-weight: 600; }

/* ─── MOBILE MENU ─── */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(26,20,16,0.5);
  z-index: 950;
}
.mobile-menu-overlay.is-open { display: block; }
.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: min(320px, 85vw);
  height: 100vh;
  background: var(--paper);
  z-index: 960;
  transition: left 0.35s ease;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.mobile-menu.is-open { left: 0; }

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(26,20,16,0.1);
  flex-shrink: 0;
}
.mobile-menu-logo { text-decoration: none; display: flex; align-items: center; }
.mobile-menu-logo img { height: 28px; width: auto; }
.mobile-menu-close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--ink);
  padding: 4px;
  display: flex;
  align-items: center;
  transition: color 0.2s;
}
.mobile-menu-close:hover { color: var(--vermillion); }

.mobile-nav {
  flex: 1;
  padding: 8px 0;
}
.mobile-nav-section {
  padding: 20px 24px 8px;
}
.mobile-nav-label {
  font-family: var(--sans);
  font-size: 9.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--vermillion);
  font-weight: 600;
  margin-bottom: 4px;
}
.mobile-nav-link {
  display: block;
  padding: 11px 0;
  font-family: var(--sans);
  font-size: 15px;
  letter-spacing: 0.06em;
  color: var(--ink);
  font-weight: 400;
  border-bottom: 1px solid rgba(26,20,16,0.07);
  transition: color 0.2s;
}
.mobile-nav-link:last-child { border-bottom: none; }
.mobile-nav-link:hover,
.mobile-nav-link[aria-current="page"] { color: var(--vermillion); }

.mobile-menu-footer {
  padding: 20px 24px;
  border-top: 1px solid rgba(26,20,16,0.1);
  flex-shrink: 0;
}
.mobile-cart-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  background: var(--ink);
  color: var(--paper);
  border: none;
  cursor: pointer;
  padding: 14px 18px;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  transition: background 0.2s;
}
.mobile-cart-btn:hover { background: var(--vermillion); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
  .artwork-grid--6 { grid-template-columns: repeat(3, 1fr); }
  .artwork-grid--3 { grid-template-columns: repeat(3, 1fr); }
  .artwork-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .collection-grid { grid-template-columns: repeat(4, 1fr); }
  .features-bar { grid-template-columns: repeat(2, 1fr); gap: 30px; }
}
@media (max-width: 900px) {
  .site-header { padding: 0 20px; height: 64px; }
  .hamburger { display: flex; }
  .site-nav { display: none; }
  .logo-wrap { flex: 1; justify-content: center; }
  .site-logo { height: 30px; }
  .hero-simple { padding: 28px 24px 32px; }
  .hero-title { font-size: 28px; }
  .hero-ctas { gap: 10px; }
  .hero-btn-primary, .hero-btn-secondary { height: 52px; width: 100%; max-width: 280px; }
  .hero-product-img { width: 100px; height: 100px; }
  .two-ways { padding: 36px 24px; }
  .two-ways-grid { grid-template-columns: 1fr; }
  .way-card { padding: 36px 28px; min-height: auto; }
  .way-title { font-size: 32px; }
  .way-art-thumb { width: 72px; height: 96px; }
  .way-product-icon img { height: 88px; }
  .way-cta-btn { height: 48px; width: 100%; justify-content: center; align-self: stretch; }
  .way-or { position: relative; left: auto; top: auto; z-index: 10; transform: none; display: flex; justify-content: center; margin: -20px 0; padding: 0; background: transparent; }
  .popular,
  .popular-products,
  .shop-product,
  .collections,
  .newsletter { padding: 48px 24px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .features-bar { padding: 28px 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .site-footer { padding: 48px 24px 24px; }
  .artwork-grid--6,
  .artwork-grid--4,
  .artwork-grid--3 { grid-template-columns: repeat(2, 1fr); }
  .collection-grid { grid-template-columns: repeat(3, 1fr); }
  .cart-drawer { width: 100%; }
}
@media (max-width: 600px) {
  .collection-listing { grid-template-columns: repeat(2, 1fr); }
  .product-page { grid-template-columns: 1fr; padding: 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .features-bar { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

/* ─── PAGE HERO ─── */
.page-hero {
  background: var(--paper-dark);
  border-bottom: 1px solid rgba(26,20,16,0.1);
  padding: 56px 60px;
  text-align: center;
}
.page-hero-inner { max-width: 640px; margin: 0 auto; }
.page-hero-title {
  font-family: var(--display);
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--ink);
  margin: 12px 0 10px;
}
.page-hero-sub {
  font-family: var(--serif);
  font-size: 16px;
  color: #5a4e42;
  font-style: italic;
  line-height: 1.6;
}

/* ─── PAGE CONTENT ─── */
.page-body {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 60px;
}
.page-body-inner.rte h2 { font-family: var(--display); font-size: 22px; margin: 32px 0 12px; }
.page-body-inner.rte p { margin-bottom: 16px; line-height: 1.8; }
.page-body-inner.rte a { color: var(--vermillion); text-decoration: underline; }
@media (max-width: 900px) { .page-body { padding: 40px 24px; } }

/* ─── ARTWORK GALLERY ─── */
.artwork-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(26,20,16,0.08);
  max-width: 1300px;
  margin: 48px auto;
  padding: 0 60px;
}
.gallery-card {
  background: var(--paper);
  display: block;
  overflow: hidden;
}
.gallery-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
}
.gallery-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.gallery-card:hover .gallery-card-img img { transform: scale(1.05); }
.gallery-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,20,16,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-card:hover .gallery-card-overlay { opacity: 1; }
.gallery-card-overlay-text {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--paper);
  border: 1px solid rgba(245,240,232,0.6);
  padding: 8px 16px;
}
.gallery-card-title {
  padding: 10px 12px;
  font-family: var(--serif);
  font-size: 13px;
  color: var(--ink);
  letter-spacing: 0.04em;
}

/* ─── PRODUCT TYPE SELECTION ─── */
.pt-grid-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 60px 80px;
}
.pt-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.pt-card {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid rgba(26,20,16,0.08);
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
  text-decoration: none;
}
.pt-card:hover {
  box-shadow: 0 12px 40px rgba(26,20,16,0.10);
  transform: translateY(-3px);
}
.pt-card-img {
  position: relative;
  aspect-ratio: 1 / 1;
  background: #f0ece3;
  overflow: hidden;
}
.pt-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
}
.pt-card:hover .pt-card-img img { transform: scale(1.04); }
.pt-card-img-empty {
  width: 100%;
  height: 100%;
  background: var(--paper-mid);
}
.pt-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,20,16,0.38);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.pt-card:hover .pt-card-overlay { opacity: 1; }
.pt-overlay-cta {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.7);
  padding: 10px 20px;
}
.pt-card-body {
  padding: 20px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.pt-accent-line {
  width: 20px;
  height: 2px;
  background: var(--vermillion);
  margin-bottom: 2px;
  transition: width 0.3s;
}
.pt-card:hover .pt-accent-line { width: 36px; }
.pt-name {
  font-family: var(--display);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--ink);
  margin: 0;
}
.pt-desc {
  font-family: var(--serif);
  font-size: 13px;
  color: #6a5e52;
  font-style: italic;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 900px) {
  .artwork-gallery { grid-template-columns: repeat(2, 1fr); padding: 0 24px; }
  .pt-grid-wrap { padding: 40px 24px 60px; }
  .pt-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .page-hero { padding: 40px 24px; }
}
@media (max-width: 600px) {
  .pt-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .pt-grid-wrap { padding: 32px 16px 48px; }
  .pt-card-body { padding: 14px 14px 18px; }
  .pt-name { font-size: 13px; }
  .pt-desc { display: none; }
}

/* ─── SLIDER ─── */
.slider-section {
  padding: 36px 0 36px 60px;
  overflow: hidden;
}
.slider-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto 20px;
  padding-right: 60px;
}
.slider-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}
.slider-btn {
  background: none;
  border: 1px solid rgba(26,20,16,0.25);
  color: var(--ink);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}
.slider-btn:hover {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.slider-track {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 8px;
}
.slider-track::-webkit-scrollbar { display: none; }
.slider-item {
  flex: 0 0 auto;
  scroll-snap-align: start;
  width: 200px;
}
.slider-img {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  aspect-ratio: 3 / 4;
  background: var(--paper-dark);
}
.slider-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.slider-item:hover .slider-img img { transform: scale(1.04); }

@media (max-width: 768px) {
  .slider-section { padding: 40px 0 40px 24px; }
  .slider-header { padding-right: 24px; }
  .slider-item { width: 160px; }
}
}
