/* Jinjja Gallery — homepage styles
 * Extracted from the design mockup; image URLs are referenced in front-page.php
 */

:root {
  --black: #080808;
  --off-white: #f5f3ef;
  --warm-white: #faf8f4;
  --ink: #141414;
  --grey-1: #e9e7e3;
  --grey-2: #c8c5bf;
  --grey-3: #8a8780;
  --grey-4: #4a4845;
  --paper: #f0ede8;
}

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

body {
  background: var(--warm-white);
  color: var(--ink);
  font-family: 'Cormorant Garamond', Georgia, serif;
  overflow-x: hidden;
  cursor: none;
}

/* ── CURSOR ── */
.cur { position: fixed; pointer-events: none; z-index: 9999; mix-blend-mode: difference; }
.cur-dot { width: 6px; height: 6px; background: white; border-radius: 50%; transform: translate(-50%,-50%); transition: transform .1s; }
.cur-ring { width: 38px; height: 38px; border: 1px solid white; border-radius: 50%; transform: translate(-50%,-50%); transition: width .3s, height .3s; }

/* ── NAV ── */
nav.jinjja-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.8rem 3rem;
  display: flex; align-items: center; justify-content: space-between;
  mix-blend-mode: difference;
}

.woocommerce-page nav.woocommerce-pagination {
    position: static !important;
    width: 100% !important;
    background: transparent !important;
    padding: 2rem 0 !important;
    display: flex !important;
    justify-content: center !important;
}
.nav-logo {
  font-family: 'Noto Serif KR', serif;
  font-size: 1.1rem; font-weight: 300;
  color: white; letter-spacing: 0.1em;
  text-decoration: none;
}
.nav-links {
  display: flex; gap: 2.5rem; list-style: none;
}
.nav-links a {
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 0.65rem; font-weight: 300;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: white; text-decoration: none;
  opacity: 0.7; transition: opacity .3s;
}
.nav-links a:hover { opacity: 1; }

/* ── HERO SHOWCASE ── */
.hero {
  height: 100vh; position: relative;
  background: var(--black); overflow: hidden;
}

.showcase-slide {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 1.2s ease;
}
.showcase-slide.active { opacity: 1; }

.slide-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 100%);
}

.slide-frame {
  position: relative; z-index: 2;
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
  gap: 0;
}

/* Gallery frame effect */
.slide-artwork {
  width: min(340px, 70vw);
  height: min(400px, 55vh);
  border: 1px solid rgba(255,255,255,0.12);
  position: relative;
  overflow: hidden;
  background: #111;
  box-shadow:
    0 0 0 8px #0d0d0d,
    0 0 0 9px rgba(255,255,255,0.08),
    0 30px 80px rgba(0,0,0,0.8);
}

.slide-artwork-inner {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 1rem; padding: 2rem;
}

.slide-brand-kr {
  font-family: 'Noto Serif KR', serif;
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 200; color: rgba(255,255,255,0.9);
  letter-spacing: 0.1em;
}

.slide-brand-en {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(0.8rem, 2vw, 1rem);
  font-weight: 300; font-style: italic;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.3em; text-transform: uppercase;
}

.slide-category {
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 0.6rem; font-weight: 200;
  letter-spacing: 0.35em; text-transform: uppercase;
  color: rgba(255,255,255,0.2);
  margin-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1rem; width: 100%; text-align: center;
}

/* Artwork placeholder pattern */
.artwork-pattern {
  position: absolute; inset: 0; opacity: 0.04;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 40px, rgba(255,255,255,1) 40px, rgba(255,255,255,1) 41px),
    repeating-linear-gradient(90deg, transparent, transparent 40px, rgba(255,255,255,1) 40px, rgba(255,255,255,1) 41px);
}

.slide-caption {
  margin-top: 2rem;
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 0.6rem; font-weight: 200;
  letter-spacing: 0.4em; text-transform: uppercase;
  color: rgba(255,255,255,0.2);
}

/* Slide counter */
.slide-counter {
  position: absolute; bottom: 3rem; right: 3rem; z-index: 10;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.75rem; font-weight: 300;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.1em;
}

