/* ── Layout ────────────────────────────────────────────────── */
body {
    background-color: #f8f9fa;
}

.main-content {
    min-height: calc(100vh - 56px);
}

/* ── Step indicator ────────────────────────────────────────── */
.step-indicator {
    display: flex;
    gap: 0;
}

.step {
    flex: 1;
    padding: 10px 16px;
    background: #e9ecef;
    color: #6c757d;
    font-size: 0.875rem;
    font-weight: 500;
    position: relative;
    text-align: center;
}

.step span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #adb5bd;
    color: white;
    font-size: 0.75rem;
    margin-right: 6px;
    font-weight: 700;
}

.step.active {
    background: #0d6efd;
    color: white;
}

.step.active span {
    background: white;
    color: #0d6efd;
}

.step.done {
    background: #198754;
    color: white;
}

.step.done span {
    background: white;
    color: #198754;
}

/* ── Drop zone ─────────────────────────────────────────────── */
.drop-zone {
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
}

.drop-zone:hover {
    background-color: rgba(13, 110, 253, 0.05);
    border-color: #0d6efd !important;
}

/* ── Photo thumbnail ───────────────────────────────────────── */
.photo-thumb {
    border-radius: 8px;
    overflow: hidden;
}

/* ── Offer card ────────────────────────────────────────────── */
.offer-card {
    transition: transform 0.15s, box-shadow 0.15s;
    border-radius: 12px;
}

.offer-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12) !important;
}

/* ── Allegro preview ───────────────────────────────────────── */
.allegro-preview {
    border-radius: 12px;
    overflow: hidden;
}

.allegro-title {
    font-size: 1.35rem;
    font-weight: 600;
    line-height: 1.3;
    color: #1a1a1a;
}

.allegro-price {
    font-size: 2rem;
    font-weight: 700;
    color: #e63946;
}

.allegro-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #333;
}

.allegro-description h2 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.allegro-description h3 {
    font-size: 1.05rem;
    margin-top: 1rem;
    font-weight: 600;
}

.allegro-description ul {
    padding-left: 1.5rem;
}

/* ── Misc ──────────────────────────────────────────────────── */
.btn-xs {
    padding: 2px 7px;
    font-size: 0.75rem;
}

.font-monospace {
    font-family: 'Consolas', 'Monaco', monospace;
}

.thumb-mini {
    transition: opacity 0.15s;
}

.thumb-mini:hover {
    opacity: 0.8;
}
