/* NWC Booking Grid Cards – responsive + tight gaps */

/* Reduce distance between cards (ONLY bookable items) */
.w-grid-item.nwc-bookable{ padding: 2px !important; }
.owl-item > .w-grid-item.nwc-bookable{ padding: 2px !important; }

/* Card base */
.nwc-card-body{
  background: rgba(255,255,255,.95);
  border-radius: 16px;
  padding: clamp(10px, 1.4vw, 14px);
  box-sizing: border-box;
}

/* Top row */
.nwc-card-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-bottom: 8px;
}

.nwc-card-type{
  font-weight: 900;
  font-size: clamp(11px, 1.2vw, 12px);
  opacity: .8;
  display:flex;
  align-items:center;
  gap:6px;
}

/* Gold stars */
.nwc-stars{
  letter-spacing: 1px;
  font-size: 12px;
  color: #d4af37;
}

/* Brand logo (no circle, no crop) */
.nwc-brand{
  display:flex;
  align-items:center;
  justify-content:center;
  width: clamp(46px, 6vw, 60px);
  height: clamp(22px, 3.2vw, 37px);
  border: 0;
  background: transparent;
  border-radius: 0;
  overflow: visible;
  flex: 0 0 auto;
}
.nwc-brand-img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  display:block;
}
.nwc-brand-fallback{
  font-weight: 900;
  font-size: 12px;
  opacity:.75;
  border:1px solid rgba(0,0,0,.10);
  border-radius: 10px;
  padding: 6px 8px;
  background:#fff;
}

/* Title: remove inherited paddings */
.nwc-card-title{
  margin:0 !important;
  padding:0 !important;
  font-weight: 900;
  font-size: clamp(14px, 1.6vw, 16px);
  line-height: 1.25;
}
.nwc-card-title a{
  text-decoration:none;
  padding:0 !important;
  margin:0 !important;
  display:inline;
}

/* Location + date */
.nwc-card-loc{
  margin-top:6px;
  font-size: clamp(12px, 1.3vw, 13px);
  opacity:.75;
  font-weight: 700;
}

.nwc-card-date{
  margin-top: 8px;
  font-size: clamp(12px, 1.3vw, 13px);
  opacity:.82;
  display:flex;
  align-items:center;
  gap:8px;
  font-weight: 700;
  flex-wrap: wrap;
}
.nwc-ico{ font-size: 14px; opacity:.85; }

/* Price box */
.nwc-card-price{
  margin-top: 12px;
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:10px;
  padding: 12px;
  border-radius: 14px;
  background: rgba(0,0,0,.03);
  border: 1px solid rgba(0,0,0,.06);
  flex-wrap: wrap;
}

.nwc-card-total{
  font-weight: 900;
  opacity: .9;
  font-size: clamp(12px, 1.25vw, 13px);
}

.nwc-card-pp{
  text-align:right;
  font-weight: 900;
  opacity:.95;
}

/* Responsive price size (mobile included) */
.nwc-money.big{
  font-size: clamp(20px, 5.8vw, 28px);
  line-height: 1;
  letter-spacing: .2px;
}

.nwc-suffix{
  font-size: clamp(11px, 2.8vw, 12px);
  opacity: .7;
  font-weight: 800;
  white-space: nowrap;
}

/* CTA */
.nwc-card-btn{
  display:flex;
  align-items:center;
  justify-content:center;
  margin-top: 12px;
  height: clamp(42px, 6vw, 46px);
  border-radius: 12px;
  font-weight: 900;
  letter-spacing: .6px;
  text-transform: uppercase;
  text-decoration:none;
  background: #4273b3;
  color: #fff !important;
  border: 1px solid #4273b3;
}
.nwc-card-btn:hover{ filter: brightness(1.05); }

/* Tablet & mobile: stack price nicely */
@media (max-width: 820px){
  .nwc-card-price{ padding: 10px; }
  .nwc-card-pp{ text-align:left; }
}

/* Small mobile: price box in column */
@media (max-width: 480px){
  .nwc-card-price{
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  .nwc-card-pp{ text-align:left; }
}
