.yaki-ball-container {
    font-family: sans-serif;
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    overflow: hidden;
}

.yaki-step {
    padding: 20px;
    margin-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.yaki-step-header {
    background-color: #d9534f;
    color: white;
    padding: 10px 15px;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 20px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.yaki-step-header small {
    font-size: 0.9rem;
    font-weight: normal;
    opacity: 0.9;
}

.yaki-limit-msg {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
    font-style: italic;
}

.yaki-options-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.yaki-multi-col {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
}

/* Option Cards (Step 1) */
.yaki-option-card {
    display: flex;
    align-items: flex-start;
    padding: 15px;
    border: 2px solid #eee;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.yaki-option-card input {
    margin-top: 5px;
    margin-right: 15px;
    transform: scale(1.2);
}

.yaki-card-content h4 {
    margin: 0 0 5px 0;
}

.yaki-card-content p {
    margin: 0;
    font-size: 0.85rem;
    color: #666;
}

.yaki-price-badge {
    background: #eee;
    padding: 4px 8px;
    border-radius: 12px;
    font-weight: bold;
    font-size: 0.9rem;
    float: right;
}

.yaki-option-card:has(input:checked) {
    border-color: #d9534f;
    background: #fdf2f2;
}

/* Standard Items (Checkboxes/Radios) */
.yaki-option-item {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 8px;
}

.yaki-option-item input {
    margin-right: 10px;
    transform: scale(1.2);
}

.yaki-extra-price {
    font-size: 0.8em;
    color: #888;
    margin-left: 5px;
}

/* Summary Bar */
.yaki-summary-bar {
    background: #f9f9f9;
    padding: 15px 20px;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    bottom: 0;
    z-index: 10;
}

.yaki-total {
    font-size: 1.2rem;
    font-weight: bold;
}

.yaki-total-price {
    color: #d9534f;
    font-size: 1.5rem;
}

.yaki-nav-buttons {
    display: flex;
    gap: 10px;
}

.yaki-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-weight: bold;
    transition: opacity 0.2s;
}

.yaki-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.yaki-btn-primary {
    background-color: #d9534f;
    color: white;
}

.yaki-btn-primary:hover {
    opacity: 0.9;
}