/* ============================================================
   Sırlar Dükkanı — dark & mystical boutique collectibles
   Palette: midnight ink + candlelight gold + moonlit blue
   ============================================================ */

:root {
  --ink: #070a14;
  --ink-2: #0b101f;
  --ink-3: #131a30;
  --ink-glass: rgba(13, 18, 36, 0.72);
  --gold: #d4a94e;
  --gold-bright: #f2d38a;
  --gold-deep: #9a7428;
  --moon: #8fb3d9;
  --red: #e2564f;
  --text: #d3d9e6;
  --text-dim: #8d95ab;
  --font-display: 'Cinzel Decorative', serif;
  --font-head: 'Cinzel', serif;
  --font-serif: 'Cormorant Garamond', serif;
  --font-body: 'Manrope', sans-serif;
  --radius: 14px;
  --shadow-card: 0 18px 50px -18px rgba(0, 0, 0, 0.85);
  --border-faint: 1px solid rgba(212, 169, 78, 0.14);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--ink);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
  min-height: 100vh;
}

body::before {
  /* subtle vertical nebula so long pages never feel flat */
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 45% at 50% -10%, rgba(51, 74, 128, 0.22), transparent 60%),
    radial-gradient(ellipse 60% 40% at 85% 110%, rgba(94, 60, 26, 0.14), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

::selection { background: rgba(212, 169, 78, 0.35); color: #fff; }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--ink); }
::-webkit-scrollbar-thumb { background: #2a3352; border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-deep); }

/* ---------- Loading veil ---------- */
.veil {
  position: fixed;
  inset: 0;
  background: var(--ink);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.7s ease, visibility 0.7s;
}
.veil.hidden { opacity: 0; visibility: hidden; }
.veil-inner { text-align: center; color: var(--gold); }
.veil-key { animation: keyFloat 2s ease-in-out infinite; filter: drop-shadow(0 0 12px rgba(212, 169, 78, 0.6)); }
.veil-text {
  margin-top: 14px;
  font-family: var(--font-head);
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-dim);
}
@keyframes keyFloat {
  0%, 100% { transform: translateY(0) rotate(-8deg); }
  50% { transform: translateY(-8px) rotate(8deg); }
}

/* ---------- Magic dust canvas ---------- */
#dust {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: padding 0.4s ease, background 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
}
.site-header.scrolled {
  padding: 10px 0;
  background: var(--ink-glass);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 6px 30px -10px rgba(0, 0, 0, 0.7);
  border-bottom: var(--border-faint);
}
.header-inner {
  width: min(1280px, 94vw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo { display: flex; align-items: center; gap: 12px; color: var(--gold); }
.logo-key { transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1); filter: drop-shadow(0 0 8px rgba(212, 169, 78, 0.4)); }
.logo:hover .logo-key { transform: rotate(-20deg) scale(1.08); }
.logo-star { animation: starTwinkle 2.4s ease-in-out infinite; }
.logo-star.s2 { animation-delay: 0.7s; }
.logo-star.s3 { animation-delay: 1.4s; }
@keyframes starTwinkle { 0%, 100% { opacity: 0.25; } 50% { opacity: 1; } }
.logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.logo-name {
  font-family: var(--font-display);
  font-size: 1.28rem;
  color: var(--gold-bright);
  letter-spacing: 0.03em;
  text-shadow: 0 0 24px rgba(212, 169, 78, 0.35);
}
.logo-tag {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.main-nav { display: flex; gap: 34px; }
.nav-link {
  font-family: var(--font-head);
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
  position: relative;
  padding: 6px 2px;
  transition: color 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 50%; bottom: 0;
  width: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transition: width 0.4s ease, left 0.4s ease;
}
.nav-link:hover, .nav-link.active { color: var(--gold-bright); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; left: 0; }

.live-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--red);
  display: inline-block;
  box-shadow: 0 0 0 0 rgba(226, 86, 79, 0.6);
  animation: livePulse 1.8s infinite;
}
@keyframes livePulse {
  0% { box-shadow: 0 0 0 0 rgba(226, 86, 79, 0.55); }
  70% { box-shadow: 0 0 0 8px rgba(226, 86, 79, 0); }
  100% { box-shadow: 0 0 0 0 rgba(226, 86, 79, 0); }
}

.header-actions { display: flex; align-items: center; gap: 18px; }
.lang-toggle {
  font-family: var(--font-head);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  gap: 6px;
  border: var(--border-faint);
  border-radius: 999px;
  padding: 6px 14px;
  background: rgba(212, 169, 78, 0.04);
}
.lang-opt { color: var(--text-dim); transition: color 0.3s; }
.lang-opt:hover { color: var(--text); }
.lang-opt.active { color: var(--gold-bright); text-shadow: 0 0 10px rgba(212, 169, 78, 0.5); }
.lang-sep { color: rgba(212, 169, 78, 0.3); }

.burger { display: none; background: none; border: none; width: 30px; height: 22px; position: relative; }
.burger span {
  position: absolute; left: 0;
  width: 100%; height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: all 0.35s ease;
}
.burger span:nth-child(1) { top: 0; }
.burger span:nth-child(2) { top: 10px; }
.burger span:nth-child(3) { top: 20px; }
.burger.open span:nth-child(1) { top: 10px; transform: rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { top: 10px; transform: rotate(-45deg); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 4px;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s, color 0.3s;
}
.btn-lg { padding: 17px 42px; font-size: 0.88rem; }
.btn-block { width: 100%; }

.btn-gold {
  background: linear-gradient(135deg, var(--gold-deep), var(--gold) 50%, var(--gold-bright));
  color: #161003;
  font-weight: 700;
  box-shadow: 0 8px 30px -8px rgba(212, 169, 78, 0.55);
}
.btn-gold::before {
  /* traveling light sweep */
  content: '';
  position: absolute;
  top: 0; left: -80%;
  width: 55%; height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 14px 40px -8px rgba(212, 169, 78, 0.7); }
.btn-gold:hover::before { left: 130%; }

.btn-ghost {
  border-color: rgba(212, 169, 78, 0.4);
  color: var(--gold-bright);
  background: rgba(212, 169, 78, 0.03);
}
.btn-ghost:hover {
  background: rgba(212, 169, 78, 0.12);
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px -12px rgba(212, 169, 78, 0.45);
}

/* ---------- Hero ---------- */
.hero { position: relative; height: 100vh; min-height: 640px; z-index: 2; }
.hero-swiper { height: 100%; }
.hero-slide { position: relative; overflow: hidden; background: var(--ink); }
.hero-bg {
  position: absolute;
  inset: -6%;
  background-size: cover;
  background-position: center 22%;
  transform: scale(1);
  filter: brightness(1.12) saturate(1.05);
}
.swiper-slide-active .hero-bg { animation: kenBurns 7.5s ease-out forwards; }
@keyframes kenBurns {
  from { transform: scale(1); }
  to { transform: scale(1.09); }
}
.hero-vignette {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, var(--ink) 4%, rgba(7, 10, 20, 0.45) 28%, rgba(7, 10, 20, 0.12) 55%, rgba(7, 10, 20, 0.35) 100%),
    linear-gradient(100deg, rgba(7, 10, 20, 0.78) 16%, transparent 58%);
}
.hero-content {
  position: absolute;
  left: max(5vw, calc((100vw - 1200px) / 2));
  right: 5vw;
  bottom: 18vh;
  max-width: 620px;
  z-index: 3;
}
.hero-kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-head);
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.kicker-line { width: 48px; height: 1px; background: linear-gradient(90deg, var(--gold), transparent); }
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 5.2vw, 4.2rem);
  font-weight: 700;
  line-height: 1.12;
  color: #f4ecd8;
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.8);
  margin-bottom: 18px;
  /* real uppercase so Turkish i→İ maps correctly (Cinzel small-caps drops the dot) */
  text-transform: uppercase;
}
.hero-text {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: rgba(224, 229, 240, 0.88);
  max-width: min(480px, 100%);
  margin-bottom: 32px;
}
/* per-slide entrance choreography */
.hero-kicker, .hero-title, .hero-text, .hero-content .btn {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.swiper-slide-active .hero-kicker { opacity: 1; transform: none; transition-delay: 0.25s; }
.swiper-slide-active .hero-title { opacity: 1; transform: none; transition-delay: 0.42s; }
.swiper-slide-active .hero-text { opacity: 1; transform: none; transition-delay: 0.6s; }
.swiper-slide-active .hero-content .btn { opacity: 1; transform: none; transition-delay: 0.78s; }

.hero .hero-pagination,
.hero-swiper > .hero-pagination.swiper-pagination-bullets {
  position: absolute;
  left: auto;
  width: auto;
  top: auto;
  right: max(5vw, calc((100vw - 1200px) / 2));
  bottom: 18vh;
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.hero-pagination .swiper-pagination-bullet {
  width: 34px; height: 3px;
  border-radius: 2px;
  background: rgba(212, 169, 78, 0.25);
  opacity: 1;
  transition: background 0.4s;
  cursor: pointer;
}
.hero-pagination .swiper-pagination-bullet-active {
  background: var(--gold);
  box-shadow: 0 0 12px rgba(212, 169, 78, 0.7);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 34px; left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  opacity: 0.7;
}
.scroll-mouse {
  display: block;
  width: 24px; height: 38px;
  border: 1.5px solid rgba(212, 169, 78, 0.6);
  border-radius: 13px;
  position: relative;
}
.scroll-wheel {
  position: absolute;
  top: 7px; left: 50%;
  width: 3px; height: 7px;
  margin-left: -1.5px;
  border-radius: 2px;
  background: var(--gold);
  animation: wheelDrop 1.8s ease-in-out infinite;
}
@keyframes wheelDrop {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(12px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ---------- Sections ---------- */
main { position: relative; z-index: 2; }
.section { padding: 110px 0; position: relative; }

.section-head { text-align: center; margin-bottom: 60px; }
.kicker {
  font-family: var(--font-head);
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.kicker-red { color: var(--red); }
.section-title {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(1.8rem, 3.4vw, 2.7rem);
  color: #ecdfc0;
  line-height: 1.2;
  text-transform: uppercase;
}
.ornament {
  display: block;
  margin-top: 18px;
  color: rgba(212, 169, 78, 0.4);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}
.section-more { text-align: center; margin-top: 54px; }

.gold-shimmer {
  background: linear-gradient(100deg, #cbb478 20%, #f7e7b5 40%, #cbb478 60%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmerSlide 5s linear infinite;
}
@keyframes shimmerSlide {
  to { background-position: -200% center; }
}

/* scroll reveal base state (GSAP animates in) */
.reveal { opacity: 0; transform: translateY(36px); }
.no-js .reveal, .reveal.shown { opacity: 1; transform: none; }

/* snapshot mode: everything visible instantly (?snap=1) */
html.snap { scroll-behavior: auto; }
.snap .hero { height: 820px; min-height: 0; }
.snap .veil { display: none; }
.snap .reveal { opacity: 1; transform: none; }
.snap .hero-kicker, .snap .hero-title, .snap .hero-text, .snap .hero-content .btn { opacity: 1; transform: none; transition: none; }

/* ---------- Product cards ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(255px, 1fr));
  gap: 30px;
}

.product-card {
  position: relative;
  background: linear-gradient(170deg, var(--ink-3), var(--ink-2) 70%);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(212, 169, 78, 0.1);
  transform-style: preserve-3d;
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
  display: block;
}
.product-card:hover {
  border-color: rgba(212, 169, 78, 0.45);
  box-shadow: 0 24px 60px -18px rgba(0, 0, 0, 0.9), 0 0 40px -12px rgba(212, 169, 78, 0.3);
}
.card-frame {
  position: absolute;
  inset: 9px;
  border: 1px solid rgba(212, 169, 78, 0);
  border-radius: calc(var(--radius) - 5px);
  transition: border-color 0.4s ease;
  pointer-events: none;
  z-index: 3;
}
.product-card:hover .card-frame { border-color: rgba(212, 169, 78, 0.28); }

.card-img {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), filter 0.6s ease;
  filter: saturate(0.94);
}
.product-card:hover .card-img img { transform: scale(1.07); filter: saturate(1.1); }
.card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 16, 31, 0.9), transparent 36%);
}
.card-shine {
  position: absolute;
  top: 0; left: -130%;
  width: 60%; height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.14), transparent);
  transform: skewX(-18deg);
  transition: left 0.9s ease;
  z-index: 2;
  pointer-events: none;
}
.product-card:hover .card-shine, .lot-img:hover .card-shine { left: 170%; }

.badge {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 4;
  font-family: var(--font-head);
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  backdrop-filter: blur(6px);
}
.badge-new { background: rgba(63, 118, 92, 0.75); color: #c9f2dd; border: 1px solid rgba(122, 216, 173, 0.4); }
.badge-rare { background: rgba(94, 68, 24, 0.75); color: var(--gold-bright); border: 1px solid rgba(212, 169, 78, 0.5); }
.badge-auction { background: rgba(122, 35, 32, 0.78); color: #ffd9d6; border: 1px solid rgba(226, 86, 79, 0.5); }
.badge-inline { position: static; margin-bottom: 18px; }

.card-body { padding: 20px 22px 24px; position: relative; z-index: 2; }
.card-cat {
  font-family: var(--font-head);
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--moon);
  opacity: 0.85;
}
.card-title {
  font-family: var(--font-head);
  font-size: 1.12rem;
  font-weight: 600;
  color: #eee5cd;
  margin: 8px 0 14px;
  line-height: 1.35;
}
.card-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}
.card-price {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--gold-bright);
}
.card-edition { font-size: 0.72rem; color: var(--text-dim); letter-spacing: 0.04em; }

/* ---------- Category rooms ---------- */
.section-rooms { background: linear-gradient(180deg, transparent, rgba(13, 19, 39, 0.55) 25%, rgba(13, 19, 39, 0.55) 75%, transparent); }
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}
.room-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  grid-column: span 2;
  border: 1px solid rgba(212, 169, 78, 0.1);
  transition: border-color 0.4s ease, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s ease;
  display: block;
}
.room-card.room-wide { grid-column: span 4; grid-row: span 1; aspect-ratio: auto; min-height: 100%; }
.room-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 169, 78, 0.5);
  box-shadow: 0 26px 60px -20px rgba(0, 0, 0, 0.95), 0 0 44px -14px rgba(212, 169, 78, 0.35);
}
.room-card img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.room-card:hover img { transform: scale(1.08); }
.room-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 10, 20, 0.92) 8%, rgba(7, 10, 20, 0.25) 55%, rgba(7, 10, 20, 0.35));
  transition: background 0.5s;
}
.room-door {
  /* candlelight seeping from under a door on hover */
  position: absolute;
  left: 10%; right: 10%; bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold-bright), transparent);
  opacity: 0;
  filter: blur(2px);
  transition: opacity 0.5s ease;
}
.room-card:hover .room-door { opacity: 1; }
.room-info {
  position: absolute;
  left: 24px; right: 24px; bottom: 22px;
  z-index: 2;
}
.room-info h3 {
  font-family: var(--font-head);
  font-size: 1.35rem;
  color: #f0e6ca;
  margin-bottom: 4px;
}
.room-info p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.98rem;
  color: rgba(211, 217, 230, 0.75);
  margin-bottom: 10px;
}
.room-count {
  font-family: var(--font-head);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(212, 169, 78, 0.35);
  border-radius: 999px;
  padding: 5px 12px;
  display: inline-block;
  background: rgba(7, 10, 20, 0.5);
  backdrop-filter: blur(4px);
}

