/* === 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
***********************************************************/

/* LNY 2026 grid */
.lny-2026-wrap { max-width: 1100px; margin: 0 auto; padding: 10px 0 30px; }
.lny-2026-title { text-align:center; font-size:18px; margin: 10px 0 25px; }

.lny-2026-grid{
  display:grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 18px;
}

/* responsive breakpoints */
@media (max-width: 980px){
  .lny-2026-grid{ grid-template-columns: repeat(5, minmax(0, 1fr)); }
}
@media (max-width: 640px){
  .lny-2026-grid{ grid-template-columns: repeat(3, minmax(0, 1fr)); }
}


.lny-2026-cell{
  aspect-ratio: 1 / 1;
  border: 2px solid #DB4132;
  background: #fff;
  color: #DB4132;
  font-size: 44px;
  font-weight: 300;
  cursor: pointer;
  transition: background .15s ease, color .15s ease, border-color .15s ease, transform .05s ease;
}

.lny-2026-cell:hover{
  background:#DB4132;
  color:#fff;
}

.lny-2026-cell.is-selected{
  background:#DB4132;
  color:#fff;
}




.lny-2026-cell.is-redeemed{
  opacity: .35;
  cursor:not-allowed;
}
.lny-2026-cell.is-redeemed:hover{
  background:#fff;
  color:#DB4132;
}

/*
.lny-2026-cell:hover:not(.is-redeemed):not(.is-selected){
  background-image: url('https://exclusivecomog.wpenginepowered.com/wp-content/uploads/2026/01/2026-Prosperity-Bag-Mock-Background.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: rgba(224,122,112,0.06);
  background-blend-mode: multiply;
  color:#e07a70; /* keep number visible */
}
*/

.lny-2026-selected{ text-align:center; margin-top: 35px; }
.lny-2026-selected-label{ font-size:14px; margin-bottom: 10px; opacity:.8; }
/*.lny-2026-selected-box{
  display:inline-block;
  min-width: 220px;
  padding: 18px 28px;
  border:2px solid #e07a70;
  color:#e07a70;
  font-size: 52px;
  font-weight: 300;
  line-height: 1;
}*/

/* ensure we can position number inside */
.lny-2026-cell{
  position: relative;
}

/* number default (center) */
.lny-2026-cell .lny-num{
  position: relative;
  z-index: 2;
}

/* SELECTED cell -> Chinese knot visual */
.lny-2026-cell.is-selected{
  background-image: url('https://exclusivecomog.wpenginepowered.com/wp-content/uploads/2026/01/Chinese-Knot.png');
  background-repeat: no-repeat;
  background-position: 85%; /* slightly lower than center */
  background-size: 59%;             /* adjust 58–65% if needed */

  /*background-blend-mode: multiply; */
	
  background-color: #fbe7e5;        /* soft festive pink */
  border-color: #DB4132;

  color: #DB4132;
}


/* move number bottom-left only when selected */
.lny-2026-cell.is-selected .lny-num{
  position: absolute;
  left: 14px;
  bottom: 12px;
  font-size: 34px;     /* tune */
  font-weight: 300;
  line-height: 1;
  z-index: 3;
}

/* keep redeemed behavior */
.lny-2026-cell.is-redeemed{
  background-image: none !important;
  background-color: #fff !important;
  border: 2px solid #8b8b8b !important;
  color: #8b8b8b;  
}

.lny-2026-cell.is-redeemed:hover{
  color: #8b8b8b;  
}

/***********************************************************
                GIFT ITEM LISTS ENDS
***********************************************************/



/***********************************************************
                ANIMATION STARTS
***********************************************************/
/* optional landing pulse */
#gift_selected.lny-land-pulse{
  animation: lnyPulse 0.45s ease;
}
@keyframes lnyPulse{
  0% { transform: scale(1); }
  40% { transform: scale(1.03); }
  100% { transform: scale(1); }
}
/***********************************************************
                ANIMATION ENDS
***********************************************************/



/***********************************************************
              FORM - SELECTED GIFT STARTS
***********************************************************/
.lny-2026-selected {
    text-align: center;
}

.lny-2026-selected input.wpcf7-text {
    display: inline-block !important;
    /*min-width: 220px;
    padding: 0px 30px !important;*/
    border: 2px solid #DB4132 !important;
    color: #DB4132 !important;
    font-size: 52px !important;
    font-weight: 300;
    line-height: 1;
    width: 125px !important;
    text-align: center;
}

.lny-2026-selected .wpcf7-not-valid-tip { text-align:center !important; }

.form-block .lny-2026-selected-label p { color: #000000 !important; }
/***********************************************************
              FORM - SELECTED GIFT ENDS
***********************************************************/



/***********************************************************
                    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;
    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
***********************************************************/