/* Progress dots */
.slide-dots {
  position: absolute; bottom: 3rem; left: 50%;
  transform: translateX(-50%); z-index: 10;
  display: flex; gap: 0.5rem;
}
.slide-dot {
  width: 20px; height: 1px; background: rgba(255,255,255,0.2);
  transition: background .4s, width .4s;
  cursor: none;
}
.slide-dot.active {
  background: rgba(255,255,255,0.6); width: 40px;
}

/* Hero bottom text */
.hero-bottom {
  position: absolute; bottom: 3rem; left: 3rem; z-index: 10;
}
.hero-bottom-title {
  font-family: 'Noto Serif KR', serif;
  font-size: 0.8rem; font-weight: 200;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.15em;
}

/* ── STATEMENT SECTION ── */
.statement {
  padding: 10rem 4rem;
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 6rem; align-items: end;
}
.statement-left {}
.statement-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.65rem; font-weight: 400;
  letter-spacing: 0.4em; color: var(--grey-3);
  text-transform: uppercase; margin-bottom: 2rem;
  display: block;
}
.statement-headline {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300; line-height: 1.05;
  letter-spacing: -0.01em;
}
.statement-headline em {
  font-style: italic; font-weight: 300;
}
.statement-right {
  padding-bottom: 0.5rem;
}
.statement-body {
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 0.88rem; font-weight: 300;
  line-height: 2.2; color: var(--grey-4);
  margin-bottom: 3rem;
}
.statement-cta {
  display: inline-flex; align-items: center; gap: 1rem;
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 0.65rem; font-weight: 300;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--ink); text-decoration: none;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 0.3rem;
  transition: gap .3s;
}
.statement-cta:hover { gap: 1.5rem; }

/* ── DIVIDER ── */
.divider {
  width: 1px; height: 80px;
  background: var(--grey-2);
  margin: 0 auto;
}

/* ── GALLERY WALL ── */
.gallery-section {
  padding: 6rem 0 10rem;
  background: var(--warm-white);
}
.gallery-header {
  padding: 0 4rem 5rem;
  display: flex; align-items: baseline;
  justify-content: space-between;
}
.gallery-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300; font-style: italic;
}
.gallery-subtitle {
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 0.65rem; font-weight: 300;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--grey-3);
}

/* The gallery wall itself */
.gallery-wall {
  padding: 0 3rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--off-white);
  border-top: 1px solid var(--grey-1);
  border-left: 1px solid var(--grey-1);
}

.gallery-item {
  border-right: 1px solid var(--grey-1);
  border-bottom: 1px solid var(--grey-1);
  padding: 3rem 2.5rem 2.5rem;
  position: relative; overflow: hidden;
  background: var(--warm-white);
  transition: background .5s;
  cursor: none;
}
.gallery-item:hover { background: var(--black); }

/* Artwork frame on each card */
.artwork-frame {
  width: 100%;
  aspect-ratio: 3/4;
  border: 1px solid var(--grey-1);
  margin-bottom: 1.8rem;
  position: relative; overflow: hidden;
  display: flex; align-items: center;
  justify-content: center;
  background: var(--paper);
  transition: border-color .5s, background .5s;
}
.gallery-item:hover .artwork-frame {
  border-color: rgba(255,255,255,0.1);
  background: #111;
}

.artwork-placeholder {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 0.8rem; padding: 1.5rem; text-align: center;
}
.artwork-kr {
  font-family: 'Noto Serif KR', serif;
  font-size: 1.8rem; font-weight: 200;
  color: var(--grey-2);
  transition: color .5s;
}
.gallery-item:hover .artwork-kr { color: rgba(255,255,255,0.15); }

.artwork-add-photo {
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 0.55rem; font-weight: 300;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--grey-2);
  transition: color .5s;
}
.gallery-item:hover .artwork-add-photo { color: rgba(255,255,255,0.2); }

/* Frame corner decoration */
.frame-corner {
  position: absolute;
  width: 10px; height: 10px;
  border-color: var(--grey-2);
  border-style: solid;
  transition: border-color .5s;
}
.gallery-item:hover .frame-corner { border-color: rgba(255,255,255,0.15); }
.frame-corner.tl { top: 8px; left: 8px; border-width: 1px 0 0 1px; }
.frame-corner.tr { top: 8px; right: 8px; border-width: 1px 1px 0 0; }
.frame-corner.bl { bottom: 8px; left: 8px; border-width: 0 0 1px 1px; }
.frame-corner.br { bottom: 8px; right: 8px; border-width: 0 1px 1px 0; }

