/* =========================================================
   GOONET - GLOBAL
========================================================= */

:root {
    --goonet-primary: linear-gradient(316deg, #55d6dc, #4CAF50);
    --goonet-primary-dark: #4799da;

    --goonet-bg: #f6f7f6;
    --goonet-white: #ffffff;

    --goonet-text: #1f2933;
    --goonet-muted: #6b7280;

    --goonet-border: #e2e6e3;

    --goonet-danger: #d63b3b;
    --goonet-danger-bg: #fff3f3;

    --goonet-radius: 16px;
}


/* RESET */

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;

    min-height: 100%;
}

body {
    color: var(--goonet-text);
    background: var(--goonet-bg);

    font-family:
        Arial,
        Helvetica,
        sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}


/* =========================================================
   BUTTON
========================================================= */

.btn {
    width: 100%;
    min-height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 10px 18px;

    border-radius: 12px;

    font-size: 15px;
    font-weight: 600;

    text-decoration: none;

    cursor: pointer;

    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.btn:active {
    transform: scale(0.98);
}

.btn-primary {
    color: #ffffff;
    background: var(--goonet-primary);

    border: 1px solid var(--goonet-primary);
}

.btn-primary:hover {
    background: var(--goonet-primary-dark);
    border-color: var(--goonet-primary-dark);
}

.btn-outline {
    color: var(--goonet-primary);
    background: #ffffff;

    border: 1px solid var(--goonet-primary);
}


/* =========================================================
   AUTH PAGE
========================================================= */

.auth-page {
    min-height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 30px 16px;
}

.auth-container {
    width: 100%;
    max-width: 460px;
}

.auth-brand {
    margin-bottom: 24px;

    text-align: center;
}

.logo {
    display: inline-block;

    color: var(--goonet-primary);

    font-size: 30px;
    font-weight: 800;
    letter-spacing: 1px;

    text-decoration: none;
}

.auth-brand h1 {
    margin: 22px 0 8px;

    font-size: 26px;
    line-height: 1.3;
}

.auth-brand p {
    margin: 0;

    color: var(--goonet-muted);

    font-size: 15px;
    line-height: 1.6;
}

.auth-card {
    padding: 24px;

    background: var(--goonet-white);

    border: 1px solid var(--goonet-border);
    border-radius: var(--goonet-radius);
}


/* =========================================================
   FORM
========================================================= */

.form-group {
    margin-bottom: 18px;
}

.form-group label:not(.checkbox-group) {
    display: block;

    margin-bottom: 7px;

    font-size: 14px;
    font-weight: 600;
}

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="password"] {
    width: 100%;
    height: 48px;

    padding: 0 14px;

    color: var(--goonet-text);
    background: #ffffff;

    border: 1px solid var(--goonet-border);
    border-radius: 10px;

    outline: none;

    font-size: 15px;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.form-group input::placeholder {
    color: #a0a7ad;
}

.form-group input:focus {
    border-color: var(--goonet-primary);

    box-shadow:
        0 0 0 3px rgba(47, 107, 79, 0.10);
}

.form-group input.input-error {
    border-color: var(--goonet-danger);
}

.form-group input.input-error:focus {
    border-color: var(--goonet-danger);

    box-shadow:
        0 0 0 3px rgba(214, 59, 59, 0.10);
}


/* =========================================================
   FIELD ERROR
========================================================= */

.field-error {
    display: none;

    align-items: center;
    gap: 6px;

    margin-top: 7px;

    color: var(--goonet-danger);

    font-size: 13px;
    line-height: 1.4;
}

.field-error.show {
    display: flex;
}

.error-icon {
    width: 16px;
    height: 16px;

    flex: 0 0 16px;
}


/* =========================================================
   CHECKBOX
========================================================= */

.form-group-agree {
    margin-top: 4px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 9px;

    color: var(--goonet-muted);

    font-size: 14px;
    line-height: 1.5;

    cursor: pointer;
}

.checkbox-group input {
    width: 17px;
    height: 17px;

    flex: 0 0 17px;

    margin: 2px 0 0;

    cursor: pointer;

    accent-color: var(--goonet-primary);
}


/* =========================================================
   AUTH FOOTER
========================================================= */

.auth-footer {
    margin-top: 24px;

    text-align: center;
}

.auth-footer p {
    margin: 0 0 10px;

    color: var(--goonet-muted);

    font-size: 14px;
}

.auth-footer .btn {
    min-height: 44px;
}


/* =========================================================
   HOME
========================================================= */

.home-page {
    width: 100%;
    max-width: 768px;
    min-height: 100vh;

    margin: 0 auto;
    padding: 0 16px 90px;

    background: var(--goonet-bg);
}

.home-header {
    height: 70px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.home-header .logo {
    font-size: 25px;
}

.logout-link {
    color: var(--goonet-muted);

    font-size: 14px;

    text-decoration: none;
}

.home-welcome {
    padding: 28px 0 24px;
}

.home-welcome h1 {
    margin: 0 0 10px;

    font-size: 28px;
    line-height: 1.3;
}

.home-welcome p {
    margin: 0;

    color: var(--goonet-muted);

    line-height: 1.6;
}

.home-action {
    margin-bottom: 30px;
}

.job-section {
    margin-top: 10px;
}

.section-heading {
    margin-bottom: 14px;
}

.section-heading h2 {
    margin: 0;

    font-size: 20px;
}

.empty-state {
    padding: 38px 20px;

    text-align: center;

    background: var(--goonet-white);

    border: 1px solid var(--goonet-border);
    border-radius: 18px;
}

.empty-icon {
    margin-bottom: 10px;

    font-size: 38px;
}

.empty-state h3 {
    margin: 0 0 8px;

    font-size: 17px;
}

.empty-state p {
    margin: 0;

    color: var(--goonet-muted);

    font-size: 14px;
    line-height: 1.5;
}


/* =========================================================
   BOTTOM NAVIGATION
========================================================= */

.bottom-nav {
    position: fixed;
    z-index: 100;

    right: 0;
    bottom: 0;
    left: 0;

    height: 72px;

    display: flex;
    align-items: center;
    justify-content: space-around;

    background: #ffffff;

    border-top: 1px solid var(--goonet-border);
}

.nav-item {
    flex: 1;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 4px;

    color: var(--goonet-muted);

    text-decoration: none;
}

.nav-item span {
    font-size: 20px;
    line-height: 1;
}

.nav-item small {
    font-size: 10px;
}

.nav-item.active {
    color: var(--goonet-primary);
}

.nav-add span {
    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-top: -18px;

    color: #ffffff;
    background: var(--goonet-primary);

    border-radius: 50%;

    font-size: 25px;
    font-weight: 300;

    box-shadow:
        0 4px 12px rgba(47, 107, 79, 0.25);
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 480px) {

    .auth-page {
        align-items: flex-start;

        padding:
            30px 14px;
    }

    .auth-card {
        padding: 20px 16px;
    }

}




/* =========================================================
   GOONET HOME
========================================================= */

.home-body {
    min-height: 100vh;
    background: #f4f5f4;
}

.home-page {
    width: 100%;
    max-width: 768px;
    min-height: 100vh;
    margin: 0 auto;
    background: #f4f5f4;
}


/* =========================================================
   HOME HEADER
========================================================= */

.home-header {
    min-height: 64px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 16px;

    background: #ffffff;
    border-bottom: 1px solid var(--goonet-border);
}

.home-header-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.home-user-name {
    color: var(--goonet-text);
    font-size: 14px;
    font-weight: 600;
}

.logout-link {
    color: var(--goonet-muted);
    font-size: 13px;
    text-decoration: none;
}


/* =========================================================
   HOME MAIN
========================================================= */

.home-main {
    padding: 16px;
}


/* =========================================================
   QUICK REQUEST
========================================================= */

.quick-request-section {
    margin-bottom: 24px;
}

.quick-request {
    display: flex;
    align-items: flex-start;
    gap: 12px;

    padding: 14px;

    color: var(--goonet-text);
    background: #ffffff;

    border: 1px solid var(--goonet-border);
    border-radius: 16px;

    text-decoration: none;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.quick-request:hover {
    border-color: var(--goonet-primary);

    box-shadow:
        0 4px 18px rgba(0, 0, 0, 0.04);
}


/* AVATAR */

.quick-avatar {
    width: 52px;
    height: 52px;

    flex: 0 0 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #ffffff;
    background: var(--goonet-primary);

    border-radius: 10px;

    font-size: 20px;
    font-weight: 700;
}


/* CONTENT */

.quick-request-content {
    flex: 1;
    min-width: 0;
}

.quick-request-placeholder {
    min-height: 52px;

    display: flex;
    align-items: center;

    color: var(--goonet-muted);

    font-size: 16px;

    border-bottom: 1px solid var(--goonet-border);
}

.quick-request-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 12px;

    padding-top: 12px;
}


/* ATTACH */

.quick-attach {
    display: inline-flex;
    align-items: center;
    gap: 5px;

    color: var(--goonet-muted);

    font-size: 13px;
}

.quick-attach svg {
    width: 18px;
    height: 18px;
}


/* SUBMIT */

.quick-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 34px;

    padding: 6px 12px;

    color: #ffffff;
    background: var(--goonet-primary);

    border-radius: 8px;

    font-size: 13px;
    font-weight: 600;
}


/* =========================================================
   JOBS SECTION
========================================================= */

.jobs-section {
    margin-top: 8px;
}

.jobs-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 12px;
}

