.vendor-readonly-notice {
    margin-bottom: 20px;
    padding: 14px 18px;
    border: 1px solid #eadfca;
    border-radius: 16px;
    background: #fff8e8;
    font-weight: 800;
}

.vendor-info-grid,
.vendor-finance-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.vendor-finance-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.vendor-info-item,
.vendor-finance-stat {
    padding: 16px;
    border: 1px solid #eadfca;
    border-radius: 16px;
    background: #fff;
}

.vendor-info-item span,
.vendor-finance-stat span {
    display: block;
    margin-bottom: 7px;
    color: #6b7280;
    font-weight: 700;
}

.vendor-info-item strong,
.vendor-finance-stat strong {
    display: block;
    color: #111827;
    font-weight: 900;
    overflow-wrap: anywhere;
}

.vendor-finance-table-wrap {
    width: 100%;
    overflow-x: auto;
}

.vendor-finance-table {
    width: 100%;
    border-collapse: collapse;
}

.vendor-finance-table th,
.vendor-finance-table td {
    padding: 12px;
    border-bottom: 1px solid #eadfca;
    text-align: start;
    white-space: nowrap;
}

.vendor-finance-empty {
    padding: 24px;
    text-align: center;
    color: #6b7280;
    font-weight: 800;
}

@media (max-width: 900px) {
    .vendor-finance-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .vendor-info-grid,
    .vendor-finance-grid {
        grid-template-columns: 1fr;
    }
}

/* DLEELK COMPANY PLAN STORE START */

.company-subscription-head {
    margin-bottom: 18px;
}

.company-current-plan {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 20px;
}

.company-current-plan > div {
    min-width: 0;
    padding: 16px;
    border: 1px solid rgba(194, 139, 30, .20);
    border-radius: 14px;
    background: rgba(194, 139, 30, .055);
}

.company-current-plan span {
    display: block;
    margin-bottom: 6px;
    color: #737986;
    font-size: 12px;
}

.company-current-plan strong {
    display: block;
    color: #171d29;
    font-size: 15px;
    overflow-wrap: anywhere;
}

.company-plan-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 22px;
}

.company-plan-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding: 22px;
    border: 1px solid #eadfc8;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 12px 34px rgba(20, 25, 35, .055);
}

.company-plan-card.is-current {
    border-color: #c28b1e;
    box-shadow: 0 15px 38px rgba(194, 139, 30, .14);
}

.company-plan-card__current {
    position: absolute;
    inset-block-start: 14px;
    inset-inline-end: 14px;
    padding: 5px 9px;
    border-radius: 999px;
    background: #fff3d5;
    color: #956307;
    font-size: 11px;
    font-weight: 800;
}

.company-plan-card__head h3 {
    margin: 0 0 16px;
    padding-inline-end: 100px;
    color: #171d29;
    font-size: 20px;
    line-height: 1.4;
}

.company-plan-card__price {
    display: flex;
    align-items: baseline;
    gap: 7px;
}

.company-plan-card__price strong {
    color: #b97c0d;
    font-size: 30px;
    line-height: 1;
}

.company-plan-card__price span {
    color: #6f7580;
    font-size: 13px;
    font-weight: 700;
}

.company-plan-card__duration {
    margin-top: 9px;
    color: #777d87;
    font-size: 13px;
}

.company-plan-card__features {
    flex: 1;
    margin: 20px 0;
    padding-top: 18px;
    border-top: 1px solid #eee5d5;
}

.company-plan-card__features > strong {
    display: block;
    margin-bottom: 12px;
    color: #252b35;
    font-size: 13px;
}

