/* Dora Sales Booster - Frontend Styles */

.dora-sb-box {
    border-radius: 16px;
    padding: 20px;
    margin: 20px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.dora-sb-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.dora-sb-box .dora-sb-title {
    margin: 0 0 12px;
    font-weight: 500;
    font-size: 1.3rem;
}

.dora-sb-box p {
    margin: 8px 0;
    font-size: 1.05rem;
    line-height: 1.7;
}

.dora-sb-box .dora-sb-btn {
    display: inline-block;
    color: #fff;
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none;
    margin-top: 12px;
    transition: opacity 0.2s ease;
}

.dora-sb-box .dora-sb-btn:hover {
    opacity: 0.9;
    color: #fff;
}

.dora-sb-trust {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    margin: 15px 0;
    padding: 12px;
    background: rgba(0, 0, 0, 0.03);
    border-radius: 12px;
}

.dora-sb-trust-item {
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.dora-sb-cart-notice,
.dora-sb-checkout-notice {
    background: #f9f9f9;
    border: 1px solid #dddddd;
    border-radius: 12px;
    padding: 14px 18px;
    margin: 15px 0;
    font-size: 1rem;
    line-height: 1.7;
}

@media (max-width: 600px) {
    .dora-sb-box {
        padding: 16px !important;
        font-size: 0.95rem;
    }

    .dora-sb-trust {
        gap: 12px;
    }
}
