
/* custom CSS */
.product-description.cms-description {
    width: 60% !important;
    margin: 0 auto !important;
}

@media (max-width: 768px) {
    .product-description.cms-description {
        width: 100% !important;
    }
}

/* lista numerowana */
.custom-numbered-list {
    list-style: none;
    padding-left: 0;
    counter-reset: list-counter;
}

.custom-list-item {
    position: relative;
    padding-left: 50px;
    margin-bottom: 15px;
    counter-increment: list-counter;
}

.custom-number-circle {
    position: absolute;
    left: 0;
    top: 0;
    width: 30px;
    height: 30px;
    background-color: black;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
}

/* podwójny numer */
.custom-number-circle.double-number {
    height: auto;
    border-radius: 0;
    background: none;
    flex-direction: column;
    gap: 3px;
}

.custom-number-circle.double-number span {
    width: 30px;
    height: 30px;
    background-color: black;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
}

/* feature grid pod ikony */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px 20px;
    margin: 0 auto;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.feature-image {
    width: 64px;
    height: 64px;
    margin-bottom: 10px;
}

.feature-text {
    font-size: 16px;
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        width: 100%;
    }
    
    .feature-item {
        flex-direction: row;
        text-align: left;
        align-items: center;
    }
    
    .feature-image {
        margin-bottom: 0;
        margin-right: 15px;
        flex-shrink: 0;
    }
}