/* General Wrapper */
.krullen-salon-wrapper {
    display: grid;
    gap: 24px;
    font-family: sans-serif;
}

/* --- Layout Aanbevolen & Premium --- */
.krullen-salon-wrapper.layout-aanbevolen {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.krullen-salon-wrapper.layout-premium {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.salon-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
}

.card-image-wrap {
    position: relative;
    width: 100%;
    padding-top: 60%;
    background: #f5f5f5;
}
.card-image-wrap .main-bg-img {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
}
.salon-badge {
    position: absolute;
    top: 12px; left: 12px;
    background: #fff;
    color: #333;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 5px;
}
.salon-badge i { color: #d4af37; }

.card-logo {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px; height: 60px;
    border-radius: 50%;
    background: #fff;
    padding: 4px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    z-index: 2;
}
.card-logo img {
    width: 100%; height: 100%;
    object-fit: contain;
    border-radius: 50%;
}

.card-content {
    padding: 45px 20px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.salon-title {
    margin: 0 0 5px;
    font-size: 20px;
    font-weight: bold;
    color: #222;
}
.salon-specialties {
    font-size: 13px;
    color: #666;
    margin-bottom: 10px;
}
.salon-rating {
    font-size: 14px;
    margin-bottom: 12px;
}
.salon-rating .star { color: #ddd; }
.salon-rating .star.filled { color: #f5a623; }
.rating-text { color: #555; font-weight: 500; }

.salon-desc, .salon-address {
    font-size: 14px;
    color: #555;
    margin-bottom: 20px;
    flex-grow: 1;
}

.salon-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
}
.btn-primary, .btn-secondary {
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    flex: 1;
}
.btn-primary {
    background: #3a2b25;
    color: #fff;
    border: 1px solid #3a2b25;
}
.btn-primary:hover { background: #221814; color: #fff; }

.btn-secondary {
    background: #fff;
    color: #333;
    border: 1px solid #ddd;
}
.btn-secondary:hover { border-color: #999; }

/* --- Layout Basis (List) --- */
.krullen-salon-wrapper.layout-basis {
    grid-template-columns: 1fr;
    gap: 10px;
}
.layout-basis .salon-item {
    flex-direction: row;
    align-items: center;
    padding: 12px 20px;
    box-shadow: none;
    border: 1px solid #eee;
    border-radius: 8px;
    position: relative;
    transition: background 0.2s;
}
.layout-basis .salon-item:hover {
    background: #f9f9f9;
}
.basis-logo {
    width: 40px; height: 40px;
    border-radius: 50%;
    margin-right: 15px;
    background: #f0f0f0;
    overflow: hidden;
}
.basis-logo img { width: 100%; height: 100%; object-fit: cover; }
.basis-info { flex-grow: 1; display: flex; align-items: center; gap: 15px; }
.basis-info h4 { margin: 0; font-size: 16px; color: #222; }
.basis-address { font-size: 13px; color: #777; }
.basis-arrow { font-size: 24px; color: #aaa; }
.full-link {
    position: absolute;
    top:0; left:0; width:100%; height:100%;
    z-index: 5;
}
