/* ── PRODUCTS PAGE SHOWCASE STYLE ─────────────────── */
@import url("https://fonts.googleapis.com/css2?family=Orbitron&family=Quicksand:wght@300&display=swap");


:root {
  --showcase-white: #FFFFFF;
  --showcase-bg: #FAFBFC;
  --border-light: rgba(8, 89, 94, 0.08);
  --shadow-soft: 0 20px 40px rgba(8, 89, 94, 0.05);
  --shadow-ambient: 0 30px 60px rgba(0, 0, 0, 0.08);
}

/* ── HERO SECTION ────────────────────────────────── */
.prod-hero {
  position: relative;
  min-height: 400px;
  background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)), url('hero.jpeg') no-repeat center center / cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 160px 24px 80px;
  overflow: hidden;
}

.prod-hero__bg-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(0, 200, 200, 0.15) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.3;
  z-index: 1;
}

.prod-hero__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.prod-hero__eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--aqua);
  margin-bottom: 16px;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s forwards;
}

.prod-hero__title {
  font-family: var(--serif);
  font-size: clamp(40px, 6vw, 68px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.8s 0.4s forwards;
}

.prod-hero__title em {
  font-style: italic;
  font-weight: 600;
  color: var(--aqua);
  background: linear-gradient(
    120deg,
    var(--aqua) 30%,
    #ffffff 45%,
    var(--aqua) 60%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: reflectingShine 4s linear infinite;
  display: inline-block;
}

@keyframes reflectingShine {
  0% {
    background-position: 200% center;
  }
  100% {
    background-position: -200% center;
  }
}

.prod-hero__subtitle {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  max-width: 580px;
  margin: 0 auto;
  opacity: 0;
  animation: fadeUp 0.8s 0.6s forwards;
}

/* ── PRODUCT SHOWCASE SECTION ────────────────────── */
.showcase-section {
  background-color: var(--showcase-white);
  padding: 100px 24px 120px;
  position: relative;
  overflow: hidden;
}

/* Intro Header (Finishes of Distinction) */
.showcase-intro {
  max-width: 800px;
  margin: 0 auto 70px;
  text-align: center;
}

.showcase-intro__eyebrow-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 14px;
}

.showcase-intro__line {
  display: inline-block;
  width: 48px;
  height: 2px;
  background-color: var(--deep-teal);
  opacity: 1;
}

.showcase-intro__eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--deep-teal);
}

.showcase-intro__title {
  font-family: var(--sans);
  font-size: clamp(24px, 3.8vw, 38px);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--deep-teal);
  margin: 0;
}

/* ── NEW PREMIUM INTERACTIVE SHOWCASE STYLE ─────────────────── */

.luxury-showcase-container {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 4.2fr 5.8fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 5;
}

/* Left Column (40%) */
.luxury-showcase__left {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-right: 20px;
}

.luxury-showcase__num-wrap {
  display: flex;
  align-items: baseline;
  margin-bottom: 24px;
  font-family: var(--sans);
  overflow: hidden;
}

.luxury-showcase__number {
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
  display: inline-block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
}

.luxury-showcase__number-total {
  font-size: 20px;
  font-weight: 500;
  color: var(--deep-teal);
  opacity: 0.4;
  margin-left: 4px;
}

.luxury-showcase__text-wrapper {
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}

.luxury-showcase__subtitle {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--orange);
  display: inline-block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) 50ms, opacity 0.5s ease;
}

.luxury-showcase__title {
  font-family: var(--serif);
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--ink);
  margin: 0;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) 100ms, opacity 0.5s ease;
}

.luxury-showcase__desc {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  color: #4b5e60;
  margin: 0;
  max-width: 440px;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) 150ms, opacity 0.5s ease;
}

/* Text animation states during product change */
.luxury-showcase__left.is-animating .luxury-showcase__number {
  transform: translateY(-20px);
  opacity: 0;
}
.luxury-showcase__left.is-animating .luxury-showcase__subtitle {
  transform: translateY(15px);
  opacity: 0;
}
.luxury-showcase__left.is-animating .luxury-showcase__title {
  transform: translateY(20px);
  opacity: 0;
}
.luxury-showcase__left.is-animating .luxury-showcase__desc {
  transform: translateY(25px);
  opacity: 0;
}
.luxury-showcase__left.is-animating .luxury-showcase__btn {
  transform: translateY(15px);
  opacity: 0;
}

