/* General styling for the form */
form.variations_form.cart {
    display: flex;
    flex-direction: column;
    max-width: 500px;
    margin: auto;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #f9f9f9;
    gap: 15px; /* Add spacing between form sections */
}

/* Styling for the variations table */
.variations {
    width: 100%;
    border-spacing: 0;
    border-collapse: separate;
    margin-bottom: 20px;
}

.variations th.label {
    text-align: left;
    padding: 8px;
    font-weight: bold;
    font-size: 14px;
}

.variations td.value {
    padding: 8px;
}

.variations select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    background-color: #fff;
}

/* Reset variations link */
a.reset_variations {
    font-size: 12px;
    color: #007bff;
    text-decoration: none;
    margin-left: 10px;
}

a.reset_variations:hover {
    text-decoration: underline;
}

/* Size guide styling */
a[onclick="Printful_Product_Size_Guide.onSizeGuideClick()"] {
    font-size: 13px;
    color: #1164A9;
    text-decoration: none;
    margin-bottom: 10px;
    display: inline-block;
}

a[onclick="Printful_Product_Size_Guide.onSizeGuideClick()"]:hover {
    text-decoration: underline;
}

/* Quantity selector */
.quantity {
    display: flex;
    align-items: center;
    gap: 5px;
}

.quantity input.input-text.qty.text {
    width: 60px;
    text-align: center;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
}

.quantity input.plus, .quantity input.minus {
    width: 30px;
    height: 30px;
    font-size: 18px;
    font-weight: bold;
    background-color: #f1f1f1;
    border: 1px solid #ccc;
    border-radius: 4px;
    cursor: pointer;
}

.quantity input.plus:hover, .quantity input.minus:hover {
    background-color: #ddd;
}

/* Add to cart button */
button.single_add_to_cart_button {
    padding: 12px;
    font-size: 16px;
    color: #fff;
    background-color: #000;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button.single_add_to_cart_button:hover {
    background-color: #333;
}

/* Styling for hidden elements (wallet options) */
#wc-square-digital-wallet {
    display: none;
}
