

body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #f4f4f4;
}

.krafttable {
    display: flex;
    max-width: 1200px;
    margin: 20px auto;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.krafttable .imgBx {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
    background: #F1F1F1;
    transition: .3s linear;
    position: relative;
    border-radius: 8px 0 0 8px;
}

.krafttable .imgBx:before {
    
    position: absolute;
    top: 0px;
    left: 24px;
    color: #000;
    opacity: 0.2;
    font-size: 8em;
    font-weight: 800;
}

.krafttable .imgBx img {
    width: 80%;
    margin: auto;
    display: block;
    transition: .9s linear;
    z-index: 2;
}

.krafttable .details {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
    padding: 40px;
    box-sizing: border-box;
    border-radius: 0 8px 8px 0;
}

.krafttable .details .content {
    width: 100%;
}

.krafttable .details h2 {
    margin: 0;
    font-size: 2.4em;
    line-height: 1em;
    color: #444;
    text-align: center;
}

.krafttable .details p {
    color: #666;
    font-size: 15px;
    margin-bottom: 20px;
    text-align: center;
}

.product-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.product-table th, .product-table td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
}

.product-table th {
    background-color: #f8f8f8;
    color: #333;
}

.product-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.product-table tr:hover {
    background-color: #f1f1f1;
}

/* Responsive */
@media (max-width: 1080px) {
    .krafttable {
        flex-direction: column;
    }
    .krafttable .imgBx,
    .krafttable .details {
        width: 100%;
        text-align: center;
    }
    .krafttable .imgBx img {
        width: 100%;
    }
}
