/* ============================================================
   BAMBOX PREMIUM — 3D PRODUCT PREVIEW
   Version: Enterprise v1.0
   Focus: Mobile GPU Safety | Visual Stability
============================================================ */

/* ============================================================
   WRAPPER
============================================================ */

.bbx-product-3d {
  padding: clamp(40px, 6vw, 120px) 0;
  background: #f7f7f7;
}

.bbx-product-3d .bbx-container {
  text-align: center;
}

/* ============================================================
   TITLE
============================================================ */

.bbx-product-3d h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 10px;
}

.bbx-product-3d p {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 40px;
}

/* ============================================================
   CANVAS WRAPPER
============================================================ */

.product-3d-wrapper {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  aspect-ratio: 1 / 1;
}

/* ============================================================
   THREE.JS CANVAS
============================================================ */

#product3D {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 16px;
  background: radial-gradient(
    circle at top,
    #ffffff,
    #f0f0f0 60%,
    #e6e6e6
  );
}

/* ============================================================
   GPU SAFETY (CRITICAL)
============================================================ */

@media (max-width: 768px) {

  #product3D {
    image-rendering: optimizeSpeed;
    image-rendering: -webkit-optimize-contrast;
    will-change: transform;
  }

}

/* ============================================================
   FALLBACK IMAGE
============================================================ */

.product-fallback {
  display: none;
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.12);
}

/* ============================================================
   LOADING STATE
============================================================ */

.product-3d-loading {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #666;
  background: rgba(255,255,255,0.9);
  border-radius: 16px;
}

/* ============================================================
   PRODUCT SWITCHER
============================================================ */

.bbx-product-switcher {
  margin-top: 24px;
}

.bbx-product-switcher label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 6px;
  color: #555;
}

.bbx-product-switcher select {
  width: 100%;
  max-width: 240px;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ddd;
}

/* ============================================================
   COLOR SWATCHES (3D)
============================================================ */

.bbx-color-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 18px;
}

.bbx-color-row .color-swatch {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid #ccc;
  cursor: pointer;
}

/* ============================================================
   DESKTOP ENHANCEMENT
============================================================ */

@media (min-width: 900px) {

  .product-3d-wrapper {
    max-width: 620px;
  }

}
