/* Wearables (Smart Watch) Repair Services page
Uses the existing JD Phones colour, type, button, header and footer system.
Mirrors the audio page layout so the two service pages look like a set. */

.wearable-page {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 88% 7%, rgba(255, 59, 10, .07), transparent 20%),
        radial-gradient(circle at 8% 46%, rgba(255, 59, 10, .035), transparent 22%),
        var(--ink);
}

.wearable-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 28px;
    color: #78859b;
    font-size: .75rem;
    font-weight: 650;
}

.wearable-breadcrumb a {
    transition: color .2s ease;
}

.wearable-breadcrumb a:hover {
    color: var(--orange);
}

.wearable-breadcrumb strong {
    color: #d7dce5;
    font-weight: 700;
}

.wearable-hero {
    position: relative;
    display: grid;
    min-height: 650px;
    grid-template-columns: minmax(0, 1.08fr) minmax(380px, .92fr);
    align-items: center;
    gap: clamp(44px, 6vw, 88px);
    margin-top: 24px;
    padding: clamp(48px, 6vw, 82px);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 30px;
    background: var(--panel);
    box-shadow: 0 34px 90px rgba(0, 0, 0, .3), inset 0 1px 0 rgba(255, 255, 255, .035);
    isolation: isolate;
}

.wearable-hero::before {
    display: none;
}

.wearable-hero-copy {
    position: relative;
    z-index: 3;
    max-width: 720px;
}

.wearable-eyebrow,
.wearable-section-heading>span{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--orange);
    font-size: .72rem;
    font-weight: 820;
    letter-spacing: .13em;
    line-height: 1.2;
    text-transform: uppercase;
}

.wearable-eyebrow::before,
.wearable-section-heading>span::before {
    content: "";
    width: 22px;
    height: 2px;
    border-radius: 99px;
    background: var(--orange);
    box-shadow: 0 0 16px rgba(255, 59, 10, .5);
}

.wearable-hero h1 {
    max-width: 720px;
    margin: 22px 0 0;
    font-size: clamp(3rem, 4.5vw, 5.25rem);
    font-weight: 820;
    line-height: .98;
    letter-spacing: -.065em;
}

.wearable-hero h1 span {
    color: var(--orange);
}

.wearable-hero-copy>p {
    max-width: 660px;
    margin: 26px 0 0;
    color: #b9c1cf;
    font-size: clamp(1rem, .94rem + .24vw, 1.18rem);
    line-height: 1.7;
}

.wearable-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.wearable-trust-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 22px;
    margin: 28px 0 0;
    padding: 0;
    color: #d8dde6;
    font-size: .78rem;
    font-weight: 650;
    list-style: none;
}

.wearable-trust-list li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.wearable-trust-list li::before {
    content: "";
    width: 7px;
    height: 7px;
    flex: 0 0 7px;
    border-radius: 50%;
    background: var(--orange);
    box-shadow: 0 0 12px rgba(255, 59, 10, .55);
}

.wearable-hero-visual {
    position: relative;
    display: grid;
    min-height: 510px;
    place-items: center;
}

.wearable-hero-visual img {
    display: none;
}

.wearable-device {
    position: relative;
    z-index: 4;
    width: min(78%, 380px);
    animation: audio-detail-float 5.4s ease-in-out infinite;
    filter: drop-shadow(0 34px 32px rgba(0, 0, 0, .44));
}

.wearable-device-body {
    position: relative;
    padding: 22px;
    border: 1px solid #35425a;
    border-radius: 22px;
    background: linear-gradient(155deg, #0e1a30, #050b17);
    box-shadow: inset 0 0 0 2px #111b2f;
}

.wearable-device-top {
    display: flex;
    align-items: center;
    gap: 10px;
}

.wearable-device-top i {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--orange);
    box-shadow: 0 0 12px rgba(255, 59, 10, .6);
}

