/* === 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: "Helvetica Neue LT Ext", "Helvetica Neue", Arial, sans-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;*/
}



/***********************************************************
                GIFT ITEM LISTS STARTS
***********************************************************/

/*******************************************************************************
                    MAY 2026 GIFT GRID
*******************************************************************************/
.may-2026-wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 10px 0 30px;
}

.may-2026-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

/* Tablet */
@media (max-width: 768px) {
    .may-2026-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .may-2026-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

.may-gift-card {
    border: 1px solid #ebebeb;
    background: #fff;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    display: flex;
    flex-direction: column;
}

.may-gift-card:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    transform: translateY(-2px);
}

.may-gift-card.is-selected {
    border: 1px solid #707070;
    box-shadow: 0 0 8px rgba(0,0,0,0.15);
}

.may-gift-card.is-sold-out {
    opacity: 0.5;
    pointer-events: none;
    cursor: not-allowed;
}

.may-gift-image-wrap {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.may-gift-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.may-gift-card:hover .may-gift-image {
    transform: scale(1.03);
}

.may-gift-image-placeholder {
    width: 100%;
    height: 100%;
    background: #eaeaea;
}

.may-gift-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.may-gift-title {
    font-family: "Helvetica Neue LT Ext", "Helvetica Neue", Arial, sans-serif !important;
    font-size: 14px !important;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #000;
    margin-bottom: 8px;
    text-align: center;
}

.may-gift-desc {
    font-family: "Helvetica Neue LT Ext", "Helvetica Neue", Arial, sans-serif !important;
    font-size: 13px !important;
    color: #4D4D4F;
    line-height: 1.5;
    margin-bottom: 16px;
    text-align: center;
    font-weight: 300;
}

.may-gift-soldout {
    font-family: "Helvetica Neue LT Ext", "Helvetica Neue", Arial, sans-serif !important;
    font-size: 12px !important;
    color: #c00;
    font-weight: 600;
    text-align: center;
    margin-top: auto;
    padding-top: 8px;
}

.may-gift-radio-wrap {
    display: flex;
    justify-content: center;
    margin-top: auto;
    padding-top: 8px;
}

.may-gift-radio {
    transform: scale(1.7);
    cursor: pointer;
    accent-color: #000;
}


/* LNY grid: lock font even if theme uses `font:` shorthand on buttons */
#lny-2026-wrap .lny-2026-cell,
#lny-2026-wrap .lny-2026-cell .lny-num{
  font: 300 44px/1 "Helvetica Neue LT Std","Helvetica Neue LT Ext","Helvetica Neue",Arial,sans-serif !important;
}

/* Selected state uses 34px in your CSS, so lock that too */
#lny-2026-wrap .lny-2026-cell.is-selected .lny-num{
  font: 300 34px/1 "Helvetica Neue LT Std","Helvetica Neue LT Ext","Helvetica Neue",Arial,sans-serif !important;
}

/* The flying clone (this is the usual culprit) */
.lny-fly-number{
  font-family: "Helvetica Neue LT Std","Helvetica Neue LT Ext","Helvetica Neue",Arial,sans-serif !important;
  font-weight: 300 !important;
}

/***********************************************************
                GIFT ITEM LISTS ENDS
***********************************************************/





/***********************************************************
                ANIMATION STARTS
***********************************************************/
.may-fly-clone {
    background-color: #f5f5f5;
    background-size: cover;
    background-position: center;
}

.may-land-pulse {
    animation: mayPulse 0.45s ease;
}

@keyframes mayPulse {
    0%   { transform: scale(1); }
    40%  { transform: scale(1.02); }
    100% { transform: scale(1); }
}
/***********************************************************
                ANIMATION ENDS
***********************************************************/



/***********************************************************
              FORM - SELECTED GIFT STARTS
***********************************************************/
/*******************************************************************************
                    MAY 2026 - SELECTED GIFT DISPLAY
*******************************************************************************/
.form-selected-gift-wrap {
    text-align: center;
    margin: 40px auto 24px;
}

