:root{
    --theme-color: #ffbd27;
}

 /* Custom styles for attribute selection */
 .attribute-options {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.form-check-inline {
	position: relative;
}

.attribute-radio {
	position: absolute;
	opacity: 0;
}

.attribute-label {
	display: inline-block;
	padding: 8px 16px;
	border: 1px solid #ddd;
	border-radius: 4px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.attribute-radio:checked + .attribute-label,
.attribute-label.selected {
	background-color: #007bff;
	color: white;
	border-color: #007bff;
}

.attribute-label:hover:not(.unavailable) {
	background-color: #f8f9fa;
	border-color: #007bff;
}

.attribute-radio:checked + .attribute-label:hover:not(.unavailable),
.attribute-label.selected:hover:not(.unavailable) {
	background-color: #0069d9;
}

/* Style for unavailable options */
.attribute-label.unavailable {
	opacity: 0.5;
	cursor: not-allowed;
	text-decoration: line-through;
	background-color: #f8f9fa;
}

/* Style for disabled buttons */
button:disabled {
	opacity: 0.65;
	cursor: not-allowed;
}

.shop-product-img {
    width: 100%;
    aspect-ratio: 1 / 1; /* Makes it square */
    object-fit: cover;
    border-radius: 8px; /* Optional: adds rounded corners */
	/* min-height: 300px; */
}