.luxury-showcase__btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 36px;
  background-color: var(--deep-teal);
  color: var(--white) !important;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 40px 16px 36px 20px;
  transition: background-color 0.4s, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) 200ms, opacity 0.5s ease, box-shadow 0.4s;
  box-shadow: 0 10px 25px rgba(8, 89, 94, 0.15);
  margin-bottom: 40px;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.luxury-showcase__btn:hover {
  background-color: var(--orange);
  box-shadow: 0 12px 30px rgba(224, 122, 95, 0.25);
}

.luxury-showcase__btn svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.luxury-showcase__btn:hover svg {
  transform: translateX(4px);
}

/* Nav Buttons */
.luxury-showcase__nav {
  display: flex;
  gap: 16px;
}

.luxury-showcase__nav-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(8, 89, 94, 0.12);
  background-color: var(--white);
  color: var(--deep-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.luxury-showcase__nav-btn:hover {
  background-color: var(--deep-teal);
  color: var(--white);
  border-color: var(--deep-teal);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(8, 89, 94, 0.12);
}

.luxury-showcase__nav-btn svg {
  width: 20px;
  height: 20px;
}

/* Right Column (60%) */
.luxury-showcase__right {
  position: relative;
  height: 580px;
  border-radius: 32px;
  background: rgba(232, 246, 247, 0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(8, 89, 94, 0.05);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.03);
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.showroom-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(0, 200, 200, 0.2) 0%, transparent 75%);
  z-index: 0;
  pointer-events: none;
}

.showroom-glass-panel {
  position: absolute;
  inset: 12px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.15) 0%, transparent 80%);
  pointer-events: none;
  z-index: 1;
}

/* Floating Particles */
.showroom-particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.showroom-particle {
  position: absolute;
  width: 6px;
  height: 6px;
  background-color: var(--aqua);
  border-radius: 50%;
  opacity: 0.3;
  animation: particleFloat 12s linear infinite;
}

@keyframes particleFloat {
  0% {
    transform: translateY(100%) translateX(0);
    opacity: 0;
  }
  10% {
    opacity: var(--p-opacity, 0.4);
  }
  90% {
    opacity: var(--p-opacity, 0.4);
  }
  100% {
    transform: translateY(-10%) translateX(var(--p-drift, 40px));
    opacity: 0;
  }
}

/* Collage Container */
.collage-container {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 3;
  perspective: 1200px;
  transform-style: preserve-3d;
  display: flex;
  justify-content: center;
  align-items: center;
  --orbit-radius: 175px;
}

/* Outer image wrapper handles dynamic position & scale from JS */
.collage-img-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  width: var(--img-width, 190px);
  aspect-ratio: 1;
  transform-style: preserve-3d;
  will-change: transform;
  transform: translate(-50%, -50%) translate(0px, 0px) scale(1);
  transition: z-index 0.3s;
}

/* Middle wrapper handles secondary vertical micro-floating */
.collage-img-float {
  width: 100%;
  height: 100%;
  will-change: transform;
  transform-style: preserve-3d;
}

/* ── 3D SLAB STYLING ── */
.collage-img-slab {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
}

.slab-face {
  position: absolute;
  inset: 0;
  border-radius: 12px;
  overflow: hidden;
  backface-visibility: visible;
}

/* Slab Thickness: 8px (Front +4px, Back -4px) */
.slab-front {
  transform: translateZ(4px);
  border: none !important;
  background: transparent !important;
  z-index: 2;
}

.slab-back {
  transform: translateZ(-4px) rotateY(180deg);
  border: none !important;
  background: transparent !important;
}

/* Image Cropping to hide white borders (for JPEGs) */
.slab-img--jpg {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transform: scale(1.45) !important;
  display: block;
}

/* Maintain full transparency & circular contours without clipping (for PNGs) */
.slab-img--png {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  transform: scale(1.0) !important;
  display: block;
}

/* Slab side panels: disabled to support clean transparent cut-outs */
.slab-left, .slab-right, .slab-top, .slab-bottom {
  display: none !important;
}