.item-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.6rem; letter-spacing: 0.3em;
  color: var(--grey-2); margin-bottom: 0.6rem;
  display: block; transition: color .5s;
}
.gallery-item:hover .item-num { color: rgba(255,255,255,0.2); }

.item-name-kr {
  font-family: 'Noto Serif KR', serif;
  font-size: 1rem; font-weight: 300;
  margin-bottom: 0.2rem;
  transition: color .5s;
}
.gallery-item:hover .item-name-kr { color: white; }

.item-name-en {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.8rem; font-weight: 300; font-style: italic;
  color: var(--grey-3); margin-bottom: 0.8rem;
  display: block; transition: color .5s;
}
.gallery-item:hover .item-name-en { color: rgba(255,255,255,0.4); }

.item-category {
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 0.55rem; font-weight: 300;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--grey-3); transition: color .5s;
}
.gallery-item:hover .item-category { color: rgba(255,255,255,0.3); }

/* Last card — coming soon */
.gallery-item.coming-soon {
  background: var(--black);
}
.gallery-item.coming-soon .item-num,
.gallery-item.coming-soon .item-name-kr,
.gallery-item.coming-soon .item-name-en,
.gallery-item.coming-soon .item-category { color: rgba(255,255,255,0.2); }
.gallery-item.coming-soon .artwork-frame {
  border-color: rgba(255,255,255,0.06);
  background: #0a0a0a;
}
.gallery-item.coming-soon .artwork-kr { color: rgba(255,255,255,0.05); }
.gallery-item.coming-soon .frame-corner { border-color: rgba(255,255,255,0.06); }

/* ── BRAND ROOM (TETS example) ── */
.brand-room {
  background: var(--black);
  padding: 0;
  position: relative;
}

.room-header {
  padding: 8rem 4rem 5rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem; align-items: end;
}

.room-eyebrow {
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 0.6rem; font-weight: 200;
  letter-spacing: 0.4em; text-transform: uppercase;
  color: rgba(255,255,255,0.2);
  margin-bottom: 2rem; display: block;
}

.room-name-kr {
  font-family: 'Noto Serif KR', serif;
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 200; color: white;
  letter-spacing: 0.05em; line-height: 0.9;
  margin-bottom: 1rem;
}

.room-name-en {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem; font-style: italic;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.2em;
}

.room-right {}
.room-category-tag {
  display: inline-block;
  border: 1px solid rgba(255,255,255,0.12);
  padding: 0.4rem 1rem;
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 0.6rem; font-weight: 200;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 2rem;
}

.room-story {
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 0.85rem; font-weight: 200;
  line-height: 2.2; color: rgba(255,255,255,0.45);
  margin-bottom: 2.5rem;
}

.room-shipping {
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 0.65rem; font-weight: 200;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.1em;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 1.5rem;
  display: flex; gap: 2rem;
}

.room-shipping span { display: flex; align-items: center; gap: 0.4rem; }

/* Product grid in brand room */
.room-products {
  padding: 4rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: rgba(255,255,255,0.04);
}

.product-card {
  background: var(--black);
  padding: 2.5rem 2rem;
  cursor: none; position: relative;
  transition: background .4s;
}
.product-card:hover { background: #111; }

.product-frame {
  width: 100%; aspect-ratio: 1;
  background: #0f0f0f;
  border: 1px solid rgba(255,255,255,0.05);
  margin-bottom: 1.5rem;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  transition: border-color .4s;
}
.product-card:hover .product-frame { border-color: rgba(255,255,255,0.1); }

.product-placeholder-kr {
  font-family: 'Noto Serif KR', serif;
  font-size: 2rem; font-weight: 200;
  color: rgba(255,255,255,0.06);
}

.product-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem; font-weight: 300;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0.3rem;
}

.product-price {
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 0.75rem; font-weight: 300;
  color: rgba(255,255,255,0.3);
  margin-bottom: 1.2rem;
}

