/* ============================================================
   LUSQUAN / TSHIELD SHOP
   Dedicated public storefront presentation
   ============================================================ */

.shop-shell {
    --shop-blue: #0099ff;
    --shop-blue-dark: #0077dd;
    --shop-ink: #071827;
    --shop-copy: #526579;
    --shop-border: rgba(0, 119, 221, .14);
    --shop-soft-blue: #f2f8ff;
    --shop-card: rgba(255, 255, 255, .94);

    min-height: 100vh;
}


/* ------------------------------------------------------------
   Active navigation
   ------------------------------------------------------------ */

.shop-shell .landing-links a[aria-current="page"] {
    position: relative;
}

.shop-shell .landing-links a[aria-current="page"]::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -8px;
    height: 3px;
    border-radius: 999px;
    background: #ffffff;
}


/* ------------------------------------------------------------
   Shop body
   ------------------------------------------------------------ */

.shop-main {
    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #fbfdff 48%,
            #ffffff 100%
        );
    color: var(--shop-ink);
}


/* ------------------------------------------------------------
   Hero
   ------------------------------------------------------------ */

.shop-hero {
    position: relative;
    min-height: 330px;
    padding: 68px 5vw 58px;
    overflow: hidden;
    display: grid;
    grid-template-columns:
        minmax(0, 1.05fr)
        minmax(390px, .95fr);
    gap: 38px;
    align-items: center;

    background:
        radial-gradient(
            circle at 84% 48%,
            rgba(0, 153, 255, .13),
            transparent 23%
        ),
        linear-gradient(
            110deg,
            #ffffff 0%,
            #ffffff 45%,
            #f5faff 72%,
            #ffffff 100%
        );

    border-bottom:
        1px solid rgba(0, 119, 221, .10);
}

.shop-hero-copy {
    position: relative;
    z-index: 5;
    max-width: 770px;
}

.shop-kicker,
.shop-section-kicker {
    display: block;
    color: var(--shop-blue);
    font-size: .95rem;
    font-weight: 900;
    letter-spacing: .045em;
    text-transform: uppercase;
}

.shop-hero h1 {
    margin: 14px 0 20px;
    font-size: clamp(3.5rem, 6vw, 6.2rem);
    line-height: .96;
    letter-spacing: -.045em;
    color: var(--shop-ink) !important;
    text-shadow: none !important;
}

.shop-hero p {
    max-width: 790px;
    margin: 0;
    font-size: 1.12rem;
    line-height: 1.7;
    color: var(--shop-copy);
}


/* ------------------------------------------------------------
   Dotted wave
   ------------------------------------------------------------ */

.shop-wave {
    position: absolute;
    z-index: 1;
    left: 35%;
    right: -5%;
    top: 50%;
    height: 245px;
    transform:
        translateY(-44%)
        rotate(-3deg);
    opacity: .82;
    pointer-events: none;

    background-image:
        radial-gradient(
            circle,
            rgba(0, 119, 255, .72) 0 2px,
            transparent 2.6px
        );

    background-size:
        18px 18px;

    mask-image:
        linear-gradient(
            90deg,
            transparent 0,
            #000 18%,
            #000 88%,
            transparent 100%
        );

    -webkit-mask-image:
        linear-gradient(
            90deg,
            transparent 0,
            #000 18%,
            #000 88%,
            transparent 100%
        );

    border-radius: 50%;
    filter:
        drop-shadow(
            0 10px 25px
            rgba(0, 153, 255, .12)
        );
}

.shop-wave::before,
.shop-wave::after {
    content: "";
    position: absolute;
    left: -4%;
    right: -4%;
    height: 85px;
    border-radius: 50%;
    background:
        linear-gradient(
            180deg,
            transparent,
            rgba(255,255,255,.92)
        );
}

.shop-wave::before {
    top: -22px;
    transform: rotate(3deg);
}

.shop-wave::after {
    bottom: -25px;
    transform: rotate(-4deg);
}


/* ------------------------------------------------------------
   Shield / cart visual
   ------------------------------------------------------------ */

.shop-hero-visual {
    position: relative;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 260px;
}

.shop-commerce-emblem {
    width: min(285px, 72%);
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    border-radius: 50%;

    background:
        rgba(255, 255, 255, .82);

    border:
        1px solid rgba(0, 153, 255, .12);

    box-shadow:
        0 24px 70px rgba(0, 119, 221, .12),
        0 0 0 20px rgba(255,255,255,.42);
}

.shop-commerce-emblem svg {
    width: 78%;
    height: 78%;
    overflow: visible;
}


/* ------------------------------------------------------------
   Catalogue section
   ------------------------------------------------------------ */

.shop-catalogue {
    padding:
        42px 5vw
        48px;
    background: #ffffff;
}

.shop-catalogue-inner {
    max-width: 1460px;
    margin: 0 auto;
}

.shop-catalogue h2 {
    margin:
        7px 0
        10px;
    font-size:
        clamp(
            2rem,
            3vw,
            3.15rem
        );
    letter-spacing: -.025em;
    color: var(--shop-ink) !important;
}

.shop-catalogue-intro {
    max-width: 690px;
    margin: 0;
    font-size: 1.03rem;
    line-height: 1.55;
    color: var(--shop-copy);
}


/* ------------------------------------------------------------
   Category cards
   ------------------------------------------------------------ */

