@charset "utf-8";
/* CSS Document */

/* Wrapper */
.bd-orderform {
    max-width: 100%
    margin: 0 auto;
    font-family: inherit;
}

/* Sektioner */
.bd-orderform h3 {
    margin-top: 30px;
    margin-bottom: 12px;
    font-size: 20px;
    font-weight: 500;
}

/* Alternativ-listor */
.bd-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* En rad */
.bd-option {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    padding: 14px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.15s ease;
    background: #fff;
}

/* Hover */
.bd-option:hover {
    background: #f8f8f8;
}

.bd-option-title {
    display: flex;
    flex-direction: column;
    font-weight: 600;
    line-height: 1.2;
}

.bd-option-sub {
    font-size: 0.8rem;
    color: #6b7280;
    font-weight: 400;
    margin-top: 3px;
}

/* Pris högerställt */
.bd-option-price {
    font-weight: 500;
    opacity: 0.8;
    margin-right: 12px;
}

/* Inputs */
.bd-option input {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

/* Selected state */
.bd-option input:checked + * {
    /* funkar inte så här, vi fixar riktig selected-state sen */
}

/* Fält */
.bd-fields input {
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 16px;
}

/* Knapp */
.bd-submit {
    padding: 14px 20px;
    background: #e6145c;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
	font-weight:600;
    margin-top: 10px;
}

.bd-submit:hover {
    background: #111111;
}

.bd-accept {
    display: flex;
    align-items: center; /* magin */
    gap: 10px;
    margin-top: 15px;
    font-size: 14px;
    line-height: 1.4;
}

.bd-accept input {
    margin-top: 2px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.bd-accept a {
    color: #e6145c;
    text-decoration: none;
    font-weight: 500;
}

.bd-accept a:hover {
    text-decoration: underline;
}

/* -----------------------------------------
   INLINE-ALERT (mjuk, varm, HE-inspirerad)
------------------------------------------ */

.bd-inline-alert {
    background: #cccccc;
    color: #333333;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
    margin-bottom: 6px;
    border-left: 5px solid #111111;
    animation: bdFadeIn 0.2s ease-out;
}

/* -----------------------------------------
   FELMARKERING (mjukt highlight)
------------------------------------------ */

.bd-field-error {
    outline: 2px solid #ff6b6b;
    border-radius: 4px;
    transition: outline 0.3s ease;
}

/* -----------------------------------------
   ANIMATION
------------------------------------------ */

@keyframes bdFadeIn {
    from { opacity: 0; transform: translateY(-3px); }
    to   { opacity: 1; transform: translateY(0); }
}


.bd-total-box {
    margin-top: 30px; /* lägg luft ovanför */
}