/* ---------- Auction teaser (homepage) ---------- */
.section-auction-teaser { overflow: hidden; }
.auction-teaser-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  filter: blur(26px) saturate(1.3);
  transform: scale(1.15);
}
.section-auction-teaser::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--ink), transparent 25%, transparent 75%, var(--ink));
}
.auction-teaser {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 70px;
  align-items: center;
}
.auction-teaser-text .section-title { margin-bottom: 16px; }
.auction-teaser-text > p {
  font-family: var(--font-serif);
  font-size: 1.18rem;
  font-style: italic;
  color: var(--text-dim);
  margin-bottom: 26px;
  max-width: 440px;
}
.teaser-lot {
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-left: 2px solid var(--gold);
  padding-left: 18px;
  margin-bottom: 26px;
}
.teaser-lot-name { font-family: var(--font-head); font-size: 1.1rem; color: #eee5cd; }
.teaser-lot-bid { color: var(--text-dim); font-size: 0.92rem; }
.teaser-lot-bid strong { color: var(--gold-bright); font-size: 1.1rem; }
.auction-teaser-img { position: relative; }
.teaser-frame {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(212, 169, 78, 0.25);
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.95), 0 0 60px -18px rgba(226, 86, 79, 0.25);
  position: relative;
}
.teaser-frame::after {
  content: '';
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(212, 169, 78, 0.2);
  border-radius: 8px;
  pointer-events: none;
}