.shop-category-grid {
    display: grid;
    grid-template-columns:
        repeat(5, minmax(0, 1fr));
    gap: 18px;
    margin-top: 24px;
}

.shop-category-card {
    min-height: 260px;
    padding: 27px 21px 20px;
    border-radius: 12px;

    border:
        1px solid var(--shop-border);

    background:
        linear-gradient(
            180deg,
            #ffffff,
            #fcfdff
        );

    box-shadow:
        0 10px 34px
        rgba(15, 52, 90, .035);

    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;

    transition:
        transform .18s ease,
        box-shadow .18s ease,
        border-color .18s ease;
}

.shop-category-card:hover {
    transform: translateY(-4px);
    border-color:
        rgba(0, 153, 255, .35);

    box-shadow:
        0 20px 44px
        rgba(0, 119, 221, .10);
}

.shop-category-icon {
    width: 74px;
    height: 74px;
    margin-bottom: 9px;
    display: grid;
    place-items: center;
}

.shop-category-icon svg {
    width: 62px;
    height: 62px;
    stroke: var(--shop-blue);
    fill: none;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.shop-category-card h3 {
    margin: 4px 0 11px;
    font-size: 1.15rem;
    color: var(--shop-ink) !important;
}

.shop-category-card p {
    margin: 0;
    min-height: 69px;
    color: var(--shop-copy) !important;
    line-height: 1.48;
}

.shop-coming-soon {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-top: auto;
    min-height: 38px;
    padding: 0 17px;

    border-radius: 7px;

    background:
        linear-gradient(
            180deg,
            #f4f8fd,
            #eaf3fc
        );

    color: #17324d;
    font-size: .87rem;
    font-weight: 800;
}


/* ------------------------------------------------------------
   Development notice
   ------------------------------------------------------------ */

.shop-development-note {
    max-width: 1460px;
    margin:
        24px auto
        0;
    min-height: 62px;
    padding: 14px 20px;

    display: flex;
    align-items: center;
    gap: 14px;

    border:
        1px solid
        rgba(0, 119, 221, .21);

    border-radius: 10px;

    background:
        linear-gradient(
            90deg,
            #f7fbff,
            #ffffff
        );

    color: #0071d9;
    font-weight: 600;
}

.shop-development-icon {
    flex: 0 0 auto;
    width: 27px;
    height: 27px;
    border:
        2px solid var(--shop-blue);
    border-radius: 50%;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    color: var(--shop-blue);
    font-weight: 900;
    font-size: .92rem;
}


/* ------------------------------------------------------------
   Dark mode
   ------------------------------------------------------------ */

body.landing-dark-mode .shop-main {
    background:
        linear-gradient(
            180deg,
            #081526,
            #0c1c31 56%,
            #081526
        );
}

body.landing-dark-mode .shop-hero {
    background:
        radial-gradient(
            circle at 82% 48%,
            rgba(0,153,255,.13),
            transparent 26%
        ),
        linear-gradient(
            110deg,
            #081526,
            #0b1d31 64%,
            #09192b
        );
    border-bottom-color:
        rgba(0,153,255,.16);
}

body.landing-dark-mode .shop-hero h1,
body.landing-dark-mode .shop-catalogue h2 {
    color: #ffffff !important;
}

body.landing-dark-mode .shop-hero p,
body.landing-dark-mode .shop-catalogue-intro,
body.landing-dark-mode .shop-category-card p {
    color: #b9cbe0 !important;
}

body.landing-dark-mode .shop-catalogue {
    background: #081526;
}

body.landing-dark-mode .shop-category-card {
    background:
        linear-gradient(
            180deg,
            #0b1b2f,
            #091727
        );
    border-color:
        rgba(0,153,255,.18);
}

body.landing-dark-mode .shop-category-card h3 {
    color: #ffffff !important;
}

body.landing-dark-mode .shop-coming-soon {
    background: #10233a;
    color: #d9e9f9;
}

body.landing-dark-mode .shop-development-note {
    background:
        linear-gradient(
            90deg,
            rgba(0,153,255,.08),
            rgba(0,153,255,.025)
        );
    color: #7cc9ff;
    border-color:
        rgba(0,153,255,.28);
}

body.landing-dark-mode .shop-commerce-emblem {
    background:
        rgba(8, 21, 38, .74);
    border-color:
        rgba(0,153,255,.24);
}


/* ------------------------------------------------------------
   Responsive
   ------------------------------------------------------------ */

@media(max-width:1250px) {

    .shop-category-grid {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }
}


@media(max-width:900px) {

    .shop-hero {
        grid-template-columns: 1fr;
        padding-top: 50px;
    }

    .shop-hero-copy {
        max-width: none;
    }

    .shop-hero-visual {
        min-height: 210px;
    }

    .shop-commerce-emblem {
        width: 210px;
    }

    .shop-wave {
        left: 12%;
        right: -15%;
        top: 69%;
        opacity: .48;
    }

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


@media(max-width:600px) {

    .shop-hero {
        min-height: auto;
        padding:
            42px 22px
            38px;
    }

    .shop-hero h1 {
        font-size:
            clamp(
                3rem,
                16vw,
                4.3rem
            );
    }

    .shop-catalogue {
        padding:
            36px 22px;
    }

    .shop-category-grid {
        grid-template-columns: 1fr;
    }

    .shop-category-card {
        min-height: 235px;
    }

    .shop-development-note {
        align-items: flex-start;
    }
}
