/* Headline styling */
.fam-pro-accessory-headline {
    font-size: 18px;
    font-weight: 700;
    color: #0071a1;
    margin-top: 25px;
    margin-bottom: 10px;
    border-bottom: 2px solid #0071a1;
    padding-bottom: 5px;
}

/* Accessory grid under headline */
.fam-pro-accessory-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px; 
}

/* Accessory card */
.fam-pro-accessory-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 120px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    background-color: #f9f9f9; 
}
.fam-pro-accessory-card:hover {
    border-color: #0071a1;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.fam-pro-accessory-card input {
    margin-bottom: 5px;
}
.fam-pro-accessory-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    margin-bottom: 5px;
}
.fam-pro-accessory-name {
    font-weight: bold;
    margin-bottom: 3px;
}
.fam-pro-accessory-price {
    color: #0071a1;
    font-weight: bold;
}
.fam-pro-total-price {
    margin-top: 15px;
    font-size: 18px;
    font-weight: bold;
    color: #000;
}
@media(max-width:768px){
    .fam-pro-accessory-card { width: 48%; }
}