/* ---------- Countdown ---------- */
.countdown {
  display: inline-flex;
  gap: 10px;
  font-variant-numeric: tabular-nums;
}
.cd-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 52px;
  background: rgba(212, 169, 78, 0.06);
  border: 1px solid rgba(212, 169, 78, 0.18);
  border-radius: 8px;
  padding: 8px 8px 6px;
}
.cd-num {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold-bright);
  line-height: 1.1;
}
.cd-label {
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.countdown-lg { margin-bottom: 30px; }
.countdown-lg .cd-cell { min-width: 66px; padding: 12px 10px 9px; }
.countdown-lg .cd-num { font-size: 1.8rem; }
.countdown.urgent .cd-cell { border-color: rgba(226, 86, 79, 0.5); background: rgba(226, 86, 79, 0.07); }
.countdown.urgent .cd-num { color: #ff8f89; animation: urgentBlink 1s ease-in-out infinite; }
@keyframes urgentBlink { 50% { opacity: 0.55; } }

/* ---------- Story ---------- */
.section-story { overflow: hidden; }
.story-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 80px;
  align-items: center;
}
.story-text .section-title { margin-bottom: 22px; }
.story-text p {
  font-family: var(--font-serif);
  font-size: 1.22rem;
  color: rgba(211, 217, 230, 0.85);
  margin-bottom: 18px;
}
.story-sign { margin-top: 34px; }
.story-sign-name {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
  transform: rotate(-3deg);
}
.story-sign-title {
  font-family: var(--font-head);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.story-images { position: relative; height: 520px; }
.story-img {
  position: absolute;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(212, 169, 78, 0.2);
  box-shadow: var(--shadow-card);
}
.story-img img { width: 100%; height: 100%; object-fit: cover; }
.story-img-1 { width: 62%; height: 74%; top: 0; left: 0; z-index: 2; }
.story-img-2 { width: 52%; height: 60%; bottom: 0; right: 0; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  padding: 190px 0 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 2;
}
.page-hero-glow {
  position: absolute;
  top: -40%; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 500px;
  background: radial-gradient(ellipse, rgba(212, 169, 78, 0.13), transparent 65%);
  pointer-events: none;
}
.page-hero-glow.glow-red { background: radial-gradient(ellipse, rgba(226, 86, 79, 0.12), transparent 65%); }
.page-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  margin: 10px 0 16px;
  text-transform: uppercase;
}
.page-sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--text-dim);
  max-width: 520px;
  margin: 0 auto;
}

