:root {
    --market-navy: #061526;
    --market-navy-soft: #0b2d4f;
    --market-blue: #1686b8;
    --market-cyan: #70d3e9;
    --market-gold: #d5a53f;
    --market-gold-light: #f0d491;
    --market-ink: #0b1521;
    --market-muted: #5f7181;
    --market-line: #dbe4eb;
    --market-soft: #f3f7fa;
    --market-white: #ffffff;
    --market-success: #17875f;
    --market-warning: #b97912;
    --market-danger: #b63838;
    --market-shadow: 0 24px 60px rgba(5, 27, 49, 0.13);
    --market-shadow-soft: 0 14px 36px rgba(5, 27, 49, 0.08);
}

.market-catalogue-hero,
.market-submit-hero,
.aircraft-detail-hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 82% 18%,
            rgba(213, 165, 63, 0.22),
            transparent 28%
        ),
        linear-gradient(135deg, var(--market-navy), var(--market-navy-soft));
    color: var(--market-white);
}

.market-grid-overlay {
    position: absolute;
    inset: 0;
    opacity: 0.14;
    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.09) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.09) 1px,
            transparent 1px
        );
    background-size: 72px 72px;
}

.market-catalogue-hero-inner {
    position: relative;
    z-index: 2;
    display: flex;
    min-height: 390px;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    padding-top: 70px;
    padding-bottom: 70px;
}

.market-catalogue-hero h1,
.market-submit-hero h1,
.aircraft-detail-hero h1 {
    margin-bottom: 18px;
    font-size: clamp(2.8rem, 5vw, 5rem);
}

.market-catalogue-hero p,
.market-submit-hero p,
.aircraft-detail-hero p {
    max-width: 720px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.12rem;
}

.market-hero-actions {
    display: flex;
    flex: 0 0 auto;
    flex-direction: column;
    gap: 11px;
}

/* Catalogue */

.market-catalogue-section {
    padding: 74px 0 96px;
    background: var(--market-soft);
}

.market-catalogue-layout {
    display: grid;
    align-items: start;
    grid-template-columns: 310px minmax(0, 1fr);
    gap: 34px;
}

.market-filter-panel {
    position: sticky;
    top: 104px;
    padding: 26px;
    border: 1px solid var(--market-line);
    border-radius: 18px;
    background: var(--market-white);
    box-shadow: var(--market-shadow-soft);
}

.market-filter-heading {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 25px;
}

.market-filter-heading span {
    color: var(--market-blue);
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.market-filter-heading h2 {
    margin: 3px 0 0;
    font-size: 1.45rem;
}

.market-filter-heading > a {
    color: var(--market-blue);
    font-size: 0.74rem;
    font-weight: 800;
}

.market-field {
    display: grid;
    gap: 6px;
    margin-bottom: 17px;
}

.market-field label,
.market-form-field > label,
.market-upload-field > label {
    color: #263746;
    font-size: 0.77rem;
    font-weight: 800;
}

.market-field input,
.market-field select,
.market-form-field input:not([type="checkbox"]),
.market-form-field select,
.market-form-field textarea,
.market-upload-field input {
    width: 100%;
    min-height: 48px;
    border: 1px solid #cbd8e1;
    border-radius: 10px;
    outline: none;
    background: #fbfdfe;
    color: var(--market-ink);
    transition:
        border-color 160ms ease,
        box-shadow 160ms ease;
}

.market-field input,
.market-field select,
.market-form-field input:not([type="checkbox"]),
.market-form-field select {
    padding: 0 12px;
}

.market-form-field textarea {
    padding: 12px;
    resize: vertical;
}

.market-upload-field input {
    min-height: auto;
    padding: 13px;
}

.market-field input:focus,
.market-field select:focus,
.market-form-field input:focus,
.market-form-field select:focus,
.market-form-field textarea:focus {
    border-color: var(--market-blue);
    box-shadow: 0 0 0 4px rgba(22, 134, 184, 0.11);
}

.market-price-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

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

.market-results-heading h2 {
    margin-bottom: 0;
    font-size: clamp(1.8rem, 3vw, 2.75rem);
}

.market-inline-alert {
    margin-bottom: 22px;
    padding: 14px 16px;
    border-radius: 10px;
    font-weight: 700;
}

.market-inline-alert-warning {
    border: 1px solid #e2bf7c;
    background: #fff7e8;
    color: #80570d;
}

.aircraft-listing-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.aircraft-listing-card {
    overflow: hidden;
    border: 1px solid var(--market-line);
    border-radius: 18px;
    background: var(--market-white);
    box-shadow: var(--market-shadow-soft);
    transition:
        transform 180ms ease,
        box-shadow 180ms ease;
}

.aircraft-listing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--market-shadow);
}

.aircraft-card-image {
    position: relative;
    display: block;
    height: 260px;
    overflow: hidden;
    background: #dfeaf0;
}

.aircraft-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 280ms ease;
}

.aircraft-listing-card:hover .aircraft-card-image img {
    transform: scale(1.035);
}

.aircraft-image-placeholder,
.aircraft-detail-placeholder {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background:
        radial-gradient(
            circle at 35% 25%,
            rgba(112, 211, 233, 0.22),
            transparent 30%
        ),
        linear-gradient(145deg, #dce9ef, #b4cbd7);
}

.aircraft-image-placeholder span,
.aircraft-detail-placeholder span {
    display: grid;
    width: 68px;
    height: 68px;
    place-items: center;
    border-radius: 50%;
    background: var(--market-navy);
    color: var(--market-gold-light);
    font-size: 1.8rem;
    font-weight: 900;
}

.aircraft-image-placeholder small {
    margin-top: 12px;
    color: #405364;
    font-weight: 700;
}

.aircraft-featured-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 8px 12px;
    border-radius: 999px;
    background: var(--market-gold);
    color: #382708;
    font-size: 0.7rem;
    font-weight: 900;
}

.aircraft-card-content {
    padding: 25px;
}

