.tours-section{
  padding:42px 32px 48px;
  background:#fff;
}

.section-intro{
  text-align:center;
  color:var(--muted);
  line-height:1.6;
  font-size:14px;
  max-width:680px;
  margin:0 auto 28px;
}

.tour-packages-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:22px;
}

.tour-card-large{
  background:#fff;
  border:1px solid var(--border);
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 14px 32px rgba(15,23,42,.08);
}

.tour-carousel{
  position:relative;
  background:#f1f5f9;
}

.carousel-main{
  position:relative;
  height:260px;
  overflow:hidden;
}

.carousel-slide{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  opacity:0;
  transform:scale(1.02);
  transition:opacity .25s ease, transform .25s ease;
}

.carousel-slide.active{
  opacity:1;
  transform:scale(1);
}

.carousel-btn{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:38px;
  height:38px;
  border:0;
  border-radius:999px;
  background:rgba(0,31,91,.72);
  color:#fff;
  font-size:30px;
  line-height:1;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:4;
}

.carousel-btn.prev{left:12px}
.carousel-btn.next{right:12px}

.carousel-thumbs{
  display:grid;
  grid-template-columns:repeat(6, 1fr);
  gap:4px;
  padding:5px;
  background:#fff;
}

.carousel-thumb{
  border:2px solid transparent;
  padding:0;
  background:none;
  height:52px;
  border-radius:8px;
  overflow:hidden;
  cursor:pointer;
}

.carousel-thumb.active{
  border-color:var(--teal);
}

.carousel-thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.tour-card-content{
  padding:18px;
}

.tour-card-top{
  display:flex;
  justify-content:space-between;
  gap:12px;
  align-items:flex-start;
}

.tour-card-top h3{
  margin:0 0 8px;
  color:var(--navy);
  font-size:22px;
  line-height:1.15;
}

.tour-meta{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  color:#334155;
  font-size:13px;
  font-weight:700;
}

.tour-expand{
  width:34px;
  height:34px;
  border-radius:999px;
  border:2px solid var(--teal);
  background:#fff;
  color:var(--teal);
  font-size:24px;
  font-weight:900;
  cursor:pointer;
  flex:0 0 auto;
}

.tour-card-body{
  margin-top:15px;
}

.tour-highlights{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:8px 18px;
  margin:0;
  padding:0;
  list-style:none;
  color:#334155;
  font-size:13px;
  line-height:1.45;
}

.tour-highlights li{
  position:relative;
  padding-left:20px;
}

.tour-highlights li::before{
  content:"✓";
  position:absolute;
  left:0;
  top:0;
  color:var(--teal);
  font-weight:900;
}

.tour-card-footer{
  margin-top:18px;
  display:flex;
  justify-content:flex-end;
}

@media(max-width:900px){
  .tour-packages-grid{
    grid-template-columns:1fr;
  }

  .carousel-main{
    height:240px;
  }
}

@media(max-width:560px){
  .tours-section{
    padding:34px 18px 40px;
  }

  .carousel-main{
    height:220px;
  }

  .tour-highlights{
    grid-template-columns:1fr;
  }

  .tour-card-footer{
    justify-content:flex-start;
  }
}

.tour-select-pill{
  position:absolute;
  z-index:5;
  top:12px;
  left:12px;
  background:#fff;
  color:var(--navy);
  border-radius:999px;
  padding:9px 13px;
  font-weight:900;
  box-shadow:0 10px 24px rgba(0,0,0,.16);
}

.tour-card-large{
  position:relative;
}

.tour-cart-panel{
  margin-top:28px;
  background:#f8fafc;
  border:1px solid var(--border);
  border-radius:20px;
  padding:22px;
}

.tour-cart-panel > div:first-child{
  display:flex;
  justify-content:space-between;
  color:var(--navy);
  font-size:20px;
  margin-bottom:18px;
}

.tour-customer-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
  margin-bottom:18px;
}

.tour-customer-grid input,
.tour-customer-grid textarea{
  border:1px solid var(--border);
  border-radius:10px;
  padding:13px;
  font-family:inherit;
}

.tour-customer-grid textarea{
  grid-column:1 / -1;
}

@media(max-width:700px){
  .airport-only-quote,
  .tour-customer-grid{
    grid-template-columns:1fr;
  }
}

.tour-price-icons{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin:12px 0 4px;
}

.tour-price-icons span{
  background:#eef7fa;
  color:var(--navy);
  border-radius:999px;
  padding:8px 12px;
  font-weight:900;
  font-size:13px;
}

.tour-card-large .primary-cta{
  margin-top:16px;
}