/* Inner wrapper handles entrance and exit animations */
.collage-img-inner {
  width: 100%;
  height: 100%;
  will-change: transform, opacity, filter;
  transform: scale(0.85) rotate(var(--entry-rotate, 10deg));
  opacity: 0;
  filter: blur(15px) drop-shadow(0 10px 22px rgba(8, 89, 94, 0.15));
  transition: 
    transform 0.9s cubic-bezier(0.175, 0.885, 0.32, 1.15), 
    opacity 0.8s ease, 
    filter 0.8s ease;
  transform-style: preserve-3d;
}

.collage-img-inner.is-active {
  transform: scale(1) rotate(0deg);
  opacity: 1;
  filter: blur(0px) drop-shadow(0 10px 22px rgba(8, 89, 94, 0.15));
}

.collage-img-inner.is-exiting {
  transform: scale(0.8) rotate(var(--exit-rotate, -10deg)) !important;
  opacity: 0 !important;
  filter: blur(12px) drop-shadow(0 5px 10px rgba(8, 89, 94, 0)) !important;
  transition: 
    transform 0.7s cubic-bezier(0.4, 0, 1, 1), 
    opacity 0.6s ease, 
    filter 0.6s ease;
}

/* Hover effects */
.collage-img-wrap:hover {
  z-index: 15 !important;
}

.collage-img-wrap:hover .collage-img-inner.is-active {
  transform: translateY(-8px) scale(1.04) rotateX(4deg) rotateY(4deg) !important;
  filter: blur(0px) drop-shadow(0 22px 40px rgba(8, 89, 94, 0.32)) !important;
}

/* Float Animations for staggered vertical drifting */
@keyframes floatAnim1 {
  0% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0); }
}
@keyframes floatAnim2 {
  0% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}
@keyframes floatAnim3 {
  0% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
  100% { transform: translateY(0); }
}
@keyframes floatAnim4 {
  0% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
  100% { transform: translateY(0); }
}
@keyframes floatAnim5 {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}
@keyframes floatAnim6 {
  0% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
  100% { transform: translateY(0); }
}

.collage-img-wrap--1 .collage-img-float { animation: floatAnim1 7s ease-in-out infinite; }
.collage-img-wrap--2 .collage-img-float { animation: floatAnim2 8s ease-in-out infinite; }
.collage-img-wrap--3 .collage-img-float { animation: floatAnim3 6s ease-in-out infinite; }
.collage-img-wrap--4 .collage-img-float { animation: floatAnim4 9s ease-in-out infinite; }
.collage-img-wrap--5 .collage-img-float { animation: floatAnim5 6.5s ease-in-out infinite; }
.collage-img-wrap--6 .collage-img-float { animation: floatAnim6 7.5s ease-in-out infinite; }