/* ---------- Filter bar ---------- */
.section-catalog { padding-top: 30px; }
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 54px;
}
.filter-btn {
  font-family: var(--font-head);
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
  background: rgba(212, 169, 78, 0.03);
  border: 1px solid rgba(212, 169, 78, 0.16);
  border-radius: 999px;
  padding: 10px 22px;
  transition: all 0.35s ease;
}
.filter-btn:hover { color: var(--gold-bright); border-color: rgba(212, 169, 78, 0.45); }
.filter-btn.active {
  color: #161003;
  background: linear-gradient(135deg, var(--gold-deep), var(--gold) 60%, var(--gold-bright));
  border-color: transparent;
  box-shadow: 0 6px 24px -8px rgba(212, 169, 78, 0.6);
}
.catalog-grid .product-card.filtered-out { display: none; }

/* ---------- Product detail ---------- */
.section-product { padding-top: 150px; }
.back-link {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 40px;
  transition: color 0.3s, transform 0.3s;
}
.back-link:hover { color: var(--gold-bright); transform: translateX(-4px); }

.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 110px;
}
.product-stage { position: relative; }
.stage-glow {
  position: absolute;
  inset: -60px;
  background: radial-gradient(ellipse 60% 55% at 50% 45%, rgba(212, 169, 78, 0.14), transparent 70%);
  pointer-events: none;
}
.stage-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(212, 169, 78, 0.28);
  box-shadow: 0 40px 90px -24px rgba(0, 0, 0, 0.95);
}
.stage-frame::after {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(212, 169, 78, 0.22);
  border-radius: 8px;
  pointer-events: none;
}
.stage-pedestal {
  margin: 26px auto 0;
  width: 70%;
  height: 16px;
  background: radial-gradient(ellipse at center, rgba(212, 169, 78, 0.3), transparent 70%);
  filter: blur(6px);
}

