/*
|--------------------------------------------------------------------------
| JDTECHSPACE STORE
|--------------------------------------------------------------------------
*/

:root {

    --store-black: #080b10;
    --store-dark: #0d1117;
    --store-surface: #111722;

    --store-text: #111827;
    --store-muted: #667085;

    --store-blue: #2563eb;
    --store-blue-dark: #1d4ed8;

    --store-purple: #7c3aed;

    --store-border: #e5e7eb;

    --store-bg: #f7f8fb;

    --store-white: #ffffff;

}


* {
    box-sizing: border-box;
}


.jd-store {

    background: var(--store-bg);

    color: var(--store-text);

    overflow: hidden;

}


.jd-store-container {

    width: min(1240px, calc(100% - 40px));

    margin: 0 auto;

}


/*
|--------------------------------------------------------------------------
| HERO
|--------------------------------------------------------------------------
*/

.jd-store-hero {

    position: relative;

    overflow: hidden;

    padding:

        90px 0
        100px;

    background:

        radial-gradient(
            circle at 15% 20%,
            rgba(37, 99, 235, .18),
            transparent 35%
        ),

        radial-gradient(
            circle at 88% 60%,
            rgba(124, 58, 237, .16),
            transparent 32%
        ),

        #080b10;

    color: #fff;

}


.jd-store-hero::before {

    content: "";

    position: absolute;

    inset: 0;

    opacity: .32;

    pointer-events: none;

    background-image:

        linear-gradient(
            rgba(255,255,255,.035) 1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            rgba(255,255,255,.035) 1px,
            transparent 1px
        );

    background-size:

        50px 50px;

}


.jd-store-hero-grid {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:

        minmax(0, 1.05fr)
        minmax(420px, .95fr);

    align-items: center;

    gap: 85px;

}


.jd-store-eyebrow {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    margin-bottom: 22px;

    color: #aab7ca;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.8px;

}


.jd-live-dot {

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #22c55e;

    box-shadow:

        0 0 0 5px
        rgba(34,197,94,.12);

}


.jd-store-hero h1 {

    max-width: 750px;

    margin:

        0 0
        24px;

    color: #fff;

    font-size:

        clamp(
            46px,
            5.4vw,
            78px
        );

    line-height: .98;

    letter-spacing: -4px;

    font-weight: 900;

}


.jd-store-hero h1 span {

    display: block;

    color: #7ba7ff;

}


.jd-store-hero-content > p {

    max-width: 590px;

    margin:

        0 0
        32px;

    color: #a8b3c4;

    font-size: 17px;

    line-height: 1.7;

}


.jd-store-hero-actions {

    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 12px;

}


.jd-store-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    min-height: 48px;

    padding:

        0 21px;

    border-radius: 9px;

    text-decoration: none;

    font-size: 12px;

    font-weight: 800;

    transition: .22s ease;

}


.jd-store-btn-primary {

    background: #fff;

    color: #101828;

}


.jd-store-btn-primary:hover {

    transform: translateY(-2px);

    color: #101828;

    box-shadow:

        0 12px 30px
        rgba(0,0,0,.25);

}


.jd-store-btn-secondary {

    border:

        1px solid
        rgba(255,255,255,.15);

    background:

        rgba(255,255,255,.04);

    color: #fff;

}


.jd-store-btn-secondary:hover {

    border-color:

        rgba(255,255,255,.35);

    background:

        rgba(255,255,255,.08);

    color: #fff;

}


.jd-store-trust {

    display: flex;

    flex-wrap: wrap;

    gap:

        14px 24px;

    margin-top: 34px;

    color: #78869b;

    font-size: 10px;

    font-weight: 700;

}


.jd-store-trust span {

    display: flex;

    align-items: center;

    gap: 7px;

}


.jd-store-trust i {

    color: #7ba7ff;

}


/*
|--------------------------------------------------------------------------
| HERO CODE WINDOW
|--------------------------------------------------------------------------
*/

.jd-store-hero-visual {

    position: relative;

    min-height: 430px;

}


.jd-code-window {

    position: absolute;

    top: 40px;
    left: 20px;
    right: 20px;

    overflow: hidden;

    border:

        1px solid
        rgba(255,255,255,.1);

    border-radius: 18px;

    background:

        rgba(14, 20, 30, .88);

    box-shadow:

        0 40px 100px
        rgba(0,0,0,.4);

    backdrop-filter: blur(18px);

}


.jd-code-topbar {

    display: flex;

    align-items: center;

    height: 49px;

    padding: 0 17px;

    border-bottom:

        1px solid
        rgba(255,255,255,.07);

}


.jd-window-dots {

    display: flex;

    gap: 6px;

}


.jd-window-dots span {

    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: #475467;

}


.jd-window-dots span:nth-child(1) {
    background: #f97066;
}


.jd-window-dots span:nth-child(2) {
    background: #fdb022;
}


.jd-window-dots span:nth-child(3) {
    background: #32d583;
}


.jd-code-filename {

    margin: auto;

    padding-right: 42px;

    color: #667085;

    font-size: 10px;

    font-weight: 700;

}


.jd-code-body {

    padding:

        34px 26px
        30px;

    color: #d0d5dd;

    font-family:

        "SFMono-Regular",
        Consolas,
        "Liberation Mono",
        monospace;

    font-size: 13px;

    line-height: 2.15;

}


.jd-code-line {

    display: flex;

    gap: 8px;

}


.line-number {

    width: 24px;

    margin-right: 10px;

    color: #475467;

    user-select: none;

}


.code-purple {
    color: #c084fc;
}


.code-green {
    color: #86efac;
}


.code-blue {
    color: #60a5fa;
}


.code-pink {
    color: #f472b6;
}


.jd-terminal {

    padding:

        16px 25px;

    border-top:

        1px solid
        rgba(255,255,255,.07);

    background: #080b10;

    color: #98a2b3;

    font-family:

        Consolas,
        monospace;

    font-size: 11px;

}


.terminal-symbol {

    margin-right: 6px;

    color: #60a5fa;

}