.product-btn {
  width: 100%;
  padding: 0.75rem;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.4);
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 0.6rem; font-weight: 300;
  letter-spacing: 0.25em; text-transform: uppercase;
  cursor: none; transition: all .3s;
}
.product-btn:hover {
  background: white; color: var(--black);
  border-color: white;
}

/* Add to bag photo note */
.product-add-photo {
  position: absolute; top: 0.8rem; right: 0.8rem;
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 0.5rem; font-weight: 200;
  color: rgba(255,255,255,0.12);
  letter-spacing: 0.1em;
}

/* ── HOW IT WORKS ── */
.how-section {
  padding: 10rem 4rem;
  max-width: 1100px; margin: 0 auto;
}

.how-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300; font-style: italic;
  margin-bottom: 5rem; text-align: center;
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
}

.how-item {}
.how-step {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem; font-weight: 300;
  color: var(--grey-1); margin-bottom: 1rem;
  display: block; line-height: 1;
}
.how-item-title {
  font-size: 1.1rem; font-weight: 400;
  margin-bottom: 0.75rem;
}
.how-item-body {
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 0.78rem; font-weight: 300;
  line-height: 1.9; color: var(--grey-4);
}

/* ── FOR VENDORS CTA ── */
.vendor-cta {
  background: var(--black);
  padding: 10rem 4rem;
  text-align: center;
  position: relative; overflow: hidden;
}

.vendor-cta-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, #1a1a1a 0%, #080808 70%);
}

.vendor-cta-content { position: relative; z-index: 2; }

.vendor-cta-kr {
  font-family: 'Noto Serif KR', serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 200; color: white;
  letter-spacing: 0.1em; margin-bottom: 0.5rem;
}

.vendor-cta-en {
  font-family: 'IM Fell English', serif;
  font-size: clamp(1rem, 2.5vw, 1.6rem);
  font-style: italic; color: rgba(255,255,255,0.3);
  margin-bottom: 3rem; display: block;
}

.vendor-cta-body {
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 0.88rem; font-weight: 200;
  line-height: 2.2; color: rgba(255,255,255,0.4);
  max-width: 500px; margin: 0 auto 4rem;
}

.vendor-btn {
  display: inline-block;
  padding: 1.2rem 4rem;
  border: 1px solid rgba(255,255,255,0.3);
  color: white; text-decoration: none;
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 0.65rem; font-weight: 300;
  letter-spacing: 0.35em; text-transform: uppercase;
  transition: all .4s; cursor: none;
}
.vendor-btn:hover {
  background: white; color: var(--black);
  border-color: white; letter-spacing: 0.5em;
}

/* ── FOOTER ── */
footer {
  padding: 3rem 4rem;
  display: flex; align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--grey-1);
}

.footer-logo {
  font-family: 'Noto Serif KR', serif;
  font-size: 1rem; font-weight: 300;
  letter-spacing: 0.1em;
}

.footer-links {
  display: flex; gap: 2rem; list-style: none;
}
.footer-links a {
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 0.6rem; font-weight: 300;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--grey-3); text-decoration: none;
  transition: color .3s;
}
.footer-links a:hover { color: var(--ink); }

.footer-note {
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 0.6rem; font-weight: 200;
  color: var(--grey-3); letter-spacing: 0.1em;
}

/* ── SECTION LABELS ── */
.section-label {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  position: absolute; right: 3rem; top: 50%;
  transform: translateY(-50%);
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 0.55rem; font-weight: 200;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--grey-2);
}