.product-info { padding-top: 12px; }
.product-title { font-family: var(--font-display); font-size: clamp(1.8rem, 3.4vw, 2.6rem); margin: 12px 0 18px; line-height: 1.2; text-transform: uppercase; }
.product-desc {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: rgba(211, 217, 230, 0.88);
  margin-bottom: 30px;
}
.spec-list {
  display: flex;
  gap: 16px;
  margin-bottom: 34px;
}
.spec {
  flex: 1;
  background: rgba(212, 169, 78, 0.045);
  border: 1px solid rgba(212, 169, 78, 0.14);
  border-radius: 10px;
  padding: 14px 18px;
  text-align: center;
}
.spec dt {
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 4px;
}
.spec dd { font-family: var(--font-head); font-size: 1.05rem; color: var(--gold-bright); }

.product-buy {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 26px;
}
.product-price {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--gold-bright);
  text-shadow: 0 0 30px rgba(212, 169, 78, 0.35);
}
.btn-cart.added { background: linear-gradient(135deg, #2c5c46, #3f9c72); color: #eafff4; }

.product-auction-box {
  background: linear-gradient(160deg, rgba(226, 86, 79, 0.07), rgba(13, 18, 36, 0.5));
  border: 1px solid rgba(226, 86, 79, 0.3);
  border-radius: var(--radius);
  padding: 26px;
  margin-bottom: 26px;
}
.pab-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}
.pab-label {
  display: block;
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 6px;
}
.pab-bid {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 500;
  color: var(--gold-bright);
}
.pab-bid.bumped { animation: bidBump 0.6s cubic-bezier(0.34, 1.56, 0.64, 1); }
@keyframes bidBump {
  0% { transform: scale(1); }
  40% { transform: scale(1.18); color: #b7f0cf; }
  100% { transform: scale(1); }
}

.authenticity-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.86rem;
  color: var(--text-dim);
}
.authenticity-note svg { flex-shrink: 0; margin-top: 3px; color: var(--gold); }

.related { margin-top: 20px; }

/* ---------- Auction page ---------- */
.auction-list { display: flex; flex-direction: column; gap: 40px; }
.auction-lot {
  position: relative;
  display: grid;
  grid-template-columns: 300px 1fr 280px;
  gap: 40px;
  background: linear-gradient(170deg, var(--ink-3), var(--ink-2) 75%);
  border: 1px solid rgba(212, 169, 78, 0.12);
  border-radius: var(--radius);
  padding: 34px;
  transition: border-color 0.4s, box-shadow 0.4s;
}
.auction-lot:hover {
  border-color: rgba(212, 169, 78, 0.35);
  box-shadow: 0 24px 70px -22px rgba(0, 0, 0, 0.9), 0 0 46px -16px rgba(212, 169, 78, 0.22);
}
.lot-number {
  position: absolute;
  top: 18px; right: 26px;
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: rgba(212, 169, 78, 0.12);
  pointer-events: none;
}
.lot-img {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(212, 169, 78, 0.18);
  display: block;
}
.lot-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1); }
.lot-img:hover img { transform: scale(1.06); }
.lot-info { padding-top: 8px; }
.lot-title { font-family: var(--font-head); font-size: 1.55rem; margin: 8px 0 12px; }
.lot-title a { color: #eee5cd; transition: color 0.3s; }
.lot-title a:hover { color: var(--gold-bright); }
.lot-desc {
  font-family: var(--font-serif);
  font-size: 1.08rem;
  color: var(--text-dim);
  margin-bottom: 20px;
  max-width: 480px;
}
.lot-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  font-size: 0.84rem;
  color: var(--text-dim);
}
.lot-stats strong { color: var(--text); }
.lot-watchers { display: inline-flex; align-items: center; gap: 8px; }
.lot-bidding {
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: center;
  border-left: 1px solid rgba(212, 169, 78, 0.12);
  padding-left: 34px;
}
.bid-hint { font-size: 0.74rem; color: var(--text-dim); text-align: center; }
.auction-demo-note {
  text-align: center;
  margin-top: 50px;
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--text-dim);
}

