/* .popup-overlay {
    z-index: 100;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.popup {
    background: #301a1a;
    padding: 20px;
    border-radius: 10px;
    width: 433px;
    text-align: center;
    position: relative;
    color: #fff;
}

.popup button {
    padding: 14px;
    border-radius: 8px;
    background-color: transparent;
    color: white;
    font-size: 20px;
    font-weight: 400;
    border: 1px solid #fff;
    margin-top: 16px;
    width: 100%;
}

.close-btn {
    cursor: pointer;
    position: absolute;
    right: 7%;
    top: 10px;
    font-size: 33px;
}

.popup input {
    border: none;
    background-color: #FAFAFC;
    height: 55px;
    font-size: 17px;
    border-radius: 8px;
    width: 100%;
    margin: 10px 0;
    padding: 8px;
}

.popup textarea {
    margin-top: 10px;
    width: 100%;
    padding: 12px;
    border: none;
    resize: none;
    background-color: #FAFAFC;
    height: 150px;
    font-size: 17px;
    border-radius: 8px;
}    */


.popup-overlay {
    z-index: 100;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.popup {
    background: #301a1a;
    padding: 20px;
    border-radius: 10px;
    color: #fff;
    width: 433px;
    text-align: center;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.5s ease-in-out;
}

/* .popup button {
    padding: 14px;
    border-radius: 8px;
    background-color: #654545;
    color: white;
    font-size: 20px;
    font-weight: 400;
    border: 1px solid #fff;
    margin-top: 16px;
    width: 100%;
    cursor: pointer;
} */

.popup button {
    padding: 14px;
    border-radius: 8px;
    background-color: #654545;
    color: white;
    font-size: 20px;
    font-weight: 400;
    border: 1px solid #fff;
    margin-top: 16px;
    width: 100%;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.popup button:hover {
    background-color: #7a5b5b; /* Slightly lighter shade */
    transform: scale(1.05); /* Slight zoom effect */
    box-shadow: 0px 4px 10px rgba(255, 255, 255, 0.2); /* Soft glow effect */
}

.popup button:active {
    transform: scale(0.95); /* Press-down effect */
}


.close-btn {
    cursor: pointer;
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 33px;
}

.popup input {
    border: none;
    background-color: #FAFAFC;
    height: 55px;
    font-size: 17px;
    border-radius: 8px;
    width: 100%;
    margin: 10px 0;
    padding: 8px;
}

.popup textarea {
    margin-top: 10px;
    width: 100%;
    padding: 12px;
    border: none;
    resize: none;
    background-color: #FAFAFC;
    height: 150px;
    font-size: 17px;
    border-radius: 8px;
} 