.form-selected-gift-label {
    font-family: "Helvetica Neue LT Ext", "Helvetica Neue", Arial, sans-serif !important;
    font-size: 11px !important;
    letter-spacing: 0;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 12px;
}

.form-selected-gift-wrap input.wpcf7-text {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    padding: 18px 20px !important;
    border: 1px solid #ccc !important;
    border-radius: 0 !important;
    background: #fff !important;
    color: #000 !important;
    font-family: "Helvetica Neue LT Ext", "Helvetica Neue", Arial, sans-serif !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.08em !important;
    text-align: center !important;
    pointer-events: none !important;
    caret-color: transparent !important;
    transition: border-color 0.3s ease;
}

/* border goes dark once a gift is selected — JS adds class 'has-value' */
.form-selected-gift-wrap.has-value input.wpcf7-text {
    border-color: #707070 !important;
    font-weight: bold !important;
    font-size: 20px !important;
}

@media (max-width: 600px) {
    .form-selected-gift-wrap.has-value input.wpcf7-text {
        font-size: 13px !important;
    }
}

.form-selected-gift-desc {
    font-family: "Helvetica Neue LT Ext", "Helvetica Neue", Arial, sans-serif !important;
    font-size: 12px !important;
    color: #555 !important;
    line-height: 1.8;
    text-align: center;
    margin: 20px auto 10px;
}

.form-selected-gift-terms {
    text-align: center;
    margin-bottom: 30px;
}

.form-selected-gift-terms a {
    font-family: "Helvetica Neue LT Ext", "Helvetica Neue", Arial, sans-serif !important;
    font-size: 11px !important;
    color: #000 !important;
    text-decoration: underline !important;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
/***********************************************************
              FORM - SELECTED GIFT ENDS
***********************************************************/









/***********************************************************
                    FORM STARTS
***********************************************************/
/*******************************************************************************
                    MAY 2026 - FORM STYLING
*******************************************************************************/

.form-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 20px 60px;
}

.form-block p {
    font-family: "Helvetica Neue LT Ext", "Helvetica Neue", Arial, sans-serif !important;
    font-size: 13px !important;
    color: #000 !important;
    margin-bottom: 4px !important;
}

/* All text inputs */
.form-block input.wpcf7-text,
.form-block input.wpcf7-email,
.form-block input.wpcf7-tel,
.form-block input.wpcf7-number {
    width: 100% !important;
    height: 48px !important;
    padding: 0 14px !important;
    border: 1px solid #ccc !important;
    border-radius: 0 !important;
    background: #fff !important;
    font-family: "Helvetica Neue LT Ext", "Helvetica Neue", Arial, sans-serif !important;
    font-size: 14px !important;
    color: #000 !important;
    margin-bottom: 20px !important;
    box-sizing: border-box !important;
    transition: border-color 0.2s ease;
    -webkit-appearance: none;
}

/* Dropdowns */
.form-block select.wpcf7-select {
    width: 100% !important;
    height: 48px !important;
    padding: 0 36px 0 14px !important;
    border: 1px solid #ccc !important;
    border-radius: 0 !important;
    background-color: #fff !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23333' d='M1 1l5 5 5-5'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 14px center !important;
    background-size: 12px !important;
    font-family: "Helvetica Neue LT Ext", "Helvetica Neue", Arial, sans-serif !important;
    font-size: 14px !important;
    color: #000 !important;
    margin-bottom: 20px !important;
    box-sizing: border-box !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    cursor: pointer;
    transition: border-color 0.2s ease;
}

/* Focus states */
.form-block input.wpcf7-text:focus,
.form-block input.wpcf7-email:focus,
.form-block input.wpcf7-tel:focus,
.form-block select.wpcf7-select:focus {
    border-color: #000 !important;
    outline: none !important;
}

/* Error state */
.form-block input.wpcf7-not-valid,
.form-block select.wpcf7-not-valid {
    border-color: #c00 !important;
}

/* Error message */
.form-block .wpcf7-not-valid-tip {
    font-family: "Helvetica Neue LT Ext", "Helvetica Neue", Arial, sans-serif !important;
    font-size: 11px !important;
    color: #c00 !important;
    margin-top: -16px !important;
    margin-bottom: 14px !important;
    display: block !important;
}