.aircraft-card-reference {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.aircraft-card-reference span {
    color: var(--market-blue);
    font-size: 0.69rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.aircraft-card-reference small {
    color: var(--market-muted);
    font-size: 0.68rem;
}

.aircraft-card-content h3 {
    margin: 14px 0 11px;
    font-size: 1.45rem;
}

.aircraft-card-content > p {
    min-height: 58px;
    margin-bottom: 21px;
    font-size: 0.89rem;
}

.aircraft-card-specs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    overflow: hidden;
    border: 1px solid var(--market-line);
    border-radius: 10px;
    background: var(--market-line);
}

.aircraft-card-specs span {
    min-width: 0;
    padding: 11px;
    background: var(--market-white);
}

.aircraft-card-specs small,
.aircraft-card-specs strong {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.aircraft-card-specs small {
    color: var(--market-muted);
    font-size: 0.62rem;
}

.aircraft-card-specs strong {
    margin-top: 2px;
    font-size: 0.75rem;
}

.aircraft-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: 22px;
}

.aircraft-card-footer > strong {
    font-size: 1.05rem;
}

.aircraft-card-footer a {
    color: var(--market-blue);
    font-size: 0.8rem;
    font-weight: 900;
}

.aircraft-card-footer a::after {
    content: " →";
}

.market-empty-state {
    padding: 74px 30px;
    border: 1px dashed #bacbd6;
    border-radius: 18px;
    background: var(--market-white);
    text-align: center;
}

.market-empty-icon {
    display: grid;
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    place-items: center;
    border-radius: 50%;
    background: var(--market-navy);
    color: var(--market-gold-light);
    font-size: 1.8rem;
    font-weight: 900;
}

.market-empty-state h3 {
    font-size: 1.6rem;
}

.market-empty-state p {
    max-width: 560px;
    margin-right: auto;
    margin-left: auto;
}

.market-empty-actions {
    display: flex;
    justify-content: center;
    gap: 11px;
    margin-top: 27px;
}

.market-seller-cta {
    padding: 0 0 96px;
    background: var(--market-soft);
}

.market-seller-cta-inner {
    display: flex;
    min-height: 280px;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 48px 54px;
    border-radius: 24px;
    background:
        radial-gradient(
            circle at 82% 20%,
            rgba(213, 165, 63, 0.23),
            transparent 28%
        ),
        linear-gradient(135deg, #513a0e, var(--market-navy));
    color: var(--market-white);
    box-shadow: var(--market-shadow);
}

.market-seller-cta h2 {
    margin-bottom: 13px;
}

.market-seller-cta p {
    max-width: 700px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.68);
}

/* Detail */

.aircraft-detail-hero {
    padding: 54px 0 62px;
}

.market-breadcrumb {
    display: flex;
    gap: 8px;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.56);
    font-size: 0.78rem;
}

.market-breadcrumb a {
    color: var(--market-cyan);
}

.aircraft-detail-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 45px;
}

.aircraft-detail-heading h1 {
    margin: 13px 0 13px;
}

.aircraft-detail-heading h1 span {
    display: block;
    margin-top: 7px;
    color: var(--market-cyan);
    font-size: 0.48em;
}

.aircraft-detail-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.aircraft-detail-badges span {
    padding: 7px 10px;
    border: 1px solid rgba(255, 255, 255, 0.17);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.07);
    color: rgba(255, 255, 255, 0.77);
    font-size: 0.7rem;
    font-weight: 800;
}

.aircraft-detail-badges span.gold {
    border-color: rgba(213, 165, 63, 0.4);
    color: var(--market-gold-light);
}

.aircraft-detail-price {
    min-width: 260px;
    padding: 23px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.065);
    text-align: right;
}

.aircraft-detail-price small,
.aircraft-detail-price strong,
.aircraft-detail-price span {
    display: block;
}

.aircraft-detail-price small {
    color: rgba(255, 255, 255, 0.56);
}

.aircraft-detail-price strong {
    margin: 3px 0;
    color: var(--market-gold-light);
    font-size: 1.55rem;
}

.aircraft-detail-price span {
    color: rgba(255, 255, 255, 0.48);
    font-size: 0.72rem;
}

.aircraft-gallery-section {
    padding: 42px 0;
    background: #edf3f6;
}

.aircraft-gallery {
    display: grid;
    gap: 14px;
}

.aircraft-gallery-primary {
    height: min(66vw, 680px);
    overflow: hidden;
    border-radius: 20px;
    background: #dce8ed;
    box-shadow: var(--market-shadow);
}

.aircraft-gallery-primary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.aircraft-gallery-thumbnails {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 10px;
}

.aircraft-gallery-thumbnails button {
    height: 100px;
    padding: 0;
    overflow: hidden;
    border: 3px solid transparent;
    border-radius: 10px;
    background: transparent;
}

.aircraft-gallery-thumbnails button.is-active {
    border-color: var(--market-blue);
}

.aircraft-gallery-thumbnails img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.aircraft-detail-placeholder {
    height: 430px;
    border-radius: 20px;
    box-shadow: var(--market-shadow);
}

.aircraft-detail-placeholder strong {
    margin-top: 15px;
    color: #405364;
}

.aircraft-detail-content-section {
    padding: 72px 0 96px;
    background: var(--market-soft);
}

.aircraft-detail-layout {
    display: grid;
    align-items: start;
    grid-template-columns: minmax(0, 1fr) 390px;
    gap: 32px;
}

.aircraft-detail-main {
    display: grid;
    gap: 22px;
}

.aircraft-detail-panel {
    padding: 36px;
    border: 1px solid var(--market-line);
    border-radius: 18px;
    background: var(--market-white);
    box-shadow: var(--market-shadow-soft);
}

.aircraft-detail-panel h2 {
    font-size: 1.8rem;
}

.aircraft-description p:last-child {
    margin-bottom: 0;
}

.aircraft-spec-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    overflow: hidden;
    border: 1px solid var(--market-line);
    border-radius: 12px;
    background: var(--market-line);
}

.aircraft-spec-grid > div {
    min-height: 92px;
    padding: 18px;
    background: var(--market-white);
}

.aircraft-spec-grid small,
.aircraft-spec-grid strong {
    display: block;
}

.aircraft-spec-grid small {
    color: var(--market-muted);
    font-size: 0.7rem;
}

.aircraft-spec-grid strong {
    margin-top: 5px;
    font-size: 0.9rem;
}

.aircraft-summary-sections {
    display: grid;
    gap: 14px;
}

.aircraft-summary-sections article {
    padding: 23px;
    border: 1px solid var(--market-line);
    border-radius: 12px;
    background: #fbfdfe;
}

.aircraft-summary-sections h3 {
    margin-bottom: 10px;
}

.aircraft-summary-sections p:last-child {
    margin-bottom: 0;
}

.market-document-list {
    display: grid;
    gap: 10px;
}

.market-document-list a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 15px;
    border: 1px solid var(--market-line);
    border-radius: 10px;
    transition:
        border-color 160ms ease,
        background 160ms ease;
}

.market-document-list a:hover {
    border-color: var(--market-blue);
    background: #f5fbfd;
}

.market-document-list > a > span {
    display: grid;
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 9px;
    background: var(--market-navy);
    color: var(--market-gold-light);
    font-size: 0.62rem;
    font-weight: 900;
}

.market-document-list strong,
.market-document-list small {
    display: block;
}

.market-document-list small {
    color: var(--market-muted);
}

.market-disclaimer {
    padding: 22px;
    border: 1px solid #dfc27f;
    border-radius: 12px;
    background: #fff9eb;
}

.market-disclaimer p {
    margin: 7px 0 0;
    color: #66511d;
    font-size: 0.86rem;
}

.aircraft-enquiry-card {
    position: sticky;
    top: 104px;
    padding: 29px;
    border: 1px solid #ddc077;
    border-radius: 18px;
    background: #fffaf0;
    box-shadow: var(--market-shadow);
}