.jobs-section-header h1 {
    margin: 0;

    color: var(--goonet-text);

    font-size: 19px;
    font-weight: 700;
}

.jobs-count {
    color: var(--goonet-muted);

    font-size: 13px;
}


/* =========================================================
   EMPTY JOBS
========================================================= */

.jobs-empty {
    padding: 38px 20px;

    text-align: center;

    background: #ffffff;

    border: 1px solid var(--goonet-border);
    border-radius: 16px;
}

.jobs-empty-icon {
    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0 auto 14px;

    color: var(--goonet-primary);

    background: rgba(47, 107, 79, 0.08);

    border-radius: 50%;
}

.jobs-empty-icon svg {
    width: 28px;
    height: 28px;
}

.jobs-empty h2 {
    margin: 0 0 8px;

    font-size: 17px;
}

.jobs-empty p {
    max-width: 300px;

    margin: 0 auto;

    color: var(--goonet-muted);

    font-size: 14px;
    line-height: 1.6;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 480px) {

    .home-main {
        padding: 12px;
    }

    .home-header {
        padding: 0 12px;
    }

    .home-user-name {
        display: none;
    }

    .quick-request {
        padding: 12px;
    }

    .quick-avatar {
        width: 46px;
        height: 46px;

        flex-basis: 46px;

        font-size: 18px;
    }

    .quick-request-placeholder {
        min-height: 46px;

        font-size: 15px;
    }

    .quick-request-actions {
        gap: 8px;
    }

    .quick-attach {
        font-size: 12px;
    }

    .quick-submit {
        padding: 6px 10px;

        font-size: 12px;
    }

}


/* =========================================================
   CREATE JOB
========================================================= */

.create-job-body {
    min-height: 100vh;
    background: #f4f5f4;
}

.create-job-page {
    width: 100%;
    max-width: 768px;
    min-height: 100vh;

    margin: 0 auto;

    background: #ffffff;
}


/* =========================================================
   HEADER
========================================================= */

.create-job-header {
    position: sticky;
    top: 0;
    z-index: 10;

    height: 64px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 16px;

    background: rgba(255, 255, 255, 0.97);

    border-bottom: 1px solid var(--goonet-border);
}

.create-job-header h1 {
    margin: 0;

    color: var(--goonet-text);

    font-size: 20px;
    font-weight: 700;
}