/* Checkboxes */
.form-block .wpcf7-acceptance,
.form-block .wpcf7-checkbox {
    font-family: "Helvetica Neue LT Ext", "Helvetica Neue", Arial, sans-serif !important;
    font-size: 12px !important;
    color: #000 !important;
    line-height: 1.6;
    margin-bottom: 12px !important;
    display: block !important;
}

.form-block .wpcf7-list-item {
    margin: 0 !important;
    display: flex !important;
    align-items: flex-start !important;
    gap: 10px !important;
}

.form-block .wpcf7-list-item input[type="checkbox"] {
    width: 16px !important;
    height: 16px !important;
    min-width: 16px !important;
    margin-top: 2px !important;
    accent-color: #000;
    cursor: pointer;
}

.form-block .wpcf7-list-item-label {
    font-family: "Helvetica Neue LT Ext", "Helvetica Neue", Arial, sans-serif !important;
    font-size: 12px !important;
    color: #000 !important;
    line-height: 1.6 !important;
}

/* 1. Submit button — auto width, centered */
.form-block input.wpcf7-submit {
    width: auto !important;
    min-width: 160px !important;
    height: 48px !important;
    padding: 0 40px !important;
    display: block !important;
    margin: 30px auto 0 !important;
    background: #fff !important;
    color: #000 !important;
    border: 1px solid #000 !important;
    border-radius: 0 !important;
    font-family: "Helvetica Neue LT Ext", "Helvetica Neue", Arial, sans-serif !important;
    font-size: 16px !important;
    text-transform: uppercase !important;
    cursor: pointer !important;
    transition: background 0.2s ease, color 0.2s ease;
}

.form-block input.wpcf7-submit:hover {
    background: #000 !important;
    color: #fff !important;
}

/* T&C acceptance error — show BELOW the checkbox row, not overlapping */
.form-block .wpcf7-acceptance .wpcf7-not-valid-tip {
    display: block !important;
    margin-top: 6px !important;
    margin-left: 26px !important;
    margin-bottom: 8px !important;
    position: relative !important;
    top: auto !important;
}

.form-block p.termsCond {
    margin-bottom: 16px !important;
}

/* Also reset the general negative margin for checkboxes */
.form-block p.termsCond .wpcf7-not-valid-tip {
    margin-top: 4px !important;
}

.form-block .sub_text {
    display: block !important;
    font-family: "Helvetica Neue LT Ext", "Helvetica Neue", Arial, sans-serif !important;
    font-size: 11px !important;
    color: #888 !important;
    font-style: italic !important;
    margin-top: 4px !important;
    margin-left: 26px !important;
    line-height: 1.5 !important;
}

/* CF7 response output */
.form-block .wpcf7-response-output {
    font-family: "Helvetica Neue LT Ext", "Helvetica Neue", Arial, sans-serif !important;
    font-size: 12px !important;
    border-radius: 0 !important;
    margin-top: 16px !important;
    padding: 10px 14px !important;
}

/*
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;
    color: #000 !important;
}

.termsCond {
    font-family: "Helvetica Neue LT Ext", "Helvetica Neue", Arial, sans-serif !important;
    font-size: 12px !important;
    color: #000 !important;
}*/
/***********************************************************
                    FORM ENDS
***********************************************************/



/***********************************************************
                    THANK YOU PAGE STARTS
***********************************************************/

.ty_message p, .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, .ty_reminder li {
    font-family: "Helvetica Neue LT Ext", "Helvetica Neue", Arial, sans-serif !important;
    font-size: 14px !important;
}

.lny-ty-title,
.lny-ty-title p,
.lny-ty-empty,
.lny-ty-card p {
  color: #000000;
  font-family: "Helvetica Neue LT Ext", "Helvetica Neue", Arial, sans-serif !important;
  font-size: 16px !important;
}

.lny-ty-empty { color: red; }

/***********************************************************
                    THANK YOU PAGE ENDS
***********************************************************/