.wearable-device-top b {
    color: #6f7d92;
    font-size: .5rem;
    font-weight: 780;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.wearable-device-vents {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    gap: 4px;
    margin-top: 18px;
}

.wearable-device-vents i {
    height: 14px;
    border-radius: 2px;
    background: #16233c;
}

.wearable-diagnostic-row {
    display: grid;
    grid-template-columns: 34px 1fr auto;
    gap: 11px;
    align-items: center;
    margin-top: 20px;
    padding: 11px 13px;
    border: 1px solid #263550;
    border-radius: 11px;
    background: var(--panel-light);
}

.wearable-diagnostic-row>i {
    position: relative;
    width: 30px;
    height: 30px;
    border: 1px solid rgba(255, 59, 10, .45);
    border-radius: 50%;
    background: rgba(255, 59, 10, .08);
}

.wearable-diagnostic-row>i::before {
    content: "";
    position: absolute;
    top: 9px;
    left: 8px;
    width: 8px;
    height: 5px;
    border-bottom: 2px solid var(--orange);
    border-left: 2px solid var(--orange);
    transform: rotate(-45deg);
}

.wearable-diagnostic-row b {
    display: block;
    color: #eef1f6;
    font-size: .64rem;
}

.wearable-diagnostic-row small {
    display: block;
    margin-top: 2px;
    color: #8490a5;
    font-size: .52rem;
}

.wearable-diagnostic-row em {
    color: #5d6c82;
    font-size: .52rem;
    font-style: normal;
    font-weight: 760;
}

.wearable-diagnostic-bars {
    display: grid;
    grid-template-columns: 1fr .72fr .45fr;
    gap: 7px;
    margin-top: 14px;
}

.wearable-diagnostic-bars i {
    height: 3px;
    border-radius: 99px;
    background: #293750;
}

.wearable-diagnostic-bars i:first-child {
    background: var(--orange);
}

.wearable-controller {
    position: relative;
    z-index: 5;
    width: min(46%, 175px);
    margin: -26px auto 0;
}

.wearable-controller svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 18px 20px rgba(0, 0, 0, .4));
}

.wearable-hero-status {
    position: absolute;
    z-index: 7;
    right: 50%;
    bottom: 2%;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 9px 13px;
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 99px;
    background: rgba(3, 12, 29, .72);
    color: #aeb7c6;
    font-size: .68rem;
    font-weight: 650;
    transform: translateX(50%);
    white-space: nowrap;
}

.wearable-hero-status span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--orange);
    box-shadow: 0 0 12px rgba(255, 59, 10, .7);
}

@keyframes audio-detail-float {

    0%,
    100% {
        transform: translateY(0) rotate(-1deg);
    }

    50% {
        transform: translateY(-12px) rotate(1deg);
    }
}

.wearable-page-nav {
    z-index: 20;
    top: 80px;
    margin-top: 28px;
    border-block: 1px solid rgba(255, 255, 255, .045);
    background: rgba(2, 11, 26, .9);
    backdrop-filter: blur(16px);
}

.wearable-page-nav .section-shell {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(20px, 4vw, 54px);
    min-height: 54px;
}

.wearable-page-nav a {
    position: relative;
    padding-block: 18px;
    color: #929daf;
    font-size: .72rem;
    font-weight: 720;
    white-space: nowrap;
    transition: color .2s ease;
}

.wearable-page-nav a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -1px;
    left: 0;
    height: 2px;
    background: var(--orange);
    transform: scaleX(0);
    transition: transform .2s ease;
}

.wearable-page-nav a:hover {
    color: #fff;
}

.wearable-page-nav a:hover::after {
    transform: scaleX(1);
}

.wearable-proof {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 54px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .055);
    border-radius: 20px;
    background: var(--panel);
    box-shadow: var(--shadow);
}

.wearable-proof article {
    position: relative;
    padding: 28px 26px;
    text-align: center;
}

.wearable-proof article+article::before {
    content: "";
    position: absolute;
    top: 24%;
    bottom: 24%;
    left: 0;
    width: 1px;
    background: var(--line);
}