.terminal-cursor {

    display: inline-block;

    width: 6px;
    height: 13px;

    margin-left: 5px;

    vertical-align: middle;

    background: #60a5fa;

    animation:

        jdBlink
        1.1s steps(1)
        infinite;

}


@keyframes jdBlink {

    50% {
        opacity: 0;
    }

}


.jd-floating-card {

    position: absolute;

    z-index: 3;

    display: flex;

    align-items: center;

    gap: 10px;

    min-width: 165px;

    padding:

        13px 15px;

    border:

        1px solid
        rgba(255,255,255,.1);

    border-radius: 12px;

    background:

        rgba(18, 25, 38, .88);

    box-shadow:

        0 18px 45px
        rgba(0,0,0,.3);

    backdrop-filter: blur(16px);

}


.jd-floating-card i {

    display: grid;

    place-items: center;

    width: 34px;
    height: 34px;

    border-radius: 9px;

    background:

        rgba(37,99,235,.15);

    color: #7ba7ff;

}


.jd-floating-card strong {

    display: block;

    color: #fff;

    font-size: 9px;

    letter-spacing: .7px;

}


.jd-floating-card span {

    display: block;

    margin-top: 2px;

    color: #667085;

    font-size: 8px;

}


.jd-floating-card-one {

    top: 9px;
    right: -22px;

}


.jd-floating-card-two {

    bottom: 14px;
    left: -18px;

}


/*
|--------------------------------------------------------------------------
| MARQUEE
|--------------------------------------------------------------------------
*/

.jd-store-marquee {

    overflow: hidden;

    border-bottom:

        1px solid
        #e6e8ed;

    background: #fff;

}


.jd-store-marquee-track {

    display: flex;

    align-items: center;

    justify-content: center;

    flex-wrap: wrap;

    gap: 26px;

    min-height: 61px;

    padding: 10px 20px;

    color: #344054;

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 2px;

}


.jd-store-marquee-track i {

    color: #98a2b3;

    font-size: 7px;

}


/*
|--------------------------------------------------------------------------
| SECTIONS
|--------------------------------------------------------------------------
*/

.jd-store-section {

    padding:

        90px 0;

}


.jd-store-products-section {

    background: #fff;

}


.jd-section-heading {

    display: flex;

    justify-content: space-between;

    align-items: flex-end;

    gap: 30px;

    margin-bottom: 38px;

}


.jd-section-kicker {

    display: block;

    margin-bottom: 10px;

    color: var(--store-blue);

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 1.8px;

}


.jd-section-heading h2 {

    margin: 0;

    color: #101828;

    font-size:

        clamp(
            30px,
            3vw,
            43px
        );

    line-height: 1.1;

    letter-spacing: -1.8px;

    font-weight: 850;

}


.jd-section-link {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: #344054;

    text-decoration: none;

    font-size: 11px;

    font-weight: 800;

}


.jd-section-link:hover {

    color: var(--store-blue);

}


/*
|--------------------------------------------------------------------------
| COLLECTION CARDS
|--------------------------------------------------------------------------
*/

.jd-collections-grid {

    display: grid;

    grid-template-columns:

        repeat(4, minmax(0, 1fr));

    gap: 15px;

}


.jd-collection-card {

    position: relative;

    display: flex;

    flex-direction: column;

    min-height: 280px;

    padding: 24px;

    overflow: hidden;

    border:

        1px solid
        var(--store-border);

    border-radius: 16px;

    background: #fff;

    color: #101828;

    text-decoration: none;

    transition:

        transform .2s,
        box-shadow .2s,
        border-color .2s;

}


.jd-collection-card:hover {

    transform: translateY(-4px);

    border-color: #c7d7fe;

    box-shadow:

        0 20px 45px
        rgba(16,24,40,.08);

    color: #101828;

}


.jd-collection-number {

    position: absolute;

    top: 20px;
    right: 20px;

    color: #d0d5dd;

    font-family: monospace;

    font-size: 10px;

}


.jd-collection-icon {

    display: grid;

    place-items: center;

    width: 49px;
    height: 49px;

    margin-bottom: auto;

    border-radius: 13px;

    background: #f2f4f7;

    color: #344054;

    font-size: 19px;

}


.jd-collection-card:hover
.jd-collection-icon {

    background: #eff6ff;

    color: var(--store-blue);

}


.jd-collection-content {

    margin-top: 45px;

}


.jd-collection-content h3 {

    margin:

        0 0
        9px;

    font-size: 20px;

    font-weight: 800;

    letter-spacing: -.6px;

}


.jd-collection-content p {

    min-height: 44px;

    margin:

        0 0
        14px;

    color: #667085;

    font-size: 11px;

    line-height: 1.65;

}


.jd-collection-content > span {

    display: flex;

    align-items: center;

    justify-content: space-between;

    color: #98a2b3;

    font-size: 9px;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: .5px;

}


/*
|--------------------------------------------------------------------------
| PRODUCTS
|--------------------------------------------------------------------------
*/

.jd-product-grid {

    display: grid;

    grid-template-columns:

        repeat(4, minmax(0,1fr));

    gap: 18px;

}


.jd-product-card {

    overflow: hidden;

    border:

        1px solid
        #eaecf0;

    border-radius: 15px;

    background: #fff;

    transition:

        transform .22s,
        box-shadow .22s;

}


.jd-product-card:hover {

    transform: translateY(-4px);

    box-shadow:

        0 20px 45px
        rgba(16,24,40,.08);

}


.jd-product-image-wrap {

    position: relative;

    display: block;

    aspect-ratio: 4 / 5;

    overflow: hidden;

    background: #f2f4f7;

}


.jd-product-image {

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:

        transform .45s ease;

}


.jd-product-card:hover
.jd-product-image {

    transform: scale(1.035);

}


.jd-product-placeholder {

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 10px;

    width: 100%;
    height: 100%;

    color: #98a2b3;

}


.jd-product-placeholder i {

    font-size: 28px;

}


.jd-product-placeholder span {

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 1px;

}