.tour-cart-drawer{
  position:fixed;
  inset:0;
  z-index:1200;
  pointer-events:none;
  background:rgba(0,31,91,.18);
  opacity:0;
  transition:.25s ease;
}

.tour-cart-drawer.open{
  opacity:1;
  pointer-events:auto;
}

.tour-cart-panel-new{
  position:absolute;
  right:0;
  top:0;
  height:100%;
  width:min(520px,96vw);
  background:#fff;
  box-shadow:-18px 0 50px rgba(0,0,0,.22);
  padding:24px;
  overflow:auto;
  transform:translateX(100%);
  transition:.25s ease;
}

.tour-cart-drawer.open .tour-cart-panel-new{
  transform:translateX(0);
}

.tour-cart-head{
  display:flex;
  justify-content:space-between;
  gap:16px;
  align-items:flex-start;
  border-bottom:1px solid var(--border);
  padding-bottom:16px;
  margin-bottom:16px;
}

.tour-cart-head h2{
  margin:0;
  color:var(--navy);
}

.tour-cart-head p{
  margin:5px 0 0;
  color:var(--muted);
}

.tour-cart-close{
  width:38px;
  height:38px;
  border:0;
  border-radius:999px;
  background:#eef7fa;
  color:var(--teal);
  font-size:26px;
  cursor:pointer;
}

.tour-cart-item{
  border:1px solid var(--border);
  border-radius:16px;
  padding:15px;
  margin-bottom:14px;
  background:#f8fafc;
}

.tour-cart-item h3{
  margin:0 0 12px;
  color:var(--navy);
}

.tour-cart-controls{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
}

.tour-cart-controls label{
  display:block;
  font-size:12px;
  font-weight:900;
  color:#334155;
}

.tour-cart-controls input,
.tour-cart-controls select{
  width:100%;
  border:1px solid var(--border);
  border-radius:10px;
  padding:11px;
  margin-top:6px;
}

.tour-cart-price-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-top:12px;
  font-weight:900;
}

.remove-tour{
  border:0;
  background:#fee2e2;
  color:#991b1b;
  border-radius:999px;
  padding:8px 12px;
  cursor:pointer;
  font-weight:900;
}

.tour-cart-warning{
  background:#fff7ed;
  color:#9a3412;
  border:1px solid #fed7aa;
  border-radius:12px;
  padding:10px;
  margin:10px 0;
  font-size:13px;
}

.tour-cart-total{
  display:flex;
  justify-content:space-between;
  align-items:center;
  font-size:22px;
  color:var(--navy);
  border-top:1px solid var(--border);
  padding-top:18px;
  margin-top:18px;
  margin-bottom:18px;
}

.tour-form-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
  margin-bottom:18px;
}

.tour-form-grid input,
.tour-form-grid textarea{
  border:1px solid var(--border);
  border-radius:10px;
  padding:13px;
  font-family:inherit;
}

.tour-form-grid textarea{
  grid-column:1 / -1;
}

@media(max-width:600px){
  .tour-cart-controls,
  .tour-form-grid{
    grid-template-columns:1fr;
  }
}

.floating-tour-cart{
  position:fixed;
  right:22px;
  bottom:92px;
  z-index:1100;
  border:0;
  background:linear-gradient(135deg,var(--teal2),var(--teal));
  color:#fff;
  border-radius:999px;
  width:62px;
  height:62px;
  font-size:24px;
  font-weight:900;
  box-shadow:0 18px 38px rgba(0,31,91,.28);
  cursor:pointer;
}

.floating-tour-cart span{
  position:absolute;
  top:-6px;
  right:-6px;
  min-width:24px;
  height:24px;
  border-radius:999px;
  background:var(--navy);
  color:#fff;
  font-size:13px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.remove-tour{
  width:42px;
  height:42px;
  padding:0 !important;
  font-size:18px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.tour-pickup-wrap{
  position:relative;
}

.tour-pickup-suggestions{
  position:absolute;
  left:0;
  right:0;
  top:100%;
  background:#fff;
  border:1px solid var(--border);
  border-radius:12px;
  box-shadow:var(--shadow);
  z-index:30;
  overflow:hidden;
}

.tour-pickup-suggestions button{
  display:block;
  width:100%;
  border:0;
  background:#fff;
  padding:12px;
  text-align:left;
  cursor:pointer;
}

.tour-pickup-suggestions button:hover{
  background:#f1f5f9;
}

.floating-tour-cart{
  display:none !important;
}

/* drawer width fix */
.tour-cart-panel-new{
  width:min(440px,92vw) !important;
}

@media(max-width:640px){
  .tour-cart-panel-new{
    width:92vw !important;
  }
}
