.fishhere-intake-wrapper {
    max-width: 760px;
    margin: 0 auto;
}

.fishhere-intake-product {
    margin-bottom: 10px;
}

.fishhere-intake-product h2 {
    margin: 0;
    font-size: 22px;
}

.fishhere-intake-product p {
    margin: 6px 0 0;
}

.fishhere-intake-form {
    padding: 24px;
    background: #fff;
    border: 1px solid #d9e2ec;
    border-radius: 12px;
}

.fishhere-intake-section {
    margin-bottom: 22px;
    padding-top: 14px;
    border-top: 1px solid #d9e2ec;
}

.fishhere-intake-section:first-of-type {
    padding-top: 0;
    border-top: 0;
}

.fishhere-intake-section h3 {
    margin: 0 0 12px;
    padding-bottom: 6px;
    border-bottom: 1px solid #e3e8ee;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.3;
    color: #0b2545;
}

.fishhere-intake-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
}

.fishhere-intake-form label {
    display: block;
    margin-bottom: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #102a43;
}

.fishhere-intake-form input,
.fishhere-intake-form select {
    width: 100%;
    min-height: 42px;
    padding: 10px 12px;
    box-sizing: border-box;
    border: 1px solid #ccd6e0;
    border-radius: 6px;
    font-size: 14px;
}

.fishhere-intake-help {
    margin: 18px 0 14px;
    padding: 14px 16px;
    background: #f6f7f7;
    border-left: 4px solid #2271b1;
    border-radius: 6px;
}

.fishhere-intake-status {
    margin: 14px 0;
    min-height: 24px;
}

.fishhere-intake-status.is-error {
    color: #b32d2e;
}

.fishhere-intake-status.is-success {
    color: #007017;
}

.fishhere-intake-submit {
    padding: 14px 20px;
    border: 0;
    border-radius: 8px;
    cursor: pointer;
    background: #0b2545;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
}

.fishhere-intake-submit:hover {
    background: #163a5f;
}

.fishhere-intake-submit:disabled {
    opacity: 0.6;
    cursor: wait;
}