.jd-product-badge {

    position: absolute;

    z-index: 2;

    top: 13px;
    left: 13px;

    padding:

        5px 9px;

    border-radius: 30px;

    background: #111827;

    color: #fff;

    font-size: 8px;

    font-weight: 900;

    text-transform: uppercase;

    letter-spacing: .8px;

}


.jd-product-info {

    padding: 17px;

}


.jd-product-brand {

    margin-bottom: 6px;

    color: #98a2b3;

    font-size: 8px;

    font-weight: 900;

    letter-spacing: 1px;

    text-transform: uppercase;

}


.jd-product-title {

    margin: 0;

    font-size: 14px;

    line-height: 1.4;

    font-weight: 800;

}


.jd-product-title a {

    color: #101828;

    text-decoration: none;

}


.jd-product-title a:hover {

    color: var(--store-blue);

}


.jd-product-description {

    margin:

        7px 0
        0;

    color: #667085;

    font-size: 10px;

    line-height: 1.6;

}


.jd-product-bottom {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 12px;

    margin-top: 16px;

}


.jd-product-price {

    display: flex;

    align-items: center;

    gap: 8px;

}


.jd-price-current {

    color: #101828;

    font-size: 14px;

    font-weight: 850;

}


.jd-price-old {

    color: #98a2b3;

    font-size: 10px;

    text-decoration: line-through;

}


.jd-product-arrow {

    display: grid;

    place-items: center;

    width: 33px;
    height: 33px;

    border-radius: 50%;

    background: #f2f4f7;

    color: #344054;

    text-decoration: none;

    transition: .2s;

}


.jd-product-arrow:hover {

    background: #101828;

    color: #fff;

}


/*
|--------------------------------------------------------------------------
| EMPTY STATE
|--------------------------------------------------------------------------
*/

.jd-store-empty {

    max-width: 600px;

    margin: 0 auto;

    padding:

        70px 30px;

    text-align: center;

}


.jd-store-empty-icon {

    display: grid;

    place-items: center;

    width: 70px;
    height: 70px;

    margin:

        0 auto
        22px;

    border:

        1px solid
        #e4e7ec;

    border-radius: 20px;

    background: #f9fafb;

    color: #667085;

    font-size: 27px;

}


.jd-store-empty h3 {

    margin:

        0 0
        10px;

    color: #101828;

    font-size: 24px;

    font-weight: 850;

    letter-spacing: -.8px;

}


.jd-store-empty p {

    max-width: 480px;

    margin: auto;

    color: #667085;

    font-size: 12px;

    line-height: 1.7;

}


/*
|--------------------------------------------------------------------------
| CULTURE
|--------------------------------------------------------------------------
*/

.jd-store-culture {

    padding:

        25px 0
        90px;

    background: #fff;

}


.jd-culture-card {

    display: grid;

    grid-template-columns:

        minmax(0, 1fr)
        minmax(380px, .7fr);

    align-items: center;

    gap: 70px;

    padding:

        65px 70px;

    overflow: hidden;

    border-radius: 24px;

    background:

        radial-gradient(
            circle at 85% 20%,
            rgba(37,99,235,.25),
            transparent 33%
        ),

        #0b0f16;

    color: #fff;

}


.jd-culture-copy h2 {

    max-width: 670px;

    margin:

        0 0
        18px;

    font-size:

        clamp(
            32px,
            4vw,
            52px
        );

    line-height: 1.05;

    letter-spacing: -2px;

    font-weight: 900;

}


.jd-culture-copy p {

    max-width: 630px;

    margin:

        0 0
        26px;

    color: #98a2b3;

    font-size: 13px;

    line-height: 1.8;

}


.jd-store-btn-light {

    background: #fff;

    color: #101828;

}


.jd-store-btn-light:hover {

    transform: translateY(-2px);

    color: #101828;

}


.jd-culture-terminal {

    padding: 28px;

    border:

        1px solid
        rgba(255,255,255,.10);

    border-radius: 16px;

    background:

        rgba(255,255,255,.04);

    color: #aab4c5;

    font-family:

        Consolas,
        monospace;

    font-size: 11px;

    line-height: 1.9;

}


.jd-culture-terminal > div {

    color: #f2f4f7;

}


.jd-culture-terminal > div span {

    color: #60a5fa;

}


.jd-culture-terminal strong {

    color: #c084fc;

}


.terminal-warning {

    color: #fdb022;

}


.terminal-success {

    color: #32d583;

}


/*
|--------------------------------------------------------------------------
| BENEFITS
|--------------------------------------------------------------------------
*/

.jd-store-benefits {

    border-top:

        1px solid
        #eaecf0;

    background: #fff;

}


.jd-benefits-grid {

    display: grid;

    grid-template-columns:

        repeat(4, 1fr);

}


.jd-benefit {

    display: flex;

    align-items: center;

    gap: 14px;

    min-height: 115px;

    padding:

        25px 24px;

    border-right:

        1px solid
        #eaecf0;

}


.jd-benefit:last-child {

    border-right: 0;

}


.jd-benefit > i {

    color: var(--store-blue);

    font-size: 20px;

}


.jd-benefit strong {

    display: block;

    margin-bottom: 3px;

    color: #101828;

    font-size: 11px;

    font-weight: 800;

}


.jd-benefit span {

    color: #98a2b3;

    font-size: 9px;

}


/*
|--------------------------------------------------------------------------
| RESPONSIVE
|--------------------------------------------------------------------------
*/

@media (max-width: 1100px) {

    .jd-store-hero-grid {

        grid-template-columns:

            1fr 1fr;

        gap: 35px;

    }


    .jd-collections-grid,
    .jd-product-grid {

        grid-template-columns:

            repeat(2, 1fr);

    }


    .jd-culture-card {

        gap: 35px;

        padding: 50px;

    }

}


