.biodiv-add-to-cart-widget {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.biodiv-atc-product-info {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 12px;
}

.biodiv-atc-product-image {
    flex-shrink: 0;
}

.biodiv-atc-product-image img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
}

.biodiv-atc-product-details {
    flex: 1;
}

.biodiv-atc-product-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 8px 0;
    color: #333;
}

.biodiv-atc-product-price {
    font-size: 20px;
    font-weight: 700;
    color: #00719B;
}

.biodiv-atc-product-price del {
    opacity: 0.6;
    font-size: 16px;
    margin-right: 8px;
}

.biodiv-atc-actions {
    display: flex;
    gap: 15px;
    align-items: flex-end;
    flex-wrap: wrap;
}

.biodiv-atc-quantity-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.biodiv-atc-quantity-wrapper label {
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

.biodiv-atc-quantity-controls {
    display: flex;
    align-items: center;
    gap: 0;
    overflow: hidden;
    background: transparent;
}

.biodiv-atc-quantity-btn {
    width: 40px;
    height: 44px;
    border: none;
    background: #1c1b1b;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border-radius: 0;
}

.biodiv-atc-quantity-btn:hover {
    background: #2c2b2b;
}

.biodiv-atc-quantity-btn:active {
    background: #2c2b2b;
}

.biodiv-atc-quantity-btn.minus {
    border-radius: 8px 0 0 8px;
}

.biodiv-atc-quantity-btn.plus {
    border-radius: 0 8px 8px 0;
}

.biodiv-atc-quantity-input {
    width: 60px;
    height: 44px;
    border: 1px solid #ddd;
    border-left: none;
    border-right: none;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    outline: none;
    -moz-appearance: textfield;
    background: #fff;
}

.biodiv-atc-quantity-input::-webkit-outer-spin-button,
.biodiv-atc-quantity-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.biodiv-add-to-cart-button {
    flex: 1;
    min-width: 200px;
}

.biodiv-add-to-cart-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.biodiv-add-to-cart-widget .added_to_cart.wc-forward {
    display: none !important;
}


@media (max-width: 767px) {
    .biodiv-atc-product-info {
        flex-direction: column;
    }

    .biodiv-atc-product-image img {
        width: 100%;
        height: auto;
        max-width: 200px;
    }

    .biodiv-atc-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .biodiv-add-to-cart-button {
        width: 100%;
    }

    .biodiv-atc-quantity-wrapper {
        width: 100%;
    }

    .biodiv-atc-quantity-controls {
        width: 100%;
    }

    .biodiv-atc-quantity-input {
        flex: 1;
    }
}

