/* ── Shaker Awards — Public Form ─────────────────────────────────────────── */
.shaker-form-wrap { max-width: 700px; margin: 0 auto; font-family: inherit; }

/* Progress */
.shaker-progress-wrap { margin-bottom: 28px; }
.shaker-progress-bar { height: 6px; background: #e5e5e5; border-radius: 3px; overflow: hidden; margin-bottom: 8px; }
.shaker-progress-fill { height: 100%; background: linear-gradient(90deg,#c8930a,#f59e0b); border-radius: 3px; transition: width .4s ease; }
.shaker-steps-label { text-align: right; font-size: 12px; color: #999; }

/* Step header */
.shaker-step-header { margin-bottom: 24px; }
.shaker-step-header h2 { font-size: 22px; margin: 0 0 8px; }
.step-desc { color: #666; font-size: 14px; margin: 0; line-height: 1.6; }

/* Category cards */
.shaker-category-card {
    border: 1.5px solid #e8e8e8;
    border-radius: 10px;
    padding: 16px 18px;
    margin-bottom: 14px;
    transition: border-color .2s;
}
.shaker-category-card:focus-within { border-color: #c8930a; }
.cat-label { font-size: 14px; font-weight: 700; color: #1a1a1a; margin-bottom: 5px; }
.cat-desc  { font-size: 12px; color: #888; line-height: 1.55; margin-bottom: 10px; }
.shaker-category-card input[type="text"] {
    width: 100%; padding: 9px 13px; border: 1.5px solid #ddd; border-radius: 6px;
    font-size: 14px; box-sizing: border-box; transition: border-color .2s;
}
.shaker-category-card input:focus { outline:none; border-color:#c8930a; }

/* Subsection labels */
.shaker-subsection-label {
    font-size: 13px; font-weight: 700; color: #555;
    text-transform: uppercase; letter-spacing: .5px;
    margin: 20px 0 12px; padding-bottom: 6px;
    border-bottom: 1px solid #eee;
}

/* Instagram pair rows */
.shaker-ig-pair {
    display: grid;
    grid-template-columns: 1fr 180px;
    gap: 12px;
    align-items: end;
    margin-bottom: 14px;
    background: #fafafa;
    border: 1.5px solid #ebebeb;
    border-radius: 10px;
    padding: 14px 16px;
}
.shaker-ig-pair:focus-within { border-color: #c8930a; }
@media (max-width: 560px) { .shaker-ig-pair { grid-template-columns: 1fr; } }

.ig-input-wrap { display: flex; align-items: center; border: 1.5px solid #ddd; border-radius: 6px; overflow: hidden; }
.ig-at { padding: 9px 8px 9px 12px; background: #f3f3f3; color: #aaa; font-size: 14px; border-right: 1px solid #ddd; }
.ig-input-wrap input { border: none; padding: 9px 12px; font-size: 14px; flex: 1; }
.ig-input-wrap input:focus { outline: none; }
.ig-input-wrap:focus-within { border-color: #c8930a; }

/* Generic fields */
.shaker-field { margin-bottom: 16px; }
.shaker-field label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; color: #333; }
.shaker-field .req { color: #ef4444; }
.shaker-field input[type="text"],
.shaker-field input[type="email"],
.shaker-field input[type="number"],
.shaker-field select {
    width: 100%; padding: 10px 14px; border: 1.5px solid #d5d5d5;
    border-radius: 7px; font-size: 14px; color: #1a1a1a; background: #fff;
    transition: border-color .2s; box-sizing: border-box; font-family: inherit;
}
.shaker-field input:focus, .shaker-field select:focus { outline:none; border-color:#c8930a; box-shadow:0 0 0 3px rgba(200,147,10,.1); }

.shaker-row-2 { display: flex; gap: 14px; }
.shaker-row-2 > .shaker-field { flex: 1; }
@media (max-width: 500px) { .shaker-row-2 { flex-direction: column; gap: 0; } }

/* Checkbox */
.shaker-checkbox-field { background: #fffbeb; border: 1px solid #fde68a; border-radius: 8px; padding: 14px; }
.shaker-checkbox-label { display: flex; gap: 10px; align-items: flex-start; cursor: pointer; font-size: 13px; color: #333; line-height: 1.5; }
.shaker-checkbox-label input { margin-top: 2px; flex-shrink: 0; accent-color: #c8930a; width: 16px; height: 16px; }
.shaker-checkbox-label a { color: #c8930a; }

/* Navigation */
.shaker-nav-row { display: flex; gap: 12px; justify-content: space-between; margin-top: 28px; padding-top: 20px; border-top: 1px solid #f0f0f0; }
.shaker-btn {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 11px 22px; border-radius: 7px; font-size: 14px; font-weight: 600;
    cursor: pointer; border: 1.5px solid #ddd; background: #fff; color: #333;
    transition: all .2s; font-family: inherit;
}
.shaker-btn:hover { background: #f5f5f5; }
.btn-next { background: #1a1a1a; color: #fff; border-color: #1a1a1a; margin-left: auto; }
.btn-next:hover { background: #333; }
.btn-prev { color: #666; }
.shaker-submit-btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 32px; background: #c8930a; color: #fff;
    border: none; border-radius: 8px; font-size: 15px; font-weight: 700;
    cursor: pointer; transition: background .2s; font-family: inherit; margin-left: auto;
}
.shaker-submit-btn:hover    { background: #b07d08; }
.shaker-submit-btn:disabled { opacity: .7; cursor: not-allowed; }

/* Alert */
.shaker-alert { border-radius: 8px; padding: 12px 16px; margin-bottom: 20px; font-size: 14px; }
.shaker-alert-error { background: #fef2f2; border: 1px solid #fca5a5; color: #b91c1c; }
.shaker-alert-error ul { margin: 6px 0 0 16px; padding: 0; }

/* Success */
.shaker-success { text-align: center; padding: 56px 24px; border: 1px solid #d1fae5; border-radius: 12px; background: #f0fdf4; }

.shaker-success h3 { margin: 0 0 10px; font-size: 24px; color: #065f46; }
.shaker-success p  { color: #047857; margin: 6px 0; font-size: 15px; }
.success-folio { margin-top: 14px !important; font-size: 16px; }

/* Closed */
.shaker-closed { text-align:center; padding:32px; background:#f9fafb; border-radius:10px; color:#888; }

/* SVG step icons */
.shaker-step-icon {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: currentColor;
    opacity: 0.7;
}
.shaker-step-icon svg {
    display: block;
}
.shaker-success-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
    opacity: 0.8;
}

/* ── Success screen redesign ────────────────────────────────────────────── */
.shaker-success {
    text-align: center;
    padding: 48px 28px 40px;
    border-radius: 2px;
}
.shaker-success-line {
    width: 48px;
    height: 1px;
    background: currentColor;
    opacity: 0.3;
    margin: 18px auto 16px;
}
.shaker-success-label {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.5;
    margin: 0 0 10px;
}
.shaker-success h3 {
    font-size: 26px;
    font-weight: normal;
    margin: 0 0 14px;
    letter-spacing: 1px;
}
.shaker-success-msg {
    font-size: 14px;
    line-height: 1.7;
    opacity: 0.75;
    max-width: 440px;
    margin: 0 auto 28px;
}
.shaker-success-folio-box {
    border: 1px solid currentColor;
    opacity: 0.9;
    display: inline-block;
    padding: 20px 40px;
    min-width: 240px;
}
.success-folio-label {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.5;
    margin-bottom: 8px;
}
.success-folio-number {
    font-size: 30px;
    letter-spacing: 6px;
    font-weight: bold;
    margin-bottom: 8px;
}
.success-folio-hint {
    font-size: 11px;
    opacity: 0.45;
    line-height: 1.5;
    max-width: 220px;
    margin: 0 auto;
}