@media (max-width: 820px) {

    .jd-store-container {

        width:

            min(
                100% - 28px,
                1240px
            );

    }


    .jd-store-hero {

        padding:

            65px 0
            75px;

    }


    .jd-store-hero-grid {

        grid-template-columns: 1fr;

    }


    .jd-store-hero h1 {

        letter-spacing: -2.7px;

    }


    .jd-store-hero-visual {

        min-height: 390px;

    }


    .jd-code-window {

        left: 0;
        right: 0;

    }


    .jd-floating-card-one {

        right: -5px;

    }


    .jd-floating-card-two {

        left: -4px;

    }


    .jd-culture-card {

        grid-template-columns: 1fr;

    }


    .jd-benefits-grid {

        grid-template-columns:

            repeat(2, 1fr);

    }


    .jd-benefit:nth-child(2) {

        border-right: 0;

    }

}


@media (max-width: 560px) {

    .jd-store-hero {

        padding:

            52px 0
            65px;

    }


    .jd-store-hero h1 {

        font-size: 43px;

        line-height: 1.02;

        letter-spacing: -2.2px;

    }


    .jd-store-hero-content > p {

        font-size: 14px;

    }


    .jd-store-hero-actions {

        align-items: stretch;

        flex-direction: column;

    }


    .jd-store-btn {

        width: 100%;

    }


    .jd-store-trust {

        align-items: flex-start;

        flex-direction: column;

        gap: 10px;

    }


    .jd-store-hero-visual {

        min-height: 335px;

        margin-top: 10px;

    }


    .jd-code-window {

        top: 25px;

    }


    .jd-code-body {

        padding:

            26px 16px;

        font-size: 10px;

    }


    .jd-floating-card {

        transform: scale(.82);

    }


    .jd-floating-card-one {

        right: -20px;
        top: 0;

        transform-origin: right top;

    }


    .jd-floating-card-two {

        bottom: -3px;
        left: -13px;

        transform-origin: left bottom;

    }


    .jd-store-marquee-track {

        gap: 13px;

    }


    .jd-store-section {

        padding:

            62px 0;

    }


    .jd-section-heading {

        align-items: flex-start;

        flex-direction: column;

        gap: 13px;

        margin-bottom: 26px;

    }


    .jd-section-heading h2 {

        font-size: 31px;

    }


    .jd-collections-grid {

        grid-template-columns: 1fr;

    }


    .jd-product-grid {

        grid-template-columns:

            repeat(2, minmax(0, 1fr));

        gap: 10px;

    }


    .jd-product-info {

        padding: 12px;

    }


    .jd-product-title {

        font-size: 12px;

    }


    .jd-product-description {

        display: none;

    }


    .jd-price-current {

        font-size: 12px;

    }


    .jd-product-arrow {

        width: 28px;
        height: 28px;

    }


    .jd-culture-card {

        padding:

            38px 24px;

        border-radius: 18px;

    }


    .jd-culture-copy h2 {

        font-size: 35px;

    }


    .jd-store-culture {

        padding-bottom: 60px;

    }


    .jd-benefits-grid {

        grid-template-columns: 1fr;

    }


    .jd-benefit {

        min-height: 90px;

        border-right: 0;

        border-bottom:

            1px solid
            #eaecf0;

    }


    .jd-benefit:last-child {

        border-bottom: 0;

    }

}
/*
|--------------------------------------------------------------------------
| PRODUCT DETAIL PAGE
|--------------------------------------------------------------------------
*/

.jd-product-page {

    background: #fff;

}


.jd-product-breadcrumb {

    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 8px;

    min-height: 62px;

    color: #98a2b3;

    font-size: 10px;

}


.jd-product-breadcrumb a {

    color: #667085;

    text-decoration: none;

}


.jd-product-breadcrumb a:hover {

    color: #2563eb;

}


.jd-product-breadcrumb i {

    font-size: 8px;

}


.jd-product-breadcrumb span {

    color: #344054;

}


.jd-pdp-section {

    padding:

        18px 0
        90px;

}


.jd-pdp-grid {

    display: grid;

    grid-template-columns:

        minmax(0, 1.1fr)
        minmax(400px, .75fr);

    gap: 70px;

    align-items: start;

}


/*
|--------------------------------------------------------------------------
| PDP GALLERY
|--------------------------------------------------------------------------
*/

.jd-pdp-gallery {

    min-width: 0;

}


.jd-pdp-main-image {

    display: flex;

    align-items: center;

    justify-content: center;

    aspect-ratio: 4 / 5;

    overflow: hidden;

    border-radius: 18px;

    background: #f3f4f6;

}


.jd-pdp-main-image img {

    width: 100%;
    height: 100%;

    object-fit: cover;

}


.jd-pdp-no-image {

    flex-direction: column;

    gap: 10px;

    color: #98a2b3;

}


.jd-pdp-no-image i {

    font-size: 42px;

}


.jd-pdp-no-image span {

    font-size: 11px;

    font-weight: 900;

    letter-spacing: 1px;

}


.jd-pdp-thumbnails {

    display: grid;

    grid-template-columns:

        repeat(5, minmax(0, 1fr));

    gap: 10px;

    margin-top: 12px;

}


.jd-pdp-thumb {

    aspect-ratio: 1;

    padding: 0;

    overflow: hidden;

    border:

        2px solid
        transparent;

    border-radius: 10px;

    background: #f2f4f7;

    cursor: pointer;

}


.jd-pdp-thumb.is-active {

    border-color: #2563eb;

}


.jd-pdp-thumb img {

    width: 100%;
    height: 100%;

    object-fit: cover;

}


/*
|--------------------------------------------------------------------------
| PDP INFORMATION
|--------------------------------------------------------------------------
*/

.jd-pdp-info {

    position: sticky;

    top: 95px;

}


.jd-pdp-brand {

    margin-bottom: 13px;

    color: #2563eb;

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 1.5px;

    text-transform: uppercase;

}


.jd-pdp-info h1 {

    margin:

        0 0
        16px;

    color: #101828;

    font-size:

        clamp(
            34px,
            4vw,
            50px
        );

    line-height: 1.04;

    font-weight: 900;

    letter-spacing: -2px;

}


.jd-pdp-lead {

    margin:

        0 0
        22px;

    color: #667085;

    font-size: 13px;

    line-height: 1.7;

}