.wearable-proof strong {
    display: block;
    color: var(--orange);
    font-size: clamp(1.4rem, 1.1rem + .7vw, 2rem);
    font-weight: 820;
    letter-spacing: -.04em;
}

.wearable-proof span {
    display: block;
    margin-top: 5px;
    color: #929caf;
    font-size: .75rem;
    font-weight: 620;
}

.wearable-services,
.wearable-guides,
.wearable-brands,
.wearable-faq,
.wearable-locations {
    padding-block: 108px 0;
}

.wearable-section-heading {
    max-width: 720px;
}

.wearable-section-heading-centered {
    margin-inline: auto;
    text-align: center;
}

.wearable-section-heading-centered>span {
    justify-content: center;
}

.wearable-section-heading h2,
.wearable-final-cta h2 {
    margin: 15px 0 0;
    font-size: clamp(2.25rem, 1.7rem + 2vw, 4rem);
    font-weight: 810;
    line-height: 1.05;
    letter-spacing: -.052em;
}

.wearable-section-heading>p {
    max-width: 660px;
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.7;
}

.wearable-section-heading-centered>p {
    margin-inline: auto;
}

.wearable-service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 42px;
}

.wearable-service-card {
    position: relative;
    display: flex;
    min-height: 355px;
    flex-direction: column;
    padding: 28px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .055);
    border-radius: 20px;
    background: var(--panel-light);
    box-shadow: 0 20px 42px rgba(0, 0, 0, .17);
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.wearable-service-card::after {
    display: none;
}

.wearable-service-card-featured {
    grid-column: span 2;
    padding-right: min(32%, 260px);
    background: var(--panel-light);
}

.wearable-service-number {
    color: rgba(255, 255, 255, .14);
    font-size: 1rem;
    font-weight: 820;
    letter-spacing: .08em;
}

.wearable-service-card h3 {
    margin: 18px 0 0;
    font-size: clamp(1.3rem, 1.12rem + .55vw, 1.7rem);
    font-weight: 780;
    line-height: 1.15;
    letter-spacing: -.032em;
}

.wearable-service-card p {
    max-width: 590px;
    margin: 12px 0 0;
    color: #aeb7c6;
    font-size: .88rem;
    line-height: 1.62;
}

.wearable-service-card ul {
    display: grid;
    gap: 7px;
    margin: 18px 0 24px;
    padding: 0;
    color: #d2d7e0;
    font-size: .76rem;
    list-style: none;
}

.wearable-service-card li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.wearable-service-card li::before {
    content: "";
    width: 6px;
    height: 6px;
    flex: 0 0 6px;
    margin-top: .38em;
    border: 1px solid var(--orange);
    border-radius: 50%;
}

.wearable-card-link {
    display: inline-flex;
    width: max-content;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    color: #fff;
    font-size: .78rem;
    font-weight: 760;
    transition: color .2s ease, gap .2s ease;
}

.wearable-card-link span {
    color: var(--orange);
    font-size: 1rem;
}

.wearable-card-link:hover {
    gap: 12px;
    color: var(--orange);
}

@media (hover: hover) and (pointer: fine) {
    .wearable-service-card:hover {
        transform: translateY(-3px);
        border-color: rgba(255, 59, 10, .38);
        box-shadow: 0 14px 28px rgba(0, 0, 0, .16), 0 0 0 1px rgba(255, 59, 10, .1);
    }

    .wearable-service-card:active {
        transform: translateY(-1px);
    }
}

.wearable-process-section {
    margin-top: 108px;
    padding-block: 92px;
    border-block: 1px solid rgba(255, 255, 255, .045);
    background: #071226;
}

.wearable-process-list {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 34px;
    margin: 52px 0 0;
    padding: 0;
    list-style: none;
}

.wearable-process-list::before {
    content: "";
    position: absolute;
    z-index: 0;
    top: 25px;
    right: 16%;
    left: 16%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 59, 10, .45), transparent);
}

