/* === Galerie / Showroom Tyshara === */
.gallery-filter h2 {
 font-size: 1.8rem;
 font-family: 'Satisfy', cursive;
}
.gallery-showroom-container {
  max-width: 1200px;
  margin: 0 auto;

}

.hero-gallery {
  text-align: center;
 
}

.gallery-main-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  margin-top: 2rem;
}

.gallery-filter-wrapper {
  flex: 0 0 250px;
}

.gallery-filter {
  text-align: left;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  color: #4a3b35;
}

.gallery-filter label  {
  font-family: 'Satisfy', cursive;
  font-size: 1.2rem;
  color: #4a3b35;
  margin-bottom: 0.4rem;
  width: 100%;
  max-width: 700px;
  white-space: normal;
  line-height: 1.4;
  display: block;
  text-align: center;
}

.gallery-filter select {
  padding: 0.6rem 1rem;
  font-size: 1.1rem;
  border-radius: 8px;
  border: 1px solid #ccc;
  background: #faf2e7;
  color: #4a3b35;
  transition: box-shadow 0.3s ease;
  font-family: 'Montserrat', sans-serif;
}

.gallery-filter select:focus {
  outline: none;
  box-shadow: 0 0 6px rgba(204, 166, 158, 0.6);
}

#gallery-wrapper {
  flex-grow: 1;
}

.hero-gallery h1.section-title {
  font-family: 'Satisfy', cursive;
  font-size: 2.8rem;
  margin-bottom: 0.3rem;
  margin-top: 0.3rem;
  color: #4a3b35;
}

.hero-gallery p.section-description {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  color: #73504f;
  margin-bottom: 0.8rem;
}

.gallery-carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;

}

.gallery-scroll-container {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 1rem;
}

.carousel-card {
  flex: 0 0 auto;
  width: 280px;
  background: rgba(250, 242, 231, 0.8);
  border-radius: 1rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.carousel-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 10px rgba(204, 166, 158, 0.7);
}

.image-container {
  position: relative;
  height: 250px;
  overflow: hidden;
  border-radius: 0.5rem;
}

.carousel-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.5rem;
}

.image-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  padding: 0 10px;
  transform: translateY(-50%);
}

.image-nav span {
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  padding: 0.2rem 0.6rem;
  cursor: pointer;
  font-size: 1.5rem;
  color: #73504f;
  box-shadow: 0 0 6px rgba(204, 166, 158, 0.6);
  transition: background 0.3s ease;
}

.image-nav span:hover {
  background: rgba(204, 166, 158, 0.9);
}

.carousel-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  color: #4a3b35;
  margin-top: 0.5rem;
}