.jd-pdp-price-row {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    padding-bottom: 25px;

    margin-bottom: 25px;

    border-bottom:

        1px solid
        #eaecf0;

}


.jd-pdp-price {

    color: #101828;

    font-size: 23px;

    font-weight: 900;

    letter-spacing: -.7px;

}


.jd-stock {

    display: inline-flex;

    align-items: center;

    gap: 5px;

    padding:

        6px 9px;

    border-radius: 30px;

    font-size: 8px;

    font-weight: 850;

}


.jd-stock-in {

    background: #ecfdf3;

    color: #027a48;

}


.jd-stock-out {

    background: #fef3f2;

    color: #b42318;

}


/*
|--------------------------------------------------------------------------
| ALERTS
|--------------------------------------------------------------------------
*/

.jd-store-alert {

    display: flex;

    align-items: flex-start;

    gap: 10px;

    margin-bottom: 20px;

    padding:

        13px 15px;

    border-radius: 9px;

    font-size: 11px;

    line-height: 1.5;

}


.jd-store-alert-error {

    border:

        1px solid
        #fecdca;

    background: #fef3f2;

    color: #b42318;

}


.jd-store-alert-success {

    border:

        1px solid
        #abefc6;

    background: #ecfdf3;

    color: #067647;

}


/*
|--------------------------------------------------------------------------
| OPTIONS
|--------------------------------------------------------------------------
*/

.jd-pdp-form {

    margin-top: 24px;

}


.jd-pdp-option {

    margin-bottom: 22px;

}


.jd-option-header {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    margin-bottom: 9px;

}


.jd-option-header label {

    color: #344054;

    font-size: 10px;

    font-weight: 850;

    text-transform: uppercase;

    letter-spacing: .5px;

}


.jd-option-header span {

    color: #98a2b3;

    font-size: 9px;

}


.jd-variant-select {

    width: 100%;
    height: 50px;

    padding:

        0 42px
        0 14px;

    border:

        1px solid
        #d0d5dd;

    border-radius: 9px;

    background: #fff;

    color: #101828;

    font-size: 12px;

    outline: none;

}


.jd-variant-select:focus {

    border-color: #2563eb;

    box-shadow:

        0 0 0 3px
        rgba(37,99,235,.10);

}


.jd-quantity-control {

    display: inline-grid;

    grid-template-columns:

        42px 58px 42px;

    overflow: hidden;

    border:

        1px solid
        #d0d5dd;

    border-radius: 9px;

}


.jd-quantity-control button {

    border: 0;

    background: #f9fafb;

    color: #344054;

    font-size: 19px;

    cursor: pointer;

}


.jd-quantity-control input {

    width: 100%;

    border: 0;
    border-left:

        1px solid
        #eaecf0;

    border-right:

        1px solid
        #eaecf0;

    text-align: center;

    outline: none;

    font-size: 12px;

    font-weight: 800;

}


.jd-quantity-control
input::-webkit-outer-spin-button,
.jd-quantity-control
input::-webkit-inner-spin-button {

    -webkit-appearance: none;

    margin: 0;

}


.jd-add-cart {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    width: 100%;
    height: 54px;

    border: 0;

    border-radius: 10px;

    background: #101828;

    color: #fff;

    font-size: 11px;

    font-weight: 850;

    cursor: pointer;

    transition: .2s;

}


.jd-add-cart:hover:not(:disabled) {

    transform: translateY(-1px);

    background: #1d2939;

    box-shadow:

        0 12px 25px
        rgba(16,24,40,.16);

}


.jd-add-cart:disabled {

    background: #d0d5dd;

    cursor: not-allowed;

}


.jd-view-cart-link {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 7px;

    width: 100%;

    margin-top: 10px;

    color: #475467;

    text-decoration: none;

    font-size: 10px;

    font-weight: 750;

}


.jd-view-cart-link:hover {

    color: #2563eb;

}


/*
|--------------------------------------------------------------------------
| PDP TRUST
|--------------------------------------------------------------------------
*/

.jd-pdp-trust {

    display: grid;

    gap: 14px;

    margin-top: 28px;

    padding:

        22px 0;

    border-top:

        1px solid
        #eaecf0;

    border-bottom:

        1px solid
        #eaecf0;

}


.jd-pdp-trust > div {

    display: flex;

    align-items: center;

    gap: 11px;

}


.jd-pdp-trust i {

    display: grid;

    place-items: center;

    width: 35px;
    height: 35px;

    flex: 0 0 35px;

    border-radius: 9px;

    background: #f2f4f7;

    color: #2563eb;

    font-size: 15px;

}


.jd-pdp-trust span {

    color: #98a2b3;

    font-size: 9px;

    line-height: 1.5;

}


.jd-pdp-trust strong {

    display: block;

    color: #344054;

    font-size: 10px;

}


.jd-pdp-meta {

    display: grid;

    gap: 7px;

    margin-top: 20px;

    color: #98a2b3;

    font-size: 9px;

}


.jd-pdp-meta strong,
.jd-pdp-meta a {

    color: #475467;

}


.jd-pdp-meta a {

    text-decoration: none;

}


/*
|--------------------------------------------------------------------------
| PRODUCT DETAILS
|--------------------------------------------------------------------------
*/

.jd-product-details-section {

    padding:

        85px 0;

    border-top:

        1px solid
        #eaecf0;

    background: #f9fafb;

}


.jd-product-details-grid {

    display: grid;

    grid-template-columns:

        minmax(0, 1.15fr)
        minmax(320px, .6fr);

    gap: 100px;

}


.jd-product-description-content h2 {

    margin:

        0 0
        24px;

    color: #101828;

    font-size: 36px;

    font-weight: 900;

    letter-spacing: -1.4px;

}


.jd-rich-content {

    color: #475467;

    font-size: 13px;

    line-height: 1.85;

}


.jd-rich-content p:first-child {

    margin-top: 0;

}


.jd-rich-content img {

    max-width: 100%;
    height: auto;

}


