/* Full-screen overlay */
/*#wc-fob-modal .fob-modal-overlay {*/
/*  position: fixed; top:0; left:0;*/
/*  width:100%; height:100%;*/
/*  background: rgba(0,0,0,0.6);*/
/*  z-index: 9998;*/
/*}*/

/* Centered box */
/*#wc-fob-modal .fob-modal-content {*/
/*  position: fixed; top:50%; left:50%;*/
/*  transform: translate(-50%, -50%);*/
/*  background:#fff;*/
/*  width: 90%; max-width:360px;*/
/*  padding:24px; border-radius:8px;*/
/*  box-shadow: 0 4px 16px rgba(0,0,0,0.2);*/
/*  z-index: 9999;*/
/*  text-align: center;*/
/*}*/

/* Close icon */
/*#wc-fob-modal .fob-modal-close {*/
/*  position:absolute; top:12px; right:12px;*/
/*  background:transparent; border:none;*/
/*  font-size:1.2em; cursor:pointer; color:#333;*/
/*}*/

/* Title & message */
/*#wc-fob-modal .fob-modal-title { margin:0 0 12px; font-size:1.4em; }*/
/*#wc-fob-modal .fob-modal-message {*/
/*  margin:0 0 20px; font-size:1em; line-height:1.4;*/
/*}*/

/* Icon buttons */
/*#wc-fob-modal .fob-modal-buttons a {*/
/*  margin:0 8px; font-size:1.6em;*/
/*  color:#007cba; text-decoration:none;*/
/*}*/
/*#wc-fob-modal .fob-modal-buttons a:hover {*/
/*  color:#005a9c;*/
/*}*/

/* ── Overlay ── */
#wc-fob-modal .fob-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 9998;
  opacity: 0;
  animation: fobFadeInOverlay .3s forwards;
}

/* ── Modal Container ── */
#wc-fob-modal .fob-modal-content {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -60%);
  background: #fff;
  width: 90%;
  max-width: 400px;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  opacity: 0;
  animation: fobSlideIn .4s 0.1s forwards;
  font-family: "Hind Siliguri", sans-serif;
  font-weight: 500;
  font-style: normal;
}

/* ── Close Button ── */
#wc-fob-modal .fob-modal-close {
  position: absolute;
  top: 1rem; right: 1rem;
  background: transparent;
  border: none;
  font-size: 1.2rem;
  color: #555;
  cursor: pointer;
  transition: color .2s ease;
}
#wc-fob-modal .fob-modal-close:hover {
  color: #000;
}

/* ── Title & Message ── */
#wc-fob-modal .fob-modal-title {
  margin: 0;
  font-size: 1.6rem;
  font-weight: 600;
  color: #2d3a4a;
}
#wc-fob-modal .fob-modal-message {
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
  color: #64707d;
}

/* ── Buttons Container ── */
#wc-fob-modal .fob-modal-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

/* ── Action Buttons ── */
#wc-fob-modal .fob-modal-buttons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--fob-primary, #5c7cfa);
  color: #fff;
  border-radius: 50%;
  font-size: 1.2rem;
  text-decoration: none;
  transition: background .2s ease, transform .1s ease;
}
#wc-fob-modal .fob-modal-buttons a:hover {
  background: #4a6edc;
  transform: translateY(-2px);
}

/* ── Animations ── */
@keyframes fobFadeInOverlay {
  to { opacity: 1; }
}
@keyframes fobSlideIn {
  to {
    transform: translate(-50%, -50%);
    opacity: 1;
  }
}
