/* 
   Sir Dube's Water Supply - Modal Styles
   Created: May 2025
*/

/* Product Details Modal */
.product-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    overflow-y: auto;
}

.modal-content {
    position: relative;
    background-color: #fff;
    margin: 50px auto;
    padding: 0;
    width: 90%;
    max-width: 800px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    animation: modalFadeIn 0.3s ease-in-out;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    padding: 20px;
    border-bottom: 1px solid #e0e0e0;
    position: relative;
}

.modal-header h2 {
    margin: 0;
    color: #03045e;
    font-size: 24px;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    color: #666;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: #0077b6;
}

.modal-body {
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
}

.modal-image {
    flex: 0 0 40%;
    margin-right: 30px;
    border-radius: 8px;
    overflow: hidden;
}

.modal-image img {
    width: 100%;
    height: auto;
    display: block;
}

.modal-details {
    flex: 1;
}

.modal-price {
    font-size: 24px;
    font-weight: 700;
    color: #0077b6;
    margin: 15px 0;
}

.product-features {
    margin: 20px 0;
}

.product-features h3 {
    margin-bottom: 10px;
    color: #03045e;
}

.feature-list {
    list-style-type: none;
    padding: 0;
}

.feature-list li {
    padding: 8px 0;
    border-bottom: 1px dashed #e0e0e0;
    display: flex;
    align-items: center;
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list li i {
    color: #0077b6;
    margin-right: 10px;
}

.product-description {
    margin: 20px 0;
    line-height: 1.6;
}

.modal-footer {
    padding: 20px;
    border-top: 1px solid #e0e0e0;
    display: flex;
    justify-content: flex-end;
}

.btn-inquire-modal {
    background-color: #0077b6;
    color: #ffffff;
    padding: 10px 25px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-inquire-modal:hover {
    background-color: #03045e;
    transform: translateY(-3px);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 20px auto;
    }
    
    .modal-body {
        flex-direction: column;
    }
    
    .modal-image {
        flex: 0 0 100%;
        margin-right: 0;
        margin-bottom: 20px;
    }
}
