.cart-related-section {
    margin: 0px 0;
    padding: 0px 0;
    border-top: 1px solid #e0e0e0;
}

.cart-related-title {
    color: #ff6100;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: normal;
}

.cart-related-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.cart-related-product {
    flex: 0 0 calc(30% - 6px);
    background: #f8f8f8;
    padding: 8px;
    text-align: center;
    border: 1px solid #e0e0e0;
    display: flex;
    flex-direction: column;
    border-radius: 5px;
    box-shadow: 3px 3px 8px 0px #dfdfdf;
}

.cart-related-link {
    display: block;
    height: 120px;
}

.cart-related-img {
    max-width: 100%;
    height: auto;
    max-height: 100%;
}

.cart-related-name {
    font-size: 12px;
    line-height: 1.2;
    margin: 6px 0;
    font-weight: normal;
    min-height: 30px;
}

.cart-related-name a {
    color: #333;
    text-decoration: none;
}

.cart-related-name a:hover {
    color: #ff6100;
}

.cart-related-price {
    color: #ff6100;
    font-weight: bold;
    font-size: 14px;
    margin: 4px 0;
    margin-top: auto;
}

.cart-related-btn {
    background: #ff6100;
    color: white;
    padding: 4px 10px;
    text-decoration: none;
    border-radius: 3px;
    font-size: 11px;
    display: inline-block;
    align-self: center;
}

.cart-related-btn:hover {
    background: #e55000;
    color: white;
    text-decoration: none;
}

/* ResponsywnoÅÄ dla tabletÃ³w */
@media (max-width: 768px) {
    .cart-related-product {
        flex: 0 0 calc(50% - 4px);
    }
}

/* ResponsywnoÅÄ dla telefonÃ³w */
@media (max-width: 480px) {
    .cart-related-product {
        flex: 0 0 40%;
    }
    
    .cart-related-grid {
        gap: 10px;
        justify-content: center;
    }
}