.jd-product-specs {

    overflow: hidden;

    border:

        1px solid
        #e4e7ec;

    border-radius: 14px;

    background: #fff;

}


.jd-spec-row {

    padding: 20px;

    border-bottom:

        1px solid
        #eaecf0;

}


.jd-spec-row:last-child {

    border-bottom: 0;

}


.jd-spec-row strong {

    display: block;

    margin-bottom: 7px;

    color: #344054;

    font-size: 10px;

}


.jd-spec-row p {

    margin: 0;

    color: #667085;

    font-size: 10px;

    line-height: 1.7;

}


.jd-size-chart {

    padding: 20px;

}


.jd-size-chart summary {

    display: flex;

    justify-content: space-between;

    align-items: center;

    list-style: none;

    color: #344054;

    font-size: 10px;

    font-weight: 850;

    cursor: pointer;

}


.jd-size-chart summary::-webkit-details-marker {

    display: none;

}


.jd-size-chart > div {

    padding-top: 15px;

    color: #667085;

    font-size: 10px;

    line-height: 1.7;

}


.jd-related-products {

    background: #fff;

}


/*
|--------------------------------------------------------------------------
| STORE CART
|--------------------------------------------------------------------------
*/

.jd-cart-page {

    min-height: 70vh;

}


.jd-cart-header {

    padding:

        60px 0
        42px;

    border-bottom:

        1px solid
        #eaecf0;

    background: #fff;

}


.jd-cart-back {

    display: inline-flex;

    align-items: center;

    gap: 7px;

    margin-bottom: 22px;

    color: #667085;

    text-decoration: none;

    font-size: 10px;

    font-weight: 750;

}


.jd-cart-header h1 {

    margin: 0;

    color: #101828;

    font-size: 48px;

    font-weight: 900;

    letter-spacing: -2px;

}


.jd-cart-header p {

    margin:

        9px 0
        0;

    color: #98a2b3;

    font-size: 11px;

}


.jd-cart-section {

    padding:

        45px 0
        90px;

}


.jd-cart-layout {

    display: grid;

    grid-template-columns:

        minmax(0, 1fr)
        360px;

    gap: 50px;

    align-items: start;

}


.jd-cart-items {

    overflow: hidden;

    border:

        1px solid
        #e4e7ec;

    border-radius: 14px;

    background: #fff;

}


.jd-cart-item {

    display: grid;

    grid-template-columns:

        145px
        minmax(0, 1fr);

    gap: 20px;

    padding: 20px;

    border-bottom:

        1px solid
        #eaecf0;

}


.jd-cart-item:last-child {

    border-bottom: 0;

}


.jd-cart-item-image {

    display: block;

    aspect-ratio: 4 / 5;

    overflow: hidden;

    border-radius: 10px;

    background: #f2f4f7;

}


.jd-cart-item-image img {

    width: 100%;
    height: 100%;

    object-fit: cover;

}


.jd-cart-image-placeholder {

    display: grid;

    place-items: center;

    width: 100%;
    height: 100%;

    color: #98a2b3;

    font-size: 25px;

}


.jd-cart-item-info {

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    min-width: 0;

}


.jd-cart-item-top {

    display: flex;

    justify-content: space-between;

    gap: 20px;

}


.jd-cart-item-brand {

    display: block;

    margin-bottom: 5px;

    color: #98a2b3;

    font-size: 8px;

    font-weight: 900;

    letter-spacing: 1px;

    text-transform: uppercase;

}


.jd-cart-item h2 {

    margin:

        0 0
        7px;

    font-size: 16px;

    font-weight: 850;

}


.jd-cart-item h2 a {

    color: #101828;

    text-decoration: none;

}


.jd-cart-item p {

    margin:

        0 0
        5px;

    color: #667085;

    font-size: 10px;

}


.jd-cart-item small {

    color: #98a2b3;

    font-size: 8px;

}


.jd-cart-line-total {

    white-space: nowrap;

    color: #101828;

    font-size: 14px;

}


.jd-cart-item-bottom {

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 20px;

    margin-top: 18px;

}


.jd-cart-quantity-form {

    display: flex;

    align-items: flex-end;

    gap: 8px;

}


.jd-cart-quantity-form label {

    display: grid;

    gap: 5px;

    color: #667085;

    font-size: 8px;

    font-weight: 750;

}


.jd-cart-quantity-form input {

    width: 65px;
    height: 35px;

    padding: 0 9px;

    border:

        1px solid
        #d0d5dd;

    border-radius: 7px;

    outline: none;

}


.jd-cart-quantity-form button {

    height: 35px;

    padding:

        0 12px;

    border:

        1px solid
        #d0d5dd;

    border-radius: 7px;

    background: #fff;

    color: #344054;

    font-size: 9px;

    font-weight: 800;

    cursor: pointer;

}


.jd-cart-remove {

    display: inline-flex;

    align-items: center;

    gap: 6px;

    padding: 0;

    border: 0;

    background: transparent;

    color: #b42318;

    font-size: 9px;

    font-weight: 750;

    cursor: pointer;

}


/*
|--------------------------------------------------------------------------
| CART SUMMARY
|--------------------------------------------------------------------------
*/

.jd-cart-summary {

    position: sticky;

    top: 95px;

    padding: 28px;

    border:

        1px solid
        #e4e7ec;

    border-radius: 14px;

    background: #fff;

}


.jd-cart-summary h2 {

    margin:

        0 0
        25px;

    color: #101828;

    font-size: 25px;

    font-weight: 900;

    letter-spacing: -.7px;

}


.jd-summary-lines {

    display: grid;

    gap: 14px;

}


.jd-summary-lines > div {

    display: flex;

    justify-content: space-between;

    gap: 20px;

    color: #667085;

    font-size: 10px;

}


.jd-summary-lines strong {

    color: #344054;

    font-size: 9px;

    text-align: right;

}


.jd-summary-total {

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 20px;

    margin-top: 24px;

    padding-top: 20px;

    border-top:

        1px solid
        #eaecf0;

}


.jd-summary-total span {

    color: #344054;

    font-size: 11px;

    font-weight: 800;

}


