/* === Booking Items Grid === */

h2.booking-week-title {
    font-size: 18px;
    margin-bottom: 30px;
}

.booking-items-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);  /* ALWAYS 3 columns */
  gap: 24px;
  justify-items: stretch;
  align-items: stretch;
  width: 100%;
  margin: 0 auto;
}

/* Tablet */
@media (max-width: 991px) {
  .booking-items-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 600px) {
  .booking-items-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}


.gift-card {
  border: 1px solid #e4e4e791;
  padding: 14px;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.2s ease-in-out;
}

.gift-card:hover {
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

.gift-card.selected {
  border: 1px solid #707070;    /* darker & thicker */
  box-shadow: 0 0 8px rgba(0,0,0,0.15);
}

/*
.gift-card.selected {
  outline: 3px solid #2f6fed;
  outline-offset: 1px;
}
*/

.gift-bu {
  font-family: "Helvetica Neue LT Ext", "Helvetica Neue", Arial, sans-serif !important;
  font-size: 18px !important;
  font-weight: 300;
  text-decoration: underline;
  text-transform: uppercase;
  color: #000000;
  cursor: pointer;
  margin-bottom: 15px;
}

.gift-title {
  font-family: "Helvetica Neue LT Ext", "Helvetica Neue", Arial, sans-serif !important;
  text-transform: uppercase;
  font-size: 18px !important;
  font-weight: 300;
  color: #000000;
  line-height: 1.3;
  margin-bottom: 8px;
  cursor: pointer;
  margin-bottom: 15px;
}

.gift-desc {
    font-family: "Heldane Text", serif !important;
    color: #000000;
    font-size: 16px !important;
    margin-bottom: 30px;
}

.gift-qty {
  font-size: 13px;
  color: #555;
  margin-bottom: 30px;
}

.gift-qty .ok {
  color: #147a14;
  font-weight: 600;
}

.gift-qty .zero {
  color: #c00;
  font-weight: 700;
}

.gift-select {
  display: inline-block;
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 0;
  background: #1f2937;
  color: #fff;
  cursor: pointer;
  text-align: center;
  font-weight: 600;
  transition: background 0.2s ease-in-out;
}

.gift-select:hover:not([disabled]) {
  background: #374151;
}

.gift-select[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}

.muted {
  color: #8a8a8a;
  text-align: center;
  grid-column: 1 / -1;
}


.gift-image-placeholder {
  width: 100%;
  aspect-ratio: 1 / 1;      /* keep it square */
  background: #eaeaea;
  margin-bottom: 16px;
  overflow: hidden;
  cursor: pointer;
}

.gift-image {
  width: 100%;
  height: 100%;
  object-fit: cover;         /* crop nicely */
  display: block;
}


.gift-radio input[type="radio"] {
  transform: scale(1.7);   /* increase size */
  /*accent-color: #000;*/ 
  cursor: pointer;
}


.gift-radio {
  display: flex;
  justify-content: center;
  margin-top: 10px;
      margin-bottom: 15px;
}
.gift-radio input[type="radio"] {
  margin: 0;
}

.booking-items-section {
  position: relative;
}


/**/

/*
.scroll-hint {
  display: none;
  text-align: center;
  font-size: 18px;
  margin-top: 20px;
  color: #4b5563;
  animation: blinkFade 1.2s infinite ease-in-out;
  opacity: 0.8;
}

@keyframes blinkFade {
  0% { opacity: 0.2; }
  50% { opacity: 1; }
  100% { opacity: 0.2; }
}
*/

.gift-card {
  position: relative; /* important: anchor for absolute hint */
}

/* floating hint inside a card */
.scroll-hint {
  position: absolute;
  background: #ffffff;
  border: 1px solid #ddd;
  padding: 6px 10px;
  font-size: 12px !important;
  color: #333;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  z-index: 999;
  white-space: nowrap;
  display: none;
  animation: blinkHint 1.2s infinite ease-in-out;
}

@keyframes blinkHint {
  0%   { opacity: 0.3; }
  50%  { opacity: 1;   }
  100% { opacity: 0.3; }
}

.gift-card.gift-sold-out {
  /*opacity: 0.45;*/
  pointer-events: none; /* no clicks at all */
}





.redeem_heading h2 {
    font-size: 26px !important;
    font-weight: 600 !important;
}


/***********************************************************
                    FORM STARTS
***********************************************************/

input.wpcf7-submit {
    background-color: #fff !important;
    color: black !important;
    border-radius: 0px !important;
    padding: 13px 30px !important;
    margin-top: 50px;
    font-family: "Helvetica Neue LT Ext", "Helvetica Neue", Arial, sans-serif !important;
}

input.wpcf7-submit:hover {
    background-color: #4D4D4F !important;
    color: #fff !important;
}

input.wpcf7-text {
    border: 1px solid #ccc !important;
    border-radius: 0px !important;
    font-family: "Helvetica Neue LT Ext", "Helvetica Neue", Arial, sans-serif !important;
    font-size: 14px !important;
}

input.wpcf7-text:focus {
    border: 1px solid #000000 !important;
}


.form-block P {
    font-family: "Helvetica Neue LT Ext", "Helvetica Neue", Arial, sans-serif !important;
    font-size: 14px !important;
}

.termsCond {
    font-family: "Helvetica Neue LT Ext", "Helvetica Neue", Arial, sans-serif !important;
    font-size: 12px !important;
}
/***********************************************************
                    FORM ENDS
***********************************************************/



/***********************************************************
                    THANK YOU PAGE STARTS
***********************************************************/

.ty_message p span {
    font-family: "Helvetica Neue LT Ext", "Helvetica Neue", Arial, sans-serif !important;
    font-size: 16px !important;
}

.ty_head h4 {

}

.ty_reminder li {
  line-height: 28px;
}

.ty_reminder span {
    font-family: "Helvetica Neue LT Ext", "Helvetica Neue", Arial, sans-serif !important;
    font-size: 14px !important;
}

/***********************************************************
                    THANK YOU PAGE ENDS
***********************************************************/
