.seller-registration-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 24px;
}

.seller-registration-heading h1 {
    margin: 8px 0;
    font-size: clamp(2rem, 4vw, 3.6rem);
    letter-spacing: -0.05em;
}

.seller-registration-heading p {
    max-width: 800px;
    margin: 0;
    color: #667085;
    line-height: 1.65;
}

.seller-registration-form {
    display: grid;
    gap: 22px;
}

.seller-form-card {
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    background: #ffffff;
    padding: clamp(20px, 4vw, 34px);
    box-shadow: 0 12px 32px rgba(23, 32, 51, 0.06);
}

.seller-form-section-heading {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 22px;
}

.seller-form-section-heading > span {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 50%;
    background: #5b43d6;
    color: #ffffff;
    font-weight: 900;
}

.seller-form-section-heading h2 {
    margin: 0;
}

.seller-form-section-heading p {
    margin: 5px 0 0;
    color: #667085;
}

.seller-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.seller-form-grid label,
.seller-location-panel > label {
    display: grid;
    gap: 7px;
    margin: 0;
    color: #344054;
    font-weight: 750;
}

.seller-form-grid input,
.seller-form-grid textarea,
.seller-location-panel input {
    width: 100%;
}

.seller-form-grid small,
.seller-location-panel small {
    color: #667085;
    font-weight: 500;
    line-height: 1.45;
}

.full-width {
    grid-column: 1 / -1;
}

.seller-location-methods {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 13px;
    margin-bottom: 20px;
}

.seller-location-method {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 84px;
    border: 1px solid #d0d5dd;
    border-radius: 15px;
    background: #ffffff;
    padding: 15px;
    text-align: left;
    cursor: pointer;
}

.seller-location-method.primary {
    border-color: #5b43d6;
    background: #f7f5ff;
}

.seller-location-method:hover {
    border-color: #5b43d6;
    box-shadow: 0 9px 22px rgba(58, 40, 143, 0.09);
}

.seller-location-method > span {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 12px;
    background: #f2f4f7;
    color: #4f35c8;
    font-size: 1.5rem;
    font-weight: 900;
}

.seller-location-method strong,
.seller-location-method small {
    display: block;
}

.seller-location-method small {
    margin-top: 4px;
    color: #667085;
    font-size: 0.76rem;
}

.seller-location-panel {
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    background: #f8fafc;
    padding: 18px;
}

.seller-location-search-wrap {
    position: relative;
}

.seller-place-suggestions {
    position: absolute;
    z-index: 30;
    top: calc(100% + 7px);
    right: 0;
    left: 0;
    max-height: 320px;
    overflow-y: auto;
    border: 1px solid #d0d5dd;
    border-radius: 13px;
    background: #ffffff;
    box-shadow: 0 18px 40px rgba(16, 24, 40, 0.14);
}

.seller-place-suggestion {
    width: 100%;
    display: grid;
    gap: 4px;
    border: 0;
    border-bottom: 1px solid #eaecf0;
    border-radius: 0;
    background: #ffffff;
    padding: 12px 14px;
    text-align: left;
    cursor: pointer;
}

.seller-place-suggestion:last-child {
    border-bottom: 0;
}

.seller-place-suggestion:hover {
    background: #f7f5ff;
}

.seller-place-suggestion strong {
    color: #101828;
}

.seller-place-suggestion small {
    color: #667085;
}

.seller-place-empty {
    padding: 15px;
    color: #667085;
}

.seller-location-divider {
    position: relative;
    margin: 17px 0;
    text-align: center;
}

.seller-location-divider::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
    border-top: 1px solid #d0d5dd;
}

.seller-location-divider span {
    position: relative;
    z-index: 1;
    display: inline-block;
    background: #f8fafc;
    padding: 0 10px;
    color: #667085;
    font-size: 0.78rem;
    text-transform: uppercase;
}

.seller-map-input-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
}

.seller-location-status {
    min-height: 22px;
    margin-top: 12px;
    color: #667085;
    font-size: 0.88rem;
}

.seller-location-status.success {
    color: #067647;
}

.seller-location-status.error {
    color: #b42318;
}

.seller-location-status.loading {
    color: #175cd3;
}

.seller-location-preview {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 13px;
    align-items: center;
    margin-top: 10px;
    border: 1px solid #abefc6;
    border-radius: 14px;
    background: #ecfdf3;
    padding: 14px;
}

.seller-location-preview[hidden] {
    display: none;
}

.seller-location-preview-icon {
    font-size: 2rem;
}

.seller-location-preview span,
.seller-location-preview strong,
.seller-location-preview small {
    display: block;
}

.seller-location-preview span {
    color: #067647;
    font-size: 0.72rem;
    font-weight: 850;
    text-transform: uppercase;
}

.seller-location-preview strong {
    margin: 4px 0;
}

.seller-location-preview small {
    color: #475467;
}

.pickup-address-grid {
    margin-top: 18px;
}

.seller-registration-review {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border-color: #ded7ff;
    background: linear-gradient(135deg, #f7f5ff, #ffffff);
}

.seller-registration-review h2 {
    margin: 0 0 7px;
}

.seller-registration-review p {
    margin: 0;
    color: #667085;
}

.seller-submit-button {
    min-width: 240px;
}

@media (max-width: 850px) {
    .seller-registration-heading,
    .seller-registration-review {
        align-items: stretch;
        flex-direction: column;
    }

    .seller-location-methods {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 650px) {
    .seller-form-grid {
        grid-template-columns: 1fr;
    }

    .full-width {
        grid-column: auto;
    }

    .seller-map-input-row,
    .seller-location-preview {
        grid-template-columns: 1fr;
    }

    .seller-submit-button {
        width: 100%;
        min-width: 0;
    }
}