.back-button,
.header-space {
    width: 42px;
    height: 42px;

    flex: 0 0 42px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.back-button {
    color: var(--goonet-text);

    border-radius: 50%;

    text-decoration: none;
}

.back-button:hover {
    background: #f4f5f4;
}

.back-button svg {
    width: 25px;
    height: 25px;
}


/* =========================================================
   MAIN
========================================================= */

.create-job-main {
    padding: 24px 20px 40px;
}

.create-job-main #edit-job-form{
    margin-bottom: 70px;
}
/* =========================================================
   USER INTRO
========================================================= */

.create-job-intro {
    display: flex;
    align-items: center;
    gap: 13px;

    margin-bottom: 30px;
}

.create-job-user-avatar {
    width: 54px;
    height: 54px;

    flex: 0 0 54px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #ffffff;
    background: var(--goonet-primary);

    border-radius: 12px;

    font-size: 21px;
    font-weight: 700;
}

.create-job-user-info {
    min-width: 0;
}

.create-job-intro strong {
    display: block;

    margin-bottom: 4px;

    color: var(--goonet-text);

    font-size: 17px;
    font-weight: 700;
}

.create-job-intro p {
    margin: 0;

    color: var(--goonet-muted);

    font-size: 15px;
    line-height: 1.5;
}


/* =========================================================
   FORM GROUP
========================================================= */

.create-job-page .form-group {
    margin-bottom: 28px;
}

.create-job-page .form-group > label {
    display: block;
    text-align: center;
    margin-bottom: 10px;

    color: var(--goonet-text);

    font-size: 17px;
    font-weight: 700;
}

/* =========================================================
   FORM LABEL ROW
========================================================= */

.form-label-row {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: space-between;

    min-height: 30px;

    margin-bottom: 10px;
}

.create-job-page .form-label-row label {
    margin-bottom: 0;
}


/* =========================================================
   HELP BUTTON
========================================================= */

.form-help-button {
    width: 22px;
    height: 22px;

    flex: 0 0 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    color: var(--goonet-primary);
    background: #ffffff;

    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;

    border: 1px solid var(--goonet-primary);
    border-radius: 50%;

    cursor: pointer;

    transition:
        background 0.2s ease,
        color 0.2s ease;
}

.form-help-button:hover,
.form-help-button.active {
    color: #ffffff;
    background: var(--goonet-primary);
}


/* =========================================================
   HELP BOX
========================================================= */

.form-help-box {
    display: none;

    margin: -2px 0 12px;
    padding: 14px 15px;

    color: var(--goonet-muted);
    background: #f7f8f7;

    font-size: 14px;
    line-height: 1.65;

    border-left: 3px solid var(--goonet-primary);
    border-radius: 0 10px 10px 0;
}

.form-help-box.show {
    display: block;
}

.form-help-box strong {
    display: block;

    margin-bottom: 7px;

    color: var(--goonet-text);

    font-size: 14px;
}

.form-help-box p {
    margin: 0 0 8px;
}

.form-help-box p:last-child {
    margin-bottom: 0;
}

.form-help-box b {
    color: var(--goonet-primary);
}
/* =========================================================
   JOB CONTENT
========================================================= */

.job-textarea {
    width: 100%;
    min-height: 190px;

    resize: vertical;

    padding: 15px;

    color: var(--goonet-text);
    background: #ffffff;

    font-family: inherit;
    font-size: 17px;
    line-height: 1.65;

    border: 1px solid var(--goonet-border);
    border-radius: 12px;

    outline: none;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.job-textarea::placeholder {
    color: #969da4;

    font-size: 15px;
    line-height: 1.65;
}

.job-textarea:focus {
    border-color: var(--goonet-primary);

    box-shadow:
        0 0 0 3px rgba(47, 107, 79, 0.10);
}


/* =========================================================
   FORM HINT
========================================================= */

.form-hint {
    margin-top: 8px;

    color: var(--goonet-muted);

    font-size: 14px;
    line-height: 1.6;
}


/* =========================================================
   HASHTAG
========================================================= */

.hashtag-group input {
    width: 100%;
    height: 52px;

    padding: 0 14px;

    color: var(--goonet-text);
    background: #ffffff;

    font-family: inherit;
    font-size: 16px;

    border: 1px solid var(--goonet-border);
    border-radius: 12px;

    outline: none;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.hashtag-group input:focus {
    border-color: var(--goonet-primary);

    box-shadow:
        0 0 0 3px rgba(47, 107, 79, 0.10);
}

.hashtag-suggestions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 7px;

    margin-top: 10px;
}

.hashtag-suggestions > span {
    color: var(--goonet-muted);

    font-size: 13px;
}

.hashtag-suggestion {
    min-height: 30px;

    padding: 4px 10px;

    color: var(--goonet-primary);
    background: rgba(47, 107, 79, 0.07);

    font-family: inherit;
    font-size: 13px;
    font-weight: 600;

    border: 1px solid rgba(47, 107, 79, 0.12);
    border-radius: 16px;

    cursor: pointer;
}

.hashtag-suggestion:hover {
    background: rgba(47, 107, 79, 0.14);
}


/* =========================================================
   PRICE
========================================================= */

.job-price-group {
    text-align: left;
}

.price-control {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.price-button {
    width: 52px;
    height: 52px;

    flex: 0 0 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--goonet-primary);
    background: #ffffff;

    border: 1px solid var(--goonet-border);
    border-radius: 50%;

    cursor: pointer;

    transition:
        background 0.2s ease,
        border-color 0.2s ease;
}

.price-button:hover {
    background: rgba(47, 107, 79, 0.06);

    border-color: var(--goonet-primary);
}

.price-button svg {
    width: 24px;
    height: 24px;
}

.price-input-box {
    position: relative;

    width: 180px;
}

.price-input-box input {
    width: 100%;
    height: 56px;

    padding: 0 40px 0 15px;

    color: var(--goonet-text);
    background: #ffffff;

    text-align: center;

    font-family: inherit;
    font-size: 20px;
    font-weight: 700;

    border: 1px solid var(--goonet-border);
    border-radius: 12px;

    outline: none;
}

.price-input-box input:focus {
    border-color: var(--goonet-primary);

    box-shadow:
        0 0 0 3px rgba(47, 107, 79, 0.10);
}

.price-input-box span {
    position: absolute;
    top: 50%;
    right: 14px;

    transform: translateY(-50%);

    color: var(--goonet-muted);

    font-size: 16px;
    font-weight: 700;

    pointer-events: none;
}

.price-tip {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 7px;

    max-width: 430px;

    margin: 12px auto 0;

    color: var(--goonet-muted);

    font-size: 14px;
    line-height: 1.5;
}

.price-tip svg {
    width: 18px;
    height: 18px;

    flex: 0 0 18px;

    margin-top: 1px;

    color: var(--goonet-primary);
}


/* =========================================================
   IMAGE
========================================================= */

.job-image-group {
    margin-bottom: 24px !important;
}

.job-image-group input[type="file"] {
    display: none;
}

.add-image-button {
    width: 100%;
    min-height: 54px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    padding: 10px 16px;

    color: var(--goonet-primary);
    background: rgba(47, 107, 79, 0.06);

    font-family: inherit;
    font-size: 16px;
    font-weight: 600;

    border: none;
    border-radius: 10px;

    cursor: pointer;

    transition:
        background 0.2s ease;
}

.add-image-button:hover {
    background: rgba(47, 107, 79, 0.12);
}

.add-image-button svg {
    width: 23px;
    height: 23px;
}

.image-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;

    margin-top: 12px;
}