.wearable-process-list li {
    position: relative;
    z-index: 1;
    padding: 0 26px;
    text-align: center;
}

.wearable-step-number {
    display: grid;
    width: 52px;
    height: 52px;
    margin-inline: auto;
    place-items: center;
    border: 1px solid rgba(255, 59, 10, .4);
    border-radius: 50%;
    background: #0d1a31;
    color: var(--orange);
    font-size: .72rem;
    font-weight: 820;
    box-shadow: 0 0 28px rgba(255, 59, 10, .12);
}

.wearable-process-list h3 {
    margin: 22px 0 0;
    font-size: 1.12rem;
    font-weight: 760;
}

.wearable-process-list p {
    max-width: 330px;
    margin: 10px auto 0;
    color: var(--muted);
    font-size: .84rem;
    line-height: 1.65;
}

.wearable-assurance-intro .button {
    margin-top: 30px;
}

.wearable-faq-layout {
    display: grid;
    grid-template-columns: .56fr 1fr;
    gap: clamp(38px, 7vw, 96px);
    margin-top: 42px;
}

.wearable-faq-intro p {
    max-width: 360px;
    margin: 0;
    color: var(--muted);
    font-size: .94rem;
    line-height: 1.7;
}

.wearable-faq-intro .button {
    margin-top: 26px;
}

.wearable-faq-list {
    display: grid;
    gap: 12px;
}

.wearable-faq-list details {
    border: 1px solid rgba(255, 255, 255, .055);
    border-radius: 15px;
    background: #101b32;
    transition: border-color .2s ease, background .2s ease;
}

.wearable-faq-list details[open] {
    border-color: rgba(255, 59, 10, .3);
    background: #121f39;
}

.wearable-faq-list summary {
    position: relative;
    padding: 21px 58px 21px 22px;
    color: #eef1f6;
    font-size: .9rem;
    font-weight: 720;
    cursor: pointer;
    list-style: none;
}

.wearable-faq-list summary::-webkit-details-marker {
    display: none;
}

.wearable-faq-list summary::after {
    content: "+";
    position: absolute;
    top: 50%;
    right: 22px;
    color: var(--orange);
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 1;
    transform: translateY(-50%);
    transition: transform .2s ease;
}

.wearable-faq-list details[open] summary::after {
    transform: translateY(-50%) rotate(45deg);
}

.wearable-faq-list details.is-closing summary::after {
    transform: translateY(-50%) rotate(0);
}

.wearable-faq-list details p {
    margin: 0;
    padding: 0 58px 22px 22px;
    color: var(--muted);
    font-size: .82rem;
    line-height: 1.7;
}

.wearable-location-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 42px;
}

.wearable-location-grid article {
    position: relative;
    min-height: 240px;
    padding: 30px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .055);
    border-radius: 20px;
    background: var(--panel-light);
    box-shadow: 0 18px 42px rgba(0, 0, 0, .16);
}

.wearable-location-grid article>span {
    color: var(--orange);
    font-size: .68rem;
    font-weight: 820;
    letter-spacing: .08em;
}

.wearable-location-grid h3 {
    margin: 28px 0 0;
    font-size: 1.4rem;
    font-weight: 780;
    letter-spacing: -.03em;
}

.wearable-location-grid address {
    margin-top: 12px;
    color: var(--muted);
    font-size: .84rem;
    font-style: normal;
    line-height: 1.6;
}

.wearable-location-grid a {
    display: inline-flex;
    margin-top: 20px;
    color: #fff;
    font-size: .82rem;
    font-weight: 750;
    transition: color .2s ease;
}

.wearable-location-grid a:hover {
    color: var(--orange);
}

.wearable-final-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 42px;
    margin-block: 108px;
    padding: clamp(38px, 5vw, 64px);
    overflow: hidden;
    border: 1px solid rgba(255, 59, 10, .2);
    border-radius: 26px;
    background: var(--panel);
    box-shadow: var(--shadow);
}

.wearable-final-cta>div:first-child {
    max-width: 700px;
}

