/* Contact Button Styling */
.modal-contact-btn {
    width: 100%;
    padding: 10px 20px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.modal-contact-btn:hover {
    background:#218838 !important
}

/* Contact Popup Styling */
.contact-popup {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.22);
    z-index: 99999;
}

.contact-popup .popup-content {
    background: #fff;
    max-width: 400px;
    margin: 5vw auto;
    padding: 25px;
    border-radius: 0px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    position: relative;
    animation: popupFadeIn 0.3s ease-out;
}


.contact-popup h3 {
    margin: 0 0 20px 0;
    font-size: 1.4rem;
    font-weight: 600;
    color: #333;
    text-align: center;
}

.contact-popup .contact-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-popup .contact-option {
    display: flex;
    align-items: center;
    padding: 15px 18px;
    text-decoration: none;
    color: #333;
    background-color: #f8f9fa;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-popup .contact-option::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: transparent;
    transition: background 0.3s ease;
}


.contact-popup .contact-icon {
    width: 48px;
    height: 48px;
    margin-right: 15px;
    object-fit: contain;
    flex-shrink: 0;
    border-radius: 50%;
    padding: 8px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.contact-popup .contact-label {
    font-size: 1rem;
    font-weight: 500;
    color: #333;
    flex-grow: 1;
}

.contact-popup .contact-label:hover {
    color: #28a745;
}

.contact-popup .contact-cancel {
    margin-top: 20px;
    width: 100%;
    padding: 12px;
    background: #6c757d;
    color: white;
    border: none;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-popup .contact-cancel:hover {
    background: #5a6268;
    transform: translateY(-1px);
}

/* Close X button */
.contact-popup .popup-close {
    position: absolute;
    right: 15px;
    top: 15px;
    width: 30px;
    height: 30px;
    background: #f8f9fa;
    border: none;
    border-radius: 50%;
    font-size: 18px;
    color: #6c757d;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

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

/* Mobile Responsiveness */
@media (max-width: 576px) {
    .contact-popup .popup-content {
        margin: 20px;
        padding: 20px;
        max-width: calc(100vw - 40px);
    }
    
    .contact-popup .contact-option {
        padding: 12px 15px;
    }
    
    .contact-popup .contact-icon {
        width: 40px;
        height: 40px;
        margin-right: 12px;
    }
    
    .contact-popup .contact-label {
        font-size: 1rem;
    }
    
    .contact-popup h3 {
        font-size: 1.2rem;
    }
}

/* Tablet styles */
@media (max-width: 768px) and (min-width: 577px) {
    .contact-popup .popup-content {
        margin: 30px;
        max-width: calc(100vw - 60px);
    }
} 

.product-additional-info.js-product-additional-info .ps-modal-button-container {
    display: none;
}