.kidrental-curation-section {
    background: #fdf6f0;
    border-radius: 20px;
    padding: 24px;
    margin-bottom: 30px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.kidrental-curation-title {
    font-size: 1.4rem;
    color: #e75480;
    margin-bottom: 20px;
}
.kidrental-curation-options {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}
.kidrental-curation-card {
    background: white;
    border: 2px dashed #ffb6c1;
    border-radius: 16px;
    padding: 16px;
    width: 100px;
    cursor: pointer;
    transition: all 0.3s;
}
.kidrental-curation-card:hover,
.kidrental-curation-card.selected {
    background: #fff0f5;
    transform: translateY(-4px);
}
.kidrental-curation-card img {
    width: 40px;
    height: 40px;
    margin-bottom: 8px;
}
.kidrental-selection-tray {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: white;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    max-width: 300px;
    z-index: 9999;
}
.kidrental-total {
    font-weight: bold;
    margin-top: 10px;
    color: #e75480;
}
.kidrental-modal {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}
.kidrental-modal-content {
    background: white;
    padding: 24px;
    border-radius: 16px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}