/* ── RESPONSIVE MOBILE FIXES ──────────────────────── */
@media (max-width: 1024px) {
  .luxury-showcase-container {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* Accordion (product list) stays on top */
  .luxury-showcase__left {
    order: 1;
    padding-right: 0;
    align-items: stretch;
    text-align: left;
    width: 100%;
    min-width: 0;
  }

  /* Slider — when moved inside accordion on mobile, takes full width */
  .slider-clip-wrap {
    width: 100%;
    min-height: 340px !important;
    border-radius: 16px;
    overflow: hidden;
    padding-bottom: 24px;
  }

  .categorySlider {
    padding: 15px 0 40px 0 !important;
  }

  /* Accordion body works same as desktop — JS controls max-height */
  .showcase-accordion-body {
    /* no override — let JS open/close it */
  }

  .luxury-showcase__text-wrapper {
    align-items: flex-start;
  }

  .luxury-showcase__desc {
    max-width: 100%;
  }

  /* Tighten accordion font size slightly on tablet/mobile */
  .showcase-accordion-title {
    font-size: clamp(18px, 4vw, 24px) !important;
  }

  .showcase-accordion-desc {
    font-size: 14px;
  }

  /* Ensure btn is visible on mobile */
  .accordion-btn {
    font-size: 11px;
    padding: 13px 28px;
  }

  /* Mobile finishes image strip — shown inside accordion body */
  .mobile-finishes {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 18px 0 8px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .mobile-finishes:empty {
    display: none;
  }

  .mobile-finishes .mf-item {
    flex: 0 0 auto;
    width: 130px;
    text-align: center;
    scroll-snap-align: start;
  }

  .mobile-finishes .mf-item img {
    width: 130px;
    height: 130px;
    object-fit: contain;
    border-radius: 12px;
    display: block;
    margin: 0 auto 6px;
  }

  .mobile-finishes .mf-item span {
    font-family: var(--sans, sans-serif);
    font-size: 11px;
    color: #4b5e60;
    display: block;
  }
}

/* Hide mobile-finishes on desktop */
@media (min-width: 1025px) {
  .mobile-finishes {
    display: none !important;
  }
}

@media (max-width: 600px) {
  .slider-clip-wrap {
    min-height: 240px;
  }
  .showcase-section {
    padding: 60px 16px 80px;
  }
  .showcase-intro {
    margin-bottom: 40px;
  }
}



/* ── TYPEWRITER ANIMATION ────────────────────────── */
.typing-cursor {
  display: inline-block;
  font-weight: 300;
  color: var(--aqua);
  animation: cursorBlink 0.8s infinite;
  margin-left: 4px;
}
@keyframes cursorBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* ── CTA FROM PEBBLEFINA ──────────────────────── */
.pf-cta {
  position: relative;
  overflow: hidden;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 100px 40px;
}

.pf-cta__bg {
  position: absolute;
  inset: 0;
  background-image: url('../about/image-33.png'); /* Set to requested about image */
  background-size: cover;
  background-position: center center;
  z-index: 0;
  filter: brightness(0.6) saturate(0.9);
}

.pf-cta__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65); /* Solid black tint overlay */
  z-index: 1;
}

.pf-cta__content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.pf-cta__accent-line {
  width: 48px; height: 3px;
  margin: 0 auto 24px;
  background: var(--aqua);
  border-radius: 2px;
}

.pf-cta__title {
  font-family: var(--serif);
  font-size: clamp(34px, 5.5vw, 70px);
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.pf-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 40px 15px 35px 15px / 15px 35px 15px 40px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease, border-radius 0.4s ease;
}

.pf-cta__btn:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.6);
  transform: scale(1.04);
  border-radius: 15px 40px 15px 35px / 35px 15px 40px 15px;
}

.pf-cta__btn-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--aqua);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.pf-cta__btn:hover .pf-cta__btn-icon { transform: rotate(45deg); }

