.used-equipment-page {
    min-width: 0;
    color: #eef6fb;
    background: #07111d;
}

.used-equipment-page a {
    color: inherit;
}

.used-equipment-page .site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    border-bottom: 1px solid rgba(62, 150, 197, 0.18);
    background: rgba(7, 17, 31, 0.9);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
}

.used-equipment-page .site-nav {
    position: static;
    display: flex;
    max-width: 1180px;
    margin: 0 auto;
    padding: 1rem clamp(1rem, 3vw, 1.5rem);
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.used-equipment-page .site-nav > a {
    display: inline-flex;
    flex: 0 0 auto;
}

.used-equipment-page .site-nav img {
    display: block;
    width: 186px;
    max-width: 48vw;
    height: auto;
}

.used-equipment-page .nav-links {
    display: flex;
    align-items: center;
    gap: clamp(0.9rem, 2vw, 1.8rem);
    color: rgba(238, 246, 255, 0.78);
    font-size: 0.95rem;
    font-weight: 700;
}

.used-equipment-page .nav-links a {
    white-space: nowrap;
    text-decoration: none;
    transition: color 0.2s ease;
}

.used-equipment-page .nav-links a:hover,
.used-equipment-page .nav-links a:focus-visible {
    color: #68dcff;
}

.used-equipment-page main {
    overflow: hidden;
}

.used-equipment-container {
    width: min(100% - 48px, 1180px);
    margin-inline: auto;
}

.used-page-hero {
    padding: 8.5rem 0 4.5rem;
    border-bottom: 1px solid rgba(76, 148, 188, 0.2);
    background: linear-gradient(145deg, #07111d 0%, #0a1828 58%, #07111d 100%);
}

.used-page-breadcrumb {
    position: static;
    inset: auto;
    width: auto;
    max-width: none;
    margin-bottom: 1.5rem;
}

.used-page-breadcrumb ol {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
    list-style: none;
    color: rgba(205, 222, 232, 0.66);
    font-size: 0.88rem;
}

.used-page-breadcrumb li + li::before {
    content: '/';
    margin-right: 0.5rem;
    color: rgba(255, 139, 59, 0.66);
}

.used-page-breadcrumb a {
    color: #bfeaff;
    text-decoration: none;
}

.used-page-eyebrow {
    display: block;
    margin-bottom: 0.75rem;
    color: #ff9a4d;
    font-family: 'Poppins', 'Noto Sans TC', sans-serif;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.used-page-hero h1 {
    max-width: 980px;
    margin: 0;
    color: #f7fbff;
    font-size: clamp(2.25rem, 5vw, 4.25rem);
    font-weight: 800;
    line-height: 1.16;
    letter-spacing: 0;
}

.used-page-intro {
    max-width: 820px;
    margin: 1.25rem 0 0;
    color: rgba(218, 231, 239, 0.82);
    font-size: clamp(1rem, 1.5vw, 1.16rem);
    line-height: 1.85;
}

.used-equipment-section {
    padding: 4.5rem 0;
    background: #07111d;
}

.used-equipment-section--muted {
    border-block: 1px solid rgba(76, 148, 188, 0.16);
    background: #091522;
}

.used-section-heading {
    margin-bottom: 2rem;
}

.used-section-heading h2 {
    margin: 0;
    color: #f5f9fc;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    line-height: 1.25;
}

.used-section-heading p {
    max-width: 760px;
    margin: 0.75rem 0 0;
    color: rgba(202, 219, 229, 0.74);
    line-height: 1.75;
}

.used-equipment-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}

.used-equipment-card {
    display: flex;
    min-width: 0;
    overflow: hidden;
    border: 1px solid rgba(69, 159, 209, 0.28);
    border-radius: 8px;
    background: rgba(10, 24, 39, 0.94);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.26);
    flex-direction: column;
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.used-equipment-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 145, 70, 0.62);
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.32);
}

.used-equipment-card__media {
    display: grid;
    min-height: 320px;
    padding: 1rem;
    place-items: center;
    border-bottom: 1px solid rgba(69, 159, 209, 0.18);
    background: #050c15;
}

.used-equipment-card__media img {
    display: block;
    width: 100%;
    height: 300px;
    max-width: 100%;
    object-fit: contain;
}

.used-equipment-card__body {
    display: flex;
    padding: 1.5rem;
    flex: 1;
    flex-direction: column;
}