.company-plan-card__features ul {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.company-plan-card__features li {
    color: #505762;
    font-size: 13px;
    line-height: 1.6;
}

.company-plan-card__features li::before {
    content: "✓";
    margin-inline-end: 8px;
    color: #b97c0d;
    font-weight: 900;
}

.company-plan-card form {
    margin-top: auto;
}

.company-plan-card__button {
    width: 100%;
    min-height: 46px;
    padding: 10px 16px;
    border: 0;
    border-radius: 12px;
    background: #c28b1e;
    color: #fff;
    cursor: pointer;
    font: inherit;
    font-weight: 800;
    transition:
        transform .18s ease,
        box-shadow .18s ease,
        filter .18s ease;
}

.company-plan-card__button:hover {
    transform: translateY(-1px);
    filter: brightness(.97);
    box-shadow: 0 9px 22px rgba(194, 139, 30, .20);
}

.company-plan-payment-note {
    margin: 20px 0 0;
    color: #777d87;
    text-align: center;
    font-size: 12px;
    line-height: 1.7;
}

@media (max-width: 900px) {
    .company-plan-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 680px) {
    .company-current-plan {
        grid-template-columns: 1fr;
    }

    .company-plan-grid {
        gap: 14px;
    }

    .company-plan-card {
        padding: 18px;
        border-radius: 15px;
    }

    .company-plan-card__head h3 {
        padding-inline-end: 0;
        font-size: 18px;
    }

    .company-plan-card__current {
        position: static;
        align-self: flex-start;
        margin-bottom: 12px;
    }

    .company-plan-card__price strong {
        font-size: 26px;
    }
}

/* DLEELK COMPANY PLAN STORE END */

.company-plan-card__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

/* DLEELK ACCOUNT TYPE BADGE START */

.account-user-box .account-type-label {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-top: 7px;
    padding: 5px 9px;
    border: 1px solid rgba(194, 139, 30, .24);
    border-radius: 999px;
    background: rgba(194, 139, 30, .08);
    color: #9b6808;
    font-size: 11px;
    font-weight: 900;
    line-height: 1.2;
}

.account-user-box .account-type-label + span {
    margin-top: 7px;
}

/* DLEELK ACCOUNT TYPE BADGE END */

/* DLEELK INCOMPLETE COMPANY PROFILE START */

.company-profile-incomplete {
    display: grid;
    gap: 7px;
    margin: 0 0 14px;
    padding: 14px;
    border: 1px solid #f2d391;
    border-radius: 14px;
    background: #fff8e8;
}

.company-profile-incomplete strong {
    color: #8a5a00;
    font-size: 13px;
}

.company-profile-incomplete span {
    color: #755f37;
    font-size: 11px;
    line-height: 1.65;
}

.company-profile-incomplete a {
    display: inline-flex;
    justify-content: center;
    margin-top: 3px !important;
    padding: 9px 10px !important;
    border-radius: 10px !important;
    background: #c28b1e !important;
    color: #fff !important;
    font-size: 11px;
}

/* DLEELK INCOMPLETE COMPANY PROFILE END */

/*
|--------------------------------------------------------------------------
| Company Profile Protected / Editable Information
|--------------------------------------------------------------------------
*/

.vendor-profile-protected-notice {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
    padding: 16px 18px;
    border: 1px solid rgba(194, 139, 30, .18);
    border-radius: 16px;
    background: rgba(194, 139, 30, .07);
}

.vendor-profile-protected-notice strong {
    display: block;
    margin-bottom: 4px;
    color: #8b6417;
    font-weight: 900;
}

.vendor-profile-protected-notice p {
    margin: 0;
    color: #626873;
    font-size: 13px;
    line-height: 1.7;
}

.vendor-profile-lock {
    display: grid;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 50%;
    background: rgba(194, 139, 30, .10);
    font-size: 18px;
}

.vendor-profile-section-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.vendor-profile-section-lock {
    flex: 0 0 auto;
    font-size: 17px;
}

.vendor-profile-section-hint {
    margin: 5px 0 0;
    color: #777d87;
    font-size: 12px;
    font-weight: 600;
}

.vendor-profile-locked-card .vendor-info-item-locked {
    border-color: #dfe2e6;
    background: #f2f3f5;
}

.vendor-profile-locked-card .vendor-info-item-locked span {
    color: #858b94;
}

.vendor-profile-locked-card .vendor-info-item-locked strong {
    color: #303640;
}

.vendor-profile-contact-card {
    border-color: rgba(194, 139, 30, .18);
}

.vendor-contact-field {
    display: block;
    min-width: 0;
}

.vendor-contact-field > span {
    display: block;
    margin-bottom: 7px;
    color: #6b7280;
    font-size: 13px;
    font-weight: 700;
}

.vendor-contact-field input {
    width: 100%;
    min-height: 52px;
    padding: 12px 14px;
    border: 1px solid #ddd7ca;
    border-radius: 14px;
    outline: none;
    background: #fff;
    color: #111827;
    font: inherit;
    transition:
        border-color .18s ease,
        box-shadow .18s ease,
        background .18s ease;
}

.vendor-contact-field input:hover {
    border-color: #cbbd9e;
}

.vendor-contact-field input:focus {
    border-color: rgba(194, 139, 30, .72);
    box-shadow: 0 0 0 3px rgba(194, 139, 30, .10);
}

.vendor-contact-field-wide {
    grid-column: 1 / -1;
}

.vendor-contact-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 18px;
}

.vendor-contact-actions button {
    min-height: 44px;
    padding: 10px 22px;
    border: 0;
    border-radius: 12px;
    background: #c28b1e;
    color: #fff;
    font: inherit;
    font-weight: 900;
    cursor: pointer;
}

.vendor-contact-actions button:hover {
    filter: brightness(.96);
}

.vendor-profile-success,
.vendor-profile-errors {
    margin-bottom: 18px;
    padding: 14px 18px;
    border-radius: 14px;
    font-weight: 700;
}

.vendor-profile-success {
    border: 1px solid #b7e4c7;
    background: #effaf3;
    color: #176536;
}

.vendor-profile-errors {
    border: 1px solid #f1b9b9;
    background: #fff2f2;
    color: #9f2525;
}

.vendor-profile-errors ul {
    margin: 0;
    padding-inline-start: 20px;
}

@media (max-width: 640px) {
    .vendor-profile-protected-notice {
        align-items: flex-start;
    }

    .vendor-contact-field-wide {
        grid-column: auto;
    }

    .vendor-contact-actions button {
        width: 100%;
    }
}