.wearable-final-cta h2 {
    font-size: clamp(2rem, 1.55rem + 1.45vw, 3.2rem);
}

.wearable-final-cta p {
    margin: 16px 0 0;
    color: var(--muted);
    font-size: .94rem;
    line-height: 1.65;
}

.wearable-final-actions {
    display: flex;
    flex: 0 0 auto;
    flex-direction: column;
    gap: 12px;
    min-width: 235px;
}

.wearable-hero-actions .button-dark,
.wearable-final-actions .button-dark {
    border-color: #263653;
    background: #07142c;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .16);
}

.wearable-hero-actions .button-dark:hover,
.wearable-final-actions .button-dark:hover {
    border-color: #334665;
    background: #0b1a36;
}

@media (max-width: 1120px) {
    .wearable-hero {
        grid-template-columns: 1fr .78fr;
        padding: 52px;
    }

    .wearable-service-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .wearable-service-card-featured {
        grid-column: span 2;
    }

    .wearable-final-cta {
        align-items: flex-start;
        flex-direction: column;
    }

    .wearable-final-actions {
        flex-direction: row;
    }
}

@media (max-width: 860px) {
    .wearable-hero {
        grid-template-columns: 1fr;
        padding: 48px;
    }

    .wearable-hero-copy {
        max-width: 700px;
    }

    .wearable-hero-visual {
        min-height: 500px;
    }

    .wearable-proof {
        grid-template-columns: repeat(2, 1fr);
    }

    .wearable-proof article:nth-child(3)::before {
        display: none;
    }

    .wearable-proof article:nth-child(-n+2) {
        border-bottom: 1px solid var(--line);
    }

    .wearable-faq-layout {
        grid-template-columns: 1fr;
    }

    .wearable-faq-intro {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 24px;
    }

    .wearable-faq-intro .button {
        flex: 0 0 auto;
        margin-top: 0;
    }

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

    .wearable-location-grid article {
        min-height: auto;
    }
}

