/* ================================
   PRODUCER SIGNUP PAGE
   ================================ */

.signup-header {
    background-color: #024b40;
}

.signup-header .navbar {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.back-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    color: white;
    background: rgba(255, 255, 255, 0.1);
    transition: background 0.2s ease;
}

.back-arrow:hover {
    background: rgba(255, 255, 255, 0.2);
}

.signup-main {
    background: linear-gradient(180deg, #f0f7f5 0%, #ffffff 100%);
}

.signup-hero {
    padding: 4rem 0 5rem;
}

.signup-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: start;
}

@media (min-width: 1100px) {
    .signup-layout {
        grid-template-columns: 1fr 1.15fr;
        gap: 3rem;
    }
}

.signup-layout-centered {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
}

.signup-card {
    width: 100%;
    max-width: 700px;
}

.signup-intro {
    position: relative;
    color: #024b40;
}

.signup-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    background: rgba(252, 199, 65, 0.18);
    color: #024b40;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.signup-title {
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.05;
    font-weight: 900;
    margin-bottom: 1rem;
}

.signup-copy {
    font-size: 1.08rem;
    line-height: 1.7;
    color: #445;
    max-width: 46rem;
    margin-bottom: 1.5rem;
}

.signup-highlights {
    display: grid;
    gap: 0.9rem;
    margin-bottom: 1.75rem;
}

@media (min-width: 640px) {
    .signup-highlights {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.signup-highlight {
    background: #fff;
    border-radius: 16px;
    padding: 1rem 1.1rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(2, 75, 64, 0.08);
}

.signup-highlight strong {
    display: block;
    color: #024b40;
    margin-bottom: 0.2rem;
}

.signup-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.hero-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    border-radius: 999px;
    padding: 0.95rem 1.35rem;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
    box-shadow: 0 10px 24px rgba(2, 75, 64, 0.16);
}

.hero-cta-button:hover {
    transform: translateY(-2px);
}

.hero-cta-button.primary {
    background: linear-gradient(135deg, #024b40 0%, #04a08a 100%);
    color: #fff;
}

.hero-cta-button.secondary {
    background: #fff;
    color: #024b40;
    border: 1px solid rgba(2, 75, 64, 0.15);
}

.signup-note {
    font-size: 0.95rem;
    color: #667;
}

.signup-card {
    background: #fff;
    border-radius: 22px;
    padding: 1.5rem;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(2, 75, 64, 0.08);
}

@media (min-width: 640px) {
    .signup-card {
        padding: 2rem;
    }
}

.signup-card-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: #024b40;
    margin-bottom: 0.35rem;
}

.signup-card-subtitle {
    color: #667;
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

.stepper {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.step-pill {
    height: 8px;
    border-radius: 999px;
    background: #dceae7;
    transition: background 0.2s ease, transform 0.2s ease;
}

.step-pill.active,
.step-pill.complete {
    background: linear-gradient(135deg, #024b40 0%, #04a08a 100%);
}

.step-labels {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    font-size: 0.78rem;
    color: #738381;
    margin-bottom: 1.25rem;
}

.signup-step {
    display: none;
}

.signup-step.active {
    display: block;
}

.section-title-small {
    font-size: 1.05rem;
    font-weight: 800;
    color: #024b40;
    margin-bottom: 0.8rem;
}

.field-hint {
    margin-top: 0.45rem;
    font-size: 0.85rem;
    color: #667;
    line-height: 1.5;
}

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.radio-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.95rem;
    color: #333;
}

.radio-label input[type="radio"] {
    margin-top: 0.25rem;
    accent-color: #024b40;
}

.field-grid {
    display: grid;
    gap: 1rem;
}

@media (min-width: 720px) {
    .field-grid.two-cols {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .field-grid.three-cols {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.checkbox-grid {
    display: grid;
    gap: 0.75rem;
}

@media (min-width: 640px) {
    .checkbox-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.checkbox-card {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    padding: 0.9rem 1rem;
    border: 1px solid #dde7e4;
    border-radius: 14px;
    background: #fafdfc;
}

.checkbox-card input {
    width: 1rem;
    height: 1rem;
    accent-color: #024b40;
}

.checkbox-card span {
    font-weight: 600;
    color: #334;
}

.day-grid {
    display: grid;
    gap: 0.85rem;
}

.day-row {
    display: grid;
    gap: 0.75rem;
    grid-template-columns: 1fr;
    padding: 1rem;
    border: 1px solid #dde7e4;
    border-radius: 14px;
    background: #fafdfc;
}

@media (min-width: 760px) {
    .day-row {
        grid-template-columns: 140px 1fr auto;
        align-items: center;
    }
}

.day-row strong {
    color: #024b40;
}

.time-inputs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

.time-inputs input {
    width: 100%;
}

.day-row .closed-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: #445;
}

.upload-grid {
    display: grid;
    gap: 0.9rem;
}

@media (min-width: 720px) {
    .upload-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.upload-card {
    padding: 1rem;
    border-radius: 14px;
    border: 1px dashed #cfe0dc;
    background: #fbfdfc;
}

.upload-card label {
    display: block;
    font-weight: 700;
    color: #024b40;
    margin-bottom: 0.45rem;
}

.upload-card input[type="file"] {
    width: 100%;
}

.notice-box {
    border-radius: 16px;
    padding: 1rem 1.1rem;
    background: linear-gradient(135deg, rgba(252, 199, 65, 0.12), rgba(2, 75, 64, 0.06));
    border: 1px solid rgba(2, 75, 64, 0.08);
    color: #334;
    line-height: 1.6;
}

.notice-box strong {
    color: #024b40;
}

.action-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: space-between;
    margin-top: 1.25rem;
}

.action-row .button-group {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.95rem 1.2rem;
    border-radius: 10px;
    border: 1px solid rgba(2, 75, 64, 0.15);
    background: #fff;
    color: #024b40;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}

.secondary-button:hover:not(:disabled) {
    transform: translateY(-1px);
    background: #f7fbfa;
}

.secondary-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.form-status.inline {
    margin-top: 1rem;
}

.success-panel {
    display: none;
    margin-top: 1.25rem;
    padding: 1.25rem;
    border-radius: 18px;
    border: 1px solid rgba(2, 75, 64, 0.1);
    background: #f6fbf9;
}

.success-panel.visible {
    display: block;
}

.success-panel h2 {
    color: #024b40;
    margin-bottom: 0.5rem;
}

.success-panel p {
    color: #445;
    line-height: 1.6;
}

.success-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}

.referral-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    border-radius: 999px;
    background: rgba(2, 75, 64, 0.08);
    color: #024b40;
    font-weight: 700;
    font-size: 0.9rem;
}

.hidden-input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.password-validation {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.validation-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #667;
}

.validation-circle {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid #dde7e4;
    background: #fff;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.validation-circle.valid {
    border-color: #024b40;
    background: #024b40;
}

.validation-circle.valid::after {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 10px;
    font-weight: bold;
    height: 100%;
}

@media (max-width: 768px) {
    .signup-hero {
        padding: 3rem 0 4rem;
    }

    .action-row {
        flex-direction: column;
        align-items: stretch;
    }

    .action-row .button-group {
        width: 100%;
    }

    .action-row .button-group > * {
        flex: 1;
    }
}
