.showroom3d-scope {
  position: relative;
}

.showroom3d-scope .showroom3d-stage {
  position: relative;
  width: 100%;
  min-height: 70vh;
  height: 70vh;
  cursor: grab;
  z-index: 1;
  overflow: hidden;
}

.showroom3d-scope .showroom3d-stage:active {
  cursor: grabbing;
}

.showroom3d-scope .showroom3d-swiper {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.showroom3d-scope .swiper-wrapper {
  align-items: center;
  flex-direction: row;
}

.showroom3d-scope .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
}

.showroom3d-scope .showroom3d-image {
  width: 150px;
  height: 150px;
  margin: 0 auto 1rem;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(230, 194, 122, 0.6);
  background: linear-gradient(145deg, rgba(230, 194, 122, 0.1), rgba(15, 15, 16, 0.85));
  box-shadow: 0 0 18px rgba(230, 194, 122, 0.25);
}

.showroom3d-scope .showroom3d-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.showroom3d-scope .showroom3d-features {
  margin: 0.75rem 0 0;
  padding-left: 1.1rem;
  color: var(--text-muted);
  font-size: 0.875rem;
}

.showroom3d-scope .showroom3d-features li {
  margin-bottom: 0.35rem;
}

.showroom3d-scope .showroom3d-empty {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(237, 237, 237, 0.7);
  font-size: 1rem;
  text-align: center;
}

.showroom3d-scope .card {
  background: var(--bg-card);
  padding: 1rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  width: clamp(200px, 22vw, 260px);
  box-shadow: var(--shadow);
  font-size: 14px;
}

.showroom3d-scope .card h3 {
  color: var(--text-main);
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-size: 16px;
}

.showroom3d-scope .card p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-size: 14px;
  font-weight: 400;
}

.showroom3d-scope .card-img {
  height: 200px;
  background-color: #222;
  margin-bottom: 1rem;
  border-radius: 8px;
  background-size: cover;
  background-position: center;
}

.showroom3d-scope .card-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.showroom3d-scope .card-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

.showroom3d-scope .swiper-no-swiping {
  pointer-events: auto;
}

.showroom3d-scope .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-size: 14px;
  min-height: 40px;
  min-width: 120px;
}

.showroom3d-scope .btn-primary {
  background: var(--primary);
  color: #000;
}

.showroom3d-scope .btn-outline {
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-main);
}

.showroom3d-scope .product-card {
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: linear-gradient(145deg, rgba(18,18,20,0.95), rgba(12,12,13,0.95));
  border-color: rgba(230, 194, 122, 0.25);
}

.showroom3d-scope .template-cinematic {
  background: linear-gradient(145deg, rgba(18,18,20,0.95), rgba(12,12,13,0.95));
  border-color: rgba(230, 194, 122, 0.25);
}

.showroom3d-scope .product-card::after {
  content: '';
  position: absolute;
  inset: -50% auto auto -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(120deg, transparent, rgba(230, 194, 122, 0.2), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.showroom3d-scope .product-card:hover::after {
  transform: translateX(0%);
}

@media (max-width: 768px) {
  .showroom3d-scope .showroom3d-stage {
    min-height: 60vh;
    height: 60vh;
  }

  .showroom3d-scope .card {
    width: 220px;
  }
}