@media (max-width: 620px) {
    .wearable-breadcrumb {
        gap: 7px;
        padding-top: 18px;
        font-size: .65rem;
    }

    .wearable-hero {
        min-height: auto;
        gap: 28px;
        margin-top: 16px;
        padding: 32px 20px 28px;
        border-radius: 22px;
    }

    .wearable-hero h1 {
        margin-top: 18px;
        font-size: clamp(2.55rem, 12vw, 3.55rem);
    }

    .wearable-hero-copy>p {
        margin-top: 20px;
        font-size: .92rem;
        line-height: 1.62;
    }

    .wearable-hero-actions {
        align-items: stretch;
        flex-direction: column;
        margin-top: 26px;
    }

    .wearable-hero-actions .button {
        width: 100%;
    }

    .wearable-trust-list {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
        margin-top: 24px;
    }

    .wearable-hero-visual {
        min-height: 390px;
    }

    .wearable-hero-visual img {
        width: min(52%, 205px);
        max-height: 300px;
    }

    .wearable-hero-status {
        bottom: 0;
        max-width: 94%;
        font-size: .6rem;
    }

    .wearable-page-nav {
        top: 80px;
        overflow-x: auto;
    }

    .wearable-page-nav .section-shell {
        width: max-content;
        min-width: 100%;
        justify-content: flex-start;
        gap: 24px;
        padding-inline: 16px;
    }

    .wearable-page-nav a {
        font-size: .68rem;
    }

    .wearable-proof {
        margin-top: 34px;
        border-radius: 16px;
    }

    .wearable-proof article {
        padding: 22px 12px;
    }

    .wearable-proof article:nth-child(odd)::before {
        display: none;
    }

    .wearable-proof strong {
        font-size: 1.35rem;
    }

    .wearable-services,
    .wearable-guides,
    .wearable-brands,
    .wearable-faq,
    .wearable-locations {
        padding-top: 76px;
    }

    .wearable-section-heading h2,
    .wearable-final-cta h2 {
        font-size: clamp(2rem, 10vw, 2.75rem);
    }

    .wearable-section-heading>p {
        font-size: .9rem;
        line-height: 1.65;
    }

    .wearable-service-grid {
        grid-template-columns: 1fr;
        gap: 14px;
        margin-top: 30px;
    }

    .wearable-service-card,
    .wearable-service-card-featured {
        grid-column: auto;
        min-height: auto;
        padding: 24px;
    }

    .wearable-service-card-featured {
        padding-right: 24px;
    }

    .wearable-service-card p {
        font-size: .84rem;
    }

    .wearable-process-section {
        margin-top: 76px;
        padding-block: 68px;
    }

    .wearable-process-list {
        grid-template-columns: 1fr;
        gap: 34px;
        margin-top: 38px;
    }

    .wearable-process-list::before {
        top: 0;
        bottom: 0;
        left: 25px;
        width: 1px;
        height: auto;
        background: linear-gradient(transparent, rgba(255, 59, 10, .38), transparent);
    }

    .wearable-process-list li {
        display: grid;
        grid-template-columns: 52px 1fr;
        column-gap: 18px;
        padding: 0;
        text-align: left;
    }

    .wearable-step-number {
        grid-row: 1 / 3;
        margin: 0;
    }

    .wearable-process-list h3 {
        margin: 2px 0 0;
    }

    .wearable-process-list p {
        margin: 8px 0 0;
    }

    .wearable-assurance-intro .button {
        width: 100%;
    }

    .wearable-faq-layout {
        gap: 28px;
        margin-top: 30px;
    }

    .wearable-faq-intro {
        align-items: stretch;
        flex-direction: column;
    }

    .wearable-faq-intro .button {
        width: 100%;
    }

    .wearable-faq-list summary {
        padding: 19px 52px 19px 18px;
        font-size: .84rem;
    }

    .wearable-faq-list summary::after {
        right: 18px;
    }

    .wearable-faq-list details p {
        padding: 0 18px 20px;
        font-size: .78rem;
    }

    .wearable-location-grid {
        gap: 14px;
        margin-top: 30px;
    }

    .wearable-location-grid article {
        padding: 24px;
    }

    .wearable-final-cta {
        gap: 30px;
        margin-block: 76px;
        padding: 32px 22px;
        border-radius: 20px;
    }

    .wearable-final-actions {
        width: 100%;
        flex-direction: column;
        min-width: 0;
    }

    .wearable-final-actions .button {
        width: 100%;
    }
}

/* ---- Browse by brand ---- */
.wearable-brand-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 42px;
}

.wearable-brand-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 26px;
    border: 1px solid rgba(255, 255, 255, .055);
    border-radius: 20px;
    background: var(--panel-light);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .16);
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.wearable-brand-card h3 {
    margin: 16px 0 0;
    font-size: 1.18rem;
    font-weight: 770;
    letter-spacing: -.02em;
}

.wearable-brand-card p {
    margin: 8px 0 0;
    color: var(--muted);
    font-size: .82rem;
    line-height: 1.55;
}

.wearable-brand-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin: 16px 0 0;
    padding: 0;
    list-style: none;
}

.wearable-brand-chips li {
    padding: 5px 11px;
    border: 1px solid var(--line);
    border-radius: 99px;
    color: #c6ccd6;
    font-size: .68rem;
    font-weight: 650;
}

.wearable-brand-card .wearable-card-link {
    margin-top: 18px;
}

@media (hover: hover) and (pointer: fine) {
    .wearable-brand-card:hover {
        transform: translateY(-3px);
        border-color: rgba(255, 59, 10, .38);
        box-shadow: 0 14px 28px rgba(0, 0, 0, .16), 0 0 0 1px rgba(255, 59, 10, .1);
    }
}

/* ---- Process (4 steps) ---- */
.wearable-process-list-four {
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1120px) {
    .wearable-brand-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .wearable-process-list-four {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 46px;
    }

    .wearable-process-list-four::before {
        display: none;
    }
}