.pf-cta__featured {
  position: absolute;
  bottom: 20px;
  right: 28px;
  z-index: 2;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.pf-cta__featured strong { color: var(--aqua); }

.box {
  --img-scale: 1.0;
  --box-width: var(--img-width, 245px);
  --box-height: var(--img-width, 245px);
  --frag-width: calc(var(--box-width) / var(--col));
  --frag-height: calc(var(--box-height) / var(--row));
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: var(--box-width);
  height: var(--box-height);
  position: relative;
  background-position: center !important;
  background-size: calc(var(--box-width) * var(--img-scale)) calc(var(--box-height) * var(--img-scale)) !important;
  background-repeat: no-repeat !important;
  border-radius: 12px;
  overflow: hidden;
}

.box.hide {
  background-image: none !important;
}

.box::after {
  content: "EXPLORE FINISH";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  font-family: var(--sans);
  font-weight: 500;
  cursor: pointer;
  color: #ffffff;
  background-color: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 5;
}

.box:hover::after {
  opacity: 1;
}

.box.hide::after {
  opacity: 0;
  pointer-events: none;
}

.fragment {
  --frag-width: calc(var(--box-width) / var(--col));
  --frag-height: calc(var(--box-height) / var(--row));
  --scaled-width: calc(var(--box-width) * var(--img-scale));
  --scaled-height: calc(var(--box-height) * var(--img-scale));
  --center-offset-x: calc(var(--box-width) * (var(--img-scale) - 1) / 2);
  --center-offset-y: calc(var(--box-height) * (var(--img-scale) - 1) / 2);
  --x-offset: calc((var(--x) * var(--frag-width) + var(--center-offset-x)) * -1);
  --y-offset: calc((var(--y) * var(--frag-height) + var(--center-offset-y)) * -1);
  --rotateX: rotateX(0);
  --rotateY: rotateY(0);
  width: var(--frag-width);
  height: var(--frag-height);
  background-position: var(--x-offset) var(--y-offset) !important;
  background-size: var(--scaled-width) var(--scaled-height) !important;
  background-repeat: no-repeat !important;
  backface-visibility: hidden;
  will-change: transform;
  transform: var(--rotateX) var(--rotateY) scale(0.8);
  animation: flip var(--duration) linear var(--delay) forwards;
  opacity: 0;
}

@keyframes flip {
  0% {
    transform: var(--rotateX) var(--rotateY) scale(0.8);
    opacity: 0;
  }
  15% {
    transform: var(--rotateX) var(--rotateY) scale(0.8);
    opacity: 0;
  }
  70% {
    transform: rotateX(0) rotateY(0) scale(0.8);
    opacity: 1;
  }
  100% {
    transform: rotateX(0) rotateY(0) scale(1);
    opacity: 1;
  }
}

/* ── SHOWCASE ACCORDION ───────────────────────── */
.showcase-accordion {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.showcase-accordion-item {
  border-left: 3px solid rgba(8, 89, 94, 0.12);
  padding: 20px 24px;
  transition: border-color 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              background-color 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 0 16px 16px 0;
  cursor: pointer;
  transform-style: preserve-3d;
}

.showcase-accordion-item.is-active {
  border-left-color: var(--deep-teal);
  background-color: rgba(8, 89, 94, 0.035);
  cursor: default;
}

.showcase-accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.showcase-accordion-title {
  font-family: var(--serif);
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 400;
  color: #8fa0a2;
  margin: 0;
  transition: color 0.3s ease;
}

.showcase-accordion-item:hover .showcase-accordion-title {
  color: var(--deep-teal);
}

.showcase-accordion-item.is-active .showcase-accordion-title {
  color: var(--ink);
  font-weight: 500;
}

.showcase-accordion-number {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.05em;
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.showcase-accordion-item.is-active .showcase-accordion-number {
  opacity: 1;
  transform: translateX(0);
}

.showcase-accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.showcase-accordion-desc {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.6;
  color: #4b5e60;
  margin: 16px 0 0 0;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.showcase-accordion-item.is-active .showcase-accordion-desc {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.1s,
              transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.1s;
}

.accordion-btn {
  margin-top: 20px;
  margin-bottom: 8px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease, background-color 0.4s ease, box-shadow 0.4s ease;
}

.showcase-accordion-item.is-active .accordion-btn {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.2s,
              transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.2s,
              background-color 0.4s ease,
              box-shadow 0.4s ease !important;
}

@media (max-width: 1024px) {
  .showcase-accordion {
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
    text-align: left;
  }
}


/* ═══════════════════════════════════════════════════════════
   GLASS CUBE STAGE — Premium Orbiting Gallery
   ═══════════════════════════════════════════════════════════ */

/* ── Stage Container ───────────────────────────────── */
.cube-stage {
  position: relative;
  flex: 1 1 60%;
  min-height: 480px;
  max-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  /* Prevent layout shift from the absolutely positioned cubes */
  isolation: isolate;
}

/* ── Ambient Environment ────────────────────────── */
.stage-ambience {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.stage-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0;
  animation: stageGlowPulse 8s ease-in-out infinite alternate;
}

.stage-glow--top {
  width: 380px; height: 200px;
  background: radial-gradient(ellipse, rgba(8, 89, 94, 0.25) 0%, transparent 70%);
  top: -40px; left: 50%; transform: translateX(-50%);
  animation-delay: 0s;
}
.stage-glow--left {
  width: 200px; height: 300px;
  background: radial-gradient(ellipse, rgba(0, 180, 180, 0.18) 0%, transparent 70%);
  left: 0; top: 20%;
  animation-delay: 2.5s;
}
.stage-glow--right {
  width: 200px; height: 300px;
  background: radial-gradient(ellipse, rgba(237, 121, 37, 0.12) 0%, transparent 70%);
  right: 0; top: 30%;
  animation-delay: 5s;
}

@keyframes stageGlowPulse {
  0%   { opacity: 0.4; transform: translateX(-50%) scale(1); }
  50%  { opacity: 0.7; transform: translateX(-50%) scale(1.08); }
  100% { opacity: 0.4; transform: translateX(-50%) scale(1); }
}

.stage-glow--left,
.stage-glow--right {
  animation-name: glowPulseSide;
}

@keyframes glowPulseSide {
  0%   { opacity: 0.25; }
  50%  { opacity: 0.5; }
  100% { opacity: 0.25; }
}

.stage-floor-reflect {
  position: absolute;
  bottom: 0; left: 10%; right: 10%; height: 80px;
  background: linear-gradient(to top, rgba(8, 89, 94, 0.06) 0%, transparent 100%);
  border-radius: 50%;
  filter: blur(12px);
}

/* ── Stage Particles ─────────────────────────────── */
.stage-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.stage-particle {
  position: absolute;
  border-radius: 50%;
  background: var(--aqua, #17aaae);
  opacity: var(--p-opacity, 0.3);
  animation: stageParticleFloat var(--p-duration, 12s) ease-in-out infinite;
}

@keyframes stageParticleFloat {
  0%   { transform: translateY(0) translateX(0); opacity: 0; }
  10%  { opacity: var(--p-opacity, 0.3); }
  90%  { opacity: var(--p-opacity, 0.3); }
  100% { transform: translateY(-120px) translateX(var(--p-drift, 20px)); opacity: 0; }
}

/* ── Orbit Track ──────────────────────────────────── */
.cube-orbit {
  position: absolute;
  top: 50%; left: 50%;
  width: 0; height: 0;
  transform-style: preserve-3d;
  transform: perspective(1000px);
  z-index: 2;
}

/* ── Cube Wrapper (orbit positioned) ─────────────── */
.cube-wrapper {
  --cube-sz: 175px;
  position: absolute;
  top: 0; left: 0;
  width: var(--cube-sz);
  height: var(--cube-sz);
  transform: translate(-50%, -50%);
  cursor: pointer;
  transform-style: preserve-3d;
  /* will-change set via JS */
}

/* ── Float Layer ──────────────────────────────────── */
.cube-float {
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  /* organic float handled by JS */
}

/* ── Tilt Layer (mouse parallax) ─────────────────── */
.cube-tilt {
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  /* tilt controlled by JS */
}

/* ── Glass Cube ────────────────────────────────────── */
.glass-cube {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transform: rotateX(-18deg) rotateY(28deg);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.22));
}

.cube-wrapper.is-hovered .glass-cube {
  transform: rotateX(-22deg) rotateY(32deg);
  filter: drop-shadow(0 28px 55px rgba(0,0,0,0.32));
}

/* ── Cube Faces ───────────────────────────────────── */
.gc-face {
  position: absolute;
  inset: 0;
  border-radius: 10px;
  overflow: hidden;
  backface-visibility: hidden;
}

/* Shared translucent glass material */
.gc-face::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.35), inset 0 -1px 0 rgba(0,0,0,0.08);
  pointer-events: none;
  z-index: 2;
}

/* Front face */
.gc-front {
  transform: translateZ(calc(var(--cube-sz) / 2));
}

/* Back face */
.gc-back {
  transform: rotateY(180deg) translateZ(calc(var(--cube-sz) / 2));
}

/* Side faces */
.gc-left {
  width: var(--cube-sz);
  left: calc(-1 * var(--cube-sz) / 2);
  right: auto;
  transform: rotateY(-90deg) translateZ(calc(var(--cube-sz) / 2));
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(8, 89, 94, 0.15) 100%);
  border: 1px solid rgba(255,255,255,0.14);
}