.aircraft-enquiry-card-heading {
    margin-bottom: 24px;
}

.aircraft-enquiry-card h2 {
    margin-bottom: 10px;
    font-size: 1.75rem;
}

.aircraft-enquiry-card p {
    font-size: 0.89rem;
}

.market-form-fields,
.market-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 17px;
}

.aircraft-enquiry-card .market-form-fields {
    grid-template-columns: 1fr;
}

.market-form-field {
    display: grid;
    align-content: start;
    gap: 6px;
}

.market-form-field-full {
    grid-column: 1 / -1;
}

.market-form-field small,
.market-upload-field small {
    color: var(--market-muted);
    font-size: 0.7rem;
}

.market-checkbox {
    display: flex !important;
    align-items: flex-start;
    gap: 10px;
    color: #263746;
    font-size: 0.78rem;
    font-weight: 700;
    cursor: pointer;
}

.market-checkbox input {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
    margin-top: 2px;
    accent-color: var(--market-blue);
}

.market-field-error {
    color: var(--market-danger);
    font-size: 0.72rem;
    font-weight: 800;
}

.market-form-privacy,
.market-submit-footnote {
    margin: 13px 0 0;
    color: var(--market-muted);
    font-size: 0.7rem !important;
    text-align: center;
}

/* Submit */

.market-submit-hero {
    padding: 76px 0;
}

.market-submit-hero-inner {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 50px;
}

.market-submit-process {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.14);
}

.market-submit-process span {
    min-width: 105px;
    padding: 18px 14px;
    background: rgba(6, 21, 38, 0.78);
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.7rem;
    text-align: center;
}

.market-submit-process strong {
    display: block;
    color: var(--market-gold-light);
}

.market-submit-section {
    padding: 72px 0 96px;
    background: var(--market-soft);
}

.market-submit-layout {
    display: grid;
    align-items: start;
    grid-template-columns: 310px minmax(0, 1fr);
    gap: 34px;
}

.market-submit-guidance {
    position: sticky;
    top: 104px;
}

.market-submit-guidance h2 {
    font-size: 1.8rem;
}

.market-guidance-list {
    display: grid;
    gap: 10px;
    margin-top: 26px;
}

.market-guidance-list > div {
    display: grid;
    grid-template-columns: 35px 1fr;
    gap: 11px;
    padding: 14px 0;
    border-bottom: 1px solid var(--market-line);
}

.market-guidance-list span {
    color: var(--market-blue);
    font-size: 0.7rem;
    font-weight: 900;
}

.market-guidance-list p {
    margin: 0;
    color: #405364;
    font-size: 0.85rem;
}

.market-commission-note {
    margin-top: 26px;
    padding: 20px;
    border: 1px solid #ddc077;
    border-radius: 12px;
    background: #fff8e7;
}

.market-commission-note p {
    margin: 8px 0 0;
    font-size: 0.8rem;
}

.market-submission-form-card {
    overflow: hidden;
    border: 1px solid var(--market-line);
    border-radius: 20px;
    background: var(--market-white);
    box-shadow: var(--market-shadow);
}

.market-form-section {
    padding: 38px;
    border-bottom: 1px solid var(--market-line);
}

.market-form-section:last-child {
    border-bottom: 0;
}

.market-form-section-heading {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 16px;
    margin-bottom: 27px;
}

.market-form-section-heading > span {
    display: grid;
    width: 43px;
    height: 43px;
    place-items: center;
    border-radius: 50%;
    background: var(--market-navy);
    color: var(--market-gold-light);
    font-size: 0.7rem;
    font-weight: 900;
}

.market-form-section-heading h2 {
    margin-bottom: 5px;
    font-size: 1.55rem;
}

.market-form-section-heading p {
    margin-bottom: 0;
    font-size: 0.85rem;
}

.market-upload-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 17px;
}

.market-upload-field {
    display: grid;
    gap: 7px;
    padding: 20px;
    border: 1px dashed #afc5d1;
    border-radius: 12px;
    background: #f8fbfc;
}

.market-upload-errors {
    margin-top: 17px;
    padding: 16px;
    border: 1px solid #e4b2b2;
    border-radius: 10px;
    background: #fff0f0;
}

.market-upload-errors p {
    margin: 4px 0;
    color: #9c2929;
    font-size: 0.78rem;
    font-weight: 700;
}

.market-form-section-final {
    background: #fffaf0;
}

/* Success */

.market-success-section {
    min-height: 760px;
    padding: 90px 0;
    background:
        radial-gradient(
            circle at 80% 10%,
            rgba(112, 211, 233, 0.16),
            transparent 28%
        ),
        var(--market-soft);
}

.market-success-card {
    max-width: 940px;
    margin: 0 auto;
    padding: 58px;
    border: 1px solid var(--market-line);
    border-radius: 24px;
    background: var(--market-white);
    box-shadow: var(--market-shadow);
    text-align: center;
}

.market-success-icon {
    display: grid;
    width: 76px;
    height: 76px;
    margin: 0 auto 24px;
    place-items: center;
    border-radius: 50%;
    background: #dcf4eb;
    color: var(--market-success);
    font-size: 2rem;
    font-weight: 900;
}

.market-success-card h1 {
    max-width: 750px;
    margin-right: auto;
    margin-left: auto;
    font-size: clamp(2.2rem, 4vw, 3.6rem);
}

.market-success-card > p {
    max-width: 700px;
    margin-right: auto;
    margin-left: auto;
}

.market-success-reference {
    display: inline-flex;
    margin: 22px 0 38px;
    padding: 15px 22px;
    flex-direction: column;
    border: 1px solid var(--market-line);
    border-radius: 11px;
    background: var(--market-soft);
}

.market-success-reference small {
    color: var(--market-muted);
}

.market-success-reference strong {
    font-size: 1.25rem;
    letter-spacing: 0.08em;
}

.market-success-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    text-align: left;
}

.market-success-steps > div {
    padding: 20px;
    border: 1px solid var(--market-line);
    border-radius: 12px;
}

.market-success-steps span {
    color: var(--market-blue);
    font-size: 0.7rem;
    font-weight: 900;
}

.market-success-steps strong {
    display: block;
    margin: 13px 0 7px;
}

.market-success-steps p {
    margin: 0;
    font-size: 0.77rem;
}

.market-success-actions {
    display: flex;
    justify-content: center;
    gap: 11px;
    margin-top: 38px;
}

/* Notification presentation */

.market-toast {
    position: fixed;
    z-index: 3000;
    right: 24px;
    bottom: 24px;
    display: grid;
    width: min(420px, calc(100% - 48px));
    grid-template-columns: 1fr auto;
    gap: 3px 18px;
    padding: 19px 20px;
    border-radius: 13px;
    background: var(--market-white);
    box-shadow: 0 22px 60px rgba(5, 27, 49, 0.25);
    animation: marketToastIn 240ms ease both;
}

.market-toast strong,
.market-toast span {
    grid-column: 1;
}

