  .booking-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding: 30px;
    background: #f8f9fa;
}

.gallery-side {
    flex: 1;
    min-width: 300px;
    max-width: 48%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 0px;
    row-gap: 1px;
}

.gallery-side img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
    height: 480px;
  
}

.form-side {
    flex: 1;
    min-width: 300px;
    max-width: 48%;
}

.form-side h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.form-section {
    margin-bottom: 15px;
}

select, input[type="number"] {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    margin-top: 8px;
}

.btn-book {
    display: inline-block;
    padding: 12px 25px;
    background:  black;
    color: #fff;
    font-weight: bold;
    border: none;
    border-radius: 6px;
    margin-top: 10px;
    font-size: 16px;
}

.tile-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 16px;
    margin-top: 10px;
}

.tile-box {
    flex: 0 0 30%;  /* Reduced from 33.33% */
    max-width: 20%;
    background: #fff;
    border: 2px solid #ccc;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.tile-box img {
    width: 100%;
    height: 180px;  /* Reduced from 180px */
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    .tile-box {
        flex: 0 0 48%;
        max-width: 28%;
    }
}

@media (max-width: 480px) {
    .tile-box {
        flex: 0 0 100%;
        max-width: 35%;
    }

    .tile-box img {
        height: 120px;
    }
}
.tile-box:hover,
input[type="radio"]:checked + .tile-box {
    border-color: #C1A78C;
    background-color: #C1A78C;
}


.tile-title {
    padding: 10px;
    font-weight: 600;
    font-size: 15px;
    color: #333;
}
.event-title {
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 10px;
    color: #333;
}

.event-pricing {
    font-size: 20px;
    margin-bottom: 15px;
}

.original-price {
    text-decoration: line-through;
    color: #999;
    margin-right: 10px;
}

.discounted-price {
    color: #e53935;
    font-weight: bold;
    font-size: 22px;
}

.savings {
    margin-left: 10px;
    color: #28a745;
    font-weight: 600;
}

.time-slot-buttons, .slot-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.slot-btn {
    padding: 10px 18px;
    border: 2px solid #ccc;
    background: white;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

.slot-btn:hover {
    background: #f0f0f0;
}

.slot-btn.active {
    border-color: #C1A78C;
    background: #C1A78C;
    font-weight: bold;
    color: white;
}

.booking-header {
    background-color: #C1A78C!important;
    padding: 50px 20px;
    text-align: center;
}

.booking-header h1 {
    font-size: 36px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 10px;
}

.booking-header p {
    font-size: 16px;
    color: #f3f3f3;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
    .booking-container {
        flex-direction: column;
        padding: 20px;
    }

    .gallery-side {
        max-width: 100%;
        grid-template-columns: 1fr;
    }

    .form-side {
        max-width: 100%;
    }

    .tile-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }

    .gallery-side img {
        height: 280px;
    }

    .slot-btn {
        padding: 8px 14px;
        font-size: 14px;
    }

    .booking-header h1 {
        font-size: 26px;
    }

    .booking-header p {
        font-size: 14px;
    }
}
.booking-container {
  display: flex;
  flex-wrap: wrap;
  padding: 30px;
  gap: 20px;
}

@media (max-width: 768px) {
  .booking-container {
    flex-direction: column;
    padding: 20px;
  }
}

.participants-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.participants-wrapper {
    display: flex;
    align-items: center;
    border: 2px solid #ccc;
    border-radius: 8px;
    background: transparent;
    height: 46px;
    padding: 0 8px;
    margin-top:7px;
}

.participant-btn {
    width: 40px;
    height: 100%;
    font-size: 20px;
    font-weight: bold;
    background-color: transparent;
    color: #333;
    border: none;
    cursor: pointer;
}

.participant-btn:hover {
    color: #28a745;
}

.participants-wrapper input[type="number"] {
    width: 50px;
    height: 100%;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    border: none;
    background: transparent;
    outline: none;
}

/* Updated Add to Bag Button */
.btn-book {
    flex: 1;
    max-width: 600px;
    height: 46px;
    background-color: #C1A78C;
    color: #fff;
    font-weight: bold;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    padding: 0 15px;
    cursor: pointer;
}

.btn-book:hover
{
    background-color:#C1A78C;
}
.form-benefits {
    margin-top: 30px;
    padding: 20px;
    background: #f1f1f1;
    border-radius: 10px;
}

.form-benefits h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
}

.form-benefits ul {
    list-style: none;
    padding-left: 0;
    font-size: 16px;
    color: #555;
}

.form-benefits li {
    margin-bottom: 8px;
}


.promo-bottom {
  background: #fff;
  padding: 50px 20px;
  margin-top: 60px;
  box-shadow: 0 -1px 12px rgba(0, 0, 0, 0.05);
}

.promo-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.promo-left {
  flex: 1;
  min-width: 260px;
}

.promo-left h2 {
  font-size: 28px;
  color: #333;
  margin-bottom: 15px;
}

.promo-left p {
  font-size: 16px;
  color: #555;
  margin-bottom: 20px;
}

.promo-btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: #C1A78C;
  color: white;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
}

.promo-btn:hover {
  background-color: #5e7b52;
}

.promo-right {
  flex: 1;
  min-width: 280px;
}

.promo-right img {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
  border-radius: 12px;
}

.gallery-side {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 5px;
    row-gap:0px;
}

.slide-item {
    width: 100%;
    height:auto;
}
.gallery-side.mobile-slider {
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
}

@media (max-width: 768px) {
    .gallery-side.mobile-slider {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 12px;
        padding-bottom: 10px;
    }

    .gallery-side.mobile-slider .slide-item {
        flex: 0 0 80%;
        scroll-snap-align: start;
        border-radius: 8px;
    }

    .gallery-side.mobile-slider img {
        width: 100%;
        height: 280px;
        object-fit: cover;
        border-radius: 8px;
    }
}
input[type="checkbox"] {
    transform: scale(1.2);
    margin-right: 8px;
}


    .review-section {
  background: #f9f9f9;
  padding: 50px 20px;
  margin-top: 50px;
}

.review-title {
  text-align: center;
  margin-bottom: 30px;
}

.review-title h2 {
  font-size: 28px;
  font-weight: 700;
  color: #333;
}

.review-list {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.review-box {
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  flex: 0 0 300px;
  max-width: 300px;
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.review-header strong {
  font-size: 16px;
  color: #222;
}

.stars {
  color: #f4c150;
  font-size: 16px;
}

.review-box p {
  font-size: 15px;
  color: #555;
  line-height: 1.5;
}

