/* =====================================================
   MAGNIFIC POPUP 
   ===================================================== */

/* ===== REQUIRED: HIDE INLINE CONTENT ===== */
.mfp-hide {
  display: none !important;
}

/* ===== OVERLAY ===== */
.mfp-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  background: rgba(0, 0, 0, 0.8);
}

/* ===== WRAP ===== */
.mfp-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  outline: none !important;
}

/* ===== SAFE CENTERING (DO NOT CHANGE THIS STRUCTURE) ===== */
.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 20px;
  box-sizing: border-box;
}

.mfp-container:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.mfp-content {
  display: inline-block;
  vertical-align: middle;
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  position: relative;
  text-align: center;
}

/* ===== POPUP BOX ===== */
#promo {
  width: 100%;
  max-width: 560px;
  margin: 0 auto;

  padding: 48px 36px 42px;

  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(2px);

  border: 3px solid #000;
  border-radius: 6px;

  text-align: center;

  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
}

/* ===== HEADLINE ===== */
#promo .summer-hours {
  display: block;
  margin-bottom: 14px;

  color: #000;
  font-size: 36px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ===== BODY TEXT ===== */
#promo p {
  margin: 0;

  color: #222;
  font-size: 21px;
  font-weight: 600;
  text-transform: uppercase;

  line-height: 1.5;
}

/* ===== CLOSE BUTTON (FIXED CENTERING) ===== */
button.mfp-close {
  position: absolute;
  top: 14px;
  right: 14px;

  width: 38px;
  height: 38px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: transparent;
  border: 2px solid #000;
  border-radius: 50%;

  color: #000;
  font-size: 18px;
  font-weight: bold;

  line-height: 1;
  padding: 0;

  box-shadow: none;
  cursor: pointer;
}

/* hover */
button.mfp-close:hover {
  background: #000;
  color: #fff;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 600px) {

  .mfp-container {
    padding: 14px;
  }

  #promo {
    padding: 36px 20px 30px;
    border-width: 2px;
  }

  #promo .summer-hours {
    font-size: 28px;
  }

  #promo p {
    font-size: 18px;
  }

  button.mfp-close {
    top: 10px;
    right: 10px;
    width: 34px;
    height: 34px;
    font-size: 16px;
  }
}