/* bid sparkle burst */
.spark {
  position: fixed;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold-bright);
  pointer-events: none;
  z-index: 150;
  box-shadow: 0 0 8px rgba(242, 211, 138, 0.9);
}

/* ---------- Newsletter + Footer ---------- */
.site-footer {
  position: relative;
  z-index: 2;
  margin-top: 60px;
  padding: 0 0 36px;
  background: linear-gradient(180deg, transparent, rgba(10, 14, 28, 0.9) 30%);
}
.footer-glow {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: min(900px, 90vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 169, 78, 0.5), transparent);
}
.newsletter {
  text-align: center;
  padding: 70px 20px 60px;
  max-width: 560px;
  margin: 0 auto;
}
.newsletter-owl { font-size: 2.2rem; margin-bottom: 12px; animation: keyFloat 3s ease-in-out infinite; display: inline-block; }
.newsletter-title { font-family: var(--font-head); font-size: 1.7rem; color: #ecdfc0; margin-bottom: 10px; }
.newsletter-text { font-family: var(--font-serif); font-size: 1.1rem; color: var(--text-dim); margin-bottom: 26px; }
.newsletter-form { display: flex; gap: 12px; }
.newsletter-form input {
  flex: 1;
  background: rgba(212, 169, 78, 0.05);
  border: 1px solid rgba(212, 169, 78, 0.22);
  border-radius: 4px;
  padding: 14px 18px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.newsletter-form input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 169, 78, 0.15);
}
.newsletter-form input::placeholder { color: var(--text-dim); }
.newsletter-done { margin-top: 16px; color: var(--gold-bright); font-family: var(--font-serif); font-size: 1.15rem; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 50px;
  padding: 50px 0;
  border-top: var(--border-faint);
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold-bright);
  margin-bottom: 14px;
}
.footer-logo svg { color: var(--gold); }
.footer-col h4 {
  font-family: var(--font-head);
  font-size: 0.8rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.footer-col p, .footer-col a { font-size: 0.92rem; color: var(--text-dim); }
.footer-col a { display: block; margin-bottom: 10px; transition: color 0.3s, transform 0.3s; }
.footer-col a:hover { color: var(--gold-bright); }
.footer-social { margin-top: 18px; }
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border: 1px solid rgba(212, 169, 78, 0.25);
  border-radius: 50%;
  color: var(--text-dim);
  transition: all 0.35s ease;
}
.footer-social a:hover {
  color: var(--gold-bright);
  border-color: var(--gold);
  box-shadow: 0 0 20px -4px rgba(212, 169, 78, 0.5);
  transform: translateY(-2px);
}
.footer-bottom {
  padding-top: 26px;
  border-top: var(--border-faint);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: var(--text-dim);
}
.footer-note { opacity: 0.7; }

