/* General table styles */
.pv-table {
    display: flex;
    padding: 5px 0px;
    border-style: none none solid none;
    border-width: 1px;
    border-color: #c6c6c669;
    justify-content: space-between;
}

.pv-table-title {
    width: 250px;
    display: flex;
}

/* Thumbnail styles */
.variation-thumbnail {
    width: 50px;
    height: auto;
    margin-right: 10px;
    object-fit: contain;
}

span.variation-title {
    width: 200px;
    font-family: 'outfit';
    font-weight: 400;
    font-size: 20px;
}

.pv-table-info {
    display: flex;
    flex-direction: column;
    width: 100px;
}

span.variation-price {
    font-family: 'Outfit';
    font-size: 20px;
    font-weight: 400;
}

span.variation-inventory.outofstock {
    font-size: 12px;
    font-family: 'Outfit';
    font-weight: 400;
    color: #bf0101;
}

span.variation-inventory.available {
    font-family: 'Outfit';
    font-weight: 400;
    font-size: 12px;
    color: green;
}


.variation-last {
    display: flex;
    align-items: center;
    width: 210px;
    justify-content: space-between;
}

.variation-qty {
    display: flex;
    margin: 0px;
}

.variation-qty > * {
    height: 38px;
}

/* Quantity Button */
button.qty-ajax-btn.qty-minus {
    border-style: solid none solid solid;
    border-radius: 5px 0px 0px 5px;
}
button.qty-ajax-btn.qty-plus {
    border-style: solid solid solid none;
    border-radius: 0px 5px 5px 0px;
}
button.qty-ajax-btn {
    background: white;
    padding: 0px;
    width: 20px;
    border-color: #c2c2c2;
    color: black;
    border-radius: 5px 0px 0px 5px;
}
button.qty-ajax-btn:hover {
    background-color: #f86b04 !important;
}
button.qty-ajax-btn:focus {
    outline: none !important;
    background-color: #F78633;
}

input.quantity-input {
    width: 50px !important;
    padding: 0px 0px 0px 5px !important;
    border-style: solid none !important;
    border-width: 1px 0px !important;
    border-color: #c2c2c2 !important;
    border-radius: 0px !important;
    margin: 0px -4px;
    font-family: 'Outfit';
    font-weight: 400;
    font-size: 16px;
    appearance: none;
    -moz-appearance: textfield;
}
input.quantity-input:focus {
    outline: none !important;
}
input.quantity-input::-webkit-inner-spin-button,
input.quantity-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0px;
}
input.quantity-input[type=number] {
    -moz-appearance:textfield; /* Firefox */
}

/* Add to cart button */
.add-to-cart-btn {
    background-color: #f86b04;
    border: none;
    color: white;
    padding: 8px 12px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 0.9em;
    cursor: pointer;
    border-radius: 2px;
}

.add-to-cart-btn:hover {
    background-color: #F78633;
}
.add-to-cart-btn:focus {
    background-color: #F78633;
    outline: none !important;
}

.add-to-cart-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
    width: 100%;
}



/* Responsive adjustments can be added here if necessary */
@media screen and (max-width: 768px) {
    /* Responsive styles */
}
