/* ===========================================================================
   Furnobly · LUXE layer  (progressive enhancement, loaded after styles.css)
   Cinematic depth, glassmorphism, motion, custom cursor, 3D showroom.
   Honors the brand: sharp corners, cobalt #1546BA / indigo #1B2143, RTL-safe.
   Everything here degrades gracefully: if luxe.js never runs, the base site
   is untouched. All motion respects prefers-reduced-motion.
   =========================================================================== */

:root {
  --lx-ease: cubic-bezier(.22, 1, .36, 1);          /* smooth easeOut */
  --lx-ease-soft: cubic-bezier(.4, 0, .2, 1);
  --lx-glass: rgba(255, 255, 255, .62);
  --lx-glass-line: rgba(255, 255, 255, .55);
  --lx-ink-glass: rgba(27, 33, 67, .55);
}

/* ===========================================================================
   1 · AMBIENT BACKGROUND  (soft gradient blobs + grain + mesh)
   Fixed behind everything. Not inside #app, so the global sharp-corner rule
   does not touch it; blobs may stay round on purpose.
   =========================================================================== */
.lx-ambient {
  position: fixed; inset: 0; z-index: -2; overflow: hidden;
  pointer-events: none; contain: strict;
}
.lx-blob {
  position: absolute; border-radius: 50%;
  filter: blur(70px); opacity: .5; will-change: transform;
  mix-blend-mode: multiply;
}
.lx-blob--1 { width: 46vw; height: 46vw; inset-block-start: -12vw; inset-inline-start: -8vw;
  background: radial-gradient(circle at 30% 30%, #C2D1F9, transparent 70%);
  animation: lxDrift1 26s var(--lx-ease-soft) infinite alternate; }
.lx-blob--2 { width: 40vw; height: 40vw; inset-block-start: 28vh; inset-inline-end: -10vw;
  background: radial-gradient(circle at 60% 40%, #FFF0D9, transparent 70%);
  animation: lxDrift2 32s var(--lx-ease-soft) infinite alternate; opacity: .55; }
.lx-blob--3 { width: 38vw; height: 38vw; inset-block-end: -14vw; inset-inline-start: 22vw;
  background: radial-gradient(circle at 50% 50%, #DDE4F7, transparent 72%);
  animation: lxDrift3 30s var(--lx-ease-soft) infinite alternate; }

@keyframes lxDrift1 { from { transform: translate3d(0,0,0) scale(1); } to { transform: translate3d(6vw, 5vh, 0) scale(1.12); } }
@keyframes lxDrift2 { from { transform: translate3d(0,0,0) scale(1.05); } to { transform: translate3d(-5vw, -4vh, 0) scale(.92); } }
@keyframes lxDrift3 { from { transform: translate3d(0,0,0) scale(.95); } to { transform: translate3d(4vw, -6vh, 0) scale(1.1); } }

/* fine film grain — SVG fractal noise, extremely subtle */
.lx-grain {
  position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

/* ===========================================================================
   2 · LUXURY LOADER
   =========================================================================== */
.lx-loader {
  position: fixed; inset: 0; z-index: 9999;
  display: grid; place-items: center;
  background: linear-gradient(180deg, #fff, #F7F8F9);
  transition: opacity .7s var(--lx-ease), visibility .7s;
}
.lx-loader.lx-done { opacity: 0; visibility: hidden; }
.lx-loader-in { display: flex; flex-direction: column; align-items: center; gap: 22px; }
.lx-loader-logo { height: 40px; width: auto; opacity: 0;
  animation: lxLogoIn 1s var(--lx-ease) forwards; }
@keyframes lxLogoIn {
  0% { opacity: 0; transform: translateY(14px) scale(.96); filter: blur(6px); }
  100% { opacity: 1; transform: none; filter: blur(0); }
}
.lx-bar { width: 168px; height: 2px; background: var(--line); position: relative; overflow: hidden; }
.lx-bar > i { position: absolute; inset: 0; inset-inline-end: auto; width: 0%;
  background: linear-gradient(90deg, var(--cobalt), var(--indigo));
  transition: width .25s var(--lx-ease-soft); }
.lx-loader-tag { font-family: var(--font-head); font-size: .78rem; letter-spacing: .16em;
  text-transform: uppercase; color: var(--muted); opacity: .9; }

/* ===========================================================================
   3 · CUSTOM CURSOR + SPOTLIGHT  (pointer:fine only)
   =========================================================================== */
.lx-cursor-dot, .lx-cursor-ring, .lx-spot { display: none; }
@media (hover: hover) and (pointer: fine) {
  html.lx-cursor, html.lx-cursor * { cursor: none !important; }
  .lx-cursor-dot {
    display: block; position: fixed; z-index: 10000; top: 0; left: 0;
    width: 7px; height: 7px; border-radius: 50%; background: var(--cobalt);
    transform: translate(-50%, -50%); pointer-events: none;
    transition: width .2s var(--lx-ease), height .2s var(--lx-ease), background .2s;
  }
  .lx-cursor-ring {
    display: block; position: fixed; z-index: 10000; top: 0; left: 0;
    width: 34px; height: 34px; border-radius: 50%;
    border: 1.5px solid rgba(21, 70, 186, .45);
    transform: translate(-50%, -50%); pointer-events: none;
    transition: width .28s var(--lx-ease), height .28s var(--lx-ease),
                border-color .28s, background .28s, opacity .28s;
  }
  .lx-spot {
    display: block; position: fixed; z-index: -1; top: 0; left: 0;
    width: 520px; height: 520px; border-radius: 50%;
    transform: translate(-50%, -50%); pointer-events: none; opacity: .5;
    background: radial-gradient(circle, rgba(194, 209, 249, .35), transparent 65%);
    transition: opacity .4s ease;
  }
  /* hover states (toggled by JS) */
  html.lx-hot .lx-cursor-ring { width: 56px; height: 56px; border-color: rgba(21,70,186,.7); background: rgba(21,70,186,.06); }
  html.lx-hot .lx-cursor-dot  { width: 5px; height: 5px; }
  html.lx-view .lx-cursor-ring { width: 78px; height: 78px; border-color: rgba(27,33,67,.5); background: rgba(255,255,255,.05); }
  html.lx-down .lx-cursor-ring { width: 26px; height: 26px; }
}

/* ===========================================================================
   4 · NAVBAR — shrink + deepen on scroll (base already has glass + underline)
   =========================================================================== */
.site-header { transition: height .3s var(--lx-ease), background .3s var(--lx-ease),
  box-shadow .3s var(--lx-ease), backdrop-filter .3s var(--lx-ease); }
.site-header .header-inner { transition: height .3s var(--lx-ease); }
.site-header.lx-shrink {
  background: rgba(255, 255, 255, .8);
  backdrop-filter: saturate(160%) blur(16px);
  box-shadow: 0 10px 30px -18px rgba(27, 33, 67, .35);
}
.site-header.lx-shrink .header-inner { height: 60px; }
.site-header.lx-shrink .brand img { height: 26px; }
.brand img { transition: height .3s var(--lx-ease); }
/* subtle scroll-progress hairline under the header */
.site-header::after {
  content: ""; position: absolute; inset-block-end: -1px; inset-inline-start: 0;
  height: 2px; width: var(--lx-scroll, 0%);
  background: linear-gradient(90deg, var(--cobalt), var(--indigo));
  opacity: .9; transition: width .1s linear;
}

/* ===========================================================================
   5 · SCROLL REVEAL — extend base .reveal with directional + scale + stagger
   Base styles.css already defines .reveal (fade-up) and .reveal.in.
   These add expressive variants without overriding the default.
   =========================================================================== */
.reveal { transition: opacity .8s var(--lx-ease), transform .8s var(--lx-ease), filter .8s var(--lx-ease); }
.reveal[data-rv="left"]  { transform: translateX(-34px); }
.reveal[data-rv="right"] { transform: translateX(34px); }
.reveal[data-rv="scale"] { transform: scale(.92); }
.reveal[data-rv="blur"]  { filter: blur(8px); transform: translateY(20px); }
.reveal.in { opacity: 1; transform: none; filter: none; }
/* stagger: children animate in sequence once parent is .in */
[data-stagger] > * { opacity: 0; transform: translateY(22px);
  transition: opacity .7s var(--lx-ease), transform .7s var(--lx-ease); }
[data-stagger].in > * { opacity: 1; transform: none; }
[data-stagger].in > *:nth-child(1) { transition-delay: .04s; }
[data-stagger].in > *:nth-child(2) { transition-delay: .10s; }
[data-stagger].in > *:nth-child(3) { transition-delay: .16s; }
[data-stagger].in > *:nth-child(4) { transition-delay: .22s; }
[data-stagger].in > *:nth-child(5) { transition-delay: .28s; }
[data-stagger].in > *:nth-child(6) { transition-delay: .34s; }
[data-stagger].in > *:nth-child(7) { transition-delay: .40s; }
[data-stagger].in > *:nth-child(8) { transition-delay: .46s; }

/* ===========================================================================
   6 · PAGE TRANSITION — every route swap re-creates .view, so animate it.
   Zero-JS: the keyframe runs on each render.
   =========================================================================== */
.view { animation: lxViewIn .6s var(--lx-ease) both; }
@keyframes lxViewIn {
  0%   { opacity: 0; transform: translateY(10px) scale(.994); filter: blur(6px); }
  100% { opacity: 1; transform: none; filter: blur(0); }
}

/* ===========================================================================
   7 · CARD MICRO-INTERACTIONS  (premium lift + glass spec, sharp corners kept)
   JS adds .lx-tilt and sets --rx/--ry for the 3D tilt.
   =========================================================================== */
.prod-card, .cat-tile, .style-card, .plan {
  transition: transform .5s var(--lx-ease), box-shadow .5s var(--lx-ease), border-color .35s ease;
}
.lx-tilt { transform: perspective(900px) rotateX(var(--ry, 0deg)) rotateY(var(--rx, 0deg)) translateY(-6px); }
.prod-card.lx-tilt { box-shadow: 0 30px 60px -28px rgba(27, 33, 67, .45); }
.prod-card .prod-media img { transition: transform .7s var(--lx-ease); }
.prod-card.lx-tilt .prod-media img { transform: scale(1.07); }

/* quick-spec ribbon that fades in on hover over a product card */
.prod-media { position: relative; }
.lx-quick {
  position: absolute; inset-inline: 0; inset-block-end: 0; z-index: 3;
  display: flex; gap: 8px; padding: 10px 12px;
  background: linear-gradient(0deg, rgba(27,33,67,.78), transparent);
  opacity: 0; transform: translateY(8px);
  transition: opacity .35s var(--lx-ease), transform .35s var(--lx-ease);
  pointer-events: none;
}
.prod-card:hover .lx-quick, .prod-card.lx-tilt .lx-quick { opacity: 1; transform: none; }
.lx-quick span {
  font-size: .72rem; font-weight: 600; color: #fff;
  background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.22);
  padding: 4px 9px; backdrop-filter: blur(4px); white-space: nowrap;
}

/* category & style cards — gradient border glow on hover */
.cat-tile, .style-card { position: relative; }
.cat-tile::before, .style-card::before {
  content: ""; position: absolute; inset: 0; z-index: 4; pointer-events: none;
  border: 1.5px solid transparent;
  background: linear-gradient(120deg, var(--cobalt), var(--cotton), var(--sand)) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0; transition: opacity .4s var(--lx-ease);
}
.cat-tile:hover::before, .style-card:hover::before { opacity: 1; }
.style-card.lx-tilt { box-shadow: 0 26px 54px -30px rgba(27,33,67,.4); }

/* ===========================================================================
   8 · BUTTONS — magnetic lift, animated sheen, arrow travel
   =========================================================================== */
.btn--primary, .btn--lg, .btn--dark { position: relative; overflow: hidden; }
.btn--primary::after, .btn--dark::after {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(110deg, transparent 20%, rgba(255,255,255,.28) 50%, transparent 80%);
  transform: translateX(-120%); transition: transform .7s var(--lx-ease);
}
.btn--primary:hover::after, .btn--dark:hover::after { transform: translateX(120%); }
.btn--primary > *, .btn--dark > * { position: relative; z-index: 1; }
.btn .icon { transition: transform .35s var(--lx-ease); }
.btn:hover .icon { transform: translateX(4px); }
html[dir="rtl"] .btn:hover .icon { transform: translateX(-4px); }
.btn.lx-mag { transition: transform .25s var(--lx-ease), background .2s ease, color .2s ease,
  border-color .2s ease, box-shadow .25s var(--lx-ease); }
.btn.lx-mag:hover { transform: translateY(-3px); }

/* glass button variant referenced by hero CTAs */
.btn--glass {
  background: var(--lx-glass); color: var(--indigo);
  border-color: var(--lx-glass-line); backdrop-filter: blur(10px) saturate(140%);
}
.btn--glass:hover { background: rgba(255,255,255,.8); box-shadow: 0 12px 30px -16px rgba(27,33,67,.4); }

/* ===========================================================================
   9 · STATS / NUMBERS BAND  (injected on the home view by luxe.js)
   =========================================================================== */
.lx-stats { background: var(--indigo); color: #fff; position: relative; overflow: hidden; }
.lx-stats::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(900px 360px at 15% -10%, rgba(21,70,186,.55), transparent 70%),
              radial-gradient(700px 300px at 90% 120%, rgba(194,209,249,.18), transparent 70%);
  pointer-events: none;
}
.lx-stats .wrap { position: relative; display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 26px; padding-block: 64px; }
.lx-stat { text-align: center; }
.lx-stat-n { font-family: var(--font-head); font-weight: 700;
  font-size: clamp(2.1rem, 5vw, 3.2rem); line-height: 1; letter-spacing: -.01em;
  background: linear-gradient(180deg, #fff, #C2D1F9); -webkit-background-clip: text;
  background-clip: text; color: transparent; }
.lx-stat-n .lx-suf { -webkit-text-fill-color: var(--cotton); color: var(--cotton); font-size: .6em; }
.lx-stat-l { margin-top: 10px; font-size: .92rem; color: rgba(255,255,255,.74); letter-spacing: .02em; }
@media (max-width: 720px) { .lx-stats .wrap { grid-template-columns: repeat(2, 1fr); gap: 30px 16px; } }

/* ===========================================================================
   10 · 3D SHOWROOM  (injected on the home view; canvas mounted lazily)
   =========================================================================== */
.lx-show3d {
  position: relative; overflow: hidden;
  background: radial-gradient(120% 120% at 50% 0%, #12162e 0%, #0c0f22 60%, #090b1a 100%);
  color: #fff; min-height: 560px;
}
.lx-show3d .wrap { position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 30px; align-items: center;
  min-height: 560px; padding-block: 60px; }
.lx-show3d-copy { max-width: 460px; }
.lx-show3d-copy .eyebrow { color: var(--cotton); }
.lx-show3d-copy .eyebrow::before { background: var(--cotton); }
.lx-show3d-copy h2 { color: #fff; font-size: clamp(1.9rem, 4vw, 2.9rem); }
.lx-show3d-copy p { color: rgba(255,255,255,.74); font-size: 1.06rem; }
.lx-canvas-wrap { position: relative; height: 460px; min-width: 0; }
.lx-canvas-wrap canvas { display: block; width: 100% !important; height: 100% !important; }
.lx-3d-hint {
  position: absolute; inset-block-end: 14px; inset-inline-start: 50%; transform: translateX(-50%);
  z-index: 3; display: inline-flex; align-items: center; gap: 8px;
  font-size: .8rem; color: rgba(255,255,255,.7);
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14);
  padding: 7px 14px; backdrop-filter: blur(6px); white-space: nowrap;
  opacity: 0; animation: lxFadeIn .8s var(--lx-ease) .6s forwards;
}
.lx-3d-fallback { position: absolute; inset: 0; display: grid; place-items: center;
  background-size: cover; background-position: center; }
.lx-3d-fallback::after { content: ""; position: absolute; inset: 0; background: rgba(12,15,34,.45); }
@keyframes lxFadeIn { to { opacity: 1; } }
@media (max-width: 900px) {
  .lx-show3d .wrap { grid-template-columns: 1fr; gap: 18px; }
  .lx-canvas-wrap { height: 360px; order: -1; }
  .lx-show3d { min-height: 0; }
}

/* ===========================================================================
   11 · REDUCED MOTION — disable the expensive stuff, keep it readable
   =========================================================================== */
@media (prefers-reduced-motion: reduce) {
  .lx-blob { animation: none !important; }
  .view { animation: none !important; }
  .lx-loader-logo { animation: none; opacity: 1; }
  .reveal, [data-stagger] > * { transition: opacity .3s ease !important; transform: none !important; filter: none !important; }
  .btn--primary::after, .btn--dark::after { display: none; }
  .lx-tilt { transform: translateY(-4px) !important; }
}
/* touch / coarse pointers: no custom cursor, lighter ambient */
@media (hover: none) {
  .lx-spot { display: none; }
  .lx-blob { filter: blur(60px); opacity: .4; }
}

/* ===========================================================================
   12 · HERO LAMP "TURN-ON" INTRO  (bedroom hero shot)
   Room opens dark, the bulb catches with a flicker, warm glow blooms in.
   Plays once per page load; after it ends the configurator behaves normally.
   =========================================================================== */
.rc-lamp-night, .rc-lamp-glow {
  position: absolute; inset: 0; z-index: 5; pointer-events: none;
}
.rc-lamp-night {
  opacity: 0;
  background:
    radial-gradient(46% 42% at 48% 35%, rgba(8,11,26,0) 0%, rgba(7,10,24,.5) 60%, rgba(4,6,16,.84) 100%),
    linear-gradient(180deg, rgba(6,9,22,.55), rgba(4,6,16,.74));
}
.rc-lamp-glow {
  opacity: 0; transition: opacity .9s ease; mix-blend-mode: screen;
  background: radial-gradient(30% 34% at 48% 33%,
    rgba(255,221,160,.95) 0%, rgba(255,194,120,.55) 34%, rgba(255,170,90,.18) 55%, transparent 70%);
}
/* OFF: room dark, lamp not yet lit */
.rc-stage.lamp-intro .rc-tilt { filter: brightness(.17) saturate(.55) contrast(1.05); }
.rc-stage.lamp-intro .rc-lamp-night { opacity: 1; }
/* turning ON: a single, very slow, smooth swell — no flicker, cinematic */
.rc-stage.lamp-on .rc-tilt       { animation: rcLampBright 2s cubic-bezier(.42,0,.3,1) forwards; }
.rc-stage.lamp-on .rc-lamp-night { animation: rcLampNight  2s cubic-bezier(.42,0,.3,1) forwards; }
.rc-stage.lamp-on .rc-lamp-glow  { animation: rcLampGlow   2s ease-out forwards; }
@keyframes rcLampBright {
  0%   { filter: brightness(.16) saturate(.5); }
  100% { filter: brightness(1)   saturate(1); }
}
@keyframes rcLampGlow {
  0%   { opacity: 0; }
  75%  { opacity: .85; }
  100% { opacity: .5; }
}
@keyframes rcLampNight {
  0%   { opacity: 1; }
  100% { opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .rc-stage.lamp-intro .rc-tilt { filter: none; }
  .rc-stage.lamp-intro .rc-lamp-night, .rc-stage.lamp-intro .rc-lamp-glow { opacity: 0; }
}

/* ===========================================================================
   13 · HEADER — centered logo, split menu, transparent over the hero
   =========================================================================== */
.header-inner { position: relative; gap: 16px; }
.site-header .brand {
  position: absolute; left: 50%; transform: translateX(-50%); margin: 0; z-index: 2;
}
.main-nav--start { margin-inline-start: 0; margin-inline-end: auto; }
.main-nav--end   { margin-inline-start: 0; }
.header-tools    { margin-inline-start: 14px; }
.main-nav a, .icon-btn, .lang-toggle, .brand img { transition: color .3s var(--lx-ease), background .3s var(--lx-ease), border-color .3s var(--lx-ease), filter .3s var(--lx-ease); }

/* transparent state — only at the very top of the home hero */
body.hero-top .site-header { background: transparent; backdrop-filter: none; border-color: transparent; box-shadow: none; }
body.hero-top .site-header::after { opacity: 0; }
body.hero-top .main-nav a { color: #fff; }
body.hero-top .main-nav a::after { background: #fff; }
body.hero-top .main-nav a:hover { color: rgba(255,255,255,.82); }
body.hero-top .icon-btn { color: #fff; }
body.hero-top .icon-btn:hover { background: rgba(255,255,255,.16); color: #fff; }
body.hero-top .lang-toggle { color: #fff; border-color: rgba(255,255,255,.45); }
body.hero-top .lang-toggle:hover { border-color: #fff; }
body.hero-top .brand img { filter: brightness(0) invert(1); }

@media (max-width: 860px) {
  .main-nav--start, .main-nav--end { display: none; }
  /* With the text navs gone, stop absolutely-centering the logo: on a narrow
     screen the centered wordmark overlaps the edge tools. Return it to flow and
     pin brand + tools to opposite ends. */
  .header-inner { justify-content: space-between; }
  .site-header .brand { position: static; left: auto; transform: none; }
  .header-tools { margin-inline-start: 0; }
}

/* ===========================================================================
   14 · FULL-BLEED LAMP HERO  (reference look)  — sits under the fixed header
   =========================================================================== */
.lh-hero {
  position: relative; z-index: 1;
  margin-top: calc(-1 * var(--header-h));
  height: 100svh; min-height: 600px; overflow: hidden;
  background: #0b0e20; color: #fff;
}
.lh-media { position: absolute; inset: 0; z-index: 1; }
.lh-img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 42%; }
.lh-shade {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background:
    linear-gradient(to top, rgba(7,9,20,.62) 0%, rgba(7,9,20,.12) 38%, transparent 60%),
    linear-gradient(to bottom, rgba(7,9,20,.28), transparent 22%);
}
.lh-overlay { position: absolute; inset: 0; z-index: 4; padding-top: var(--header-h); }
.lh-copy {
  position: absolute; inset-block-end: 9%; inset-inline-start: clamp(20px, 5vw, 64px);
  max-width: 640px;
}
.lh-eyebrow {
  display: inline-flex; align-items: center; gap: 11px;
  font-family: var(--font-head); font-size: .8rem; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase; color: rgba(255,255,255,.86);
  margin-bottom: 16px;
}
.lh-eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--sand); display: inline-block; }
.lh-h1 {
  color: #fff; margin: 0; font-weight: 700;
  font-size: clamp(2.3rem, 5.6vw, 4.6rem); line-height: 1.04; letter-spacing: -.012em;
  text-shadow: 0 2px 40px rgba(0,0,0,.45);
}
.lh-cta {
  position: absolute; inset-block-start: 50%; inset-inline-end: clamp(20px, 5vw, 64px);
  transform: translateY(-50%); display: flex; align-items: center; gap: 22px;
}
.lh-price { font-size: .98rem; font-weight: 500; color: rgba(255,255,255,.9); white-space: nowrap; }
.lh-price b { font-weight: 700; color: #fff; }
.lh-btn {
  background: #fff; color: var(--indigo); border-color: #fff;
  padding: 15px 32px; font-weight: 700; white-space: nowrap;
}
.lh-btn:hover { background: #fff; color: var(--cobalt); transform: translateY(-3px);
  box-shadow: 0 18px 44px -14px rgba(0,0,0,.6); }

@media (max-width: 860px) {
  .lh-hero { height: 90svh; min-height: 540px; }
  .lh-overlay { display: flex; flex-direction: column; justify-content: flex-end;
    padding: var(--header-h) clamp(20px, 6vw, 36px) 9vh; }
  .lh-copy, .lh-cta { position: static; inset: auto; transform: none; max-width: none; }
  .lh-cta { margin-top: 24px; justify-content: flex-start; gap: 18px; }
  .lh-h1 { font-size: clamp(2rem, 9vw, 3.1rem); }
}

/* lamp "turn-on" intro on the full-bleed hero (reuses the keyframes) */
.lh-night {
  position: absolute; inset: 0; z-index: 3; opacity: 0; pointer-events: none;
  background:
    radial-gradient(42% 40% at 50% 36%, rgba(8,11,26,0) 0%, rgba(5,7,18,.5) 60%, rgba(3,4,12,.85) 100%),
    linear-gradient(180deg, rgba(5,7,18,.5), rgba(3,4,12,.7));
}
.lh-glow {
  position: absolute; inset: 0; z-index: 3; opacity: 0; pointer-events: none;
  mix-blend-mode: screen; transition: opacity .9s ease;
  background: radial-gradient(26% 30% at 50% 36%,
    rgba(255,221,160,.95) 0%, rgba(255,194,120,.5) 36%, rgba(255,170,90,.16) 56%, transparent 70%);
}
.lh-hero.lamp-intro .lh-img { filter: brightness(.17) saturate(.55) contrast(1.05); }
.lh-hero.lamp-intro .lh-night { opacity: 1; }
.lh-hero.lamp-on .lh-img   { animation: rcLampBright 2s cubic-bezier(.42,0,.3,1) forwards; }
.lh-hero.lamp-on .lh-night { animation: rcLampNight  2s cubic-bezier(.42,0,.3,1) forwards; }
.lh-hero.lamp-on .lh-glow  { animation: rcLampGlow   2s ease-out forwards; }
@media (prefers-reduced-motion: reduce) {
  .lh-hero.lamp-intro .lh-img { filter: none; }
  .lh-hero.lamp-intro .lh-night, .lh-hero.lamp-intro .lh-glow { opacity: 0; }
}

/* ===========================================================================
   15 · SCROLL GALLERY  — scattered pile that fans out into a grid on pin/scrub
   (injected on the home view; animated by GSAP ScrollTrigger in luxe.js)
   =========================================================================== */
.gx { position: relative; height: 260vh; background: var(--white); }
.gx-stage {
  position: sticky; top: 0; height: 100vh; min-height: 620px; overflow: hidden;
}
.gx-text {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  z-index: 40; width: min(760px, 86%); text-align: center; pointer-events: none;
}
.gx-text .eyebrow { justify-content: center; }
.gx-text h2 {
  font-size: clamp(1.7rem, 3.8vw, 3rem); line-height: 1.22; color: var(--indigo); margin: 0;
}
.gx-card {
  position: absolute; transform: translate(-50%, -50%);
  overflow: hidden; box-shadow: var(--shadow-lg); background: var(--offwhite);
  z-index: 10; will-change: transform;
}
.gx-card img { width: 100%; height: 100%; object-fit: cover; display: block; }
/* fallback when GSAP is unavailable: a calm, readable static state */
.gx-text { opacity: 1; }
@media (max-width: 820px) {
  .gx { height: 230vh; }
  .gx-stage { height: 100svh; min-height: 560px; }
  .gx-text h2 { font-size: clamp(1.4rem, 6vw, 2rem); }
}
/* Mobile: the absolute collage is cut off on the side — lay the 6 images out
   as a calm static 2-column grid with the heading on top (no pin/scrub). */
@media (max-width: 700px) {
  .gx { height: auto; }
  .gx-stage {
    position: static; height: auto; min-height: 0; overflow: visible;
    display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
    padding: 6px clamp(16px, 4vw, 22px) 44px;
  }
  .gx-text {
    position: static; transform: none; width: 100%; grid-column: 1 / -1;
    margin: 6px 0 8px; opacity: 1;
  }
  .gx-card {
    position: static !important; transform: none !important; margin: 0 !important;
    left: auto !important; top: auto !important; width: 100% !important;
    aspect-ratio: 4 / 3; will-change: auto; box-shadow: var(--shadow);
  }
}
@media (prefers-reduced-motion: reduce) {
  .gx-card { box-shadow: var(--shadow); }
}

/* ===========================================================================
   16 · ABOUT — two-column editorial (text + image), Troscán-style layout
   Brand palette kept: indigo headline, cobalt accents, sharp corners, RTL-safe.
   =========================================================================== */
.ab { background: var(--offwhite); position: relative; }
.ab .wrap {
  display: grid; grid-template-columns: 1fr 1.04fr; gap: clamp(28px, 5vw, 72px);
  align-items: center; padding-block: clamp(64px, 8vw, 116px);
}
.ab-copy { max-width: 560px; }
.ab-eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-head); font-weight: 700; font-size: .82rem;
  letter-spacing: .12em; text-transform: uppercase; color: var(--cobalt);
  margin-bottom: 22px;
}
.ab-eyebrow::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--cobalt); }
.ab-copy h2 {
  font-size: clamp(2rem, 4.6vw, 3.5rem); line-height: 1.08; letter-spacing: -.012em;
  color: var(--indigo); margin: 0 0 26px;
}
.ab-copy p { color: var(--muted); font-size: 1.06rem; line-height: 1.85; margin: 0 0 16px; max-width: 480px; }
.ab-copy .btn { margin-top: 18px; }
.ab-media { position: relative; }
.ab-media img {
  width: 100%; height: clamp(380px, 42vw, 560px); object-fit: cover;
  box-shadow: var(--shadow-lg);
}
@media (max-width: 820px) {
  .ab .wrap { grid-template-columns: 1fr; gap: 28px; padding-block: 56px; }
  .ab-media { order: -1; }
  .ab-media img { height: clamp(260px, 60vw, 380px); }
  .ab-copy p { max-width: none; }
}

/* ===========================================================================
   17 · INTERACTIVE 3D STUDIO HERO — piece centred, product picker beside it
   =========================================================================== */
.h3 {
  position: relative; z-index: 1; margin-top: calc(-1 * var(--header-h));
  height: 100svh; min-height: 620px; overflow: hidden; color: #fff;
  background: #12162e;
}
/* room photo backdrop + scrim — furniture (canvas) renders on top, looks placed in the room */
.h3::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(130% 96% at 50% 110%, rgba(8,10,24,.72) 0%, rgba(8,10,24,.18) 52%, transparent 72%),
    linear-gradient(to top, rgba(8,10,24,.34) 0%, transparent 38%, rgba(8,10,24,.55) 100%),
    url("img/hero-room-new.png") center / cover no-repeat;
}
.h3-canvas { position: absolute; inset: 0; z-index: 1; }
/* ---- real-photo 360 turntable ---- */
/* pinned turntable: the <section> is a tall scroll TRACK; the inner .tt-pin
   sticks to the viewport while the chair scrubs a full 360° on scroll, then the
   page continues. Backdrop moves onto the pinned layer so it stays put. */
.h3--tt { cursor: default; height: 150svh; min-height: 0; overflow: visible; background: transparent; }
.h3--tt::before { display: none; }
.tt-pin {
  position: sticky; inset-block-start: 0; height: 100svh; min-height: 620px;
  overflow: hidden; background: #12162e; color: #fff;
}
.tt-pin::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(130% 96% at 50% 110%, rgba(8,10,24,.72) 0%, rgba(8,10,24,.18) 52%, transparent 72%),
    linear-gradient(to top, rgba(8,10,24,.34) 0%, transparent 38%, rgba(8,10,24,.55) 100%),
    url("img/hero-room-new.png") center / cover no-repeat;
}
.tt-stage { cursor: default; touch-action: auto; }
.tt-frame {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: min(78%, 560px); height: 82%; object-fit: contain; object-position: center bottom;
  will-change: opacity, transform; -webkit-user-drag: none; user-select: none; pointer-events: none;
  filter: drop-shadow(0 34px 42px rgba(0, 0, 0, .5));
}
.tt-shadow {
  position: absolute; left: 50%; bottom: 15%; width: 34%; max-width: 320px; height: 34px; z-index: 0;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, .42) 0%, rgba(0, 0, 0, 0) 70%);
  filter: blur(7px); pointer-events: none;
}
@media (max-width: 860px) {
  .tt-frame { width: min(88%, 420px); height: 74%; }
}
/* brand slogan — clean, readable line at the top-centre (below the logo) */
.h3-slogan {
  position: absolute; z-index: 4; inset-inline: 0;
  inset-block-start: 23%;
  text-align: center; pointer-events: none;
  font-family: var(--font-head); font-weight: 700; color: #fff;
  font-size: clamp(1.35rem, 2.5vw, 2.1rem); line-height: 1.25; letter-spacing: -.01em;
  text-shadow: 0 2px 26px rgba(0,0,0,.55);
}
.h3-slogan::after {
  content: ""; display: block; width: 54px; height: 2px; margin: 14px auto 0;
  background: var(--sand);
}
@media (max-width: 860px) { .h3-slogan { display: none; } }
.h3-canvas canvas { display: block; width: 100% !important; height: 100% !important; }
.h3-fallback { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: .5; }
.h3-info {
  position: absolute; z-index: 4; inset-block-end: 11%; inset-inline-start: clamp(20px, 5vw, 64px);
  max-width: 420px;
}
.h3 .eyebrow { color: var(--cotton); }
.h3 .eyebrow::before { background: var(--cotton); }
.h3-name { color: #fff; font-size: clamp(1.7rem, 3.4vw, 2.7rem); line-height: 1.12; margin: .2em 0 .4em; text-shadow: 0 2px 24px rgba(0,0,0,.65); }
.h3-lead { color: rgba(255,255,255,.86); font-size: 1.02rem; line-height: 1.7; margin: 0 0 22px; max-width: 380px; text-shadow: 0 1px 14px rgba(0,0,0,.6); }
.h3-rail {
  position: absolute; z-index: 4; inset-inline-end: clamp(14px, 3vw, 38px); inset-block-start: 50%;
  transform: translateY(-50%); display: flex; flex-direction: column; gap: 12px;
}
.h3-pick {
  width: 78px; height: 56px; padding: 0; overflow: hidden; background: none;
  border: 2px solid transparent; opacity: .5; box-shadow: 0 8px 22px -10px rgba(0,0,0,.6);
  transition: opacity .3s var(--lx-ease), border-color .3s, transform .3s var(--lx-ease);
}
.h3-pick img { width: 100%; height: 100%; object-fit: cover; }
.h3-pick:hover { opacity: .9; transform: translateX(-3px); }
html[dir="rtl"] .h3-pick:hover { transform: translateX(3px); }
.h3-pick.on { opacity: 1; border-color: #fff; }
.h3-hint {
  position: absolute; z-index: 4; inset-block-end: 18px; inset-inline-start: 50%; transform: translateX(-50%);
  font-size: .8rem; color: rgba(255,255,255,.7); background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14); padding: 7px 14px; backdrop-filter: blur(6px); white-space: nowrap;
}
@media (max-width: 860px) {
  /* Taller hero + the 3D piece confined to the lower band, so the copy at the
     top never sits on top of the model and the model isn't cut off. */
  .h3 { height: 100svh; min-height: 760px; }
  /* keep the turntable a tall pinned track on mobile too (the rule above targets
     every .h3, which would otherwise collapse the scroll track to one screen) */
  .h3--tt { height: 150svh; min-height: 0; }
  .tt-pin { min-height: 760px; }
  .h3-canvas { inset-block-start: 31%; }
  .h3-info { inset-block-end: auto; inset-block-start: calc(var(--header-h) + 16px); inset-inline-start: 20px; inset-inline-end: 20px; max-width: none; }
  .h3-rail { inset-block-start: auto; inset-block-end: 58px; inset-inline: 0; transform: none; flex-direction: row; justify-content: center; gap: 9px; }
  .h3-pick { width: 58px; height: 44px; }
  .h3-hint { inset-block-end: 116px; }
}

/* ============================================================
   PACKAGES  ·  full-home rental bundles
   ============================================================ */
.pkg-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch;
}
.pkg-card {
  position: relative; display: flex; flex-direction: column; background: var(--white);
  border: 1px solid var(--line); border-radius: 20px; padding: 30px 26px 26px;
  box-shadow: var(--shadow-sm); transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s, border-color .35s;
}
.pkg-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--line-2); }
.pkg-card--feat { border-color: var(--cobalt); box-shadow: 0 18px 48px rgba(21,70,186,.16); }
.pkg-card--feat::before {
  content: ""; position: absolute; inset: 0; border-radius: 20px; pointer-events: none;
  box-shadow: inset 0 0 0 1.5px var(--cobalt);
}
.pkg-badge {
  position: absolute; inset-block-start: -12px; inset-inline-start: 26px; background: var(--cobalt); color: #fff;
  font-size: .74rem; font-weight: 700; letter-spacing: .02em; padding: 6px 14px; border-radius: 999px;
  box-shadow: 0 6px 18px rgba(21,70,186,.32);
}
.pkg-card-ic { width: 56px; height: 56px; border-radius: 16px; background: var(--fog); color: var(--cobalt);
  display: grid; place-items: center; margin-bottom: 16px; }
.pkg-card h3 { font-size: 1.4rem; margin: 0 0 4px; color: var(--indigo); }
.pkg-tag { font-size: .9rem; font-weight: 600; color: var(--cobalt); margin-bottom: 12px; }
.pkg-desc { font-size: .95rem; color: #5c6480; line-height: 1.7; margin: 0 0 18px; }
.pkg-rooms-l { font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em;
  color: #8a90a6; margin-bottom: 10px; }
.pkg-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.pkg-chip { display: inline-flex; align-items: center; gap: 6px; font-size: .84rem; font-weight: 600;
  color: var(--indigo); background: var(--offwhite); border: 1px solid var(--line); border-radius: 999px; padding: 6px 12px; }
.pkg-chip .icon { color: var(--cobalt); }
.pkg-card-foot { margin-top: auto; display: flex; align-items: flex-end; justify-content: space-between; gap: 14px;
  padding-top: 18px; border-top: 1px solid var(--line); }
.pkg-from > span { display: block; font-size: .76rem; color: #8a90a6; margin-bottom: 2px; }
.pkg-from .price { display: flex; align-items: baseline; gap: 6px; }
.pkg-from .amount { font-size: 1.5rem; font-weight: 700; color: var(--indigo); }
.pkg-from .unit { font-size: .78rem; color: #8a90a6; }

/* package detail */
.page-head--pkg .pkg-head-tag, .page-head--article .article-cat {
  display: inline-block; background: var(--fog); color: var(--cobalt); font-weight: 700; font-size: .82rem;
  padding: 5px 14px; border-radius: 999px; margin-bottom: 12px;
}
.pkg-head-style { font-size: .6em; font-weight: 600; color: var(--cobalt); }
.col-picker-head { margin-bottom: 18px; }
.col-picker-head p { color: #5c6480; margin: 6px 0 0; }
.col-picker { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.col-tile {
  position: relative; display: flex; flex-direction: column; gap: 12px; padding: 18px; border-radius: 16px;
  border: 2px solid var(--line); background: var(--white); cursor: pointer; transition: border-color .25s, box-shadow .25s, transform .25s;
}
.col-tile:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.col-tile.active { border-color: var(--cobalt); box-shadow: 0 12px 30px rgba(21,70,186,.18); }
.col-sw { height: 64px; border-radius: 12px; box-shadow: inset 0 0 0 1px rgba(27,33,67,.08); }
.col-name { font-weight: 700; font-size: 1.05rem; color: var(--indigo); }
.col-price { font-size: .84rem; color: #5c6480; }
.col-price .amount { font-weight: 700; color: var(--cobalt); }
.col-check { position: absolute; inset-block-start: 14px; inset-inline-end: 14px; width: 24px; height: 24px; border-radius: 50%;
  background: var(--cobalt); color: #fff; display: grid; place-items: center; opacity: 0; transform: scale(.6); transition: .25s; }
.col-tile.active .col-check { opacity: 1; transform: scale(1); }

.pkg-preview { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.pkg-prev-room { display: flex; align-items: center; gap: 14px; padding: 16px; background: var(--white);
  border: 1px solid var(--line); border-radius: 14px; }
.pkg-prev-room .ic { width: 44px; height: 44px; flex: none; border-radius: 12px; background: var(--fog); color: var(--cobalt);
  display: grid; place-items: center; }
.pkg-prev-room strong { display: block; color: var(--indigo); }
.pkg-prev-room span { font-size: .86rem; color: #6b7291; }

.pkg-rooms { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pkg-room { display: flex; flex-direction: column; background: var(--white); border: 1px solid var(--line);
  border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .3s, box-shadow .3s; }
.pkg-room:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.pkg-room-img { position: relative; display: block; aspect-ratio: 4/3; background: var(--fog); overflow: hidden; }
.pkg-room-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.pkg-room:hover .pkg-room-img img { transform: scale(1.05); }
.pkg-room-ic { position: absolute; inset-block-start: 12px; inset-inline-start: 12px; width: 34px; height: 34px; border-radius: 10px;
  background: rgba(255,255,255,.92); color: var(--cobalt); display: grid; place-items: center; box-shadow: var(--shadow-sm); }
.pkg-room-body { padding: 18px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.pkg-room-h { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; }
.pkg-room-h h4 { margin: 0; font-size: 1.08rem; color: var(--indigo); }
.pkg-room-price { font-size: .9rem; white-space: nowrap; }
.pkg-room-price .amount { font-weight: 700; color: var(--cobalt); }
.pkg-room-price .cur { font-size: .72rem; color: #8a90a6; }
.pkg-room-set { font-size: .84rem; color: #6b7291; }
.pkg-room-pieces { list-style: none; margin: 4px 0 12px; padding: 0; display: flex; flex-direction: column; gap: 5px; }
.pkg-room-pieces li { display: flex; align-items: center; gap: 8px; font-size: .86rem; color: #4a5170; }
.pkg-room-pieces .icon { color: var(--cobalt); flex: none; }
.pkg-room .link-arrow { margin-top: auto; }

.pkg-summary { margin-top: 26px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px;
  padding: 24px 28px; border-radius: 20px; background: linear-gradient(120deg, var(--indigo), var(--indigo-soft)); color: #fff; }
.pkg-sum-l { font-size: .82rem; opacity: .8; }
.pkg-sum-price { display: flex; align-items: baseline; gap: 8px; margin: 2px 0; }
.pkg-sum-price .amount { font-size: 2rem; font-weight: 800; }
.pkg-sum-price .cur, .pkg-sum-price .unit { font-size: .82rem; opacity: .82; }
.pkg-sum-meta { font-size: .84rem; opacity: .78; }
.pkg-sum-actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.pkg-change { color: #fff !important; opacity: .85; }
.pkg-change:hover { opacity: 1; }

/* ============================================================
   GET THE APP
   ============================================================ */
.getapp-wrap { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }
.getapp-copy h1 { font-size: clamp(2rem, 4vw, 3rem); margin: 10px 0 16px; }
.getapp-lead { font-size: 1.08rem; color: #5c6480; line-height: 1.7; margin-bottom: 24px; }
.getapp-feats { list-style: none; padding: 0; margin: 0 0 28px; display: flex; flex-direction: column; gap: 14px; }
.getapp-feats li { display: flex; align-items: center; gap: 12px; font-weight: 600; color: var(--indigo); }
.getapp-feats .ic { width: 42px; height: 42px; flex: none; border-radius: 12px; background: var(--fog); color: var(--cobalt);
  display: grid; place-items: center; }
.store-badges { display: flex; gap: 12px; flex-wrap: wrap; }
.store-badge { display: inline-flex; align-items: center; gap: 10px; background: var(--indigo); color: #fff;
  padding: 10px 18px; border-radius: 14px; transition: transform .25s, background .25s; }
.store-badge:hover { transform: translateY(-2px); background: var(--indigo-soft); }
.store-badge-ic { color: #fff; opacity: .9; }
.store-badge-t { display: flex; flex-direction: column; line-height: 1.15; }
.store-badge-t small { font-size: .66rem; opacity: .72; }
.store-badge-t strong { font-size: 1rem; }
.getapp-visual { display: grid; place-items: center; }
.getapp-phone { width: 240px; height: 480px; border-radius: 42px; padding: 12px; background: var(--indigo);
  box-shadow: var(--shadow-lg); position: relative; }
.getapp-phone::before { content: ""; position: absolute; inset-block-start: 16px; inset-inline: 0; margin: auto; width: 90px; height: 22px;
  background: var(--indigo); border-radius: 0 0 14px 14px; z-index: 2; }
.getapp-phone-screen { width: 100%; height: 100%; border-radius: 32px;
  background: linear-gradient(160deg, var(--fog), var(--sand)); display: grid; place-items: center; gap: 14px; grid-auto-flow: row; }
.getapp-phone-logo { width: 130px; }
.getapp-soon { font-weight: 700; color: var(--cobalt); background: rgba(255,255,255,.7); padding: 5px 14px; border-radius: 999px; font-size: .82rem; }

.app-band { background: linear-gradient(120deg, var(--fog), var(--sand)); }
.app-band .wrap { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 24px;
  padding-block: 40px; }
.app-band-copy { display: flex; align-items: center; gap: 18px; max-width: 560px; }
.app-band-copy .ic { width: 58px; height: 58px; flex: none; border-radius: 16px; background: var(--white); color: var(--cobalt);
  display: grid; place-items: center; box-shadow: var(--shadow-sm); }
.app-band-copy h2 { margin: 0 0 4px; font-size: 1.5rem; }
.app-band-copy p { margin: 0; color: #4a5170; }
.app-band-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }

/* ============================================================
   ARTICLES / BLOG
   ============================================================ */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card { display: flex; flex-direction: column; background: var(--white); border: 1px solid var(--line);
  border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .3s, box-shadow .3s; }
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.blog-media { position: relative; display: block; aspect-ratio: 16/10; background: var(--fog); overflow: hidden; }
.blog-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.blog-card:hover .blog-media img { transform: scale(1.06); }
.blog-cat { position: absolute; inset-block-start: 12px; inset-inline-start: 12px; background: rgba(255,255,255,.94); color: var(--cobalt);
  font-size: .74rem; font-weight: 700; padding: 5px 12px; border-radius: 999px; box-shadow: var(--shadow-sm); }
.blog-body { padding: 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.blog-meta { font-size: .78rem; color: #8a90a6; }
.blog-title { font-size: 1.14rem; font-weight: 700; color: var(--indigo); line-height: 1.45; }
.blog-title:hover { color: var(--cobalt); }
.blog-excerpt { font-size: .92rem; color: #5c6480; line-height: 1.7; margin: 0; }
.blog-card .link-arrow { margin-top: auto; }

.article-meta { color: #8a90a6; font-size: .9rem; margin-top: 8px; }
.article-wrap .wrap { max-width: 820px; }
.article-hero { width: 100%; border-radius: 20px; margin-bottom: 28px; aspect-ratio: 16/8; object-fit: cover; }
.article-body { font-size: 1.06rem; line-height: 1.9; color: #33384f; }
.article-body p { margin: 0 0 20px; }

/* ============================================================
   RESPONSIVE  ·  packages / app / blog
   ============================================================ */
@media (max-width: 900px) {
  .pkg-grid, .col-picker, .pkg-rooms, .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .getapp-wrap { grid-template-columns: 1fr; gap: 32px; }
  .getapp-visual { order: -1; }
}
@media (max-width: 640px) {
  .pkg-grid, .col-picker, .pkg-rooms, .blog-grid, .pkg-preview { grid-template-columns: 1fr; }
  .pkg-summary { flex-direction: column; align-items: stretch; text-align: center; }
  .pkg-sum-price { justify-content: center; }
  .pkg-sum-actions { justify-content: center; }
  .app-band .wrap { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   ACCOUNT / PROFILE DASHBOARD
   ============================================================ */
.btn--sm { padding: 9px 16px; font-size: .86rem; border-radius: 10px; }
.acc-head { background: var(--offwhite); border-bottom: 1px solid var(--line); padding: 30px 0 26px; }
.acc-head h1 { margin: 8px 0 0; font-size: clamp(1.5rem, 3vw, 2rem); color: var(--indigo); }
.acc-head .order-badge { font-size: .5em; vertical-align: middle; }

.acc-layout { display: grid; grid-template-columns: 260px 1fr; gap: 28px; align-items: start; }
.acc-side { position: sticky; top: 90px; background: var(--white); border: 1px solid var(--line); border-radius: 18px; padding: 20px; box-shadow: var(--shadow-sm); }
.acc-user { display: flex; align-items: center; gap: 12px; padding-bottom: 16px; margin-bottom: 12px; border-bottom: 1px solid var(--line); }
.acc-avatar { width: 46px; height: 46px; flex: none; border-radius: 50%; background: var(--cobalt); color: #fff; display: grid; place-items: center; font-weight: 700; font-size: 1.1rem; }
.acc-user strong { display: block; color: var(--indigo); font-size: .98rem; }
.acc-user span { font-size: .78rem; color: var(--muted, #6b7291); word-break: break-all; }
.acc-side-nav { display: flex; flex-direction: column; gap: 2px; }
.acc-side-nav a { display: flex; align-items: center; gap: 11px; padding: 11px 13px; border-radius: 11px; color: var(--indigo); font-weight: 600; font-size: .93rem; transition: background .2s, color .2s; }
.acc-side-nav a .icon { color: #8a90a6; transition: color .2s; }
.acc-side-nav a:hover { background: var(--offwhite); }
.acc-side-nav a.active { background: var(--cobalt); color: #fff; }
.acc-side-nav a.active .icon { color: #fff; }
.acc-signout { width: 100%; margin-top: 14px; padding: 11px; border: 1px solid var(--line-2); background: none; border-radius: 11px; color: #b23b3b; font-family: inherit; font-weight: 600; font-size: .9rem; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px; transition: background .2s; }
.acc-signout:hover { background: #fbeeee; }
.acc-signout .icon { transform: rotate(180deg); }

.acc-main { min-width: 0; }
.panel-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; margin-bottom: 22px; }
.panel-head h2 { margin: 0; font-size: 1.4rem; color: var(--indigo); }
.panel-head p { margin: 6px 0 0; color: #5c6480; font-size: .95rem; max-width: 46ch; }
.acc-card { background: var(--white); border: 1px solid var(--line); border-radius: 18px; padding: 24px; box-shadow: var(--shadow-sm); }
.acc-card + .acc-card { margin-top: 20px; }
.acc-card-h { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.acc-card h3 { margin: 0 0 4px; font-size: 1.08rem; color: var(--indigo); }

/* overview stats */
.acc-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 24px; }
.acc-stat { display: flex; align-items: center; gap: 14px; background: var(--white); border: 1px solid var(--line); border-radius: 16px; padding: 18px; box-shadow: var(--shadow-sm); transition: transform .25s, box-shadow .25s; }
.acc-stat:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.acc-stat-ic { width: 46px; height: 46px; flex: none; border-radius: 12px; background: var(--fog); color: var(--cobalt); display: grid; place-items: center; }
.acc-stat-l { display: block; font-size: .8rem; color: #8a90a6; margin-bottom: 2px; }
.acc-stat strong { color: var(--indigo); font-size: 1.02rem; line-height: 1.3; }

/* order rows */
.order-list { display: flex; flex-direction: column; gap: 14px; }
.order-row { display: flex; gap: 16px; align-items: center; background: var(--white); border: 1px solid var(--line); border-radius: 16px; padding: 16px; }
.acc-card .order-row { border: 0; padding: 0; }
.order-thumbs { display: flex; flex: none; }
.order-thumbs img { width: 54px; height: 54px; border-radius: 10px; object-fit: cover; border: 2px solid #fff; background: var(--fog); margin-inline-start: -14px; box-shadow: var(--shadow-sm); }
.order-thumbs img:first-child { margin-inline-start: 0; }
.order-info { flex: 1; min-width: 0; }
.order-top { display: flex; align-items: center; gap: 10px; }
.order-top strong { color: var(--indigo); font-family: var(--font-en, inherit); }
.order-badge { font-size: .76rem; font-weight: 700; padding: 4px 11px; border-radius: 999px; white-space: nowrap; }
.order-sub { font-size: .85rem; color: #6b7291; margin: 5px 0 12px; }
.order-sub .unit { color: #9aa0b4; }
.order-actions { display: flex; flex-wrap: wrap; gap: 8px; }
.acc-cancel { background: #fff; border: 1.5px solid #f0d3d3; color: #b23b3b; }
.acc-cancel:hover { background: #fbeeee; border-color: #e5b8b8; }

.acc-empty { text-align: center; padding: 40px 20px; }
.acc-empty .icon { color: var(--cobalt); width: 52px; height: 52px; opacity: .5; }
.acc-empty h3 { margin: 12px 0 6px; color: var(--indigo); }
.acc-empty p { color: #6b7291; margin: 0 auto 18px; max-width: 38ch; }

/* order detail / timeline */
.od-layout { display: grid; grid-template-columns: 1fr 320px; gap: 22px; align-items: start; }
.timeline { display: flex; align-items: flex-start; margin: 8px 0 4px; }
.tl-step { display: flex; flex-direction: column; align-items: center; gap: 8px; text-align: center; flex: none; width: 74px; }
.tl-dot { width: 30px; height: 30px; border-radius: 50%; border: 2px solid var(--line-2); background: #fff; color: #fff; display: grid; place-items: center; }
.tl-step.done .tl-dot { background: #2E7D5B; border-color: #2E7D5B; }
.tl-step.current .tl-dot { background: var(--cobalt); border-color: var(--cobalt); box-shadow: 0 0 0 4px rgba(21,70,186,.16); }
.tl-lbl { font-size: .72rem; color: #8a90a6; line-height: 1.3; }
.tl-step.done .tl-lbl, .tl-step.current .tl-lbl { color: var(--indigo); font-weight: 600; }
.tl-bar { flex: 1; height: 2px; background: var(--line-2); margin-top: 15px; }
.od-est { display: flex; align-items: center; gap: 8px; margin-top: 18px; padding: 12px 16px; background: var(--offwhite); border-radius: 12px; font-size: .9rem; color: var(--indigo); }
.od-est .icon { color: var(--cobalt); }
.od-cancelled { display: flex; align-items: center; gap: 8px; color: #b23b3b; background: #fbeeee; padding: 14px 16px; border-radius: 12px; font-weight: 600; }
.od-item { display: flex; align-items: center; gap: 14px; padding: 12px 0; border-top: 1px solid var(--line); }
.od-item:first-of-type { border-top: 0; }
.od-item img { width: 52px; height: 52px; border-radius: 10px; object-fit: cover; background: var(--fog); }
.od-item strong { display: block; color: var(--indigo); font-size: .95rem; }
.od-item span { font-size: .82rem; color: #8a90a6; }
.od-item .od-price { margin-inline-start: auto; font-weight: 700; color: var(--cobalt); white-space: nowrap; }
.od-total { display: flex; align-items: center; justify-content: space-between; margin-top: 16px; padding-top: 16px; border-top: 2px solid var(--line); }
.od-total span { color: #6b7291; }
.od-total strong { font-size: 1.2rem; color: var(--indigo); }
.od-total .unit { font-size: .7rem; color: #9aa0b4; font-weight: 400; }
.od-ship strong { display: block; color: var(--indigo); }
.od-ship span { display: block; font-size: .88rem; color: #6b7291; margin-top: 3px; }
.od-help { margin: 18px 0 8px; font-size: .9rem; font-weight: 600; color: var(--indigo); }

/* forms */
.acc-form .acc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.acc-field { display: flex; flex-direction: column; gap: 6px; }
.acc-field.full { grid-column: 1 / -1; }
.acc-field label { font-size: .84rem; font-weight: 600; color: var(--indigo); }
.acc-field input, .acc-field select, .acc-field textarea { border: 1.5px solid var(--line-2); border-radius: 11px; padding: 12px 14px; font-family: inherit; font-size: .95rem; color: var(--ink); background: var(--white); transition: border-color .2s, box-shadow .2s; }
.acc-field input:focus, .acc-field select:focus, .acc-field textarea:focus { outline: none; border-color: var(--cobalt); box-shadow: 0 0 0 3px rgba(21,70,186,.12); }
.acc-field textarea { resize: vertical; }
.acc-form-foot { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-top: 22px; }
.saved-card { display: flex; align-items: center; gap: 14px; background: linear-gradient(120deg, var(--indigo), var(--indigo-soft)); color: #fff; border-radius: 14px; padding: 18px 20px; margin-bottom: 20px; }
.saved-card .sc-chip { width: 34px; height: 26px; border-radius: 5px; background: linear-gradient(135deg,#f5d17a,#d4a542); flex: none; }
.saved-card span { font-size: .78rem; opacity: .8; }
.saved-card strong { font-size: 1.05rem; letter-spacing: 1px; }
.saved-card .icon { margin-inline-start: auto; color: #6fe0a0; }

/* delivery location */
.acc-loc { margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--line); }
.acc-loc-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.acc-loc-head h3 { margin: 0; font-size: 1.05rem; color: var(--indigo); }
.acc-map { width: 100%; height: 240px; border: 1px solid var(--line); border-radius: 14px; }
.acc-loc-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 12px; }
.acc-loc-coords { font-size: .85rem; color: #6b7291; background: var(--offwhite); padding: 6px 12px; border-radius: 8px; }
.acc-loc-empty { text-align: center; padding: 30px; background: var(--offwhite); border: 1px dashed var(--line-2); border-radius: 14px; }
.acc-loc-empty .icon { color: var(--cobalt); opacity: .5; width: 40px; height: 40px; }
.acc-loc-empty p { margin: 10px auto 0; max-width: 34ch; color: #6b7291; font-size: .9rem; }

/* support */
.sup-quick { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.sup-tile { display: flex; flex-direction: column; align-items: center; gap: 12px; text-align: center; background: var(--white); border: 1px solid var(--line); border-radius: 16px; padding: 24px 16px; box-shadow: var(--shadow-sm); transition: transform .25s, box-shadow .25s; }
.sup-tile:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.sup-ic { width: 48px; height: 48px; border-radius: 14px; background: var(--fog); color: var(--cobalt); display: grid; place-items: center; }
.sup-tile strong { color: var(--indigo); font-size: .95rem; }
.ticket-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 14px 0; border-top: 1px solid var(--line); }
.ticket-row:first-of-type { border-top: 0; }
.ticket-row strong { display: block; color: var(--indigo); font-size: .95rem; }
.ticket-row span { font-size: .8rem; color: #8a90a6; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { display: flex; align-items: center; gap: 10px; padding: 15px 0; font-weight: 600; color: var(--indigo); cursor: pointer; }
.faq-q .icon { color: var(--cobalt); transition: transform .25s; }
.faq-item.open .faq-q .icon { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; color: #5c6480; font-size: .92rem; line-height: 1.8; transition: max-height .3s, padding .3s; }
.faq-item.open .faq-a { max-height: 200px; padding-bottom: 15px; }

@media (max-width: 900px) {
  .acc-layout { grid-template-columns: 1fr; }
  .acc-side { position: static; }
  .acc-side-nav { flex-direction: row; flex-wrap: wrap; }
  .acc-side-nav a span { display: none; }
  .acc-side-nav a { padding: 11px 14px; }
  .od-layout { grid-template-columns: 1fr; }
  .acc-stats, .sup-quick { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .acc-form .acc-grid { grid-template-columns: 1fr; }
  .timeline { overflow-x: auto; }
  .order-row { flex-direction: column; align-items: stretch; }
}

/* ============================================================
   COLLECTION BROWSE  (collection -> room set -> pieces)
   ============================================================ */
.coll-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.coll-card { display: flex; flex-direction: column; background: var(--white); border: 1px solid var(--line);
  border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .3s, box-shadow .3s; }
.coll-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.coll-media { position: relative; aspect-ratio: 16/9; background: var(--fog); overflow: hidden; }
.coll-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.coll-card:hover .coll-media img { transform: scale(1.05); }
.coll-card--soon { opacity: .78; }
.coll-soon { position: absolute; inset-block-start: 14px; inset-inline-start: 14px; background: var(--indigo); color: #fff;
  font-size: .76rem; font-weight: 700; padding: 5px 13px; border-radius: 999px; }
.coll-body { padding: 22px 24px; display: flex; flex-direction: column; flex: 1; }
.coll-body h3 { margin: 0 0 6px; font-size: 1.5rem; color: var(--indigo); }
.coll-body p { margin: 0 0 16px; color: #5c6480; font-size: .95rem; line-height: 1.7; }
.coll-foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding-top: 16px; border-top: 1px solid var(--line); }
.coll-count { font-size: .88rem; font-weight: 600; color: var(--muted, #6b7291); }

.page-head--coll { background-size: cover; background-position: center; color: #fff; }
.page-head--coll h1 { color: #fff; }
.page-head--coll p { color: rgba(255,255,255,.9); }
.breadcrumb--light a { color: rgba(255,255,255,.85); }
.breadcrumb--light span { color: #fff; }
.breadcrumb--light .icon { color: rgba(255,255,255,.6); }
.ph-sub { font-size: .6em; font-weight: 500; color: #8a90a6; }

.roomset-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.roomset-card { display: flex; flex-direction: column; background: var(--white); border: 1px solid var(--line);
  border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .3s, box-shadow .3s; }
.roomset-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.roomset-media { position: relative; aspect-ratio: 4/3; background: var(--fog); overflow: hidden; }
.roomset-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.roomset-card:hover .roomset-media img { transform: scale(1.06); }
.roomset-ic { position: absolute; inset-block-start: 12px; inset-inline-start: 12px; width: 36px; height: 36px; border-radius: 10px;
  background: rgba(255,255,255,.92); color: var(--cobalt); display: grid; place-items: center; box-shadow: var(--shadow-sm); }
.roomset-body { padding: 18px 20px; display: flex; flex-direction: column; gap: 4px; }
.roomset-body h3 { margin: 0; font-size: 1.15rem; color: var(--indigo); }
.roomset-body > span { font-size: .84rem; color: #8a90a6; }
.roomset-body .link-arrow { margin-top: 8px; }

@media (max-width: 860px) {
  .coll-grid { grid-template-columns: 1fr; }
  .roomset-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   NEW HOMEPAGE  ·  hero2 / our-work / about-home
   ============================================================ */
.hero2 { background: linear-gradient(160deg, var(--sand) 0%, var(--offwhite) 55%, #fff 100%); overflow: hidden; }
.hero2-wrap { display: grid; grid-template-columns: 1.05fr 1fr; gap: 48px; align-items: center; padding-block: clamp(40px, 6vw, 84px); }
.hero2-eyebrow { display: inline-flex; align-items: center; gap: 7px; font-size: .82rem; font-weight: 700; color: var(--cobalt);
  background: #fff; border: 1px solid var(--line); padding: 7px 14px; border-radius: 999px; box-shadow: var(--shadow-sm); }
.hero2-copy h1 { font-size: clamp(2.1rem, 4.6vw, 3.6rem); line-height: 1.18; color: var(--indigo); margin: 18px 0 16px; font-weight: 700; }
.hero2-copy > p { font-size: 1.08rem; line-height: 1.8; color: #5c6480; max-width: 46ch; margin: 0 0 26px; }
.hero2-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 22px; }
.hero2-chips { display: flex; gap: 10px; flex-wrap: wrap; }
.hero2-chips span { display: inline-flex; align-items: center; gap: 7px; font-size: .86rem; font-weight: 600; color: var(--indigo);
  background: #fff; border: 1px solid var(--line); padding: 8px 14px; border-radius: 999px; }
.hero2-chips .icon { color: var(--cobalt); }
.hero2-visual { position: relative; }
.hero2-frame { border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/3.4; background: var(--fog); }
.hero2-frame img { width: 100%; height: 100%; object-fit: cover; }
.hero2-card { position: absolute; inset-block-end: -18px; inset-inline-start: -18px; display: flex; align-items: center; gap: 12px;
  background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 10px 16px 10px 10px; box-shadow: var(--shadow-lg);
  max-width: 260px; transition: transform .25s; }
.hero2-card:hover { transform: translateY(-3px); }
.hero2-card img { width: 58px; height: 58px; border-radius: 12px; object-fit: cover; background: var(--fog); flex: none; }
.hero2-card strong { display: block; color: var(--indigo); font-size: .95rem; }
.hero2-card em { font-style: normal; font-size: .82rem; color: var(--cobalt); font-weight: 600; }

/* our work mosaic */
.work-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: 220px 220px;
  grid-template-areas: "a a b c" "a a d e"; gap: 16px; }
.work-tile { position: relative; border-radius: 18px; overflow: hidden; background: var(--fog); box-shadow: var(--shadow-sm); }
.work-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.work-tile:hover img { transform: scale(1.06); }
.work-a { grid-area: a; }
.work-b { grid-area: b; } .work-c { grid-area: c; } .work-d { grid-area: d; } .work-e { grid-area: e; }
.work-cap { position: absolute; inset-inline: 12px; inset-block-end: 12px; display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.94); color: var(--indigo); font-weight: 600; font-size: .84rem; padding: 7px 12px; border-radius: 10px;
  box-shadow: var(--shadow-sm); opacity: 0; transform: translateY(8px); transition: .3s; }
.work-tile:hover .work-cap { opacity: 1; transform: translateY(0); }
.work-cap .icon { color: var(--cobalt); }
.work-a .work-cap { opacity: 1; transform: none; font-size: .95rem; padding: 9px 16px; }

/* about on home */
.about-home-wrap { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: center; }
.about-home-media { border-radius: 22px; overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 5/4; background: var(--fog); }
.about-home-media img { width: 100%; height: 100%; object-fit: cover; }
.about-home-copy h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); color: var(--indigo); margin: 10px 0 16px; }
.about-home-copy p { color: #5c6480; line-height: 1.85; margin: 0 0 14px; }
.about-home-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin: 22px 0 24px; }
.about-home-stats div { text-align: center; background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 16px 8px; }
.about-home-stats strong { display: block; font-size: 1.35rem; color: var(--cobalt); font-weight: 800; }
.about-home-stats span { font-size: .78rem; color: #6b7291; }

@media (max-width: 900px) {
  .hero2-wrap, .about-home-wrap { grid-template-columns: 1fr; gap: 34px; }
  .hero2-visual { order: -1; }
  .about-home-media { order: -1; }
  .work-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(3, 190px);
    grid-template-areas: "a a" "b c" "d e"; }
}
@media (max-width: 560px) {
  .about-home-stats { grid-template-columns: repeat(2, 1fr); }
  .work-grid { grid-template-rows: repeat(5, 180px); grid-template-areas: "a a" "b b" "c c" "d d" "e e"; }
  .hero2-card { inset-inline-start: 0; max-width: 220px; }
}

/* ============================================================
   COLLECTION as a product-style page + expandable room sets
   ============================================================ */
.coll-pdp { display: grid; grid-template-columns: 1.05fr 1fr; gap: 40px; align-items: start; padding-block: 10px 8px; }
.coll-pdp-media { border-radius: 22px; overflow: hidden; background: var(--fog); box-shadow: var(--shadow-lg); aspect-ratio: 4/3.2; position: sticky; top: 88px; }
.coll-pdp-media img { width: 100%; height: 100%; object-fit: cover; }
.coll-pdp-info { padding-block-start: 8px; }
.coll-pdp-info h1 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); color: var(--indigo); margin: 10px 0 2px; }
.coll-pdp-info .name-en { color: #8a90a6; font-size: 1rem; margin-bottom: 14px; }
.coll-pdp-info .pdp-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.coll-pdp-info .muted { color: #5c6480; line-height: 1.85; font-size: 1.02rem; }
.coll-pdp-price { margin: 18px 0 20px; font-size: 1.05rem; color: var(--indigo); }
.coll-pdp-price b { font-size: 1.9rem; font-weight: 800; color: var(--cobalt); }
.coll-pdp-price span { color: #8a90a6; font-size: .84rem; }

/* accordion of room sets */
.coll-acc { display: flex; flex-direction: column; gap: 16px; }
.coll-acc-item { border: 1px solid var(--line); border-radius: 18px; overflow: hidden; background: var(--white); box-shadow: var(--shadow-sm); transition: box-shadow .25s, border-color .25s; }
.coll-acc-item.open { border-color: var(--line-2); box-shadow: var(--shadow); }
.coll-acc-head { width: 100%; display: flex; align-items: center; gap: 16px; padding: 14px 18px; background: none; border: 0; cursor: pointer; font-family: inherit; text-align: start; }
.coll-acc-head:hover { background: var(--offwhite); }
.coll-acc-thumb { width: 66px; height: 54px; flex: none; border-radius: 12px; overflow: hidden; background: var(--fog); }
.coll-acc-thumb img { width: 100%; height: 100%; object-fit: cover; }
.coll-acc-title { flex: 1; min-width: 0; }
.coll-acc-title strong { display: block; font-size: 1.12rem; color: var(--indigo); }
.coll-acc-title span { font-size: .84rem; color: #8a90a6; }
.coll-acc-chev { width: 38px; height: 38px; flex: none; border-radius: 50%; background: var(--offwhite); color: var(--cobalt); display: grid; place-items: center; transition: transform .3s, background .25s; }
.coll-acc-item.open .coll-acc-chev { transform: rotate(180deg); background: var(--fog); }
.coll-acc-body { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .38s ease; }
.coll-acc-item.open .coll-acc-body { grid-template-rows: 1fr; }
.coll-acc-inner { min-height: 0; overflow: hidden; }
.coll-acc-inner .prod-grid { padding: 6px 16px 22px; }
.coll-acc-empty { padding: 22px; text-align: center; color: #8a90a6; font-size: .92rem; }

@media (max-width: 900px) {
  .coll-pdp { grid-template-columns: 1fr; gap: 26px; }
  .coll-pdp-media { position: static; aspect-ratio: 16/10; }
}

/* ============================================================
   ROOM SET as the sold product (full-room image + pieces beside)
   ============================================================ */
.roomset-price { font-size: .9rem; color: #6b7291; }
.roomset-price b { color: var(--cobalt); font-size: 1.15rem; font-weight: 800; }

.set-pdp { display: grid; grid-template-columns: 1.1fr 1fr; gap: 40px; align-items: start; padding-block: 10px 8px; }
.set-pdp-media { position: sticky; top: 88px; }
.set-main { border-radius: 22px; overflow: hidden; background: var(--fog); box-shadow: var(--shadow-lg); aspect-ratio: 4/3.2; }
.set-main img { width: 100%; height: 100%; object-fit: cover; transition: opacity .2s; }
.set-pdp-info { padding-block-start: 6px; }
.set-pdp-info h1 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); color: var(--indigo); margin: 8px 0 12px; }
.set-pdp-info .pdp-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.set-price { font-size: 1.05rem; color: var(--indigo); margin: 6px 0 20px; }
.set-price b { font-size: 2rem; font-weight: 800; color: var(--cobalt); }
.set-price span { color: #8a90a6; font-size: .84rem; }
.set-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.set-pieces { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.set-piece { display: flex; flex-direction: column; background: var(--white); border: 1.5px solid var(--line); border-radius: 16px;
  overflow: hidden; cursor: pointer; padding: 0; font-family: inherit; text-align: start; transition: border-color .2s, box-shadow .2s, transform .2s; }
.set-piece:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.set-piece.active { border-color: var(--cobalt); box-shadow: 0 8px 22px rgba(21,70,186,.16); }
.set-piece-img { display: block; aspect-ratio: 4/3.4; background: var(--fog); overflow: hidden; }
.set-piece-img img { width: 100%; height: 100%; object-fit: cover; }
.set-piece-name { padding: 12px 14px; font-size: .92rem; font-weight: 600; color: var(--indigo); line-height: 1.4; }
.set-piece-name em { display: block; font-style: normal; font-size: .78rem; font-weight: 400; color: #8a90a6; }

@media (max-width: 900px) {
  .set-pdp { grid-template-columns: 1fr; gap: 24px; }
  .set-pdp-media { position: static; }
  .set-pieces { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 620px) {
  .set-pieces { grid-template-columns: repeat(2, 1fr); }
}