.used-equipment-card__brand {
    margin: 0 0 0.45rem;
    color: #71d9ff;
    font-family: 'Poppins', 'Noto Sans TC', sans-serif;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.used-equipment-card h2,
.used-equipment-card h3 {
    margin: 0;
    color: #f8fbff;
    font-size: clamp(1.35rem, 2.3vw, 1.8rem);
    font-weight: 800;
    line-height: 1.3;
}

.used-equipment-card__type {
    margin: 0.6rem 0 0;
    color: #ffae70;
    font-size: 0.92rem;
    font-weight: 700;
}

.used-equipment-card__description {
    margin: 0.85rem 0 1.25rem;
    color: rgba(211, 226, 235, 0.78);
    line-height: 1.72;
}

.used-equipment-link {
    display: inline-flex;
    min-height: 44px;
    margin-top: auto;
    padding: 0.65rem 1rem;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    border: 1px solid rgba(255, 145, 70, 0.72);
    border-radius: 999px;
    color: #ffe6d2;
    background: rgba(255, 126, 41, 0.08);
    font-weight: 800;
    text-decoration: none;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.used-equipment-link:hover,
.used-equipment-link:focus-visible {
    transform: translateY(-2px);
    border-color: #ff9a4d;
    background: rgba(255, 126, 41, 0.14);
    outline: none;
}

.used-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
    gap: 2rem;
    align-items: start;
}

.used-photo-gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.used-photo-gallery figure {
    display: grid;
    min-width: 0;
    min-height: 300px;
    margin: 0;
    padding: 0.75rem;
    overflow: hidden;
    border: 1px solid rgba(69, 159, 209, 0.24);
    border-radius: 8px;
    place-items: center;
    background: #050c15;
}

.used-photo-gallery img {
    display: block;
    width: 100%;
    height: 360px;
    max-width: 100%;
    object-fit: contain;
}

.used-photo-gallery--pe2 figure {
    grid-column: 1 / -1;
}

.used-spec-panel {
    position: sticky;
    top: 6.5rem;
    overflow: hidden;
    border: 1px solid rgba(255, 145, 70, 0.3);
    border-radius: 8px;
    background: rgba(10, 23, 38, 0.96);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
}

.used-spec-panel h2 {
    margin: 0;
    padding: 1.25rem 1.35rem;
    border-bottom: 1px solid rgba(69, 159, 209, 0.18);
    color: #f7fbff;
    font-size: 1.35rem;
}

.used-spec-list {
    margin: 0;
}

.used-spec-row {
    display: grid;
    grid-template-columns: minmax(110px, 0.42fr) minmax(0, 0.58fr);
    gap: 1rem;
    padding: 0.95rem 1.35rem;
    border-bottom: 1px solid rgba(69, 159, 209, 0.12);
}

.used-spec-row:last-child {
    border-bottom: 0;
}

.used-spec-row dt {
    color: rgba(155, 211, 238, 0.8);
    font-weight: 700;
}

.used-spec-row dd {
    margin: 0;
    color: #f0f6fa;
    line-height: 1.55;
}

.used-equipment-notice {
    margin-top: 2rem;
    padding: 1.25rem 1.35rem;
    border-left: 3px solid #ff8a3d;
    border-radius: 0 8px 8px 0;
    color: rgba(224, 235, 241, 0.84);
    background: rgba(255, 126, 41, 0.07);
    line-height: 1.78;
}

.used-contact-panel {
    padding: 3rem 0;
    border-top: 1px solid rgba(76, 148, 188, 0.18);
    background: #050d17;
}

.used-contact-panel__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.used-contact-panel h2 {
    margin: 0;
    color: #f7fbff;
    font-size: clamp(1.55rem, 3vw, 2.1rem);
}

.used-contact-panel p {
    margin: 0.65rem 0 0;
    color: rgba(205, 222, 232, 0.74);
    line-height: 1.7;
}

.used-contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: flex-end;
}

.used-contact-action {
    display: inline-flex;
    min-height: 44px;
    padding: 0.65rem 1rem;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(88, 176, 220, 0.42);
    border-radius: 999px;
    color: #e8f8ff;
    background: rgba(10, 27, 44, 0.82);
    font-weight: 800;
    text-decoration: none;
}

.used-contact-action--primary {
    border-color: rgba(255, 145, 70, 0.76);
    color: #fff1e6;
    background: rgba(255, 126, 41, 0.12);
}

.used-contact-action:hover,
.used-contact-action:focus-visible {
    border-color: #fff;
    outline: none;
}

@media (max-width: 900px) {
    .used-equipment-grid,
    .used-detail-layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .used-spec-panel {
        position: static;
    }

    .used-contact-panel__inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .used-contact-actions {
        justify-content: flex-start;
    }
}

@media (max-width: 640px) {
    .used-equipment-container {
        width: min(100% - 32px, 1180px);
    }

    .used-page-hero {
        padding: 6.5rem 0 3rem;
    }

    .used-page-hero h1 {
        font-size: 1.85rem;
    }

    .used-equipment-page .site-nav {
        align-items: flex-start;
        flex-direction: column;
    }

    .used-equipment-page .nav-links {
        width: 100%;
        justify-content: space-between;
        gap: 0.55rem;
        font-size: 0.78rem;
    }

    .used-equipment-page .site-nav .theme-toggle {
        position: absolute;
        top: 1rem;
        right: 1rem;
    }

    .used-equipment-section {
        padding: 3rem 0;
    }

    .used-equipment-card__media {
        min-height: 240px;
        padding: 0.75rem;
    }

    .used-equipment-card__media img {
        height: 230px;
    }

    .used-photo-gallery {
        grid-template-columns: minmax(0, 1fr);
    }

    .used-photo-gallery--pe2 figure {
        grid-column: auto;
    }

    .used-photo-gallery figure {
        min-height: 260px;
    }

    .used-photo-gallery img {
        height: auto;
        max-height: 420px;
    }

    .used-spec-row {
        grid-template-columns: minmax(0, 1fr);
        gap: 0.3rem;
    }

    .used-contact-actions {
        width: 100%;
        flex-direction: column;
    }

    .used-contact-action,
    .used-equipment-link {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .used-equipment-card,
    .used-equipment-link {
        transition: none;
    }
}