.market-toast span {
    color: var(--market-muted);
    font-size: 0.82rem;
}

.market-toast button {
    grid-column: 2;
    grid-row: 1 / 3;
    align-self: center;
    border: 0;
    background: transparent;
    color: var(--market-muted);
    font-size: 1.35rem;
}

.market-toast-success {
    border-left: 5px solid var(--market-success);
}

.market-dialog-backdrop {
    position: fixed;
    z-index: 4000;
    inset: 0;
    display: grid;
    padding: 20px;
    place-items: center;
    background: rgba(6, 21, 38, 0.72);
    backdrop-filter: blur(5px);
}

.market-dialog {
    width: min(480px, 100%);
    padding: 34px;
    border-radius: 18px;
    background: var(--market-white);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
    text-align: center;
}

.market-dialog-icon {
    display: grid;
    width: 62px;
    height: 62px;
    margin: 0 auto 20px;
    place-items: center;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 900;
}

.market-dialog-warning .market-dialog-icon {
    background: #fff0cf;
    color: var(--market-warning);
}

.market-dialog h2 {
    font-size: 1.7rem;
}

@keyframes marketToastIn {
    from {
        transform: translateY(18px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsive */

@media (max-width: 1050px) {
    .market-catalogue-layout,
    .market-submit-layout {
        grid-template-columns: 270px minmax(0, 1fr);
    }

    .aircraft-detail-layout {
        grid-template-columns: minmax(0, 1fr) 340px;
    }

    .aircraft-card-specs,
    .aircraft-spec-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .market-success-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 850px) {
    .market-catalogue-hero-inner,
    .market-submit-hero-inner,
    .aircraft-detail-heading,
    .market-seller-cta-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .market-hero-actions {
        width: 100%;
        flex-direction: row;
    }

    .market-catalogue-layout,
    .market-submit-layout,
    .aircraft-detail-layout {
        grid-template-columns: 1fr;
    }

    .market-filter-panel,
    .market-submit-guidance,
    .aircraft-enquiry-card {
        position: static;
    }

    .market-filter-panel {
        order: 1;
    }

    .market-results {
        order: 2;
    }

    .aircraft-listing-grid {
        grid-template-columns: 1fr;
    }

    .aircraft-detail-price {
        width: 100%;
        text-align: left;
    }

    .aircraft-gallery-thumbnails {
        grid-template-columns: repeat(4, 1fr);
    }

    .market-submit-process {
        width: 100%;
    }
}

@media (max-width: 620px) {
    .market-catalogue-hero-inner {
        min-height: 340px;
    }

    .market-hero-actions,
    .market-empty-actions,
    .market-success-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .market-price-fields,
    .market-form-grid,
    .market-upload-grid,
    .aircraft-spec-grid,
    .market-success-steps {
        grid-template-columns: 1fr;
    }

    .market-form-field-full {
        grid-column: auto;
    }

    .market-results-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .aircraft-card-image {
        height: 230px;
    }

    .aircraft-card-specs {
        grid-template-columns: 1fr 1fr;
    }

    .aircraft-gallery-primary {
        height: 330px;
    }

    .aircraft-gallery-thumbnails {
        grid-template-columns: repeat(3, 1fr);
    }

    .aircraft-gallery-thumbnails button {
        height: 76px;
    }

    .aircraft-detail-panel,
    .market-form-section,
    .market-success-card {
        padding: 25px;
    }

    .market-submit-process {
        grid-template-columns: repeat(2, 1fr);
    }

    .market-success-section {
        padding: 60px 0;
    }
}


/* ACEFLYT MARKETPLACE SELLER AGREEMENT V1 */
.market-agreement-hero {
    padding: 72px 0;
    background:
        radial-gradient(
            circle at 82% 20%,
            rgba(213, 165, 63, .22),
            transparent 28%
        ),
        linear-gradient(135deg, #061526, #0b2d4f);
    color: #fff;
}

.market-agreement-hero h1 {
    max-width: 900px;
    margin-bottom: 16px;
    font-size: clamp(2.5rem, 5vw, 4.6rem);
}

.market-agreement-hero p {
    max-width: 760px;
    margin-bottom: 0;
    color: rgba(255,255,255,.7);
}

.market-agreement-section {
    padding: 72px 0 96px;
    background: #f3f7fa;
}

.market-agreement-layout {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    align-items: start;
    gap: 28px;
}

.market-agreement-summary {
    position: sticky;
    top: 104px;
    display: grid;
    gap: 8px;
}

.market-agreement-summary > div {
    padding: 14px;
    border: 1px solid #dbe4eb;
    border-radius: 10px;
    background: #fff;
}

.market-agreement-summary small,
.market-agreement-summary strong {
    display: block;
}

.market-agreement-summary small {
    color: #5f7181;
}

.market-agreement-summary strong {
    margin-top: 4px;
}

.market-agreement-card {
    padding: 38px;
    border: 1px solid #dbe4eb;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 20px 50px rgba(5, 27, 49, .1);
}

.market-agreement-parties {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    overflow: hidden;
    margin-bottom: 25px;
    border: 1px solid #dbe4eb;
    border-radius: 10px;
    background: #dbe4eb;
}

.market-agreement-parties > div {
    padding: 17px;
    background: #fff;
}

.market-agreement-parties small,
.market-agreement-parties strong,
.market-agreement-parties span {
    display: block;
}

.market-agreement-parties small {
    color: #5f7181;
}

.market-agreement-parties strong {
    margin-top: 4px;
}

.market-agreement-parties span {
    margin-top: 3px;
    color: #5f7181;
}

.market-agreement-terms {
    max-height: 680px;
    margin-bottom: 28px;
    padding: 25px;
    overflow-y: auto;
    border: 1px solid #dbe4eb;
    border-radius: 11px;
    background: #fbfdfe;
    line-height: 1.65;
}

.market-agreement-acceptance-evidence {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 9px;
    margin: 26px 0;
}

.market-agreement-acceptance-evidence > div {
    padding: 13px;
    border: 1px solid #dbe4eb;
    border-radius: 9px;
}

.market-agreement-acceptance-evidence small,
.market-agreement-acceptance-evidence strong {
    display: block;
}

.market-agreement-acceptance-evidence small {
    color: #5f7181;
}

.market-agreement-acceptance-evidence strong {
    margin-top: 4px;
}

@media (max-width: 850px) {
    .market-agreement-layout {
        grid-template-columns: 1fr;
    }

    .market-agreement-summary {
        position: static;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 620px) {
    .market-agreement-card {
        padding: 24px;
    }

    .market-agreement-summary,
    .market-agreement-parties,
    .market-agreement-acceptance-evidence {
        grid-template-columns: 1fr;
    }
}
/* ACEFLYT MARKETPLACE SELLER AGREEMENT V1: END */


/* ACEFLYT MARKETPLACE PUBLIC PRESENTATION V2 */
.market-v2-catalogue-hero,
.market-v2-detail-header {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 78% 15%,
            rgba(213, 165, 63, .24),
            transparent 28%
        ),
        linear-gradient(135deg, #04101d, #0b355b);
    color: #fff;
}

.market-v2-catalogue-hero-inner {
    position: relative;
    z-index: 2;
    display: flex;
    min-height: 510px;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    padding-top: 82px;
    padding-bottom: 82px;
}

.market-v2-catalogue-hero h1 {
    max-width: 850px;
    margin: 13px 0 21px;
    color: #fff;
    font-size: clamp(3rem, 6vw, 5.7rem);
    line-height: .98;
}

.market-v2-catalogue-hero p {
    max-width: 720px;
    color: rgba(255,255,255,.72);
    font-size: 1.16rem;
}

.market-v2-hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 24px;
}

.market-v2-hero-points span {
    padding: 8px 11px;
    border: 1px solid rgba(255,255,255,.17);
    border-radius: 999px;
    background: rgba(255,255,255,.06);
    color: rgba(255,255,255,.78);
    font-size: .72rem;
    font-weight: 700;
}

.market-v2-hero-actions {
    display: grid;
    min-width: 225px;
    gap: 10px;
}

.market-v2-catalogue-section {
    padding: 78px 0 100px;
    background: #f2f6f8;
}

.market-v2-catalogue-heading,
.market-v2-section-heading,
.market-home-featured-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 34px;
}

.market-v2-catalogue-heading h2,
.market-v2-section-heading h2,
.market-home-featured-heading h2 {
    margin-bottom: 0;
    font-size: clamp(2rem, 4vw, 3.4rem);
}

.market-v2-quick-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.market-v2-quick-filters a {
    padding: 9px 13px;
    border: 1px solid #ccd9e1;
    border-radius: 999px;
    background: #fff;
    color: #345166;
    font-size: .76rem;
    font-weight: 800;
}

.market-v2-quick-filters a.is-active {
    border-color: #146995;
    background: #146995;
    color: #fff;
}

.market-v2-catalogue-layout {
    display: grid;
    align-items: start;
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 30px;
}

.market-v2-filter-panel {
    position: sticky;
    top: 100px;
    padding: 25px;
    border: 1px solid #d9e3e9;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 14px 38px rgba(5,27,49,.08);
}

.market-v2-filter-title {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 23px;
}

.market-v2-filter-title span {
    color: #146995;
    font-size: .65rem;
    font-weight: 900;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.market-v2-filter-title h3 {
    margin: 4px 0 0;
}

.market-v2-filter-title a {
    color: #146995;
    font-size: .72rem;
    font-weight: 800;
}

.market-v2-filter-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
}

.market-v2-aircraft-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.market-v2-aircraft-card {
    overflow: hidden;
    border: 1px solid #d9e3e9;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 16px 42px rgba(5,27,49,.08);
    transition:
        transform 180ms ease,
        box-shadow 180ms ease;
}

.market-v2-aircraft-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 58px rgba(5,27,49,.14);
}

.market-v2-aircraft-image {
    position: relative;
    display: block;
    height: 285px;
    overflow: hidden;
    background: #dce7ed;
}

.market-v2-aircraft-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 300ms ease;
}

.market-v2-aircraft-card:hover img {
    transform: scale(1.035);
}

.market-v2-image-badges {
    position: absolute;
    top: 15px;
    right: 15px;
    left: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.market-v2-image-badges span {
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(6,21,38,.84);
    color: #fff;
    font-size: .64rem;
    font-weight: 800;
    backdrop-filter: blur(5px);
}

.market-v2-image-badges .featured {
    background: #d5a53f;
    color: #392707;
}

.market-v2-aircraft-content {
    padding: 25px;
}

.market-v2-aircraft-reference {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    color: #657784;
    font-size: .68rem;
}

.market-v2-aircraft-content h3 {
    margin: 13px 0 4px;
    font-size: 1.55rem;
}

.market-v2-aircraft-variant {
    margin-bottom: 10px;
    color: #146995;
    font-size: .78rem;
    font-weight: 800;
}

.market-v2-aircraft-content > p {
    min-height: 58px;
    margin-bottom: 20px;
    font-size: .87rem;
}

.market-v2-spec-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    overflow: hidden;
    border: 1px solid #dce5ea;
    border-radius: 10px;
    background: #dce5ea;
}

.market-v2-spec-strip > div {
    min-width: 0;
    padding: 11px;
    background: #fff;
}

.market-v2-spec-strip small,
.market-v2-spec-strip strong {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.market-v2-spec-strip small {
    color: #687b88;
    font-size: .59rem;
    text-transform: uppercase;
}

.market-v2-spec-strip strong {
    margin-top: 3px;
    font-size: .73rem;
}

.market-v2-aircraft-footer {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 14px;
    margin-top: 21px;
}

.market-v2-aircraft-footer small,
.market-v2-aircraft-footer strong {
    display: block;
}

.market-v2-aircraft-footer small {
    color: #687b88;
    font-size: .62rem;
}

.market-v2-aircraft-footer strong {
    margin-top: 2px;
    font-size: 1.03rem;
}

.market-v2-aircraft-footer > a {
    color: #146995;
    font-size: .76rem;
    font-weight: 900;
}

.market-v2-aircraft-footer > a span {
    margin-left: 4px;
}

.market-v2-seller-band {
    padding: 0 0 100px;
    background: #f2f6f8;
}

.market-v2-seller-band-inner {
    display: flex;
    min-height: 300px;
    align-items: center;
    justify-content: space-between;
    gap: 42px;
    padding: 54px;
    border-radius: 24px;
    background:
        radial-gradient(
            circle at 85% 15%,
            rgba(213,165,63,.24),
            transparent 28%
        ),
        linear-gradient(135deg,#0b355b,#04101d);
    color: #fff;
}

.market-v2-seller-band h2 {
    color: #fff;
    font-size: clamp(2rem,4vw,3.25rem);
}

.market-v2-seller-band p {
    max-width: 730px;
    margin-bottom: 0;
    color: rgba(255,255,255,.68);
}

.market-v2-detail-header {
    padding: 48px 0 62px;
}

.market-v2-detail-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 45px;
}

.market-v2-detail-labels {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.market-v2-detail-labels span {
    padding: 7px 10px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 999px;
    background: rgba(255,255,255,.06);
    color: rgba(255,255,255,.77);
    font-size: .67rem;
    font-weight: 800;
}

.market-v2-detail-labels .featured {
    border-color: rgba(213,165,63,.45);
    color: #f0d491;
}

.market-v2-detail-heading h1 {
    margin: 15px 0 4px;
    color: #fff;
    font-size: clamp(2.7rem,5vw,5rem);
}

.market-v2-detail-heading h1 small {
    display: block;
    margin-bottom: 4px;
    color: #70d3e9;
    font-size: .31em;
    letter-spacing: .08em;
}

.market-v2-detail-variant {
    color: #70d3e9;
    font-size: 1.15rem;
    font-weight: 700;
}

.market-v2-detail-heading p {
    margin: 12px 0 0;
    color: rgba(255,255,255,.63);
}

.market-v2-detail-price {
    min-width: 280px;
    padding: 22px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 14px;
    background: rgba(255,255,255,.06);
    text-align: right;
}

.market-v2-detail-price small,
.market-v2-detail-price strong,
.market-v2-detail-price span {
    display: block;
}

.market-v2-detail-price small {
    color: rgba(255,255,255,.56);
}

.market-v2-detail-price strong {
    margin: 5px 0;
    color: #f0d491;
    font-size: 1.65rem;
}

.market-v2-detail-price span {
    color: rgba(255,255,255,.48);
    font-size: .7rem;
}

.market-v2-gallery-section {
    padding: 38px 0;
    background: #e9f0f4;
}

.market-v2-gallery {
    display: grid;
    gap: 11px;
}

.market-v2-gallery-primary {
    position: relative;
    width: 100%;
    height: min(66vw, 720px);
    padding: 0;
    overflow: hidden;
    border: 0;
    border-radius: 19px;
    background: #dce7ed;
    box-shadow: 0 22px 58px rgba(5,27,49,.16);
    cursor: zoom-in;
}

.market-v2-gallery-primary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.market-v2-gallery-expand {
    position: absolute;
    right: 18px;
    bottom: 18px;
    padding: 9px 13px;
    border-radius: 999px;
    background: rgba(6,21,38,.82);
    color: #fff;
    font-size: .72rem;
    font-weight: 800;
    backdrop-filter: blur(5px);
}

.market-v2-gallery-thumbnails {
    display: grid;
    grid-template-columns: repeat(7,minmax(0,1fr));
    gap: 8px;
}

.market-v2-gallery-thumbnails button {
    height: 90px;
    padding: 0;
    overflow: hidden;
    border: 3px solid transparent;
    border-radius: 9px;
    background: transparent;
}

.market-v2-gallery-thumbnails button.is-active {
    border-color: #1686b8;
}

.market-v2-gallery-thumbnails img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.market-v2-lightbox[hidden] {
    display: none;
}

.market-v2-lightbox {
    position: fixed;
    z-index: 6000;
    inset: 0;
    display: grid;
    place-items: center;
    background: rgba(2,8,14,.96);
}

.market-v2-lightbox > img {
    max-width: calc(100vw - 150px);
    max-height: calc(100vh - 90px);
    object-fit: contain;
}

.market-v2-lightbox-close {
    position: absolute;
    z-index: 2;
    top: 20px;
    right: 24px;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    color: #fff;
    font-size: 1.8rem;
}

.market-v2-lightbox-nav {
    position: absolute;
    z-index: 2;
    top: 50%;
    width: 52px;
    height: 52px;
    transform: translateY(-50%);
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    color: #fff;
    font-size: 2.2rem;
}

.market-v2-lightbox-nav.previous {
    left: 25px;
}

.market-v2-lightbox-nav.next {
    right: 25px;
}

.market-v2-lightbox-counter {
    position: absolute;
    bottom: 20px;
    padding: 7px 11px;
    border-radius: 999px;
    background: rgba(255,255,255,.09);
    color: #fff;
    font-size: .72rem;
}

.market-v2-specification-band {
    padding: 0 0 42px;
    background: #e9f0f4;
}

.market-v2-specification-grid {
    display: grid;
    grid-template-columns: repeat(6,1fr);
    gap: 1px;
    overflow: hidden;
    border: 1px solid #d3dfe6;
    border-radius: 13px;
    background: #d3dfe6;
    box-shadow: 0 14px 36px rgba(5,27,49,.08);
}

.market-v2-specification-grid > div {
    min-width: 0;
    padding: 18px;
    background: #fff;
}

.market-v2-specification-grid small,
.market-v2-specification-grid strong {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
}

.market-v2-specification-grid small {
    color: #697b88;
    font-size: .62rem;
    text-transform: uppercase;
}

.market-v2-specification-grid strong {
    margin-top: 5px;
    font-size: .83rem;
}

.market-v2-detail-section {
    padding: 72px 0 95px;
    background: #f3f7fa;
}

.market-v2-detail-layout {
    display: grid;
    align-items: start;
    grid-template-columns: minmax(0,1fr) 390px;
    gap: 30px;
}

.market-v2-detail-main {
    display: grid;
    gap: 20px;
}

.market-v2-content-panel {
    padding: 36px;
    border: 1px solid #d9e3e9;
    border-radius: 17px;
    background: #fff;
    box-shadow: 0 14px 38px rgba(5,27,49,.07);
}

.market-v2-content-panel h2 {
    font-size: 1.85rem;
}

.market-v2-rich-copy {
    line-height: 1.7;
}

.market-v2-rich-copy p:last-child {
    margin-bottom: 0;
}

.market-v2-data-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 1px;
    overflow: hidden;
    border: 1px solid #dbe4e9;
    border-radius: 11px;
    background: #dbe4e9;
}

.market-v2-data-grid > div {
    min-height: 84px;
    padding: 16px;
    background: #fff;
}

.market-v2-data-grid small,
.market-v2-data-grid strong {
    display: block;
}

.market-v2-data-grid small {
    color: #687b88;
    font-size: .66rem;
}

.market-v2-data-grid strong {
    margin-top: 5px;
    font-size: .86rem;
}

.market-v2-accordion {
    display: grid;
    gap: 8px;
}

.market-v2-accordion details {
    border: 1px solid #d9e3e9;
    border-radius: 10px;
    background: #fbfdfe;
}

.market-v2-accordion summary {
    padding: 17px;
    color: #0b2d4f;
    font-weight: 800;
    cursor: pointer;
}

.market-v2-accordion details > div {
    padding: 0 17px 17px;
    color: #405464;
    line-height: 1.65;
}

.market-v2-download-list {
    display: grid;
    gap: 8px;
}

.market-v2-download-list a {
    display: grid;
    grid-template-columns: 44px 1fr auto;
    align-items: center;
    gap: 13px;
    padding: 14px;
    border: 1px solid #d9e3e9;
    border-radius: 10px;
    transition:
        border-color 160ms ease,
        background 160ms ease;
}

.market-v2-download-list a:hover {
    border-color: #1686b8;
    background: #f5fbfd;
}

.market-v2-download-icon {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 9px;
    background: #0b2d4f;
    color: #f0d491;
    font-size: 1.1rem;
    font-weight: 900;
}

.market-v2-download-list strong,
.market-v2-download-list small {
    display: block;
}

.market-v2-download-list small {
    color: #687b88;
}

.market-v2-download-action {
    color: #146995;
    font-size: .72rem;
    font-weight: 800;
}

.market-v2-disclaimer {
    padding: 21px;
    border: 1px solid #dfc27f;
    border-radius: 11px;
    background: #fff9eb;
}

.market-v2-disclaimer p {
    margin: 6px 0 0;
    color: #66511d;
    font-size: .83rem;
}

.market-v2-enquiry-card {
    position: sticky;
    top: 100px;
    padding: 28px;
    border: 1px solid #ddc077;
    border-radius: 17px;
    background: #fffaf0;
    box-shadow: 0 19px 48px rgba(5,27,49,.14);
}

.market-v2-enquiry-heading h2 {
    margin-bottom: 8px;
}

.market-v2-enquiry-heading p {
    font-size: .86rem;
}

.market-v2-enquiry-aircraft {
    margin-bottom: 21px;
    padding: 13px;
    border: 1px solid #ead39c;
    border-radius: 9px;
    background: #fff;
}

.market-v2-enquiry-aircraft strong,
.market-v2-enquiry-aircraft span {
    display: block;
}

.market-v2-enquiry-aircraft span {
    margin-top: 3px;
    color: #697b88;
    font-size: .7rem;
}

.market-v2-similar-section {
    padding: 76px 0 96px;
    background: #fff;
}

.market-v2-section-heading > a {
    color: #146995;
    font-weight: 800;
}

.market-v2-similar-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 18px;
}

.market-v2-similar-grid article {
    overflow: hidden;
    border: 1px solid #d9e3e9;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(5,27,49,.07);
}

.market-v2-similar-image {
    display: block;
    height: 220px;
    overflow: hidden;
    background: #dce7ed;
}

.market-v2-similar-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.market-v2-similar-grid article > div {
    padding: 18px;
}

.market-v2-similar-grid small {
    color: #146995;
    font-size: .65rem;
    font-weight: 800;
    text-transform: uppercase;
}

.market-v2-similar-grid h3 {
    margin: 8px 0;
    font-size: 1.18rem;
}

.market-home-featured-section {
    padding: 90px 0;
    background: #f2f6f8;
}

.market-home-featured-heading p {
    max-width: 720px;
    margin-bottom: 0;
}

.market-home-featured-actions {
    display: flex;
    gap: 9px;
}

.market-home-aircraft-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
}