.jd-summary-total strong {

    color: #101828;

    font-size: 20px;

    font-weight: 900;

}


.jd-checkout-button {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    width: 100%;
    min-height: 50px;

    margin-top: 25px;

    border: 0;

    border-radius: 9px;

    background: #101828;

    color: #fff;

    text-decoration: none;

    font-size: 10px;

    font-weight: 850;

}


.jd-checkout-button:hover {

    background: #1d2939;

    color: #fff;

}


.jd-checkout-button:disabled {

    background: #d0d5dd;

    cursor: not-allowed;

}


.jd-checkout-disabled-note {

    margin:

        10px 0
        0;

    color: #98a2b3;

    text-align: center;

    font-size: 8px;

    line-height: 1.5;

}


.jd-cart-secure {

    display: flex;

    align-items: flex-start;

    gap: 8px;

    margin-top: 18px;

    color: #98a2b3;

    font-size: 8px;

    line-height: 1.5;

}


.jd-cart-secure i {

    color: #12b76a;

}


/*
|--------------------------------------------------------------------------
| EMPTY CART
|--------------------------------------------------------------------------
*/

.jd-cart-empty {

    max-width: 560px;

    margin: 35px auto;

    padding:

        45px 20px;

    text-align: center;

}


.jd-cart-empty-icon {

    display: grid;

    place-items: center;

    width: 76px;
    height: 76px;

    margin:

        0 auto
        20px;

    border-radius: 20px;

    background: #fff;

    border:

        1px solid
        #e4e7ec;

    color: #667085;

    font-size: 28px;

}


.jd-cart-empty h2 {

    margin:

        0 0
        10px;

    color: #101828;

    font-size: 29px;

    font-weight: 900;

    letter-spacing: -1px;

}


.jd-cart-empty p {

    margin:

        0 0
        24px;

    color: #667085;

    font-size: 11px;

}


.jd-cart-shop-button {

    width: auto;

    background: #101828;

    color: #fff;

}


.jd-cart-shop-button:hover {

    background: #1d2939;

    color: #fff;

}


/*
|--------------------------------------------------------------------------
| PDP + CART RESPONSIVE
|--------------------------------------------------------------------------
*/

@media (max-width: 950px) {

    .jd-pdp-grid {

        grid-template-columns: 1fr;

        gap: 35px;

    }


    .jd-pdp-info {

        position: static;

    }


    .jd-product-details-grid {

        grid-template-columns: 1fr;

        gap: 40px;

    }


    .jd-cart-layout {

        grid-template-columns: 1fr;

    }


    .jd-cart-summary {

        position: static;

    }

}


@media (max-width: 600px) {

    .jd-product-breadcrumb {

        min-height: 50px;

        font-size: 8px;

    }


    .jd-pdp-section {

        padding-top: 4px;

        padding-bottom: 60px;

    }


    .jd-pdp-main-image {

        border-radius: 12px;

    }


    .jd-pdp-thumbnails {

        grid-template-columns:

            repeat(4, 1fr);

    }


    .jd-pdp-info h1 {

        font-size: 34px;

        letter-spacing: -1.4px;

    }


    .jd-pdp-price {

        font-size: 20px;

    }


    .jd-product-details-section {

        padding:

            60px 0;

    }


    .jd-product-description-content h2 {

        font-size: 30px;

    }


    .jd-cart-header {

        padding:

            40px 0
            30px;

    }


    .jd-cart-header h1 {

        font-size: 38px;

    }


    .jd-cart-section {

        padding:

            28px 0
            60px;

    }


    .jd-cart-item {

        grid-template-columns:

            95px
            minmax(0, 1fr);

        gap: 13px;

        padding: 14px;

    }


    .jd-cart-item-top {

        flex-direction: column;

        gap: 8px;

    }


    .jd-cart-line-total {

        font-size: 12px;

    }


    .jd-cart-item-bottom {

        align-items: flex-start;

        flex-direction: column;

        gap: 12px;

    }


    .jd-cart-summary {

        padding: 22px;

    }

}
/*
|--------------------------------------------------------------------------
| COLLECTION / SEARCH LISTING
|--------------------------------------------------------------------------
*/

.jd-store-breadcrumb {

    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 8px;

    margin-bottom: 35px;

    color: #98a2b3;

    font-size: 9px;

}


.jd-store-breadcrumb a {

    color: #667085;

    text-decoration: none;

}


.jd-store-breadcrumb a:hover {

    color: #2563eb;

}


.jd-store-breadcrumb i {

    font-size: 7px;

}


.jd-collection-hero {

    padding:

        48px 0
        55px;

    border-bottom:

        1px solid
        #e4e7ec;

    background:

        radial-gradient(
            circle at 90% 20%,
            rgba(37,99,235,.08),
            transparent 25%
        ),

        #fff;

}


.jd-collection-hero-grid {

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 40px;

}


.jd-collection-hero h1,
.jd-search-hero h1 {

    margin:

        0 0
        14px;

    color: #101828;

    font-size:

        clamp(
            42px,
            5vw,
            68px
        );

    line-height: 1;

    letter-spacing: -3px;

    font-weight: 900;

}


.jd-collection-hero p {

    max-width: 650px;

    margin: 0;

    color: #667085;

    font-size: 13px;

    line-height: 1.75;

}


.jd-collection-code {

    flex: 0 0 auto;

    padding:

        18px 22px;

    border:

        1px solid
        #eaecf0;

    border-radius: 12px;

    background: #f9fafb;

}


.jd-collection-code span {

    display: block;

    margin-bottom: 4px;

    color: #98a2b3;

    font-size: 7px;

    font-weight: 900;

    letter-spacing: 1px;

}


.jd-collection-code strong {

    font-family:
        Consolas,
        monospace;

    color: #344054;

    font-size: 18px;

}


/*
|--------------------------------------------------------------------------
| SEARCH HERO
|--------------------------------------------------------------------------
*/

.jd-search-hero {

    padding:

        48px 0
        45px;

    border-bottom:

        1px solid
        #eaecf0;

    background: #fff;

}


