/* BCD Ice Cream — Custom CSS per Laravel
   Il theme.css di YOOtheme ha già tutti i colori e gli stili UIKit.
   Questo file aggiunge SOLO ciò che manca. */

/* Background pagina (mancante nel theme.css compilato) */
body {
    background-color: #F6EFDF;
}

/* Flart Studio shape dividers */
.fs-shape-divider {
    pointer-events: none;
    z-index: 1;
}

/* Language switcher nella navbar */
.bcd-lang-switcher a {
    display: inline-block;
    padding: 4px 10px;
    border: 1px solid #DAD1BA;
    border-radius: 3px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #603013;
    letter-spacing: 0.5px;
}
.bcd-lang-switcher a:hover {
    background: #603013;
    color: #fff;
    border-color: #603013;
}

/* Form contatti - campi più visibili */
form .uk-input,
form .uk-textarea,
form .uk-select {
    border: 1px solid #DAD1BA !important;
    border-radius: 4px;
    padding: 8px 12px;
    background: #fff;
}
form .uk-input:focus,
form .uk-textarea:focus,
form .uk-select:focus {
    border-color: #AE7F41 !important;
    outline: none;
}

/* Radio e checkbox più visibili */
form .uk-radio,
form .uk-checkbox {
    width: 20px;
    height: 20px;
    border: 2px solid #DAD1BA !important;
    background: #fff;
    margin-right: 6px;
    vertical-align: middle;
}
form .uk-radio:checked,
form .uk-checkbox:checked {
    border-color: #603013 !important;
    background-color: #603013 !important;
}