.image-preview:empty {
    display: none;
}

.image-preview-item {
    position: relative;

    width: 92px;
    height: 92px;

    overflow: hidden;

    background: #f4f5f4;

    border-radius: 10px;
}

.image-preview-item img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}

.remove-image-button {
    position: absolute;
    top: 5px;
    right: 5px;

    width: 27px;
    height: 27px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    color: #ffffff;
    background: rgba(0, 0, 0, 0.70);

    font-size: 20px;
    line-height: 1;

    border: none;
    border-radius: 50%;

    cursor: pointer;
}


/* =========================================================
   JOB RULES
========================================================= */

.job-note {
    margin: 8px 0 22px;
    padding: 16px;
}


/* =========================================================
   RULE LIST
========================================================= */

.job-rules-list {
    margin: 0 0 14px;
    padding-left: 20px;

    color: var(--goonet-muted);

    font-size: 14px;
    line-height: 1.65;
}

.job-rules-list li {
    margin-bottom: 5px;
}

.job-rules-list li:last-child {
    margin-bottom: 0;
}


/* =========================================================
   AGREE CHECKBOX
========================================================= */

.job-rules-agree {
    display: flex;
    align-items: flex-start;
    gap: 10px;

    margin: 0;

    cursor: pointer;
}


/* ?n checkbox m?c Ã°?nh */

.job-rules-agree input {
    position: absolute;

    width: 1px;
    height: 1px;

    opacity: 0;

    pointer-events: none;
}


/* Checkbox t? thi?t k? */

.job-rules-checkbox {
    position: relative;

    width: 21px;
    height: 21px;

    flex: 0 0 21px;

    margin-top: 1px;

    background: #ffffff;

    border: 1.5px solid #b9c1ba;
    border-radius: 5px;

    transition:
        background 0.2s ease,
        border-color 0.2s ease;
}


/* Khi checked */

.job-rules-agree input:checked
+ .job-rules-checkbox {
    background: var(--goonet-primary);
    border-color: var(--goonet-primary);
}


/* D?u tick */

.job-rules-agree input:checked
+ .job-rules-checkbox::after {
    content: '';

    position: absolute;
    top: 3px;
    left: 6px;

    width: 6px;
    height: 10px;

    border-right: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;

    transform: rotate(45deg);
}


/* Focus */

.job-rules-agree input:focus
+ .job-rules-checkbox {
    box-shadow:
        0 0 0 3px rgba(47, 107, 79, 0.12);
}


/* =========================================================
   RULE TEXT
========================================================= */

.job-rules-text {
    color: var(--goonet-muted);

    font-size: 14px;
    line-height: 1.55;
}

.job-rules-text a {
    color: var(--goonet-primary);

    font-weight: 600;

    text-decoration: none;
    text-underline-offset: 2px;
}

.job-rules-text a:hover {
    opacity: 0.8;
}

/* =========================================================
   SUBMIT
========================================================= */

.create-job-submit {
    width: 100%;
    min-height: 54px;

    font-size: 17px;
    font-weight: 700;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 480px) {

    .create-job-header {
        height: 60px;

        padding: 0 12px;
    }

    .create-job-header h1 {
        font-size: 19px;
    }

    .create-job-main {
        padding: 20px 14px 32px;
    }

    .create-job-intro {
        margin-bottom: 26px;
    }

    .create-job-user-avatar {
        width: 50px;
        height: 50px;

        flex-basis: 50px;
    }

    .create-job-page .form-group {
        margin-bottom: 25px;
    }

    .create-job-page .form-group > label {
        font-size: 16px;
    }

    .job-textarea {
        min-height: 180px;

        font-size: 16px;
    }

    .job-textarea::placeholder {
        font-size: 14px;
    }

    .price-control {
        gap: 8px;
    }

    .price-button {
        width: 48px;
        height: 48px;

        flex-basis: 48px;
    }

    .price-input-box {
        width: 160px;
    }

    .price-input-box input {
        height: 52px;

        font-size: 19px;
    }

    .price-tip {
        font-size: 13px;
    }

    .image-preview-item {
        width: 82px;
        height: 82px;
    }

}
/* =========================================================
   FORM ERROR MESSAGE
========================================================= */

.form-error-message {
    display: none;
    align-items: center;
    gap: 6px;

    margin-top: 7px;

    color: #d93025;

    font-size: 13px;
    line-height: 1.4;
}

