.storefront-3d-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  padding: 20px;
}

.storefront-3d-card {
  background: #0a0f1a;
  padding: 20px;
  border-radius: 18px;
  box-shadow: 0 0 25px rgba(0,0,0,0.6);
  transform-style: preserve-3d;
}

.storefront-3d-scene {
  position: relative;
  height: 280px;
  background: linear-gradient(to bottom, #1a2438, #0e1422);
  border-radius: 16px;
  overflow: hidden;
  perspective: 900px;
  border: 1px solid #24304a;
}

/* Glass Door */
.storefront-door {
  position: absolute;
  width: 180px;
  height: 260px;
  top: 10px;
  left: 10px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  transform: rotateY(-12deg) translateZ(30px);
}

/* Business Name on Glass */
.business-name {
  color: #79aaff;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

/* Neon OPEN Sign */
.open-sign {
  font-size: 1.0rem;
  font-weight: bold;
  color: #00e6ff;
  text-shadow: 0 0 5px #00e6ff, 0 0 15px #00e6ff;
}

/* 3D Interior */
.office-interior {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 70%;
  height: 100%;
  background: radial-gradient(circle at top left, #2a3958, #101624);
  transform: rotateY(15deg) translateZ(-40px);
}

/* Interior props */
.desk {
  position: absolute;
  bottom: 20px;
  left: 30px;
  width: 120px;
  height: 40px;
  background: #1b2535;
  border-radius: 6px;
}

.lamp {
  position: absolute;
  bottom: 60px;
  left: 35px;
  width: 20px;
  height: 20px;
  background: #4da6ff;
  border-radius: 50%;
  box-shadow: 0 0 20px #4da6ff;
}

.sofa {
  position: absolute;
  bottom: 15px;
  right: 25px;
  width: 90px;
  height: 35px;
  background: #0f1a2d;
  border-radius: 8px;
}
.my-video-title {
    background: rgba(0, 0, 0, 0.7) !important;
    color: #ffffff !important;
    padding: 20px !important;
    text-align: center !important;
    display: block !important;
    width: 100% !important;
    z-index: 99 !important;
}