.inglot-bestsellers-container {
    font-weight: 400;
    margin: 20px 0;
    margin-left: auto;
    width: 100%;
    margin-right: auto;
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 12px;
    float: right;
    padding-right: 0;
}

.inglot-bestsellers-title {
    font-size: 12px;
    margin-bottom: 15px;
    font-weight: 500;
    color: #000;
    padding-left: 20px;
}

.inglot-bestsellers-grid {
    display: flex;
    justify-content: space-between;
    gap: 0;
    margin: 0;
    padding: 0;
    border-top: 1px solid #D6D6D6;
    border-bottom: 1px solid #D6D6D6;
    border-right: 1px solid #D6D6D6;
}

.inglot-bestseller-item {
    background: #fff;
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.inglot-bestseller-image {
    border-left: 1px solid #D6D6D6;
}

.inglot-bestseller-image img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    object-fit: contain;
}

.inglot-bestseller-info {
    border-left: 1px solid #D6D6D6;
    padding: 10px;
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.inglot-bestseller-info::last-of-type {
    border-right: 1px solid #D6D6D6;
}

.inglot-bestseller-name {
    color: #000;
    line-height: 1.4;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 10px;
}

.inglot-bestseller-name-link {
    color: inherit;
    text-decoration: none;
}

.inglot-bestseller-name-link:hover {
    text-decoration: underline;
    color:#000;
}

.inglot-bestseller-price-container {
    margin-top: auto;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    min-height: 20px;
}

.inglot-bestseller-price {
    color: #000;
    font-weight: 500;
}

.inglot-bestseller-price.discount {
    color: #E30613;
}

.inglot-bestseller-price-old {
    color: #999;
    text-decoration: line-through;
    font-size: 11px;
}

.add-to-cart-form {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: none;
}

.inglot-add-to-cart-btn {
    background: none;
    color: #000;
    border: none;
    padding: 0;
    cursor: pointer;
    font-weight: 500;
    width: 100%;
    font-size: 12px;
    text-align: left;
    text-decoration: none;
    line-height: 1em;
    height: 100%;
    display: flex;
    align-items: center;
}

/* Efekt hover tylko na desktop */
@media (min-width: 769px) {
    .inglot-bestseller-item:hover .inglot-bestseller-price-container .inglot-bestseller-price,
    .inglot-bestseller-item:hover .inglot-bestseller-price-container .inglot-bestseller-price-old {
        display: none;
    }

    .inglot-bestseller-item:hover .add-to-cart-form {
        display: block;
    }
}

.inglot-add-to-cart-btn:hover {
    text-decoration: underline;
}

.inglot-add-to-cart-btn:disabled {
    color: #ccc;
    cursor: not-allowed;
    text-decoration: none;
}

@media (max-width: 768px) {
    .add-to-cart-form {
        display: block;
        position: initial;
        width: 100%;
    }
    
    .inglot-bestseller-price-container {
        flex-wrap: wrap;
    }
    
    button.inglot-add-to-cart-btn {
        font-size: 10px;
        color: black;
        justify-content: start;
        height: 30px;
    }
    
    /* Upewnij się, że cena jest zawsze widoczna na mobile */
    .inglot-bestseller-price,
    .inglot-bestseller-price-old {
        display: inline !important;
    }
}