/* ── REVEAL ANIMATIONS ── */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity .9s ease, transform .9s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* ── MOBILE ── */
@media (max-width: 900px) {
  nav.jinjja-nav { padding: 1.5rem 1.5rem; }
  .nav-links { display: none; }
  body { cursor: auto; }
  .cur { display: none; }

  .statement { grid-template-columns: 1fr; gap: 3rem; padding: 5rem 1.5rem; }
  .gallery-header { padding: 0 1.5rem 3rem; flex-direction: column; gap: 0.5rem; }
  .gallery-wall { grid-template-columns: repeat(2, 1fr); padding: 0 1.5rem; }
  .gallery-item { padding: 2rem 1.5rem; }

  .room-header { grid-template-columns: 1fr; gap: 2rem; padding: 5rem 1.5rem 3rem; }
  .room-name-kr { font-size: 3.5rem; }
  .room-products { grid-template-columns: repeat(2, 1fr); padding: 1.5rem; }

  .how-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .how-section { padding: 6rem 1.5rem; }

  .vendor-cta { padding: 6rem 1.5rem; }
  footer { flex-direction: column; gap: 1.5rem; text-align: center; padding: 2rem 1.5rem; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 480px) {
  .gallery-wall { grid-template-columns: 1fr; }
  .room-products { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: 1fr; }
  .room-name-kr { font-size: 2.8rem; }
}

  /* ── BRAND MODAL OVERLAY ── */
  .modal-overlay {
    position: fixed; inset: 0; z-index: 500;
    background: var(--black);
    opacity: 0; pointer-events: none;
    transition: opacity 0.5s ease;
    overflow-y: auto;
  }
  .modal-overlay.open {
    opacity: 1; pointer-events: all;
  }
  .modal-close {
    position: fixed; top: 2rem; right: 2.5rem;
    z-index: 600; background: none; border: none;
    color: rgba(255,255,255,0.4);
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 0.65rem; font-weight: 300;
    letter-spacing: 0.3em; text-transform: uppercase;
    cursor: none; transition: color .3s;
    display: flex; align-items: center; gap: 0.5rem;
  }
  .modal-close:hover { color: white; }
  .modal-close::before {
    content: '×'; font-size: 1.2rem; font-weight: 200;
  }

  .modal-content {
    min-height: 100vh;
    padding: 0;
  }

  .modal-room-header {
    padding: 8rem 4rem 5rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem; align-items: end;
  }

  .modal-room-name-kr {
    font-family: 'Noto Serif KR', serif;
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 200; color: white;
    letter-spacing: 0.05em; line-height: 0.9;
    margin-bottom: 1rem;
  }

  .modal-room-name-en {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem; font-style: italic;
    color: rgba(255,255,255,0.3);
    letter-spacing: 0.2em;
  }

  .modal-room-eyebrow {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 0.6rem; font-weight: 200;
    letter-spacing: 0.4em; text-transform: uppercase;
    color: rgba(255,255,255,0.2);
    margin-bottom: 2rem; display: block;
  }

  .modal-category-tag {
    display: inline-block;
    border: 1px solid rgba(255,255,255,0.12);
    padding: 0.4rem 1rem;
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 0.6rem; font-weight: 200;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    margin-bottom: 2rem;
  }

  .modal-story {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 0.85rem; font-weight: 200;
    line-height: 2.2; color: rgba(255,255,255,0.45);
    margin-bottom: 2.5rem;
  }

  .modal-shipping {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 0.65rem; font-weight: 200;
    color: rgba(255,255,255,0.2);
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 1.5rem;
    display: flex; gap: 2rem; flex-wrap: wrap;
  }

  .modal-products {
    padding: 4rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px; background: rgba(255,255,255,0.04);
  }

  .modal-product {
    background: var(--black);
    padding: 2.5rem 2rem;
    transition: background .4s;
  }
  .modal-product:hover { background: #111; }

  .modal-product-frame {
    width: 100%; aspect-ratio: 1;
    background: #0f0f0f;
    border: 1px solid rgba(255,255,255,0.05);
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: border-color .4s;
  }
  .modal-product:hover .modal-product-frame {
    border-color: rgba(255,255,255,0.1);
  }

  .modal-product-frame img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: grayscale(15%);
    transition: filter .4s, transform .4s;
  }
  .modal-product:hover .modal-product-frame img {
    filter: grayscale(0%);
    transform: scale(1.03);
  }

  .modal-product-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem; font-weight: 300;
    color: rgba(255,255,255,0.7);
    margin-bottom: 0.3rem;
    line-height: 1.3;
  }

  .modal-product-name-kr {
    font-family: 'Noto Serif KR', serif;
    font-size: 0.75rem; font-weight: 300;
    color: rgba(255,255,255,0.3);
    margin-bottom: 0.75rem;
    display: block;
  }

  .modal-product-price {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 0.8rem; font-weight: 300;
    color: rgba(255,255,255,0.5);
    margin-bottom: 1.2rem;
  }

  .modal-product-price s {
    color: rgba(255,255,255,0.2);
    margin-right: 0.4rem;
    font-size: 0.7rem;
  }

  .modal-product-btn {
    width: 100%; padding: 0.75rem;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.4);
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 0.6rem; font-weight: 300;
    letter-spacing: 0.25em; text-transform: uppercase;
    cursor: none; transition: all .3s;
  }
  .modal-product-btn:hover {
    background: white; color: var(--black);
    border-color: white;
  }

  .modal-back {
    padding: 3rem 4rem;
    border-top: 1px solid rgba(255,255,255,0.06);
    text-align: center;
  }
  .modal-back a {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 0.65rem; font-weight: 300;
    letter-spacing: 0.3em; text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    text-decoration: none; transition: color .3s;
  }
  .modal-back a:hover { color: white; }

  /* Make gallery cards clickable */
  .gallery-item { cursor: none; }
  .gallery-item[data-brand] { cursor: none; }

  @media (max-width: 900px) {
    .modal-room-header {
      grid-template-columns: 1fr;
      gap: 2rem; padding: 6rem 1.5rem 3rem;
    }
    .modal-products {
      grid-template-columns: 1fr;
      padding: 1.5rem;
    }
    .modal-room-name-kr { font-size: 3rem; }
    .modal-close { right: 1.5rem; }
  }

