/* CNC Product Modal Styles */
.cnc-product-details {
    padding: 0;
}

.cnc-product-details h3,
.size-weight-table .table-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    font-family: 'Cormorant Garamond', serif;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
    margin: 15px 0;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.specs-table thead {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
}

.specs-table thead th {
    padding: 10px 15px;
    text-align: left;
    font-weight: 600;
    color: #fff;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.specs-table tbody tr {
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.3s ease;
}

.specs-table tbody tr:last-child {
    border-bottom: none;
}

.specs-table tbody tr:hover {
    background-color: #f9f9f9;
}

.specs-table tbody td {
    padding: 10px 15px;
    color: #555;
    font-size: 14px;
}

.specs-table tbody td:first-child {
    font-weight: 600;
    color: #333;
}

.hall-size-info {
    margin-top: 15px;
    padding: 10px 15px;
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
    border-left: 4px solid #d4af37;
    border-radius: 4px;
}

.hall-size-info p {
    margin: 0;
    font-size: 15px;
    color: #555;
}

.hall-size-info strong {
    color: #d4af37;
    font-weight: 600;
}

/* CNC Modal body layout - Image left, Details right */
#productModal.cnc-modal .modal-body {
    display: flex;
    gap: 30px;
    padding: 30px;
}

#productModal.cnc-modal .modal-images {
    flex: 0 0 60%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}

#productModal.cnc-modal .modal-images img {
    max-width: 100%;
    width: 100%;
    height: auto;
    object-fit: contain;
}

#productModal.cnc-modal .modal-details {
    flex: 1;
}

#productModal.cnc-modal .modal-title {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 28px;
    color: #333;
    font-family: 'Cormorant Garamond', serif;
}

#productModal.cnc-modal .modal-description {
    margin-top: 20px;
}

#productModal.cnc-modal .modal-description p {
    margin-bottom: 12px;
    line-height: 1.6;
    color: #555;
}

#productModal.cnc-modal .modal-description p strong {
    color: #333;
    font-weight: 600;
}

/* CNC Modal active state */
#productModal.cnc-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
}

#productModal.cnc-modal .modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

#productModal.cnc-modal .modal-content {
    position: relative;
    z-index: 2;
    background: #fff;
    border-radius: 12px;
    max-width: 900px;
    width: 90%;
    max-height: 90vh;
    overflow: visible;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* CNC Modal Responsive styles */
@media (max-width: 768px) {
    #productModal.cnc-modal .modal-body {
        flex-direction: column;
        padding: 20px;
        gap: 20px;
    }
    
    #productModal.cnc-modal .modal-images {
        flex: 0 0 auto;
        max-width: 100%;
    }
    
    #productModal.cnc-modal .modal-title {
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    #productModal.cnc-modal .specs-table thead th,
    #productModal.cnc-modal .specs-table tbody td {
        padding: 8px 12px;
        font-size: 13px;
    }
    
    .cnc-product-details h3 {
        font-size: 20px;
    }
    
    .hall-size-info {
        padding: 10px 12px;
    }
    
    .hall-size-info p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    #productModal.cnc-modal .modal-body {
        padding: 15px;
    }
    
    #productModal.cnc-modal .specs-table thead th,
    #productModal.cnc-modal .specs-table tbody td {
        padding: 8px 10px;
        font-size: 12px;
    }
    
    .cnc-product-details h3 {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    #productModal.cnc-modal .modal-title {
        font-size: 20px;
    }
    .modal-body{
        display: block;
    }
}
