#nav-cart i,
#nav-cart-mobile i {
    font-size: 1.2em;
    cursor: pointer;
}

/* Popup Overlay */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 3000;
}

.popup-content {
    padding: 30px;
    position: relative;
}


.popup-overlay.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Popup Container */
.popup {
    position: relative;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    max-width: 90vw;
    max-height: 90vh;
    min-width: 300px;
    min-height: 200px;
    overflow: auto;
    padding: 20px;
}

/* Popup Header */
.popup-header {
    position: relative;
    padding: 0 40px 20px 0; /* Add right padding to make room for close button */
}

.popup-header h3 {
    margin: 0;
    color: #1A1A1A;
    font-size: 24px;
    font-weight: 600;
}

/* Popup Close Button */
.popup-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    z-index: 1;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

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

/* Popup Content */
.popup-content {
    padding: 20px;
}

.popup-content h2 {
    margin-top: 0;
    color: #1A1A1A;
    font-size: 24px;
    margin-bottom: 20px;
}