/**
 * Step 1 - Campaign Creation & Review Styles
 * Styles specifiques pour la page de creation et review (etape 1)
 */

/* ==========================================================================
   Page Layout
   ========================================================================== */
.step1-content {
    padding-bottom: 80px;
}

/* ==========================================================================
   Breadcrumb
   ========================================================================== */
.campaign-breadcrumb-link {
    color: var(--color-primary);
    text-decoration: none;
}

.campaign-breadcrumb-link:hover {
    text-decoration: underline;
}

/* ==========================================================================
   Speed Dial FAB
   ========================================================================== */
.speed-dial-container {
    position: fixed;
    bottom: 100px;
    right: 24px;
    z-index: 90;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    pointer-events: none;
}

.speed-dial-action {
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0;
    transform: translateY(20px) scale(0.8);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.speed-dial-container:hover .speed-dial-action {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: all;
}

.speed-dial-action:nth-child(1) {
    transition-delay: 0.05s;
}

.speed-dial-action:nth-child(2) {
    transition-delay: 0.1s;
}

.speed-dial-label {
    background: rgba(0, 0, 0, 0.87);
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.speed-dial-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
    border: none;
    pointer-events: all;
}

.speed-dial-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.speed-dial-btn i {
    font-size: 20px;
}

.speed-dial-main {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: white;
    font-size: 24px;
}

.speed-dial-container:hover .speed-dial-main {
    transform: rotate(45deg);
}

.speed-dial-cancel {
    background: white;
    color: #6c757d;
    border: 2px solid #dee2e6;
}

.speed-dial-primary {
    background: var(--color-primary);
    color: white;
}

.speed-dial-btn:disabled,
.speed-dial-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* ==========================================================================
   Review - Name Proposal Radio Buttons
   ========================================================================== */
.name-proposal-label {
    height: 100%;
    border-width: 2px;
}

.name-proposal-icon {
    font-size: 1.25rem;
    margin-top: 2px;
}

/* ==========================================================================
   Review - Color Swatches
   ========================================================================== */
.color-swatch {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    border: 2px solid var(--border);
}

.color-swatch-primary {
    background: #003080;
}

.color-swatch-secondary {
    background: #39BFEF;
}

.color-swatch-white {
    background: #FFFFFF;
}

.color-swatch-light {
    background: #F5F5F7;
}

/* ==========================================================================
   Review - Asset Preview Items
   ========================================================================== */
/* --theme-bg-secondary suit le theme actif (gris clair en light,
   bleu/bordeaux fonce en dark). var(--bg-primary) seul resterait blanc
   en dark car la variable racine n'est jamais reevaluee. */
.asset-preview-item {
    background: var(--theme-bg-secondary, var(--bg-primary, #f5f5f7));
    color: var(--theme-text-primary, #212529);
    border-radius: var(--border-radius-md);
}

/* ==========================================================================
   Review - Competitor Priority Badges
   ========================================================================== */
.competitor-priority-badge {
    font-size: 0.7rem;
}

/* ==========================================================================
   Loading - Info alert
   ========================================================================== */
.campaign-loading-info {
    margin-top: var(--spacing-3xl);
    display: flex;
    align-items: center;
    gap: var(--gap-md);
}

.campaign-loading-info i {
    font-size: var(--font-size-2xl);
}

/* Onboarding Help Button : styles dans components/onboarding-dap.css */
