/* ═══════════════════════════════════════════════════════════════
   SHOWROOM SECTION — REVISED
   ═══════════════════════════════════════════════════════════════ */
.showroom {
  background: linear-gradient(135deg, rgba(10,20,40,.4) 0%, rgba(20,30,60,.3) 100%);
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
  padding: 3rem 0;
}

.showroom-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.showroom-desc {
  max-width: 550px;
  margin: .8rem auto 0;
  color: var(--text-color);
  line-height: 1.5;
  font-size: .95rem;
}

.showroom-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: stretch;
}

.showroom-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.showroom-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(99,161,255,.15);
  border-radius: .8rem;
  padding: 1.5rem;
}

.showroom-card-header {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}

.showroom-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(255,193,7,.2), rgba(255,193,7,.05));
  border: 1px solid rgba(255,193,7,.2);
  border-radius: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #ffc107;
}

.showroom-name {
  font-size: 1.15rem;
  color: var(--title-color);
  margin-bottom: .4rem;
  font-weight: 600;
}

.showroom-subtitle {
  color: var(--text-color-light);
  font-size: .85rem;
  line-height: 1.4;
  margin-bottom: 1rem;
}

.showroom-detail {
  display: flex;
  gap: .8rem;
  margin-bottom: 1rem;
  align-items: flex-start;
}

.showroom-detail i {
  font-size: 1.1rem;
  color: var(--first-color);
  flex-shrink: 0;
  margin-top: .15rem;
}

.showroom-label {
  font-size: .65rem;
  color: var(--text-color-light);
  text-transform: uppercase;
  letter-spacing: .04em;
  display: block;
  margin-bottom: .2rem;
  font-weight: 600;
}

.showroom-value {
  color: var(--title-color);
  font-size: .9rem;
  margin: 0;
  font-weight: 500;
}

.showroom-value a {
  color: var(--first-color);
  text-decoration: none;
  transition: opacity .2s;
}

.showroom-value a:hover {
  opacity: .8;
}

.showroom-btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: #fff;
  color: var(--body-color);
  padding: .6rem 1.2rem;
  border-radius: .5rem;
  font-weight: 600;
  font-size: .85rem;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
  margin-top: .8rem;
  cursor: pointer;
  border: none;
}

.showroom-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255,255,255,.1);
}

.showroom-gallery {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(99,161,255,.15);
  border-radius: .8rem;
  padding: 1.5rem;
}

.showroom-gallery h4 {
  font-size: 1rem;
  color: var(--title-color);
  margin-bottom: 1rem;
  font-weight: 600;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .6rem;
}

.gallery-thumb {
  display: block;
  overflow: hidden;
  border-radius: .5rem;
  border: 1px solid rgba(99,161,255,.15);
  cursor: pointer;
  transition: transform .3s, border-color .2s, box-shadow .3s;
  aspect-ratio: 4/3;
  min-width: 240px;
  flex-shrink: 0;
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-thumb:hover {
  transform: scale(1.08) translateY(-4px);
  border-color: rgba(99,161,255,.4);
  box-shadow: 0 8px 24px rgba(99,161,255,.2);
}

.showroom-map {
  border-radius: .8rem;
  overflow: hidden;
  border: 1px solid rgba(99,161,255,.15);
  min-height: 350px;
  position: relative;
}

.showroom-gallery-full {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(99,161,255,.1);
}

.gallery-grid-wide {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 1rem;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: .8rem;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.gallery-grid-wide::-webkit-scrollbar {
  height: 6px;
}

.gallery-grid-wide::-webkit-scrollbar-track {
  background: rgba(99,161,255,.05);
  border-radius: 10px;
}

.gallery-grid-wide::-webkit-scrollbar-thumb {
  background: rgba(99,161,255,.2);
  border-radius: 10px;
}

.gallery-grid-wide::-webkit-scrollbar-thumb:hover {
  background: rgba(99,161,255,.4);
}

/* Responsive */
@media screen and (max-width: 1024px) {
  .showroom-content {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .showroom-map {
    min-height: 320px;
  }
}

@media screen and (max-width: 768px) {
  .showroom {
    padding: 2rem 0;
  }

  .showroom-header {
    margin-bottom: 2rem;
  }

  .showroom-card {
    padding: 1.2rem;
  }

  .showroom-name {
    font-size: 1rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .showroom-map {
    min-height: 280px;
  }
}

@media screen and (max-width: 576px) {
  .showroom-content {
    grid-template-columns: 1fr;
  }

  .showroom-gallery {
    margin-top: 1rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .showroom-map {
    min-height: 250px;
  }

  .showroom-info {
    gap: 1rem;
  }
}
