.slb-container-b5d1b916 {
    font-family: inherit;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.slb-search-wrap-b5d1b916 {
    margin-bottom: 10px;
}

.slb-input-container-b5d1b916 {
    position: relative;
    width: 100%;
}

.slb-search-input-b5d1b916 {
    width: 100%;
    padding: 14px 16px;
    padding-right: 40px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    min-height: 50px;
    font-size: 16px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
    transition: box-shadow 0.3s ease;
    position: relative;
    z-index: 10;
}

.slb-search-input-b5d1b916:focus {
    outline: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border-color: #ccc;
}

.slb-loader-b5d1b916 {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border: 3px solid rgba(0,0,0,0.1);
    border-top-color: #6EC1E4;
    border-radius: 50%;
    animation: slb-spin-b5d1b916 1s linear infinite;
    z-index: 20;
}

@keyframes slb-spin-b5d1b916 {
    0% { transform: translateY(-50%) rotate(0deg); }
    100% { transform: translateY(-50%) rotate(360deg); }
}

.slb-suggestions-list-b5d1b916 {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    list-style: none;
    padding: 0;
    margin: 0;
    z-index: 9999;
    max-height: 250px;
    overflow-y: auto;
}

.slb-suggestion-item-b5d1b916 {
    padding: 12px 16px;
    cursor: pointer;
    font-size: 15px;
    border-bottom: 1px solid #f5f5f5;
    transition: background 0.2s;
}

.slb-suggestion-item-b5d1b916:last-child {
    border-bottom: none;
}

.slb-suggestion-item-b5d1b916:hover {
    background-color: #f9f9f9;
}

.slb-suggestion-item-b5d1b916.custom {
    font-style: italic;
    color: #666;
}

.slb-dynamic-area-b5d1b916 {
    background: #fafafa;
    border: 1px solid #eee;
    border-top: none;
    border-radius: 0 0 8px 8px;
    padding: 16px;
    margin-top: -12px;
    margin-bottom: 24px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    position: relative;
    z-index: 5;
}

.slb-step-container-b5d1b916 {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #e0e0e0;
}

.slb-final-step-b5d1b916 {
    margin-top: 15px;
    padding-top: 10px;
}

.fade-in {
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

.slb-step-title-b5d1b916 {
    margin: 0 0 12px 0;
    font-size: 14px;
    font-weight: 600;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.slb-fluid-btn-group-b5d1b916 {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    flex-direction: column;
}

@media (min-width: 600px) {
    .slb-fluid-btn-group-b5d1b916 {
        flex-direction: row;
    }
}

.slb-fluid-btn-b5d1b916 {
    flex: 1;
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: #fff;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.2s;
    min-height: 44px;
}

@media (min-width: 600px) {
    .slb-fluid-btn-b5d1b916 {
        min-width: 100px;
        width: auto;
    }
}

.slb-fluid-btn-b5d1b916:hover {
    background: #f0f0f0;
    border-color: #ccc;
}

.slb-btn-success-b5d1b916, .slb-organic-toggle-b5d1b916.active {
    background-color: #e6f4ea;
    border-color: #34a853;
    color: #137333;
}

.slb-btn-success-b5d1b916:hover {
    background-color: #dcece0;
}

.slb-btn-b5d1b916 {
    padding: 12px 16px;
    border: 1px solid #ccc;
    border-radius: 6px;
    min-height: 44px;
    background: #fff;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
    width: 100%;
    margin-bottom: 6px;
}

@media (min-width: 600px) {
    .slb-btn-b5d1b916 {
        width: auto;
        margin-bottom: 0;
    }
}

.slb-btn-primary-b5d1b916 {
    background: #6EC1E4;
    color: #fff;
    border: none;
    width: 100%;
    margin-top: 10px;
    font-size: 16px;
}

.slb-btn-primary-b5d1b916:hover {
    opacity: 0.9;
}

.slb-brand-input-b5d1b916 {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    min-height: 44px;
    font-size: 15px;
    margin-bottom: 12px;
}

.slb-toggle-group-b5d1b916 {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 15px;
}

@media (min-width: 600px) {
    .slb-toggle-group-b5d1b916 {
        flex-direction: row;
    }
    .slb-toggle-btn-b5d1b916 {
        flex: 1;
        padding: 10px;
        font-size: 13px;
    }
}

.slb-toggle-btn-b5d1b916.active {
    background: #6EC1E4;
    color: #fff;
    border-color: #6EC1E4;
}

.slb-list-area-b5d1b916 {
    margin-top: 20px;
}

.slb-list-header-b5d1b916 h3 {
    font-size: 18px;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 8px;
}

.slb-items-list-b5d1b916 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.slb-items-list-b5d1b916 li {
    padding: 12px 0;
    padding-right: 30px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 15px;
    line-height: 1.4;
    position: relative;
    padding-left: 24px;
}

.slb-items-list-b5d1b916 li:before {
    content: "•";
    color: #6EC1E4;
    position: absolute;
    left: 8px;
    font-size: 20px;
    line-height: 1;
}

.slb-remove-btn-b5d1b916 {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #ff4d4d;
    font-size: 20px;
    cursor: pointer;
    padding: 5px;
    line-height: 1;
    opacity: 0.6;
    transition: opacity 0.2s;
}

.slb-remove-btn-b5d1b916:hover {
    opacity: 1;
}

.slb-btn-clear-all-b5d1b916 {
    background: none;
    border: 1px solid #ff4d4d;
    color: #ff4d4d;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    margin-top: 15px;
    transition: all 0.2s;
    width: 100%;
}

.slb-btn-clear-all-b5d1b916:hover {
    background: #ff4d4d;
    color: #fff;
}
