.sb-recommender-wrapper {
    background: #ffffff !important ;
    border: 1px solid #e2e8f0 !important ;
    border-radius: 20px !important ;
    padding: 24px !important ;
    margin: 30px 0 !important ;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02) !important ;
}
.sb-rec-header {
    display: flex !important ;
    align-items: center !important ;
    gap: 12px !important ;
    margin-bottom: 20px !important ;
}
.sb-rec-icon {
    color: #3b82f6 !important ;
    font-size: 24px !important ;
    width: 24px !important ;
    height: 24px !important ;
}
.sb-rec-title {
    margin: 0 !important ;
    font-size: 16px !important ;
    font-weight: 800 !important ;
    color: #0f172a !important ;
}
.sb-rec-body {
    display: flex !important ;
    flex-direction: column !important ;
    gap: 20px !important ;
}
.sb-rec-products {
    display: flex !important ;
    align-items: center !important ;
    gap: 15px !important ;
    background: #f8fafc !important ;
    padding: 16px !important ;
    border-radius: 16px !important ;
    border: 1px solid #f1f5f9 !important ;
}
.sb-rec-product-item {
    display: flex !important ;
    align-items: center !important ;
    gap: 12px !important ;
    background: #ffffff !important ;
    padding: 12px !important ;
    border-radius: 12px !important ;
    flex: 1 !important ;
    position: relative !important ;
    border: 1px solid #e2e8f0 !important ;
    box-sizing: border-box !important ;
}
.sb-rec-product-item img {
    width: 60px !important ;
    height: 60px !important ;
    border-radius: 8px !important ;
    object-fit: cover !important ;
}
.sb-rec-product-info {
    display: flex !important ;
    flex-direction: column !important ;
    gap: 6px !important ;
}
.sb-rec-product-name {
    font-size: 13px !important ;
    font-weight: 700 !important ;
    color: #334155 !important ;
}
.sb-rec-product-price {
    font-size: 14px !important ;
    font-weight: 900 !important ;
    color: #0f172a !important ;
    display: flex !important ;
    align-items: center !important ;
    gap: 8px !important ;
    flex-wrap: wrap !important ;
}
.sb-rec-product-price del {
    color: #94a3b8 !important ;
    font-size: 12px !important ;
    font-weight: 600 !important ;
}
.sb-rec-product-price ins {
    text-decoration: none !important ;
    color: #10b981 !important ;
}
.sb-rec-plus {
    color: #94a3b8 !important ;
    display: flex !important ;
    align-items: center !important ;
    justify-content: center !important ;
}
.sb-rec-plus svg {
    transition: transform 0.3s ease !important ;
}
.sb-rec-fbt-item {
    border-color: #3b82f6 !important ;
    box-shadow: 0 0 0 1px #3b82f6 !important ;
}
.sb-rec-badge {
    position: absolute !important ;
    top: -10px !important ;
    right: -10px !important ;
    background: #ef4444 !important ;
    color: #ffffff !important ;
    font-size: 11px !important ;
    font-weight: 800 !important ;
    padding: 4px 8px !important ;
    border-radius: 20px !important ;
    box-shadow: 0 4px 10px rgba(239, 68, 68, 0.3) !important ;
}
.sb-rec-action {
    display: flex !important ;
    justify-content: space-between !important ;
    align-items: center !important ;
    background: #0f172a !important ;
    padding: 16px 24px !important ;
    border-radius: 16px !important ;
}
.sb-rec-total {
    display: flex !important ;
    flex-direction: column !important ;
    gap: 4px !important ;
}
.sb-rec-total span {
    color: #94a3b8 !important ;
    font-size: 12px !important ;
    font-weight: 600 !important ;
}
.sb-rec-total strong {
    color: #ffffff !important ;
    font-size: 18px !important ;
    font-weight: 900 !important ;
}
.sb-rec-add-btn {
    background: #3b82f6 !important ;
    color: #ffffff !important ;
    border: none !important ;
    padding: 12px 24px !important ;
    border-radius: 12px !important ;
    font-size: 14px !important ;
    font-weight: 800 !important ;
    cursor: pointer !important ;
    transition: all 0.2s ease !important ;
}
.sb-rec-add-btn:hover {
    background: #2563eb !important ;
    transform: translateY(-2px) !important ;
}
.sb-rec-add-btn:disabled {
    opacity: 0.7 !important ;
    cursor: not-allowed !important ;
    transform: none !important ;
}
@media (max-width: 768px) {
    .sb-recommender-wrapper {
        padding: 16px !important ;
        border-radius: 16px !important ;
    }
    .sb-rec-products {
        flex-direction: column !important ;
        gap: 12px !important ;
        padding: 12px !important ;
    }
    .sb-rec-product-item {
        width: 100% !important ;
        padding: 10px !important ;
    }
    .sb-rec-plus {
        padding: 4px 0 !important ;
    }
    .sb-rec-plus svg {
        transform: rotate(90deg) !important ;
    }
    .sb-rec-action {
        flex-direction: column !important ;
        align-items: stretch !important ;
        gap: 16px !important ;
        padding: 16px !important ;
    }
    .sb-rec-total {
        align-items: center !important ;
        text-align: center !important ;
    }
    .sb-rec-add-btn {
        width: 100% !important ;
        padding: 14px !important ;
        display: flex !important ;
        justify-content: center !important ;
        align-items: center !important ;
    }
    .sb-rec-header {
        justify-content: center !important ;
    }
}