/* ---------- Demo ribbon ---------- */
.demo-ribbon {
  position: fixed;
  bottom: 22px; left: -34px;
  z-index: 90;
  background: rgba(212, 169, 78, 0.92);
  color: #161003;
  font-family: var(--font-head);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 6px 40px;
  transform: rotate(45deg);
  transform-origin: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  pointer-events: none;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .auction-lot { grid-template-columns: 240px 1fr; }
  .lot-bidding {
    grid-column: 1 / -1;
    border-left: none;
    border-top: 1px solid rgba(212, 169, 78, 0.12);
    padding: 26px 0 0;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 26px;
  }
  .lot-bidding .btn { flex: 1; min-width: 200px; }
  .auction-teaser { grid-template-columns: 1fr; gap: 46px; }
  .story-grid { grid-template-columns: 1fr; gap: 50px; }
  .story-images { height: 440px; }
  .product-detail { grid-template-columns: 1fr; gap: 50px; }
}

@media (max-width: 860px) {
  .main-nav {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(320px, 80vw);
    background: rgba(9, 13, 26, 0.97);
    backdrop-filter: blur(18px);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0 44px;
    gap: 30px;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    border-left: var(--border-faint);
    z-index: 99;
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav .nav-link { font-size: 1rem; }
  .burger { display: block; z-index: 100; }
  .rooms-grid { grid-template-columns: repeat(2, 1fr); }
  .room-card, .room-card.room-wide { grid-column: span 1; aspect-ratio: 4 / 5; }
  .hero .hero-pagination { right: 5vw; bottom: 10vh; }
  .hero-content { bottom: 14vh; }
}

@media (max-width: 600px) {
  .section { padding: 70px 0; }
  .logo-tag { display: none; }
  .logo-name { font-size: 1.02rem; }
  .logo { gap: 8px; }
  .logo-key { width: 26px; height: 26px; }
  .header-inner { gap: 12px; }
  .lang-toggle { padding: 4px 10px; font-size: 0.7rem; }
  .rooms-grid { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; }
  .spec-list { flex-direction: column; }
  .auction-lot { grid-template-columns: 1fr; padding: 24px; }
  .lot-img { max-width: 320px; }
  .product-buy { flex-direction: column; align-items: flex-start; gap: 16px; }
  .hero-content { max-width: 90vw; }
  .story-images { height: 340px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}
