.s-button-primary-outline {
    color: var(--color-primary);
    background-color: white;
}

#popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); 
  z-index: 9998;
  display: none;
}

#custom-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url('https://cdn.salla.sa/EZybwx/9f7a966d-3a20-4969-b7d9-1da2cfaff978-1000x1000-JPwp8xpFpVmafBL0Xr1cTzfmMMOHyOyPHiC225Pp.jpg') no-repeat center center;
  background-size: cover;
  color: white;
  padding: 140px 30px 30px 30px;
  border-radius: 20px;
  z-index: 9999;
  font-family: sans-serif;
  box-shadow: 0 0 20px rgba(0,0,0,0.4);
  max-width: 400px;
  width: 100%;
  height: auto;
  display: none;
  text-align: center;
}

#custom-popup h4 {
  margin: 0 0 10px;
  font-size: 30px;
}

#custom-popup .countdown {
  font-weight: bold;
  font-size: 25px;
  margin-top: 10px;
}

#popup-close {
  position: absolute;
  top: 10px;
  right: 14px;
  cursor: pointer;
  font-size: 20px;
  color: white;
}

.popup-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 15px;
}

.popup-buttons a {
  display: block;
  padding: 10px;
  background-color: #ffffff;
  color: #00127A;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background 0.4s;
}

.popup-buttons a:hover {
  background-color: #e6e6e6;
}

.popup-buttons button {
  display: block;
  padding: 10px;
  background-color: transparent;
  color: white;
  border: 2px solid white;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.4s, color 0.4s;
}

.popup-buttons button:hover {
  background-color: white;
  color: #00127A;
}

.price-badge {
  position: absolute;
  bottom: -42px; 
  left: 50%;     
  transform: translateX(-50%);
  width: 100%;
  max-width: 400px;
  background-color: #ff3b3b;
  color: white;
  padding: 10px 16px;
  border-radius: 50px;
  font-weight: bold;
  font-size: 20px;
  z-index: 10000;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  text-align: center;
  box-sizing: border-box;
}

.price-badge .old-price {
  text-decoration: line-through;
  color: #ffdede;
  margin-right: 8px;
  font-size: 14px;
}

#shop-now-btn {
  display: block;
  width: 100%;
  padding: 12px;
  background-color: #00127A;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  text-align: center;
  box-sizing: border-box;
  text-decoration: none;
  margin-bottom: 10px;
  transition: background-color 0.3s ease;
}

#shop-now-btn:hover {
  background-color: #3333aa;
}