.tour-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  padding: 0.5rem;
}
.tour-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.2s ease;
}

.tour-card h2 {
  margin: 0;
  text-align:center;
  color: #1b5e20;
  font-size: 1.5rem;
}
.tour-card .subtitle {
  text-align:center;
  color: #555;
  font-style: italic;
  margin-bottom: 0.8rem;
}
.tour-card .section-info {
  font-size: 0.95rem;
  margin: 0.5rem 0;
  width:100%;
}
.tour-card .price {
  color: #000;
  font-weight: bold;
  font-size: 1.1rem;
  margin-top: 1rem;
}
.tour-card p {
  margin: 0.3rem 0;
}
.tour-card .tags {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.tag {
  background: #e0f2f1;
  color: #004d40;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  font-size: 0.85rem;
}
.flex {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.hidden {
  display: none;
}
.tour-card .description {
  width: 95%;
  text-align: left;
}
.tour-card p {
  width: 95%;
  text-align: left;
}
.tour-card img {
  width: 50%;
  border-radius: 8px;
}
.img-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
}
select {
  padding: 0.5rem;
  background-color: transparent;
  font-size: 1rem;
}
.btn-l {
  position:absolute;
  left:25%;
  top: 50%;
}
.btn-r {
  position:absolute;
  right:25%;
  top: 50%;
}
@media screen and (max-width: 754px) {
  .btn-l {
    position:absolute;
    left:0%;
    top: 50%;
  }
  .btn-r {
    position:absolute;
    right: 0;
    top: 50%;
  }
  select {
    padding: 0.5rem;
    background-color: transparent;
    font-size: 0.7rem;
  }
  .flex {
    flex-direction: column;
    align-items: center;
  }
  .tour-card img {
    width: 100%;
  }
  .tour-card .description {
    width: 100%;
    text-align: center;
  }
  .tour-card p {
    width: 100%;
    text-align: center;
  }
}
.book-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #1b5e20;
  color: white;
  padding: 0.8rem 1.2rem;
  border: none;
  border-radius: 30px;
  font-size: 1rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  cursor: pointer;
  z-index: 9999999999;
  transition: background 0.3s;
}
.book-btn:hover {
  background: #2e7d32;
}
.tour-grid.flex.icon {
  color:white;
  width:15px;
}
.icon-container {
  display:flex;
}
.hidden {
  display: none;
}
