/* REMOVE or COMMENT OUT this block! */
/*body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}*/

.popup-container {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    max-width: 800px;
    width: 90%;
    padding: 20px;
    position: relative;
    opacity: 1;
}

.popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.popup-header h2 {
    margin: 0;
    font-size: 24px;
    color: #333;
}

.popup-close {
    cursor: pointer;
    font-size: 20px;
    color: #b88a1a;
}

.popup-close:hover {
    color: #8c6d14;
}

.popup-content {
    margin-top: 20px;
}

.popup-footer {
    display: flex;
    justify-content: flex-end;
    margin-top: 20px;
}

.popup-footer button {
    padding: 10px 20px;
    background-color: #b88a1a;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.popup-footer button:hover {
    background-color: #8c6d14;
}

.popup-active {
    opacity: 1;
}

.luxury-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.luxury-popup-overlay.show {
    opacity: 1;
    visibility: visible;
}

.luxury-popup-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    overflow: auto;
    background: white;
    border-radius: 12px;
    padding: 20px;
    transform: scale(0.7);
    transition: transform 0.3s ease;
}

.luxury-popup-overlay.show .luxury-popup-content {
    transform: scale(1);
}

.luxury-popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 30px;
    cursor: pointer;
    color: #999;
    z-index: 10000;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.luxury-popup-close:hover {
    color: #000;
    background-color: #f0f0f0;
}

.luxury-popup-button,
.luxury-popup-link {
    background-color: #b88a1a;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.luxury-popup-button:hover,
.luxury-popup-link:hover {
    background-color: #8c6d14;
    color: white;
    text-decoration: none;
}

.luxury-popup-button.white-text {
  background-color: #b88a1a;
  color: #fff !important;
  font-weight: bold;
  border: none;
  border-radius: 40px;
  padding: 12px 24px;
  font-size: 22px;
  display: inline-block;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: background 0.3s;
}

.luxury-popup-button.white-text:hover {
  background-color: #8c6d14;
}

.luxury-popup-button.white-text i {
  font-size: 1.2em;
}

@media (max-width: 768px) {
    .luxury-popup-content {
        max-width: 95%;
        max-height: 95%;
        padding: 15px;
        margin: 10px;
    }
    
    .luxury-popup-close {
        top: 5px;
        right: 10px;
        font-size: 24px;
        width: 35px;
        height: 35px;
    }
}