/* Hide Dokan floating dashboard menu */
.dokan-dashboard-menu,
.dokan-navigation,
#dokan-navigation,
.dokan-dash-header,
.dokan-top-area {
    display: none !important;
}

/* Fix pagination styling */
.woocommerce-pagination .page-numbers li .page-numbers,
.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
    background: transparent !important;
    color: #333 !important;
    border: none !important;
    box-shadow: none !important;
}

.woocommerce-pagination .page-numbers li .page-numbers.current,
.woocommerce nav.woocommerce-pagination ul li span.current {
    background: transparent !important;
    color: #000 !important;
    font-weight: bold !important;
    border-bottom: 2px solid #000 !important;
}


/* Style WooCommerce "Read more" buttons */
.woocommerce .products .product .button,
.woocommerce .product .button,
.woocommerce-page .products .product .button {
    display: inline-block !important;
    padding: 0.75rem 1.5rem !important;
    background: transparent !important;
    color: #333 !important;
    border: 1px solid #333 !important;
    text-decoration: none !important;
    font-family: 'Noto Sans KR', sans-serif !important;
    font-size: 0.85rem !important;
    font-weight: 500 !important;
    letter-spacing: 0.05em !important;
    text-transform: uppercase !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
}

.woocommerce .products .product .button:hover,
.woocommerce .product .button:hover,
.woocommerce-page .products .product .button:hover {
    background: #333 !important;
    color: #fff !important;
}

/* Make sure read-more buttons show as block/inline for variable products */
.product-type-variable .button {
    display: inline-block !important;
}

/* Shop page — 3 column grid, larger images */
.woocommerce ul.products {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 2rem !important;
}

.woocommerce ul.products li.product a img {
    aspect-ratio: 3/4 !important;
    object-fit: cover !important;
    width: 100% !important;
}

