/* --- CALCULATOR EXTRAS --- */

/* Compact pixel-step chips */

.calc-pixel-chip {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    min-height: 42px;
    border-radius: 12px;
    background-color: #F3F3F3;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #3D3D3D;
    cursor: pointer;
    border: 2px solid transparent;
    transition: background 0.2s, border-color 0.2s;
    white-space: nowrap;
    user-select: none;
}

.calc-pixel-chip input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
}

.calc-pixel-chip:has(input:checked) {
    background-color: #FFEB59;
    border-color: #3D3D3D;
}

.calc-pixel-chip:hover {
    background-color: #eaeaea;
}

.calc-pixel-chip:has(input:checked):hover {
    background-color: #f5dc3e;
}

.calculator__pixel-options {
    flex-wrap: wrap !important;
    max-height: none !important;
    gap: 8px !important;
}

/* Warranty dot selector */

.warranty-selector {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 8px;
    padding: 4px 0;
}

.warranty-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    user-select: none;
}

.warranty-option input[type="radio"] {
    display: none;
}

.warranty-dot {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #F3F3F3;
    border: 2px solid #D9D9D9;
    transition: background 0.2s, border-color 0.2s;
}

.warranty-option:has(input:checked) .warranty-dot {
    background: #FFEB59;
    border-color: #3D3D3D;
}

.warranty-option:hover .warranty-dot {
    border-color: #B2B2B2;
}

.warranty-label {
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #636363;
    text-align: center;
    line-height: 1.3;
    white-space: nowrap;
}

.warranty-option:has(input:checked) .warranty-label {
    color: #2f2f2f;
    font-weight: 700;
}

/* Delivery toggle */

.delivery-toggle-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 10px 20px;
    background: #F3F3F3;
    border-radius: 20px;
    cursor: pointer;
    user-select: none;
    width: fit-content;
}

.delivery-toggle-wrapper input[type="checkbox"] {
    display: none;
}

.delivery-toggle-switch {
    position: relative;
    width: 54px;
    height: 30px;
    flex-shrink: 0;
    background: #D9D9D9;
    border: 1px solid #B2B2B2;
    border-radius: 15px;
    transition: background 0.2s, border-color 0.2s;
}

.delivery-toggle-switch::after {
    content: '';
    position: absolute;
    width: 22px;
    height: 22px;
    background: #fff;
    border-radius: 50%;
    top: 3px;
    left: 3px;
    transition: left 0.2s;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.delivery-toggle-wrapper:has(input:checked) .delivery-toggle-switch {
    background: #4CAF50;
    border-color: #3D3D3D;
}

.delivery-toggle-wrapper:has(input:checked) .delivery-toggle-switch::after {
    left: 27px;
}

.delivery-toggle-label {
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #3D3D3D;
    line-height: 1.2;
}

/* --- / CALCULATOR EXTRAS --- */