.gc-right {
  width: var(--cube-sz);
  right: calc(-1 * var(--cube-sz) / 2);
  left: auto;
  transform: rotateY(90deg) translateZ(calc(var(--cube-sz) / 2));
  background: linear-gradient(135deg, rgba(8, 89, 94, 0.12) 0%, rgba(255,255,255,0.06) 100%);
  border: 1px solid rgba(255,255,255,0.14);
}

/* Top face */
.gc-top {
  height: var(--cube-sz);
  top: calc(-1 * var(--cube-sz) / 2);
  bottom: auto;
  transform: rotateX(90deg) translateZ(calc(var(--cube-sz) / 2));
  background: linear-gradient(180deg, rgba(255,255,255,0.28) 0%, rgba(8,89,94,0.08) 100%);
  border: 1px solid rgba(255,255,255,0.3);
}

/* Bottom face */
.gc-bottom {
  height: var(--cube-sz);
  bottom: calc(-1 * var(--cube-sz) / 2);
  top: auto;
  transform: rotateX(-90deg) translateZ(calc(var(--cube-sz) / 2));
  background: linear-gradient(180deg, rgba(0,0,0,0.12) 0%, rgba(8,89,94,0.05) 100%);
  border: 1px solid rgba(255,255,255,0.06);
}