.jd-search-heading {

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 40px;

}


.jd-store-searchbox {

    display: flex;

    align-items: center;

    min-width: 370px;

    height: 48px;

    padding-left: 15px;

    overflow: hidden;

    border:

        1px solid
        #d0d5dd;

    border-radius: 10px;

    background: #fff;

}


.jd-store-searchbox > i {

    color: #98a2b3;

    font-size: 14px;

}


.jd-store-searchbox input {

    flex: 1;

    min-width: 0;

    height: 100%;

    padding:

        0 12px;

    border: 0;

    outline: 0;

    color: #101828;

    font-size: 11px;

}


.jd-store-searchbox button {

    height: 100%;

    padding:

        0 20px;

    border: 0;

    background: #101828;

    color: #fff;

    font-size: 9px;

    font-weight: 850;

    cursor: pointer;

}


/*
|--------------------------------------------------------------------------
| LISTING
|--------------------------------------------------------------------------
*/

.jd-listing-section {

    padding:

        35px 0
        90px;

    background: #f8fafc;

}


.jd-listing-grid {

    grid-template-columns:

        repeat(
            4,
            minmax(0, 1fr)
        );

}


/*
|--------------------------------------------------------------------------
| FILTER BAR
|--------------------------------------------------------------------------
*/

.jd-store-filterbar {

    display: flex;

    align-items: center;

    justify-content: space-between;

    flex-wrap: wrap;

    gap: 14px;

    margin-bottom: 27px;

    padding:

        14px;

    border:

        1px solid
        #e4e7ec;

    border-radius: 12px;

    background: #fff;

}


.jd-filter-group {

    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 8px;

}


.jd-store-filter,
.jd-price-filter {

    height: 38px;

    padding:

        0 12px;

    border:

        1px solid
        #d0d5dd;

    border-radius: 8px;

    background: #fff;

    color: #344054;

    font-size: 9px;

    outline: none;

}


.jd-store-filter {

    min-width: 125px;

}


.jd-price-filter {

    width: 86px;

}


.jd-store-filter:focus,
.jd-price-filter:focus {

    border-color: #2563eb;

}


.jd-availability-filter {

    display: flex;

    align-items: center;

    gap: 7px;

    height: 38px;

    padding:

        0 10px;

    border:

        1px solid
        #e4e7ec;

    border-radius: 8px;

    background: #f9fafb;

    color: #475467;

    font-size: 9px;

    font-weight: 700;

    cursor: pointer;

}


.jd-availability-filter input {

    accent-color: #2563eb;

}


.jd-filter-button {

    height: 38px;

    padding:

        0 15px;

    border: 0;

    border-radius: 8px;

    background: #101828;

    color: #fff;

    font-size: 9px;

    font-weight: 850;

    cursor: pointer;

}


.jd-clear-filter {

    display: inline-flex;

    align-items: center;

    height: 38px;

    padding:

        0 8px;

    color: #667085;

    text-decoration: none;

    font-size: 9px;

    font-weight: 750;

}


.jd-clear-filter:hover {

    color: #2563eb;

}


.jd-results-meta {

    margin-bottom: 16px;

    color: #98a2b3;

    font-size: 9px;

}


.jd-results-meta strong {

    color: #344054;

}


/*
|--------------------------------------------------------------------------
| PAGINATION
|--------------------------------------------------------------------------
*/

.jd-store-pagination {

    display: grid;

    grid-template-columns:

        1fr
        auto
        1fr;

    align-items: center;

    margin-top: 50px;

    padding-top: 25px;

    border-top:

        1px solid
        #e4e7ec;

}


.jd-store-pagination a {

    display: inline-flex;

    align-items: center;

    gap: 7px;

    width: fit-content;

    color: #344054;

    text-decoration: none;

    font-size: 10px;

    font-weight: 800;

}


.jd-store-pagination a:last-child {

    justify-self: end;

}


.jd-store-pagination a:hover {

    color: #2563eb;

}


.jd-store-pagination strong {

    color: #98a2b3;

    font-size: 9px;

    font-weight: 800;

}


.jd-empty-button {

    width: auto;

    margin-top: 20px;

    background: #101828;

    color: #fff;

}


.jd-empty-button:hover {

    color: #fff;

}


/*
|--------------------------------------------------------------------------
| RESPONSIVE
|--------------------------------------------------------------------------
*/

@media(max-width: 1000px) {

    .jd-listing-grid {

        grid-template-columns:

            repeat(
                3,
                minmax(0, 1fr)
            );

    }


    .jd-search-heading {

        align-items: stretch;

        flex-direction: column;

    }


    .jd-store-searchbox {

        width: 100%;

        min-width: 0;

    }

}


@media(max-width: 760px) {

    .jd-collection-hero {

        padding:

            35px 0
            42px;

    }


    .jd-collection-hero-grid {

        align-items: flex-start;

        flex-direction: column;

    }


    .jd-collection-code {

        display: none;

    }


    .jd-collection-hero h1,
    .jd-search-hero h1 {

        font-size: 42px;

        letter-spacing: -2px;

    }


    .jd-store-filterbar {

        align-items: stretch;

        flex-direction: column;

    }


    .jd-filter-group {

        width: 100%;

    }


    .jd-store-filter {

        flex: 1;

        min-width: 130px;

    }


    .jd-listing-grid {

        grid-template-columns:

            repeat(
                2,
                minmax(0, 1fr)
            );

        gap: 10px;

    }

}


@media(max-width: 480px) {

    .jd-search-hero {

        padding:

            32px 0;

    }


    .jd-store-searchbox button {

        padding:

            0 14px;

    }


    .jd-filter-group {

        display: grid;

        grid-template-columns:

            repeat(
                2,
                minmax(0,1fr)
            );

    }


    .jd-store-filter,
    .jd-price-filter {

        width: 100%;

        min-width: 0;

    }


    .jd-availability-filter {

        width: 100%;

    }


    .jd-filter-button {

        width: 100%;

    }


    .jd-store-pagination {

        margin-top: 35px;

    }

}