.market-home-aircraft-grid article {
    overflow: hidden;
    border: 1px solid #d9e3e9;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 15px 38px rgba(5,27,49,.08);
}

.market-home-aircraft-image {
    position: relative;
    display: block;
    height: 230px;
    overflow: hidden;
    background: #dce7ed;
}

.market-home-aircraft-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.market-home-featured-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 7px 10px;
    border-radius: 999px;
    background: #d5a53f;
    color: #392707;
    font-size: .64rem;
    font-weight: 900;
}

.market-home-aircraft-content {
    padding: 20px;
}

.market-home-aircraft-content > small {
    color: #146995;
    font-size: .65rem;
    font-weight: 800;
    text-transform: uppercase;
}

.market-home-aircraft-content h3 {
    margin: 10px 0 18px;
}

.market-home-aircraft-content > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.market-home-aircraft-content > div > a {
    color: #146995;
    font-size: .73rem;
    font-weight: 800;
}

.market-home-empty {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 32px;
    border: 1px dashed #b9cad5;
    border-radius: 14px;
    background: #fff;
}

.market-home-empty p {
    margin: 5px 0 0;
}

body.market-lightbox-open {
    overflow: hidden;
}

@media (max-width: 1080px) {
    .market-v2-catalogue-layout {
        grid-template-columns: 260px minmax(0,1fr);
    }

    .market-v2-detail-layout {
        grid-template-columns: minmax(0,1fr) 340px;
    }

    .market-v2-specification-grid {
        grid-template-columns: repeat(3,1fr);
    }

    .market-v2-data-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

@media (max-width: 850px) {
    .market-v2-catalogue-hero-inner,
    .market-v2-detail-heading,
    .market-v2-seller-band-inner,
    .market-v2-catalogue-heading,
    .market-v2-section-heading,
    .market-home-featured-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .market-v2-catalogue-layout,
    .market-v2-detail-layout {
        grid-template-columns: 1fr;
    }

    .market-v2-filter-panel,
    .market-v2-enquiry-card {
        position: static;
    }

    .market-v2-aircraft-grid {
        grid-template-columns: 1fr;
    }

    .market-v2-detail-price {
        width: 100%;
        text-align: left;
    }

    .market-v2-gallery-thumbnails {
        grid-template-columns: repeat(5,1fr);
    }

    .market-v2-similar-grid,
    .market-home-aircraft-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

@media (max-width: 620px) {
    .market-v2-hero-actions,
    .market-home-featured-actions {
        width: 100%;
        flex-direction: column;
    }

    .market-v2-filter-pair,
    .market-v2-specification-grid,
    .market-v2-data-grid,
    .market-v2-similar-grid,
    .market-home-aircraft-grid {
        grid-template-columns: 1fr;
    }

    .market-v2-aircraft-image {
        height: 235px;
    }

    .market-v2-gallery-primary {
        height: 340px;
    }

    .market-v2-gallery-thumbnails {
        grid-template-columns: repeat(3,1fr);
    }

    .market-v2-gallery-thumbnails button {
        height: 74px;
    }

    .market-v2-lightbox > img {
        max-width: calc(100vw - 30px);
        max-height: calc(100vh - 110px);
    }

    .market-v2-lightbox-nav {
        top: auto;
        bottom: 18px;
    }

    .market-v2-lightbox-nav.previous {
        left: 18px;
    }

    .market-v2-lightbox-nav.next {
        right: 18px;
    }

    .market-v2-content-panel {
        padding: 24px;
    }

    .market-home-empty {
        align-items: flex-start;
        flex-direction: column;
    }
}
/* ACEFLYT MARKETPLACE PUBLIC PRESENTATION V2: END */


/* ACEFLYT MARKETPLACE PREMIUM BROKERAGE COMPLETION V1 */
.market-v2-image-badges > div {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.market-v2-image-badges .new-listing,
.market-v2-detail-labels .new-listing {
    border-color: #76d4c1;
    background: #dff7f0;
    color: #12634f;
}

.market-v2-card-tools {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 12px;
}

.market-v2-card-tools > a,
.market-v2-card-tools > span {
    overflow: hidden;
    color: #146995;
    font-size: .67rem;
    font-weight: 800;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.market-v2-card-tools label {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 6px;
    color: #425a69;
    font-size: .68rem;
    font-weight: 800;
    cursor: pointer;
}

.market-v2-card-tools input {
    width: 16px;
    height: 16px;
    accent-color: #146995;
}

.market-compare-bar {
    position: fixed;
    z-index: 3000;
    right: 20px;
    bottom: 20px;
    left: 20px;
    display: flex;
    max-width: 920px;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    margin: auto;
    padding: 16px 18px;
    border: 1px solid rgba(213,165,63,.68);
    border-radius: 14px;
    background:
        linear-gradient(135deg,#061526,#0b355b);
    color: #fff;
    box-shadow: 0 18px 55px rgba(3,16,29,.38);
}

.market-compare-bar[hidden] {
    display: none;
}

.market-compare-bar strong,
.market-compare-bar span {
    display: block;
}

.market-compare-bar strong {
    color: #f0d491;
}

.market-compare-bar span {
    margin-top: 2px;
    color: rgba(255,255,255,.62);
    font-size: .72rem;
}

.market-compare-bar > div:last-child {
    display: flex;
    gap: 8px;
}

.market-v2-detail-tools {
    display: grid;
    gap: 7px;
    margin-top: 14px;
    text-align: left;
}

.market-v2-detail-tools a,
.market-v2-detail-tools button {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 7px;
    background: rgba(255,255,255,.06);
    color: #fff;
    font: inherit;
    font-size: .7rem;
    font-weight: 800;
    text-align: left;
    cursor: pointer;
}

.market-v2-detail-tools a:hover,
.market-v2-detail-tools button:hover {
    border-color: #d5a53f;
    background: rgba(213,165,63,.14);
}

.market-v2-buyer-actions {
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 7px;
    margin-bottom: 20px;
}

.market-v2-buyer-actions a {
    padding: 9px 10px;
    border: 1px solid #e4ce98;
    border-radius: 7px;
    background: #fff;
    color: #765319;
    font-size: .67rem;
    font-weight: 800;
    text-align: center;
}

.market-v2-buyer-actions a.is-active {
    border-color: #0b2d4f;
    background: #0b2d4f;
    color: #fff;
}

.market-manufacturer-hero,
.market-compare-hero {
    padding: 58px 0 72px;
    background:
        radial-gradient(
            circle at 82% 18%,
            rgba(213,165,63,.23),
            transparent 28%
        ),
        linear-gradient(135deg,#04101d,#0b355b);
    color: #fff;
}

.market-manufacturer-hero h1,
.market-compare-hero h1 {
    max-width: 900px;
    margin: 12px 0 15px;
    color: #fff;
    font-size: clamp(2.7rem,5.5vw,5.2rem);
}

.market-manufacturer-hero p,
.market-compare-hero p {
    max-width: 760px;
    color: rgba(255,255,255,.7);
}

.market-manufacturer-stat {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    margin-top: 22px;
    padding: 12px 15px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 999px;
    background: rgba(255,255,255,.06);
}

.market-manufacturer-stat strong {
    color: #f0d491;
    font-size: 1.4rem;
}

.market-manufacturer-stat span {
    color: rgba(255,255,255,.7);
    font-size: .76rem;
}

.market-manufacturer-section {
    padding: 75px 0 100px;
    background: #f2f6f8;
}

.market-manufacturer-layout {
    display: grid;
    align-items: start;
    grid-template-columns: 280px minmax(0,1fr);
    gap: 30px;
}

.market-manufacturer-navigation {
    position: sticky;
    top: 100px;
    overflow: hidden;
    border: 1px solid #d9e3e9;
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 14px 38px rgba(5,27,49,.08);
}

.market-manufacturer-navigation > div {
    padding: 20px;
    border-bottom: 1px solid #d9e3e9;
}

.market-manufacturer-navigation > div span {
    color: #146995;
    font-size: .63rem;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.market-manufacturer-navigation h2 {
    margin: 5px 0 0;
    font-size: 1.2rem;
}

.market-manufacturer-navigation nav {
    max-height: 620px;
    overflow-y: auto;
}

.market-manufacturer-navigation nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 11px 17px;
    border-bottom: 1px solid #eef2f4;
    color: #324b5b;
    font-size: .75rem;
}

.market-manufacturer-navigation nav a:last-child {
    border-bottom: 0;
}

.market-manufacturer-navigation nav a.is-active {
    background: #eaf6fa;
    color: #0e648d;
    font-weight: 900;
}

.market-manufacturer-navigation nav strong {
    display: grid;
    min-width: 25px;
    height: 25px;
    place-items: center;
    border-radius: 999px;
    background: #eff4f7;
    font-size: .65rem;
}

.market-compare-section {
    padding: 70px 0 100px;
    background: #f2f6f8;
}

.market-compare-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    margin-bottom: 25px;
}

.market-compare-heading > div {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.market-compare-heading strong {
    color: #0b2d4f;
    font-size: 2rem;
}

.market-compare-heading span {
    color: #657784;
}

.market-compare-table-wrap {
    margin-bottom: 24px;
    overflow-x: auto;
    border: 1px solid #d5e0e6;
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 16px 44px rgba(5,27,49,.09);
}

.market-compare-table {
    width: 100%;
    min-width: 900px;
    border-collapse: collapse;
}

.market-compare-table th,
.market-compare-table td {
    min-width: 210px;
    padding: 15px;
    border-right: 1px solid #dfe7ec;
    border-bottom: 1px solid #dfe7ec;
    vertical-align: top;
    text-align: left;
}

.market-compare-table tr > *:last-child {
    border-right: 0;
}

.market-compare-table tbody tr:last-child > * {
    border-bottom: 0;
}

.market-compare-table thead th {
    background: #f8fbfc;
}

.market-compare-table thead th:first-child,
.market-compare-table tbody th {
    position: sticky;
    z-index: 2;
    left: 0;
    min-width: 190px;
    background: #f4f8fa;
    color: #3c5666;
    font-size: .72rem;
}

.market-compare-aircraft {
    display: grid;
    gap: 7px;
}

.market-compare-image {
    display: block;
    height: 165px;
    margin-bottom: 6px;
    overflow: hidden;
    border-radius: 9px;
    background: #dce7ed;
}

.market-compare-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.market-compare-aircraft small {
    color: #146995;
    font-size: .62rem;
    font-weight: 800;
    text-transform: uppercase;
}

.market-compare-aircraft h2 {
    margin: 0;
    font-size: 1.18rem;
}

.market-compare-aircraft > span {
    color: #687b88;
    font-size: .72rem;
}

.market-compare-aircraft > strong {
    color: #0b2d4f;
}

.market-compare-aircraft > a:last-child {
    color: #146995;
    font-size: .7rem;
    font-weight: 900;
}

.market-compare-section-row th {
    position: static !important;
    background: #0b2d4f !important;
    color: #fff !important;
    font-size: .75rem !important;
    letter-spacing: .08em;
    text-transform: uppercase;
}

@media (max-width: 850px) {
    .market-manufacturer-layout {
        grid-template-columns: 1fr;
    }

    .market-manufacturer-navigation {
        position: static;
    }

    .market-manufacturer-navigation nav {
        max-height: 310px;
    }
}

@media (max-width: 620px) {
    .market-compare-bar {
        right: 10px;
        bottom: 10px;
        left: 10px;
        align-items: stretch;
        flex-direction: column;
        gap: 12px;
    }

    .market-compare-bar > div:last-child {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .market-v2-buyer-actions {
        grid-template-columns: 1fr;
    }

    .market-compare-heading {
        align-items: flex-start;
        flex-direction: column;
    }
}
/* ACEFLYT MARKETPLACE PREMIUM BROKERAGE COMPLETION V1: END */
