.decor-name{
    border:1px solid rgb(226, 226, 226);
    z-index:199 !important;
    background-color: rgb(239, 245, 244);
}
.btn-theme{
    background-color: lightseagreen;
    color: white;
    border-radius: 5px;
    padding: 5px 10px;
    border: none;
    cursor: pointer;
}
.btn-theme:hover{
    background-color: rgb(17, 143, 137);
    color: white;
    border-radius: 5px;
    padding: 5px 10px;
    border: none;
    cursor: pointer;
}
.decor-price{
    border:1px solid rgb(226, 226, 226);
    padding: 2px 15px;
    background-color: rgba(90, 180, 165, 0.959);
}
/* -----------------------------------
      Gallery Section
--------------------------------------*/
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  /* Always 4 columns */
  gap: 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  padding: 15px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-item:hover .overlay {
  opacity: 1;
}

.overlay h3 {
  margin: 0;
  font-size: 1rem;
}

/* Responsive for tablets and phones */
@media (max-width: 1024px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .gallery {
    grid-template-columns: 1fr;
  }
}