.form-error-message.show {
    display: flex;
}

.form-error-icon {
    width: 17px;
    height: 17px;

    flex: 0 0 17px;
}

.form-error-icon svg {
    display: block;

    width: 100%;
    height: 100%;
}

/* =========================================================
   CREATE JOB - VALIDITY & FINAL ACTIONS
========================================================= */
.job-validity-group select {width:100%;height:52px;padding:0 42px 0 14px;color:var(--goonet-text);background:#fff;font-family:inherit;font-size:16px;border:1px solid var(--goonet-border);border-radius:12px;outline:none;cursor:pointer;}
.job-validity-group select:focus,.custom-validity-wrap input:focus {border-color:var(--goonet-primary);box-shadow:0 0 0 3px rgba(47,107,79,.10);}
.custom-validity-wrap{display:none;margin-top:12px;}
.custom-validity-wrap.show{display:block;}
.custom-validity-wrap>label{display:block;margin-bottom:8px;color:var(--goonet-text);font-size:14px;font-weight:600;}
.custom-validity-wrap input{width:100%;height:52px;padding:0 14px;color:var(--goonet-text);background:#fff;font-family:inherit;font-size:16px;border:1px solid var(--goonet-border);border-radius:12px;outline:none;}
.create-job-actions{display:flex;align-items:stretch;gap:10px;}
.create-job-actions .add-image-button{width:54px;min-width:54px;height:54px;min-height:54px;display:flex;align-items:center;justify-content:center;padding:0;}
.create-job-actions .add-image-button svg{width:25px;height:25px;}
.create-job-submit{flex:1;width:auto;}
@media(max-width:480px){.create-job-actions{gap:8px;}.create-job-actions .add-image-button{width:52px;min-width:52px;height:52px;min-height:52px;}}

/* =========================================================
   GOONET HOME - REDESIGN 2026
========================================================= */
.home-redesign{background:#f4f5f4}.home-redesign .home-page{padding:0 0 96px;max-width: 760px;}.home-main-redesign{padding:0 16px 28px}
.local-banner{position:relative;min-height:215px;margin:0 -16px;overflow:hidden;background:linear-gradient(135deg,#124a3d,#2f6b4f 45%,#9fc89f)}.local-banner-demo-bg{position:absolute;inset:0;background:radial-gradient(circle at 78% 25%,rgba(255,255,255,.45) 0 4%,transparent 4.5%),radial-gradient(circle at 18% 20%,#f6d65f 0 7%,transparent 7.5%),linear-gradient(145deg,transparent 0 42%,rgba(255,255,255,.14) 43% 49%,transparent 50%),linear-gradient(180deg,transparent,rgba(0,0,0,.3))}.local-banner-demo-bg:before,.local-banner-demo-bg:after{content:'';position:absolute;bottom:-10px;border-radius:50% 50% 0 0;background:rgba(15,62,48,.7)}.local-banner-demo-bg:before{left:4%;width:130px;height:86px}.local-banner-demo-bg:after{right:8%;width:210px;height:118px}.local-banner-overlay{position:absolute;inset:0;background:linear-gradient(90deg,rgba(0,0,0,.42),rgba(0,0,0,.03) 65%,rgba(0,0,0,.16))}.local-banner-content{position:relative;z-index:2;min-height:215px;display:flex;flex-direction:column;justify-content:flex-end;padding:28px 22px 36px;color:#fff}.local-banner-brand{font-size:13px;font-weight:800;letter-spacing:2.5px}.local-banner-content h1{margin:2px 0 0;font-size:32px;line-height:1.08;font-weight:800;letter-spacing:1px}.local-banner-content p{margin:7px 0 0;font-size:14px;opacity:.9}
.home-create-section{position:relative;z-index:5;margin-top:-30px}.home-create-trigger{min-height:74px;display:flex;align-items:center;gap:14px;padding:14px 20px;color:var(--goonet-text);background:rgba(255,255,255,.98);border:1px solid #dfe3e0;border-radius:22px;box-shadow:0 7px 24px rgba(31,41,51,.12);text-decoration:none;-webkit-tap-highlight-color:transparent}.home-create-trigger:focus,.home-create-trigger:active{outline:none;color:var(--goonet-text)}.home-create-icon{width:35px;height:35px;display:flex;align-items:center;justify-content:center}.home-create-icon svg{width:29px;height:29px}.home-create-trigger>span:last-child{color:#687078;font-size:20px;font-weight:600}
.home-shortcuts{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:10px;margin:20px 0 28px}.home-shortcut{min-height:104px;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:9px;padding:10px 4px;color:var(--goonet-text);background:#fff;border:1px solid #edf0ee;border-radius:17px;text-decoration:none;box-shadow:0 4px 14px rgba(31,41,51,.035)}.home-shortcut:active{transform:scale(.98)}.home-shortcut-icon{width:38px;height:38px;display:flex;align-items:center;justify-content:center;color:var(--goonet-primary);background:rgba(47,107,79,.08);border-radius:13px}.home-shortcut-icon svg{width:23px;height:23px}.home-shortcut span:last-child{font-size:13px;font-weight:700;text-align:center}.home-shortcut-active .home-shortcut-icon{color:#fff;background:var(--goonet-primary)}
.home-section-title{display:flex;align-items:center;justify-content:space-between;gap:16px;margin-bottom:14px}.home-section-title h2{margin:0;font-size:20px;font-weight:800}.home-section-title>a{color:var(--goonet-muted);font-size:14px;font-weight:600;text-decoration:none}.food-suggestion-section{margin-bottom:32px}.food-scroll{display:flex;gap:12px;overflow-x:auto;margin-right:-16px;padding:2px 16px 6px 0;scrollbar-width:none}.food-scroll::-webkit-scrollbar{display:none}.food-card{width:44%;min-width:44%;color:var(--goonet-text);text-decoration:none}.food-card-image{position:relative;height:152px;overflow:hidden;margin-bottom:10px;border-radius:18px}.food-card-image:before,.food-card-image:after{content:'';position:absolute;border-radius:50%}.food-card-image:before{width:120px;height:120px;right:-26px;bottom:-32px;background:rgba(255,255,255,.5)}.food-card-image:after{width:80px;height:80px;left:14px;top:24px;background:rgba(255,255,255,.3)}.food-card-image span{position:absolute;z-index:2;left:12px;top:12px;padding:5px 8px;color:#fff;background:rgba(0,0,0,.45);border-radius:8px;font-size:11px;font-weight:700}.food-demo-image-1{background:linear-gradient(135deg,#db8c33,#ffd46c 50%,#487447)}.food-demo-image-2{background:linear-gradient(135deg,#f1c3a6,#f6e7ca 55%,#a65f35)}.food-demo-image-3{background:linear-gradient(135deg,#356b7e,#8fc7d4 52%,#f1bd68)}.food-card strong,.food-card small{display:block}.food-card strong{overflow:hidden;font-size:15px;font-weight:750;white-space:nowrap;text-overflow:ellipsis}.food-card small{margin-top:3px;color:var(--goonet-muted);font-size:12px}
.home-jobs-section{margin-top:28px}.home-own-jobs-section{margin-top:8px}.home-job-title h2{font-size:19px;text-transform:uppercase}.home-job-count{color:var(--goonet-muted);font-size:14px;font-weight:700}.job-list{display:flex;flex-direction:column;gap:14px}.job-card{overflow:hidden;padding:16px;background:#fff;border:1px solid #e8ece9;border-radius:18px;box-shadow:0 5px 18px rgba(31,41,51,.035)}.job-card-own{background:linear-gradient(180deg,rgba(47,107,79,.075),#fff 42%);border-color:rgba(47,107,79,.16)}.job-card-head{display:flex;align-items:center;gap:10px}.job-card-avatar,.job-card-avatar-image{width:43px;height:43px;flex:0 0 43px;border-radius:13px}.job-card-avatar{display:flex;align-items:center;justify-content:center;color:#fff;background:var(--goonet-primary);font-size:16px;font-weight:800}.job-card-avatar-image{object-fit:cover}.job-card-user{min-width:0;flex:1}.job-card-user strong,.job-card-user span{display:block}.job-card-user strong{overflow:hidden;font-size:15px;font-weight:750;white-space:nowrap;text-overflow:ellipsis}.job-card-user span{margin-top:3px;color:var(--goonet-muted);font-size:12px}.job-own-badge{padding:5px 8px;color:var(--goonet-primary);background:rgba(47,107,79,.09);border-radius:8px;font-size:11px;font-weight:750}.job-content-wrap{margin-top:13px}.job-content{color:#30363b;font-size:15px;line-height:1.65;overflow-wrap:anywhere}.job-content.is-clamped{display:-webkit-box;overflow:hidden;-webkit-box-orient:vertical;-webkit-line-clamp:4}.job-more-button{margin-top:5px;padding:0;color:var(--goonet-primary);background:transparent;border:0;font:inherit;font-size:13px;font-weight:750;cursor:pointer}
.job-gallery{display:grid;gap:3px;margin-top:14px;overflow:hidden;border-radius:14px;background:#e7e9e8}
.job-gallery-item{position:relative;min-width:0;min-height:0;overflow:hidden;padding:0;background:#dfe3e1;border:0;cursor:pointer}
.job-gallery-item img{width:100%;height:100%;display:block;object-fit:cover}
.job-gallery-1{aspect-ratio:16/9;grid-template-columns:1fr}
.job-gallery-2{aspect-ratio:16/9;grid-template-columns:repeat(2,1fr)}
.job-gallery-3{aspect-ratio:3/1;grid-template-columns:repeat(3,1fr)}
.job-gallery-4{aspect-ratio:16/9;grid-template-columns:repeat(2,1fr);grid-template-rows:repeat(2,1fr)}
.job-gallery-5{aspect-ratio:16/9;grid-template-columns:1.2fr 1fr 1fr;grid-template-rows:repeat(2,1fr)}
.job-gallery-5 .job-gallery-item:first-child{grid-row:1/span 2}
.job-gallery-more{position:absolute;inset:0;display:flex;align-items:center;justify-content:center;color:#fff;background:rgba(0,0,0,.48);font-size:34px;font-weight:300}
.job-meta{display:flex;align-items:center;gap:10px;margin-top:13px}
.job-price{padding:6px 9px;color:#a66513;background:#fff8ed;border-radius:8px;font-size:15px;font-weight:800}
.job-hashtags{overflow:hidden;color:var(--goonet-primary);font-size:13px;font-weight:650;white-space:nowrap;text-overflow:ellipsis}
.job-searching{display:flex;align-items:flex-start;gap:10px;margin-top:14px;padding:12px;background:rgba(47,107,79,.055);border-radius:13px}
.job-searching-icon{width:34px;height:34px;flex:0 0 34px;display:flex;align-items:center;justify-content:center;color:var(--goonet-primary);background:#fff;border-radius:11px}
.job-searching-icon svg{width:22px;height:22px;animation:goonet-search-pulse 1.8s ease-in-out infinite}
.job-searching strong,.job-searching span{display:block}
.job-searching strong{font-size:13px;font-weight:750}
.job-searching span{margin-top:3px;color:var(--goonet-muted);font-size:12px;line-height:1.5}
@keyframes goonet-search-pulse{0%,100%{transform:scale(1)}50%{transform:scale(1.1) rotate(7deg)}}
.job-owner-actions{display:flex;gap:9px;margin-top:13px}
.job-owner-button{min-height:40px;display:flex;align-items:center;justify-content:center;padding:7px 12px;border-radius:10px;font:inherit;font-size:13px;font-weight:750;cursor:pointer}
.job-owner-button-light{min-width:72px;color:var(--goonet-primary);background:#fff;border:1px solid rgba(47,107,79,.22)}
.job-owner-button-primary{flex:1;color:#fff;background:var(--goonet-primary);border:1px solid var(--goonet-primary)}
.job-other-footer{display:flex;align-items:flex-end;justify-content:space-between;gap:12px;margin-top:14px}
.job-other-footer span{display:block;color:var(--goonet-muted);font-size:11px;line-height:1.55}
.receive-job-button{
    min-width: 92px;
    min-height: 40px;
    padding: 7px 12px;
    color: #fff;
    background: linear-gradient(139deg, #55d6dc, #4CAF50);
    border: 1px solid #4CAF50;
    border-radius: 20px;
    font: inherit;
    font-size: 13px;
    font-weight: 750;
}
.home-own-empty{display:flex;align-items:center;gap:12px;padding:14px;background:#fff;border:1px solid #e8ece9;border-radius:16px}
.home-own-empty-icon{width:42px;height:42px;flex:0 0 42px;display:flex;align-items:center;justify-content:center;color:var(--goonet-primary);background:rgba(47,107,79,.08);border-radius:12px;font-size:24px}.home-own-empty>div{min-width:0;flex:1}.home-own-empty strong,.home-own-empty span{display:block}.home-own-empty strong{font-size:13px}.home-own-empty span{margin-top:3px;color:var(--goonet-muted);font-size:11px;line-height:1.45}.home-own-empty>a{color:var(--goonet-primary);font-size:12px;font-weight:750;text-decoration:none}
.job-lightbox{position:fixed;z-index:1000;inset:0;display:none}.job-lightbox.show{display:block}.job-lightbox-backdrop{position:absolute;inset:0;background:rgba(0,0,0,.86)}.job-lightbox-dialog{position:relative;z-index:2;width:100%;height:100%;display:flex;align-items:center;justify-content:center;padding:55px 16px 45px}.job-lightbox-dialog img{max-width:100%;max-height:100%;object-fit:contain}.job-lightbox-close,.job-lightbox-nav{position:absolute;z-index:3;display:flex;align-items:center;justify-content:center;color:#fff;background:rgba(255,255,255,.14);border:1px solid rgba(255,255,255,.18);cursor:pointer}.job-lightbox-close{top:16px;right:16px;width:42px;height:42px;border-radius:50%;font-size:26px}.job-lightbox-nav{top:50%;width:44px;height:44px;border-radius:50%;font-size:35px;transform:translateY(-50%)}.job-lightbox-prev{left:12px}.job-lightbox-next{right:12px}.job-lightbox-count{position:absolute;left:50%;bottom:18px;z-index:3;padding:7px 11px;color:#fff;background:rgba(0,0,0,.42);border-radius:20px;font-size:13px;transform:translateX(-50%)}
.home-bottom-nav{position:fixed;z-index:500;right:0;bottom:0;left:0;min-height:70px;display:flex;align-items:stretch;
    padding-bottom:env(safe-area-inset-bottom);background:rgba(255,255,255,.97);
    border-top:1px solid #e3e7e4;box-shadow:0 -5px 18px rgba(31,41,51,.055)}
.home-nav-item{min-width:0;flex:1;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:4px;color:#747c79;text-decoration:none}
.home-nav-icon{font-size:22px;line-height:1}
.home-nav-item>span:last-child{font-size:10px;font-weight:650;white-space:nowrap}
.home-nav-item.active{color:#ea0808}
.home-nav-book-icon{width:48px;height:48px;display:flex;align-items:center;justify-content:center;margin-top:-28px;color:#fff;background:var(--goonet-primary);
    border:4px solid #f4f5f4;border-radius:18px;box-shadow:0 6px 18px rgba(47,107,79,.28);font-size:28px}
.home-nav-book>span:last-child{color:var(--goonet-primary)}
@media(max-width:480px){.home-main-redesign{padding-right:12px;padding-left:12px}
.local-banner{min-height:195px;margin-right:-12px;margin-left:-12px}
.local-banner-content{min-height:195px;padding:24px 16px 32px}
.local-banner-content h1{font-size:28px}
.home-create-trigger{min-height:68px;padding:12px 16px;border-radius:20px}
.home-create-trigger>span:last-child{font-size:18px}
.home-shortcuts{gap:8px}
.home-shortcut{min-height:96px;border-radius:15px}
.home-shortcut-icon{width:34px;height:34px}
.home-shortcut span:last-child{font-size:11px}
.food-card{width:48%;min-width:48%}
.food-card-image{height:140px}
.job-card{padding:13px;border-radius:16px}
.job-content{font-size:14px}
.job-other-footer{align-items:center}
.job-lightbox-nav{width:38px;height:38px}
.job-lightbox-prev{left:7px}
.job-lightbox-next{right:7px}
.home-nav-item>span:last-child{font-size:9px}}



/* =========================================================
   HOME - FIX MOBILE OVERFLOW + FOOD SCROLL
========================================================= */

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.home-redesign,
.home-page {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}


/* G?i ? g?i ð? ãn */

.food-scroll {
    display: flex;

    gap: 12px;

    overflow-x: auto;
    overflow-y: hidden;

    margin-right: -16px;

    padding: 2px 16px 8px 0;

    scrollbar-width: none;

    -webkit-overflow-scrolling: touch;

    overscroll-behavior-x: contain;
}

.food-scroll::-webkit-scrollbar {
    display: none;
}

.food-card {
    flex: 0 0 40%;

    width: auto;

    min-width: 0;
}


@media (max-width: 480px) {

    .food-scroll {
        margin-right: -12px;

        padding-right: 12px;
    }

    .food-card {
        flex: 0 0 40%;
    }

}


/* =========================================================
   CREATE JOB - SUBMIT LOADING OVERLAY
========================================================= */

.job-submit-overlay {
    position: fixed;

    inset: 0;

    z-index: 9999;

    display: none;

    align-items: center;

    justify-content: center;

    padding: 20px;

    background: rgba(255, 255, 255, 0.72);

    -webkit-backdrop-filter: blur(4px);

    backdrop-filter: blur(4px);
}


.job-submit-overlay.show {
    display: flex;
}


.job-submit-loading-box {
    width: min(320px, 100%);

    padding: 28px 24px;

    text-align: center;

    background: #ffffff;

    border: 1px solid
        rgba(0, 0, 0, 0.06);

    border-radius: 20px;

    box-shadow:
        0 16px 50px
        rgba(0, 0, 0, 0.14);
}


.job-submit-spinner {
    width: 42px;

    height: 42px;

    margin: 0 auto 18px;

    border: 3px solid
        rgba(47, 107, 79, 0.16);

    border-top-color:
        var(--goonet-primary);

    border-radius: 50%;

    animation:
        job-submit-spin
        0.8s linear infinite;
}


.job-submit-loading-box strong {
    display: block;

    margin-bottom: 8px;

    color: var(--goonet-text);

    font-size: 18px;

    font-weight: 700;
}


.job-submit-loading-box span {
    display: block;

    color: var(--goonet-text-muted);

    font-size: 14px;

    line-height: 1.5;
}


.job-submit-loading-box small {
    display: block;

    margin-top: 10px;

    color: var(--goonet-text-muted);

    font-size: 12px;

    line-height: 1.5;
}


@keyframes job-submit-spin {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }

}


body.job-is-submitting {
    overflow: hidden;
}


body.job-is-submitting .create-job-page {
    pointer-events: none;
}


/* ===== Shared footer SVG + notification badge ===== */
.home-nav-icon{position:relative;width:24px;height:24px;display:grid;place-items:center;flex:0 0 24px}
.home-nav-icon svg{width:22px;height:22px;display:block;overflow:visible}
.home-nav-icon-badge-wrap{overflow:visible}
.home-nav-badge{position:absolute;top:-6px;right:-8px;min-width:16px;height:16px;display:flex;align-items:center;justify-content:center;padding:0 4px;color:#fff;background:#d63b3b;border:2px solid rgba(255,255,255,.97);border-radius:999px;font-size:9px;line-height:1;font-weight:800}
html,body{max-width:100%;overflow-x:hidden}
.home-bottom-nav,.home-bottom-nav *{min-width:0}


/* =========================================================
   HOME - TÄ‚NG TIá»€N CÃ”NG MODAL
   ========================================================= */
.job-price-modal{position:fixed;inset:0;z-index:1500;display:none;align-items:flex-end;justify-content:center;padding:16px}
.job-price-modal.show{display:flex}
.job-price-modal-backdrop{position:absolute;inset:0;background:rgba(18,25,31,.48);backdrop-filter:blur(3px)}
.job-price-modal-dialog{position:relative;width:min(100%,560px);max-height:calc(100dvh - 24px);overflow-y:auto;background:#fff;border-radius:28px 28px 22px 22px;padding:12px 16px 20px;box-sizing:border-box;box-shadow:0 -12px 40px rgba(0,0,0,.14)}
.job-price-modal-handle{width:56px;height:5px;margin:0 auto 14px;border-radius:999px;background:#d9dfdf}
.job-price-modal-header{display:flex;align-items:flex-start;justify-content:space-between;gap:14px;margin-bottom:18px}
.job-price-modal-header h2{margin:0 0 6px;font-size:27px;line-height:1.2;color:#26333a}
.job-price-modal-header p{margin:0;color:#6f7b82;font-size:15px;line-height:1.55}
.job-price-modal-close{flex:0 0 50px;width:50px;height:50px;border:0;border-radius:16px;background:#f1f3f3;color:#425159;font-size:32px;line-height:1;cursor:pointer}
.job-price-current{display:flex;align-items:center;justify-content:space-between;gap:12px;min-height:74px;padding:0 18px;margin-bottom:12px;border-radius:18px;background:#f7f8f8}
.job-price-current span{color:#6f7b82;font-size:16px}
.job-price-current strong{color:#b85a16;font-size:27px;white-space:nowrap}
.job-price-quick{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:10px;margin:12px 0}
.job-price-quick-button{min-height:58px;border:0;border-radius:17px;background:#edf5f1;color:#2f6a55;font-size:17px;font-weight:800;cursor:pointer}
.job-price-control{display:grid;grid-template-columns:76px minmax(0,1fr) 76px;align-items:center;gap:12px;padding:10px;margin-top:12px;border-radius:20px;background:#f5f6f6}
.job-price-step-button{width:66px;height:66px;border:1px solid #e1e5e5;border-radius:17px;background:#fff;color:#2f6a55;font-size:34px;font-weight:500;cursor:pointer}
.job-price-step-button:disabled{opacity:.45;cursor:not-allowed}
.job-price-new-value{min-width:0;text-align:center}
.job-price-new-value span{display:block;margin-bottom:4px;color:#78838a;font-size:14px}
.job-price-new-value strong{display:block;color:#26333a;font-size:29px;line-height:1.1}
.job-price-modal-error{min-height:20px;margin:10px 2px 0;color:#c94a42;font-size:14px}
.job-price-submit{width:100%;min-height:62px;margin-top:8px;border:0;border-radius:19px;background:#2f6a55;color:#fff;font-size:19px;font-weight:800;cursor:pointer}
.job-price-submit:disabled{background:#cfd6d4;color:#7b8583;cursor:not-allowed}
@media(max-width:480px){
.job-price-modal{padding:0}
.job-price-modal-dialog{width:100%;max-height:calc(100dvh - 8px);border-radius:26px 26px 0 0;padding:12px 14px calc(18px + env(safe-area-inset-bottom))}
.job-price-modal-header h2{font-size:25px}
.job-price-modal-header p{font-size:14px}
.job-price-current strong{font-size:25px}
.job-price-quick{gap:8px}
.job-price-quick-button{min-height:54px;font-size:16px}
.job-price-control{grid-template-columns:62px minmax(0,1fr) 62px;gap:8px}
.job-price-step-button{width:56px;height:58px;border-radius:15px}
.job-price-new-value strong{font-size:26px}
}