@media (max-width: 620px) {
    .wearable-brand-grid {
        grid-template-columns: 1fr;
        gap: 14px;
        margin-top: 30px;
    }

    .wearable-brand-card {
        padding: 22px;
    }

    .wearable-process-list-four {
        grid-template-columns: 1fr;
    }
}

/* ---- Guidance accordion (secondary FAQ block) ---- */
.wearable-guidance-list {
    display: grid;
    gap: 12px;
    margin-top: 42px;
}

.wearable-guidance-list details {
    border: 1px solid rgba(255, 255, 255, .055);
    border-radius: 15px;
    background: #101b32;
    transition: border-color .2s ease, background .2s ease;
}

.wearable-guidance-list details[open] {
    border-color: rgba(255, 59, 10, .3);
    background: #121f39;
}

.wearable-guidance-list summary {
    position: relative;
    padding: 21px 58px 21px 22px;
    color: #eef1f6;
    font-size: .9rem;
    font-weight: 720;
    cursor: pointer;
    list-style: none;
}

.wearable-guidance-list summary::-webkit-details-marker {
    display: none;
}

.wearable-guidance-list summary::after {
    content: "+";
    position: absolute;
    top: 50%;
    right: 22px;
    color: var(--orange);
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 1;
    transform: translateY(-50%);
    transition: transform .2s ease;
}

.wearable-guidance-list details[open] summary::after {
    transform: translateY(-50%) rotate(45deg);
}

.wearable-guidance-list details.is-closing summary::after {
    transform: translateY(-50%) rotate(0);
}

.wearable-guidance-list details p {
    margin: 0;
    padding: 0 58px 22px 22px;
    color: var(--muted);
    font-size: .82rem;
    line-height: 1.7;
}

/* ---- Controller repair spotlight ---- */
.wearable-controller-spot {
    margin-top: 42px;
    padding: clamp(28px, 4vw, 44px);
    border: 1px solid rgba(255, 255, 255, .055);
    border-radius: 22px;
    background: var(--panel-light);
}

.wearable-controller-spot>p {
    max-width: 760px;
    margin: 14px 0 0;
    color: var(--muted);
    font-size: .88rem;
    line-height: 1.7;
}

.wearable-controller-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
}

.wearable-controller-tags li {
    padding: 7px 13px;
    border: 1px solid var(--line);
    border-radius: 99px;
    color: #c6ccd6;
    font-size: .72rem;
    font-weight: 650;
}

.wearable-controller-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

/* Small print under the screen-and-battery panel and the closing call to action. */
.wearable-controller-note,
.wearable-final-note {
    margin: 18px 0 0;
    color: var(--muted);
    font-size: .82rem;
    line-height: 1.6;
}

/* Example questions a visitor can bring in, shown as plain prompt cards. */
.wearable-question-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 40px;
}

.wearable-question-card {
    padding: 22px 24px;
    border: 1px solid rgba(255, 255, 255, .055);
    border-radius: 15px;
    background: #101b32;
}

.wearable-question-card p {
    margin: 0;
    color: #dce1e9;
    font-size: .95rem;
    font-weight: 600;
    line-height: 1.55;
}

.wearable-question-actions {
    margin-top: 26px;
}

/* Each store now carries a short line plus two links. */
.wearable-location-grid p {
    margin: 12px 0 0;
    color: var(--muted);
    font-size: .86rem;
    line-height: 1.6;
}

.wearable-location-grid a + a {
    margin-left: 18px;
}

@media (max-width: 720px) {
    .wearable-question-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 620px) {
    .wearable-guidance-list summary {
        padding: 19px 52px 19px 18px;
        font-size: .84rem;
    }

    .wearable-guidance-list summary::after {
        right: 18px;
    }

    .wearable-guidance-list details p {
        padding: 0 18px 20px;
        font-size: .78rem;
    }

    .wearable-controller-spot {
        padding: 22px;
    }

    .wearable-controller-actions {
        flex-direction: column;
        align-items: stretch;
    }
}