.custom-variation-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.custom-variation-button {
    padding: 8px 12px;
    margin: 5px;
    border: 0px solid #ccc;
    background-color: #e6e6e6;
    cursor: pointer;
    transition: all 0.3s ease;
	border-radius: 4px;
	color: #666;
	position: relative;
	top: -8px;
}

.custom-variation-button:hover {
    background-color: #cccccc;
}

.custom-variation-button.active {
    color: white;
	background-color: #8a8a8a;
}

.sold-out-marker {
    color: red;
    font-weight: bold;
    padding-left: 5px;
    font-size: larger; 
}

.custom-variation-button.sold-out {
    background-color: #f8d7da; /* Lichtrode achtergrond voor uitverkochte items */
    color: #721c24;
    text-decoration: line-through;
    cursor: not-allowed;
}

.sold-out-marker {
    color: red;
    font-weight: bold;
    padding-left: 5px;
    font-size: larger; 
}

.variations select {
    display: none !important;
	opacity: 0 !important;
	visibility: hidden !important;
}

.variations span::after {
	opacity: 0;
}

.woocommerce div.product form.cart .variations td {
    padding: 0 20px 0px 0 !important;
    max-width: none !important;
    line-height: 0.1em !important;
}

td.actions[colspan="6"] > div.coupon > input#coupon_code.input-text {
    padding: 5px !important;
}

/* Style for the custom out-of-stock message */
.custom-out-of-stock-message {
    font-size: 14px;
    color: #ff0000;
    margin-bottom: 20px;
}

/* Style for the custom category button */
.custom-category-button {
    background-color: #926c4f !important; 
    color: #ffffff !important;
    padding: 10px 20px !important;
    text-decoration: none !important;
    border-radius: 100px !important;
	border-width: 0px !important;
    font-size: 16px !important;
    transition: background-color 0.3s ease !important;
	margin-bottom: 10px !important;
}

/* Hide the default "Uitverkocht" message on single product pages */
body.single-product p.stock.out-of-stock {
    display: none;
}

/* Completely hide any :before and :after pseudo-elements on the custom category button */
body.single-product a.button.custom-category-button::before,
body.single-product a.button.custom-category-button::after {
    display: none !important;
    content: none !important;
}

.reset_variations {
	display: none !important;
}