/* ── Face Image ────────────────────────────────────── */
.gc-face__img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: inherit;
  z-index: 0;
}

/* ── Face Gloss (specular highlight) ───────────────── */
.gc-face__gloss {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.38) 0%,
    rgba(255, 255, 255, 0.08) 35%,
    transparent 60%,
    rgba(255, 255, 255, 0.04) 100%
  );
  pointer-events: none;
  z-index: 3;
}

/* ── Face Edges (premium border glow) ──────────────── */
.gc-face__edge {
  position: absolute;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.55), transparent);
  pointer-events: none;
  z-index: 4;
  opacity: 0.8;
  transition: opacity 0.3s;
}
.gc-face__edge--top,
.gc-face__edge--bottom {
  height: 1.5px;
  left: 10%; right: 10%;
}
.gc-face__edge--top    { top: 0; }
.gc-face__edge--bottom { bottom: 0; background: linear-gradient(to right, transparent, rgba(255,255,255,0.25), transparent); }
.gc-face__edge--left,
.gc-face__edge--right {
  width: 1.5px;
  top: 10%; bottom: 10%;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.45), transparent);
}
.gc-face__edge--left  { left: 0; }
.gc-face__edge--right { right: 0; }

.cube-wrapper.is-hovered .gc-face__edge {
  opacity: 1;
}

/* ── Side Stripe Accent ─────────────────────────── */
.gc-face__stripe {
  position: absolute;
  inset: 15% 40%;
  background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
  border-radius: 4px;
}

/* ── Top Reflection ──────────────────────────────── */
.gc-face__top-reflect {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.5) 0%,
    rgba(255,255,255,0.12) 50%,
    transparent 100%
  );
  border-radius: inherit;
}

/* ── Corner Bloom Lights ─────────────────────────── */
.gc-corner-light {
  position: absolute;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.7) 0%, transparent 70%);
  pointer-events: none;
  z-index: 5;
  opacity: 0.45;
  transition: opacity 0.3s;
  transform: translateZ(calc(var(--cube-sz) / 2 + 1px));
}
.gc-corner-light--tl { top: -4px;  left: -4px;  }
.gc-corner-light--tr { top: -4px;  right: -4px; }
.gc-corner-light--bl { bottom: -4px; left: -4px; }
.gc-corner-light--br { bottom: -4px; right: -4px; }

.cube-wrapper.is-hovered .gc-corner-light {
  opacity: 0.8;
}

/* ── Outer Glow Ring ─────────────────────────────── */
.gc-glow-ring {
  position: absolute;
  inset: -12px;
  border-radius: 18px;
  border: 1.5px solid rgba(8, 89, 94, 0);
  box-shadow: 0 0 0 0 rgba(8, 89, 94, 0);
  transition: border-color 0.45s ease, box-shadow 0.45s ease;
  pointer-events: none;
  z-index: -1;
  transform: translateZ(0);
}

.cube-wrapper.is-hovered .gc-glow-ring {
  border-color: rgba(8, 89, 94, 0.45);
  box-shadow:
    0 0 22px 4px rgba(8, 89, 94, 0.22),
    0 0 50px 8px rgba(0, 200, 200, 0.10);
}

/* ── Cube Hover Label ────────────────────────────── */
.cube-label {
  position: absolute;
  bottom: -36px;
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(8, 89, 94, 0.92);
  color: #fff;
  font-family: var(--sans, 'Outfit', sans-serif);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 4px 14px rgba(0,0,0,0.18);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.16,1,0.3,1);
  backdrop-filter: blur(8px);
}

.cube-wrapper.is-hovered .cube-label {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ── RESPONSIVE OVERRIDES (LATE SPECIFICITY) ── */
@media (max-width: 1024px) {
  .showcase-accordion-desc {
    margin: 16px 24px 0 0 !important;
  }
}


