/* Full Height */
html, body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
}

body > main {
    flex-grow: 1;
}

/* Grup genel görünüm */
.variant-group {
    margin-bottom: 1.5rem;
}

/* Grup başlığı */
.variant-label {
    font-weight: bold;
    margin-bottom: 0.5rem;
    display: block;
}

/* Seçenekler alanı */
.variant-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.variant-option {
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 8px 12px;
    background: #fff;
    user-select: none;
    font-size: 14px;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    opacity: 1;
}

.variant-option input[type="radio"] {
    margin-right: 6px;
    pointer-events: none;
}

.variant-option.selected {
    box-shadow: inset 0 0 0 1px #007bff;
    border-color: #007bff;
    background: #f0f0f0;
    font-weight: bold;
}

.variant-option.not-ideal {
    border-style: dashed;
    border-color: #bbb;
    position: relative;
}

/* (İsteğe bağlı) Hover'da bilgi verebiliriz */
.variant-option.not-ideal:hover::after {
    content: "Bu kombinasyon şu anda uygun değil";
    position: absolute;
    bottom: -20px;
    left: 0;
    background: #333;
    color: #fff;
    font-size: 12px;
    padding: 2px 6px;
    border-radius: 3px;
    white-space: nowrap;
    z-index: 10;
}

/* Ürün Kartı */
.card-product {
    height: 100%;
}

/* Block UI */
.apex-block-ui {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    z-index: 900;
}

.apex-block-ui-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Alpine UI */
[x-cloak] { display: none !important; }


.bg-error{--fc-bg-opacity:1;background-color:#db3030!important}
