/* Style dla specyfikacji produktu */
.kc-specyfikacja {
    margin: 20px 0;
}

.kc-specyfikacja-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #e0e0e0;
}

.kc-specyfikacja-table th,
.kc-specyfikacja-table td {
    padding: 10px 15px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.kc-specyfikacja-table th {
    width: 30%;
    background-color: #f8f8f8;
    font-weight: 600;
}

.kc-specyfikacja-table tr:last-child th,
.kc-specyfikacja-table tr:last-child td {
    border-bottom: none;
}

/* Style dla piktogramów */
.kc-piktogramy-lista {
    margin: 20px 0;
}

.kc-piktogramy-ol {
    list-style-type: decimal;
    padding-left: 0em;
}

.kc-piktogram-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
	width:calc(25% - 5%)
}


.kc-piktogram-item img {
    width: 50px;
    height: 50px !important;
    object-fit: contain;
    margin-right: 15px;
    background-color: #f8f8f8;
    padding: 5px;
    border-radius: 4px;
	    border: 1px solid red !important;
}

.kc-piktogram-item span {
    font-size: 14px;
	line-height:18px;
    color: #333;
}

/* Style dla informacji dodatkowych */
.kc-informacje {
 
    line-height: 1.6;
}

.kc-informacje h2,
.kc-informacje h3,
.kc-informacje h4 {
    margin-top: 1.5em;
    margin-bottom: 0.8em;
    color: #333;
}

.kc-informacje p {
    margin-bottom: 1em;
}

.kc-informacje ul,
.kc-informacje ol {
    margin-left: 1.5em;
    margin-bottom: 1em;
}

.kc-informacje li {
    margin-bottom: 0.5em;
}

.kc-informacje img {
    max-width: 100%;
    height: auto;
    margin: 1em 0;
}

.kc-piktogramy-ol{
    display:flex;
    flex-wrap: wrap;
    gap:5%;
   
}


/* Responsywność */
@media (max-width: 1100px) {

.kc-piktogram-item {
  
	width:calc(33% - 5%)
}
}


@media (max-width: 800px) {

.kc-piktogram-item {
  
	width:calc(50% - 5%)
}
}

@media (max-width: 768px) {
    .kc-specyfikacja-table th {
        width: 40%;
    }
    
    .kc-piktogram-item img {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .kc-specyfikacja-table th,
    .kc-specyfikacja-table td {
        padding: 8px 10px;
    }
    
    .kc-specyfikacja-table th {
        width: 50%;
    }
    
    .kc-piktogram-item {
        padding-bottom: 10px;
        margin-bottom: 10px;
    }
    
    .kc-piktogram-item img {
        width: 30px;
        height: 30px;
        padding: 3px;
        margin-right: 10px;
    }
    
    .kc-piktogram-item span {
        font-size: 12px;
line-height:16px;
    }
}