@media (max-width: 768px) {
    .woocommerce ul.products {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* Remove View Product button from shop grid */
.woocommerce ul.products li.product .button,
.woocommerce ul.products li.product a.button {
    display: none !important;
}

/* Style product info area */
.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-family: 'Cormorant Garamond', serif !important;
    font-size: 0.95rem !important;
    font-weight: 400 !important;
    color: #111 !important;
    margin-top: 0.75rem !important;
    padding: 0 !important;
}

.woocommerce ul.products li.product .price {
    font-family: 'DM Sans', sans-serif !important;
    font-size: 0.85rem !important;
    color: #555 !important;
}

/* Vendor name styling */
.woocommerce ul.products li.product .posted_in,
.woocommerce ul.products li.product .vendor-name {
    font-size: 0.75rem !important;
    color: #999 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.08em !important;
}

/* Remove border/box around product cards */
.woocommerce ul.products li.product {
    border: none !important;
    box-shadow: none !important;
    background: transparent !important;
    padding: 0 !important;
}

/* Default sorting dropdown — minimal style */
.woocommerce-ordering select {
    border: none !important;
    border-bottom: 1px solid #ddd !important;
    background: transparent !important;
    font-size: 0.8rem !important;
    color: #999 !important;
    padding: 0.25rem 0 !important;
}

/* Hide ALL Astra hover action buttons on product cards */
.ast-woo-product-actions,
.ast-woo-product-actions *,
.woocommerce ul.products li.product .ast-woo-product-actions,
.woocommerce-loop-product__link .ast-woo-product-actions,
.astra-shop-summary-wrap .ast-woo-product-actions,
li.product .ast-woo-product-actions,
.woo-overlay-actions {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

/* Nuclear option — hide ALL buttons and icons on product cards */
.woocommerce ul.products li.product a.button,
.woocommerce ul.products li.product button,
.woocommerce ul.products li.product .button,
.woocommerce ul.products li.product [class*="action"],
.woocommerce ul.products li.product [class*="cart"],
.woocommerce ul.products li.product [class*="wishlist"],
.woocommerce ul.products li.product [class*="compare"],
.woocommerce ul.products li.product [class*="quickview"],
.woocommerce ul.products li.product [class*="quick-view"],
.woocommerce ul.products li.product svg,
.woocommerce ul.products li.product .ast-woo-product-actions,
.woocommerce ul.products li.product form {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

/* Hide hover dot/circle on product images */
.woocommerce ul.products li.product a::after,
.woocommerce ul.products li.product a::before,
.woocommerce ul.products li.product .overlay,
.woocommerce ul.products li.product [class*="overlay"],
.woocommerce ul.products li.product [class*="hover"],
.ast-shop-product-actions-active,
.woocommerce ul.products li.product .ast-edd-thumbnail-bg-wrap::after {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

/* Hide zoom/magnifier icon on product images */
.woocommerce-product-gallery__trigger,
.woocommerce ul.products li.product .woocommerce-product-gallery__trigger,
a.woocommerce-product-gallery__trigger {
    display: none !important;
}

/* Product page — clean up */

/* Remove blue line under header */
.woocommerce-breadcrumb,
.woocommerce div.product,
.woocommerce-page div.product {
    border-top: none !important;
}

/* Hide SKU, tags, categories meta */
.product_meta {
    display: none !important;
}

/* Style breadcrumb */
.woocommerce-breadcrumb {
    font-size: 0.75rem !important;
    color: #999 !important;
    font-family: 'DM Sans', sans-serif !important;
    letter-spacing: 0.05em !important;
}

.woocommerce-breadcrumb a {
    color: #999 !important;
    text-decoration: none !important;
}

/* Style vendor/category links */
.posted_in a,
.tagged_as a {
    color: #333 !important;
    text-decoration: none !important;
    font-size: 0.75rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.08em !important;
}

/* Product title */
.woocommerce div.product h1.product_title {
    font-family: 'Cormorant Garamond', serif !important;
    font-size: 1.8rem !important;
    font-weight: 400 !important;
    color: #111 !important;
    line-height: 1.3 !important;
}

/* Price */
.woocommerce div.product p.price {
    font-family: 'DM Sans', sans-serif !important;
    font-size: 1.1rem !important;
    color: #111 !important;
    font-weight: 400 !important;
}

/* Add to cart button */
.woocommerce div.product form.cart .single_add_to_cart_button {
    background: #111 !important;
    color: #fff !important;
    border: none !important;
    border-radius: 0 !important;
    font-family: 'DM Sans', sans-serif !important;
    font-size: 0.85rem !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
    padding: 1rem 2rem !important;
    width: 100% !important;
}

.woocommerce div.product form.cart .single_add_to_cart_button:hover {
    background: #333 !important;
}

/* Description tab — hide tabs, show content directly */
.woocommerce-tabs .tabs {
    display: none !important;
}

.woocommerce-tabs .woocommerce-Tabs-panel {
    display: block !important;
    border: none !important;
    padding: 2rem 0 !important;
}

/* Related products heading */
.related.products h2 {
    font-family: 'Cormorant Garamond', serif !important;
    font-size: 1.2rem !important;
    font-weight: 400 !important;
    letter-spacing: 0.05em !important;
    color: #111 !important;
}

/* Force dark cursor sitewide */
*, *::before, *::after {
    cursor: auto !important;
}

a, button, [role="button"], label, select,
.woocommerce ul.products li.product a {
    cursor: pointer !important;
}
