/* =========================================================
   Theme
   ========================================================= */

:root {
    --igs-teal: #00c4d8;
    --igs-teal-bright: #19d8ea;
    --igs-teal-dark: #0095a6;
    --igs-black: #080d10;
    --igs-dark: #11191d;
    --igs-light: #f4f6f7;
    --igs-white: #ffffff;
    --igs-text: #20292d;
    --igs-muted: #68757b;
    --igs-border: #dce3e6;
    --igs-shadow: 0 14px 38px rgba(8, 18, 22, 0.09);
}

/* =========================================================
   Base
   ========================================================= */

html {
    min-height: 100%;
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    margin: 0;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    background: var(--igs-light);
    color: var(--igs-text);
    font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
}

button,
input,
select,
textarea {
    font: inherit;
}

/* =========================================================
   Shared Layout
   ========================================================= */

.site-container {
    width: min(1380px, calc(100% - 64px));
    margin: 0 auto;
}

.site-main {
    flex: 1;
    padding: 0 0 90px;

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(0, 196, 216, 0.07),
            transparent 38%
        ),

        repeating-linear-gradient(
            0deg,
            rgba(255, 255, 255, 0.012) 0px,
            rgba(255, 255, 255, 0.012) 1px,
            transparent 1px,
            transparent 4px
        ),

        repeating-linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.035) 0px,
            rgba(0, 0, 0, 0.035) 1px,
            transparent 1px,
            transparent 7px
        ),

        radial-gradient(
            circle at 18% 28%,
            rgba(255, 255, 255, 0.025),
            transparent 22%
        ),

        radial-gradient(
            circle at 76% 62%,
            rgba(0, 0, 0, 0.18),
            transparent 30%
        ),

        linear-gradient(
            180deg,
            #1a2023 0%,
            #111719 100%
        );
}

.site-main::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;

    background:
        radial-gradient(
            circle at center,
            transparent 45%,
            rgba(0,0,0,.22) 100%
        );
}

/* =========================================================
   Header
   ========================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(7, 12, 15, 0.97);
    border-bottom: 2px solid var(--igs-teal);
    backdrop-filter: blur(16px);
}

.header-inner {
    min-height: 86px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.site-brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: var(--igs-white);
}

.site-brand:hover {
    color: var(--igs-white);
}

.brand-mark {
    width: 54px;
    height: 54px;
    flex: 0 0 54px;
    overflow: hidden;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: var(--igs-teal);
    box-shadow:
        0 10px 28px rgba(0, 196, 216, 0.22);
}

.brand-logo {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.08;
}

.brand-text strong {
    color: var(--igs-white);
    font-size: 1.06rem;
    letter-spacing: -0.015em;
}

.brand-text small {
    margin-top: 6px;
    color: var(--igs-teal);
    font-size: 0.74rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 34px;
}

.site-nav a {
    position: relative;
    padding: 30px 0;
    color: #edf3f5;
    font-size: 0.94rem;
    font-weight: 750;
}

.site-nav a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 18px;
    left: 0;
    height: 2px;
    background: var(--igs-teal);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 160ms ease;
}

.site-nav a:hover {
    color: var(--igs-teal);
}

.site-nav a:hover::after {
    transform: scaleX(1);
}

.cart-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.cart-count {
    min-width: 24px;
    height: 24px;
    padding: 0 7px;
    display: inline-grid;
    place-items: center;
    border-radius: 999px;
    background: var(--igs-teal);
    color: var(--igs-black);
    font-size: 0.73rem;
    font-weight: 950;
}

.cart-drawer-shipping-note {
    margin: 0.35rem 0 0.85rem;
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.75;
}

/* =========================================================
   Full-Width Featured Hero
   ========================================================= */

.store-hero {
    position: relative;
    left: 50%;
    width: 100vw;
    margin-left: -50vw;
    overflow: hidden;
    background: var(--igs-black);
    color: var(--igs-white);
}

.store-hero-visual {
    position: relative;
    width: 100%;
    height: clamp(320px, 30vw, 420px);
    overflow: hidden;
    background: #15120f;
}

.store-hero-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center 45%;
}

.store-hero-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(
            90deg,
            rgba(8, 13, 16, 0.34) 0%,
            rgba(8, 13, 16, 0.08) 34%,
            transparent 62%
        ),
        linear-gradient(
            0deg,
            rgba(8, 13, 16, 0.58) 0%,
            transparent 42%
        );
    pointer-events: none;
}

.store-hero-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    box-shadow: inset 0 0 90px rgba(0, 0, 0, 0.18);
    pointer-events: none;
}

.hero-featured-label {
    position: absolute;
    top: clamp(22px, 3vw, 46px);
    left: max(24px, calc((100vw - 1380px) / 2));
    z-index: 3;
    padding: 10px 16px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-left: 4px solid var(--igs-teal);
    border-radius: 7px;
    background: rgba(8, 13, 16, 0.72);
    color: var(--igs-white);
    font-size: clamp(0.82rem, 1vw, 1rem);
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.26);
    backdrop-filter: blur(12px);
}

.hero-product-callout {
    position: absolute;
    right: 24px;
    bottom: 24px;
    z-index: 3;
    width: min(340px, calc(100% - 48px));
    padding: 17px 19px;
    border-left: 3px solid var(--igs-teal);
    border-radius: 8px;
    background: rgba(10, 10, 9, 0.84);
    color: var(--igs-white);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(12px);
}

.hero-product-callout span {
    display: block;
    margin-bottom: 6px;
    color: var(--igs-teal);
    font-size: 0.72rem;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

.hero-product-callout p {
    margin: 0;
    color: #ecf1f2;
    font-size: 0.81rem;
    line-height: 1.55;
}

/* =========================================================
   Product Grid Section
   ========================================================= */

.products-section {
    padding: 58px 0 0;
    scroll-margin-top: 110px;
}

.products-heading {
    margin-bottom: 26px;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 34px;
}

.products-heading > div {
    min-width: 0;
}

.products-heading .section-eyebrow {
    margin-bottom: 8px;
    color: var(--igs-teal);
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.products-heading h2 {
    margin: 0;
    color: var(--igs-white);
    font-size: clamp(2rem, 4vw, 3.05rem);
    line-height: 1;
    letter-spacing: -0.05em;
}

.products-heading > p {
    max-width: 520px;
    margin: 0 0 4px;
    color: var(--igs-muted);
    line-height: 1.6;
    text-align: right;
}

/* =========================================================
   Simple Product Grid
   ========================================================= */

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 36px;
}

.product-card {
    min-width: 0;
    overflow: hidden;
    display: block;

    background:
        linear-gradient(
            180deg,
            #252c30 0%,
            #1b2124 100%
        );

    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 14px;

    box-shadow:
        0 16px 36px rgba(0, 0, 0, 0.34),
        inset 0 1px 0 rgba(255, 255, 255, 0.025);

    transition:
        transform 180ms ease,
        box-shadow 180ms ease,
        border-color 180ms ease;
}

.product-card:hover {
    color: inherit;
    transform: translateY(-6px);
    border-color: rgba(0, 196, 216, 0.42);

    box-shadow:
        0 22px 48px rgba(0, 0, 0, 0.46),
        0 0 0 1px rgba(0, 196, 216, 0.06);
}

.product-thumbnail {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: #151a1d;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.product-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition:
        transform 260ms ease,
        filter 260ms ease;
}

.product-card:hover .product-image {
    transform: scale(1.045);
    filter: saturate(1.05);
}

.product-placeholder {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle at 50% 38%, rgba(0, 196, 216, 0.18), transparent 36%),
        linear-gradient(135deg, #11191d, #080d10);
}

.product-placeholder span {
    color: var(--igs-teal);
    font-size: 2rem;
    font-weight: 950;
    letter-spacing: -0.07em;
}

.product-card-content {
    padding: 18px 18px 20px;
    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.018),
            rgba(0, 0, 0, 0.04)
        );
}

.product-card-content h3 {
    margin: 0;
    color: #edf3f5;
    font-size: 1rem;
    line-height: 1.35;
    letter-spacing: -0.02em;
}

.product-card-content strong {
    display: block;
    margin-top: 10px;
    color: var(--igs-teal-bright);
    font-size: 1.14rem;
}

/* =========================================================
   Empty Product State
   ========================================================= */

.empty-products
{
    max-width: 760px;

    margin: 40px auto;

    padding: 70px 40px;

    text-align: center;

    border: 1px solid rgba(255,255,255,.08);
    border-radius: 16px;

    background:
        radial-gradient(
            circle at top,
            rgba(0,196,216,.08),
            transparent 45%
        ),
        linear-gradient(
            180deg,
            rgba(255,255,255,.04),
            rgba(255,255,255,.02)
        );

    box-shadow:
        0 20px 40px rgba(0,0,0,.22);
}

.empty-products h3
{
    margin: 0 0 18px;

    color: white;

    font-size: 2rem;
    font-weight: 800;
}

.empty-products p
{
    max-width: 520px;

    margin: 0 auto;

    color: #b9c3c8;

    line-height: 1.8;
}

/* =========================================================
   Product Modal
   ========================================================= */

body.modal-open {
    overflow: hidden;
}

.product-modal {
    position: fixed;
    inset: 0;
    z-index: 5000;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 24px;

    opacity: 0;
    visibility: hidden;

    transition:
        opacity 220ms ease,
        visibility 220ms ease;
}

.product-modal.open {
    opacity: 1;
    visibility: visible;
}

.product-modal-backdrop {
    position: absolute;
    inset: 0;

    background: rgba(0, 0, 0, 0.78);
    backdrop-filter: blur(8px);
}

.product-modal-window {
    position: relative;
    z-index: 2;

    width: min(1050px, 92vw);
    max-height: 90vh;
    overflow: auto;

    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;

    background:
        radial-gradient(
            circle at 85% 0%,
            rgba(0, 196, 216, 0.06),
            transparent 30%
        ),
        linear-gradient(
            180deg,
            #1d2529 0%,
            #151c1f 100%
        );

    color: var(--igs-white);

    box-shadow:
        0 40px 100px rgba(0, 0, 0, 0.72),
        inset 0 1px 0 rgba(255, 255, 255, 0.035);

    transform: translateY(30px) scale(0.985);

    transition:
        transform 220ms ease;
}

.product-modal.open .product-modal-window {
    transform: translateY(0) scale(1);
}

.product-modal-body {
    display: grid;
    grid-template-columns: minmax(0, 500px) minmax(0, 1fr);
    gap: 40px;

    padding: 40px;
}

.product-modal-gallery {
    min-width: 0;
}

.product-modal-image {
    overflow: hidden;

    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 12px;

    background: #101619;
}

.product-modal-image img {
    width: 100%;
    display: block;

    border-radius: 12px;

    object-fit: cover;
}

.product-modal-details {
    min-width: 0;
    padding-top: 2px;
}

.product-modal-details h2 {
    max-width: calc(100% - 48px);
    margin: 0;

    color: var(--igs-white);

    font-size: clamp(1.8rem, 3vw, 2.35rem);
    line-height: 1.1;
    letter-spacing: -0.035em;
}

.modal-price {
    margin-top: 18px;
    margin-bottom: 24px;

    color: var(--igs-teal-bright);

    font-size: 2rem;
    font-weight: 950;
    line-height: 1;
}

.product-modal-description {
    margin: 0;

    color: #c7d1d5;

    font-size: 0.98rem;
    line-height: 1.7;

    white-space: pre-line;
}

.product-modal-inventory {
    margin: 22px 0 0;

    color: #9fd9bd;

    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.product-modal-inventory.out-of-stock {
    color: #f1958d;
}

.product-modal-details .hero-button {
    min-height: 52px;
    margin-top: 28px;
    padding: 0 26px;

    border: 1px solid var(--igs-teal);
    border-radius: 7px;

    background:
        linear-gradient(
            180deg,
            var(--igs-teal-bright),
            var(--igs-teal-dark)
        );

    color: var(--igs-black);

    font-size: 0.88rem;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: 0.07em;

    cursor: pointer;

    box-shadow:
        0 12px 28px rgba(0, 196, 216, 0.2);

    transition:
        transform 160ms ease,
        box-shadow 160ms ease,
        filter 160ms ease;
}

.product-modal-details .hero-button:hover:not(:disabled) {
    transform: translateY(-2px);
    filter: brightness(1.07);

    box-shadow:
        0 16px 34px rgba(0, 196, 216, 0.28);
}

.product-modal-details .hero-button:active:not(:disabled) {
    transform: translateY(0);
}

.product-modal-details .hero-button:disabled {
    border-color: rgba(255, 255, 255, 0.08);
    background: #30383c;
    color: #7c898e;

    cursor: not-allowed;
    box-shadow: none;
}

.product-modal-thumbnails {
    margin-top: 14px;

    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.product-modal-thumbnail {
    width: 72px;
    height: 72px;
    padding: 0;
    overflow: hidden;

    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;

    background: #111719;

    cursor: pointer;
    opacity: 0.65;

    transition:
        opacity 150ms ease,
        border-color 150ms ease,
        transform 150ms ease;
}

.product-modal-thumbnail:hover,
.product-modal-thumbnail.active {
    opacity: 1;
    border-color: var(--igs-teal);
    transform: translateY(-2px);
}

.product-modal-thumbnail img {
    width: 100%;
    height: 100%;
    display: block;

    object-fit: cover;
}

.product-modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 3;

    width: 42px;
    height: 42px;
    padding: 0;

    display: grid;
    place-items: center;

    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;

    background: #2a3337;
    color: var(--igs-white);

    font-size: 20px;
    line-height: 1;

    cursor: pointer;

    transition:
        background 160ms ease,
        color 160ms ease,
        transform 160ms ease,
        border-color 160ms ease;
}

.product-modal-close:hover {
    border-color: rgba(0, 196, 216, 0.45);
    background: #313d42;
    color: var(--igs-teal-bright);

    transform: rotate(5deg);
}

.product-modal-close:focus-visible,
.product-modal-details .hero-button:focus-visible,
.product-modal-thumbnail:focus-visible {
    outline: 3px solid rgba(25, 216, 234, 0.42);
    outline-offset: 3px;
}

.product-modal-variants {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin: 1rem 0;
}

.product-modal-variant-options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.product-variant-option {
    min-width: 50px;
    padding: 0.65rem 0.9rem;

    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;

    background: rgba(255, 255, 255, 0.05);
    color: white;

    font: inherit;
    font-weight: 700;

    cursor: pointer;
}

.product-variant-option:hover {
    border-color: #3eddd0;
    background: rgba(62, 221, 208, 0.1);
}

.product-variant-option.is-selected {
    border-color: #3eddd0;
    background: rgba(62, 221, 208, 0.18);
}

.product-variant-option:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.product-variant-option.out-of-stock
{
    position: relative;
    opacity: 0.55;
}

.product-variant-option.out-of-stock::after
{
    content: "";

    position: absolute;

    left: 22%;
    top: 50%;

    width: 56%;
    height: 1px;

    background: #d64646;

    transform: rotate(-30deg);

    pointer-events: none;
}

/* =========================================================
   Footer
   ========================================================= */

.site-footer {
    background: var(--igs-black);
    color: #c9d2d5;
    border-top: 2px solid rgba(0, 196, 216, 0.55);
}

.footer-inner {
    min-height: 128px;
    padding: 30px 0;

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
}

.footer-branding {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.footer-branding p {
    margin: 0;
    color: #9ca8ac;
}

.footer-email {
    width: fit-content;

    color: var(--igs-teal-bright);
    font-size: 0.92rem;
    font-weight: 750;

    transition: color 160ms ease;
}

.footer-email:hover {
    color: var(--igs-white);
}

.footer-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 12px 24px;
}

.footer-links a {
    position: relative;

    color: #d4dcdf;
    font-size: 0.88rem;
    font-weight: 700;

    transition: color 160ms ease;
}

.footer-links a:hover {
    color: var(--igs-teal-bright);
}

.footer-links a:not(:last-child)::after {
    content: "";

    position: absolute;
    top: 50%;
    right: -13px;

    width: 3px;
    height: 3px;

    border-radius: 50%;
    background: rgba(255, 255, 255, 0.28);

    transform: translateY(-50%);
}

/* =========================================================
   Quantity Selector
   ========================================================= */

.product-modal-purchase {

    margin-top: 36px;

    display: flex;
    flex-direction: column;
    gap: 18px;

    width: 100%;
}

.quantity-control {

    display: inline-flex;
    align-items: center;

    width: 150px;

    overflow: hidden;

    border-radius: 10px;

    border: 1px solid rgba(255,255,255,.08);

    background:
        linear-gradient(
            180deg,
            #252d31,
            #1b2023
        );
}

#addProductToCart {

    width: 100%;
    max-width: 330px;

    height: 58px;

    font-size: 1rem;
    font-weight: 800;

    letter-spacing: .08em;

    border-radius: 10px;
}

#addProductToCart:hover {

    transform: translateY(-2px);

    box-shadow:
        0 12px 24px rgba(0,196,216,.28);
}

#addProductToCart:active {

    transform: translateY(0);
}

.quantity-label {

    color: rgba(255,255,255,.65);

    font-size: .78rem;

    text-transform: uppercase;

    letter-spacing: .12em;

    font-weight: 700;
}

.quantity-control button {

    width: 46px;
    height: 52px;

    border: none;

    background: transparent;

    color: var(--igs-white);

    font-size: 1.4rem;
    font-weight: 700;

    cursor: pointer;

    transition:
        background .18s,
        color .18s;
}

.quantity-control button:hover {

    background: rgba(0,196,216,.08);

    color: var(--igs-teal-bright);
}

.quantity-control button:active {

    background: rgba(0,196,216,.15);
}

.quantity-control span {

    width: 52px;

    text-align: center;

    color: white;

    font-size: 1rem;
    font-weight: 900;

    user-select: none;
}

.quantity-control button:disabled {

    opacity: .3;

    cursor: not-allowed;
}

.quantity-control button:disabled:hover {

    background: transparent;

    color: white;
}

/* =========================================================
   Responsive
   ========================================================= */

@media (max-width: 900px) {
    .site-container {
        width: min(100% - 36px, 1380px);
    }

    .store-hero-visual
    {
        height: clamp(240px, 38vw, 330px);
    }

    .hero-featured-label {
        left: 24px;
    }

    .products-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .products-heading > p {
        margin: 0;
        text-align: left;
    }

    .product-modal {
        padding: 12px;
    }

    .product-modal-window {
        width: min(680px, calc(100vw - 24px));
    }

    .product-modal-body {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 28px;
    }

    .product-modal-details h2 {
        max-width: calc(100% - 42px);
    }
}

/* ============================================================
   Shopping Cart Drawer
============================================================ */

.cart-drawer
{
    position: fixed;
    inset: 0;

    pointer-events: none;

    z-index: 5000;

    visibility: hidden;
}

.cart-drawer.initialized
{
    visibility: visible;
}

.cart-drawer-backdrop
{
    position: absolute;
    inset: 0;

    background: rgba(0, 0, 0, .68);

    opacity: 0;

    transition: opacity .25s ease;
}

.cart-drawer-panel
{
    position: absolute;

    top: 0;
    right: 0;

    width: 420px;
    max-width: 100%;
    height: 100%;

    display: flex;
    flex-direction: column;

    background: #171d22;

    border-left: 1px solid rgba(255, 255, 255, .08);

    transform: translateX(100%);
    transition: transform .30s ease;

    box-shadow:
        -20px 0 50px rgba(0, 0, 0, .45);
}


/* ============================================================
   Open State
============================================================ */

.cart-drawer.open
{
    pointer-events: auto;
}

.cart-drawer.open .cart-drawer-backdrop
{
    opacity: 1;
}

.cart-drawer.open .cart-drawer-panel
{
    transform: translateX(0);
}

body.cart-drawer-is-open
{
    overflow: hidden;
}


/* ============================================================
   Header
============================================================ */

.cart-drawer-header
{
    padding: 28px;

    display: flex;
    justify-content: space-between;
    align-items: flex-start;

    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.cart-drawer-header h2
{
    margin: 6px 0 0;

    color: #fff;

    font-size: 1.8rem;
    line-height: 1.1;
}

.cart-drawer-eyebrow
{
    font-size: .75rem;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: .14em;

    color: rgba(62,221,208,.55);

    margin-bottom: .35rem;
}

.cart-drawer-close
{
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    border: 1px solid transparent;
    border-radius: 50%;

    background: transparent;

    color: #fff;

    font-size: 1.5rem;
    line-height: 1;

    cursor: pointer;

    transition:
        color .2s ease,
        background .2s ease,
        border-color .2s ease,
        transform .2s ease;
}

.cart-drawer-close:hover
{
    color: var(--accent-color);

    background: rgba(255, 255, 255, .05);

    border-color: rgba(255, 255, 255, .08);

    transform: rotate(90deg);
}

/* ============================================================
   Checkout Success
============================================================ */

.checkout-success
{
    max-width: 700px;
    margin: 80px auto;
    padding: 40px;
    text-align: center;
}

.checkout-success h1
{
    color: #ffffff;
    margin-bottom: 24px;
}

.checkout-success p
{
    color: #c8d0d8;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 18px;
}

.checkout-success .button
{
    display: inline-block;
    margin-top: 24px;
}

/* ============================================================
   Body
============================================================ */

.cart-drawer-items
{
    flex: 1;

    overflow-y: auto;

    padding: 24px;
}

.cart-drawer-items::-webkit-scrollbar
{
    width: 8px;
}

.cart-drawer-items::-webkit-scrollbar-track
{
    background: transparent;
}

.cart-drawer-items::-webkit-scrollbar-thumb
{
    background: rgba(255, 255, 255, .12);

    border-radius: 999px;
}

.cart-drawer-item-variant
{
    margin-top: .2rem;

    font-size: .9rem;
    font-weight: 600;

    color: rgba(255,255,255,.72);
}

.cart-drawer-empty
{
    padding: 48px 32px;

    text-align: center;

    color: #aeb8bf;
}

.cart-drawer-empty strong
{
    display: block;

    margin-bottom: 8px;

    color: #fff;

    font-size: 1.1rem;
}

.cart-drawer-empty p
{
    margin: 0;
}


/* ============================================================
   Cart Items
============================================================ */

.cart-drawer-item
{
    display: flex;

    gap: 16px;

    padding: 18px 0;

    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.cart-drawer-item:first-child
{
    padding-top: 0;
}

.cart-drawer-item-image
{
    width: 90px;
    height: 90px;

    flex-shrink: 0;

    object-fit: cover;

    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 10px;

    background: #0f1418;
}

.cart-drawer-item-content
{
    min-width: 0;
    flex: 1;

    display: flex;
    flex-direction: column;
}

.cart-drawer-item-title
{
    margin: 0 0 8px;

    color: #fff;

    font-size: 1rem;
    font-weight: 700;
    line-height: 1.35;
}

.cart-drawer-item-price
{
    margin: 0;

    color: #25d4e8 !important;

    font-size: .95rem;
    font-weight: 800;
    line-height: 1.2;

    opacity: 1 !important;
}

.cart-drawer-item-controls
{
    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 12px;

    margin-top: auto;
    padding-top: 14px;
}


/* ============================================================
   Quantity Controls
============================================================ */

.cart-drawer-quantity
{
    display: flex;
    align-items: center;

    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 8px;

    overflow: hidden;

    background: #11171b;
}

.cart-drawer-quantity button
{
    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    border: none;

    background: #20262b;

    color: #fff;

    font-size: 1rem;
    line-height: 1;

    cursor: pointer;

    transition:
        background .2s ease,
        color .2s ease;
}

.cart-drawer-quantity button:hover:not(:disabled)
{
    background: var(--accent-color);

    color: #071014;
}

.cart-drawer-quantity button:disabled
{
    color: rgba(255, 255, 255, .25);

    cursor: not-allowed;
}

.cart-drawer-quantity span
{
    width: 40px;

    text-align: center;

    color: #fff;

    font-weight: 800;
}


/* ============================================================
   Remove Button
============================================================ */

.cart-drawer-remove
{
    padding: 6px 0;

    border: none;

    background: transparent;

    color: #ff6262;

    font-size: .9rem;
    font-weight: 700;

    cursor: pointer;

    transition:
        color .2s ease,
        transform .2s ease;
}

.cart-drawer-remove:hover
{
    color: #fff;

    transform: translateY(-1px);
}


/* ============================================================
   Footer
============================================================ */

.cart-drawer-footer
{
    padding: 24px;

    border-top: 1px solid rgba(255, 255, 255, .06);

    background: #151b20;

    box-shadow:
        0 -12px 30px rgba(0, 0, 0, .18);
}

.cart-drawer-subtotal
{
    display: flex;
    justify-content: space-between;
    align-items: center;

    margin-bottom: 18px;

    color: #fff;

    font-size: 1rem;
}

.cart-drawer-subtotal strong
{
    color: #fff;

    font-size: 1.1rem;
    font-weight: 800;
}

.cart-drawer-checkout
{
    appearance: none;

    width: 100%;
    height: 54px;

    border: none;
    border-radius: 10px;

    background: #16bfd1;
    color: #fff;

    font-family: inherit;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: .04em;

    cursor: pointer;

    box-shadow:
        0 8px 24px rgba(22, 191, 209, .22);

    transition:
        background .18s ease,
        transform .18s ease,
        box-shadow .18s ease;
}

.cart-drawer-checkout:hover:not(:disabled)
{
    background: #24d2e5;

    transform: translateY(-2px);

    box-shadow:
        0 12px 30px rgba(22, 191, 209, .32);
}

.cart-drawer-checkout:active:not(:disabled)
{
    transform: translateY(0);
}

.cart-drawer-checkout:disabled
{
    background: #30383e;
    color: rgba(255, 255, 255, .4);

    box-shadow: none;

    cursor: not-allowed;
}

/*==================================================
    ADMIN GENERAL SETTINGS
==================================================*/

.admin-settings-banner-preview
{
    width: 100%;
    overflow: hidden;

    border: 1px solid rgba(255,255,255,.10);
    border-radius: 12px;

    background:
        radial-gradient(
            circle at top,
            rgba(0,196,216,.08),
            transparent 45%
        ),
        rgba(0,0,0,.24);
}

.admin-settings-banner-preview img
{
    width: 100%;
    max-height: 420px;

    display: block;

    object-fit: cover;
    object-position: center;
}

.admin-settings-banner-preview span
{
    min-height: 240px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 32px;

    color: rgba(255,255,255,.55);

    text-align: center;
}

.admin-settings-upload-row
{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
}

.admin-field-help
{
    display: block;

    margin-top: 10px;

    color: rgba(255,255,255,.52);

    font-size: .88rem;
    line-height: 1.5;
}

.admin-success-message
{
    margin-bottom: 24px;
    padding: 14px 18px;

    color: #a9efc5;

    background: rgba(50,190,110,.12);

    border: 1px solid rgba(70,210,130,.30);
    border-radius: 8px;
}

@media (max-width: 680px)
{
    .admin-page-heading
    {
        flex-direction: column;
        align-items: flex-start;
    }

    .admin-form-actions
    {
        align-items: stretch;
        flex-direction: column-reverse;
    }

    .admin-form-actions
        .admin-button-primary,
    .admin-form-actions
        .admin-button-secondary
    {
        width: 100%;
    }

    .admin-settings-banner-preview img
    {
        max-height: 260px;
    }
}

.admin-page-heading h1
{
    margin: 0 0 8px;

    color: #ffffff;

    font-size: 2.2rem;
    font-weight: 700;
}

.admin-page-heading p
{
    margin: 0;

    color: #c8c8c8;

    font-size: 1rem;
    line-height: 1.5;
}

/*==================================================
    ADMIN LOGIN
==================================================*/

.admin-login
{
    max-width: 460px;
    margin: 80px auto;
    padding: 32px;

    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 14px;

    backdrop-filter: blur(12px);
}

.admin-login h1
{
    margin: 0 0 10px;

    color: #ffffff;
    font-size: 2rem;
    font-weight: 700;
}

.admin-login p
{
    margin-bottom: 28px;

    color: #b5b5b5;
    line-height: 1.5;
}

.admin-login label
{
    display: block;

    margin-bottom: 6px;

    color: #dddddd;
    font-weight: 600;
}

.admin-login input[type=text],
.admin-login input[type=password]
{
    width: 100%;

    margin-bottom: 18px;
    padding: 12px 14px;

    background: #1b1b1b;

    color: white;

    border: 1px solid #444;
    border-radius: 8px;

    transition:
        border-color .2s,
        box-shadow .2s;
}

.admin-login input:focus
{
    outline: none;

    border-color: #5aa8ff;

    box-shadow:
        0 0 0 3px rgba(90,168,255,.20);
}

.admin-login input[type=checkbox]
{
    margin-right: 8px;
}

.admin-login label:has(input[type=checkbox])
{
    display: flex;
    align-items: center;

    color: #cfcfcf;

    font-weight: normal;
}

.admin-login button
{
    width: 100%;

    padding: 13px;

    background: #3c84ff;

    color: white;

    font-size: 1rem;
    font-weight: 600;

    border: none;
    border-radius: 8px;

    cursor: pointer;

    transition:
        background .2s,
        transform .15s;
}

.admin-login button:hover
{
    background: #5797ff;
}

.admin-login button:active
{
    transform: scale(.98);
}

.validation-summary-errors
{
    margin-bottom: 18px;
    padding: 12px 16px;

    color: #ff9b9b;

    background: rgba(255,0,0,.10);

    border: 1px solid rgba(255,0,0,.25);

    border-radius: 8px;
}

.validation-summary-errors ul
{
    margin: 0;
    padding-left: 18px;
}

.field-validation-error
{
    display: block;

    margin-top: -12px;
    margin-bottom: 16px;

    color: #ff8f8f;
    font-size: .9rem;
}

.admin-login input::placeholder
{
    color: #7d7d7d;
}



/*==================================================
    ADMIN DASHBOARD
==================================================*/

.admin-product-drag-handle
{
    cursor: grab;
    user-select: none;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 36px;
    min-width: 36px;

    font-size: 22px;
    color: #888;
}

.admin-product-drag-handle:active
{
    cursor: grabbing;
}

.admin-product-drag-handle:hover
{
    color: #fff;
}

.admin-page-actions
{
    display: flex;
    align-items: center;
    gap: 1rem;
}

.admin-container
{
    max-width: 1400px;

    margin: 40px auto;

    padding: 0 24px;
}

.admin-header
{
    display: flex;

    justify-content: space-between;
    align-items: center;

    margin-bottom: 32px;
}

.admin-header h1
{
    color: white;

    margin: 0;

    font-size: 2rem;
}

.admin-card
{
    background: rgba(255,255,255,.05);

    border: 1px solid rgba(255,255,255,.08);

    border-radius: 12px;

    padding: 24px;
}

.admin-page
{
    max-width: 1200px;

    margin: 50px auto;

    padding: 0 24px;
}

.admin-page h1
{
    margin: 0 0 10px;

    color: #ffffff;

    font-size: 2.2rem;

    font-weight: 700;
}

.admin-page p
{
    margin-bottom: 30px;

    color: #c8c8c8;

    font-size: 1rem;
}

.admin-page strong
{
    color: #5aa8ff;
}

.admin-links
{
    display: flex;

    gap: 20px;

    margin-bottom: 30px;
}

.admin-links a
{
    color: #5aa8ff;

    text-decoration: none;

    font-weight: 600;

    transition: color .2s;
}

.admin-links a:hover
{
    color: white;
}

.admin-button-primary
{
    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 12px 22px;

    background: #00b8d9;

    color: white;

    text-decoration: none;

    font-size: .95rem;

    font-weight: 600;

    border: none;

    border-radius: 8px;

    cursor: pointer;

    transition:
        background .2s,
        transform .15s,
        box-shadow .2s;
}

.admin-button-primary:hover
{
    background: #14c8e8;

    transform: translateY(-1px);

    box-shadow:
        0 6px 18px rgba(0,184,217,.25);
}

.admin-button-primary:active
{
    transform: translateY(0);
}

.admin-button-primary:focus-visible
{
    outline: none;

    box-shadow:
        0 0 0 3px rgba(0,184,217,.25);
}

.admin-button-secondary
{
    padding: 11px 18px;

    background: #2b2b2b;

    color: white;

    border: 1px solid #444;

    border-radius: 8px;

    cursor: pointer;

    transition:
        background .2s,
        border-color .2s;
}

.admin-button-secondary:hover
{
    background: #3a3a3a;

    border-color: #5aa8ff;
}

.admin-page-heading
{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;

    margin-bottom: 30px;
}

.admin-page-heading h1
{
    margin-bottom: 8px;
}

.admin-page-heading p
{
    margin: 0;
}

.admin-back-link
{
    color: #5aa8ff;

    text-decoration: none;
    font-weight: 600;
}

.admin-back-link:hover
{
    color: #ffffff;
}

.admin-inventory-list
{
    display: grid;
    gap: 20px;
}

.admin-inventory-product
{
    padding: 24px;

    background: rgba(255,255,255,.05);

    border: 1px solid rgba(255,255,255,.08);
    border-radius: 12px;
}

.admin-inventory-product h2
{
    margin: 0 0 18px;

    color: #ffffff;

    font-size: 1.25rem;
}

.admin-inventory-variants
{
    display: grid;
    gap: 10px;
}

.admin-inventory-row
{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;

    padding: 14px 16px;

    background: rgba(0,0,0,.18);

    border: 1px solid rgba(255,255,255,.06);
    border-radius: 8px;

    color: #dddddd;
}

.admin-inventory-row strong
{
    color: #ffffff;
}

.admin-inventory-sku
{
    display: block;

    margin-top: 4px;

    color: #888888;

    font-size: .85rem;
}

.admin-inventory-count
{
    min-width: 54px;

    color: #5aa8ff;

    font-size: 1.35rem;
    font-weight: 700;

    text-align: right;
}

.admin-muted
{
    color: #999999;
}

.admin-empty-state
{
    padding: 24px;

    color: #aaaaaa;

    background: rgba(255,255,255,.04);

    border: 1px dashed rgba(255,255,255,.15);
    border-radius: 12px;
}

/*==================================================
    ADMIN PRODUCTS
==================================================*/

.admin-product-list
{
    display: grid;

    gap: 20px;
}

.admin-product-content
{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex: 1;
}

.admin-product-card
{
    display: flex;

    justify-content: space-between;
    align-items: center;

    gap: 24px;

    padding: 24px;

    background: rgba(255,255,255,.05);

    border: 1px solid rgba(255,255,255,.08);

    border-radius: 12px;

    transition:
        border-color .2s,
        transform .15s,
        box-shadow .2s;
}

.admin-product-card:hover
{
    transform: translateY(-2px);

    border-color: rgba(90,168,255,.35);

    box-shadow:
        0 8px 24px rgba(0,0,0,.25);
}

.admin-product-info
{
    flex: 1;
}

.admin-product-info h2
{
    margin: 0 0 12px;

    color: white;

    font-size: 1.35rem;
}

.admin-product-stats
{
    display: flex;

    flex-wrap: wrap;

    gap: 18px;

    color: #bdbdbd;
}

.admin-product-stats strong
{
    color: #5aa8ff;
}

.admin-product-card button
{
    min-width: 110px;
}

.admin-gallery-preview-grid
{
    display: grid;
    grid-template-columns:
        repeat(auto-fill, minmax(180px, 1fr));
    gap: 1rem;

    margin-top: 1.25rem;
}

.admin-gallery-preview-grid[hidden]
{
    display: none;
}

.admin-gallery-preview-card
{
    min-width: 0;
    overflow: hidden;

    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;

    background: rgba(0, 0, 0, 0.22);
}

.admin-gallery-preview-card img
{
    width: 100%;
    height: 160px;

    display: block;

    object-fit: cover;

    background: rgba(0, 0, 0, 0.3);
}

.admin-gallery-preview-footer
{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;

    padding: 0.75rem;
}

.admin-gallery-preview-name
{
    min-width: 0;
    overflow: hidden;

    color: rgba(255, 255, 255, 0.72);

    font-size: 0.82rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.admin-gallery-preview-remove
{
    flex-shrink: 0;

    padding: 0;

    border: 0;

    background: transparent;
    color: #ff8f8f;

    cursor: pointer;
    font: inherit;
    font-size: 0.82rem;
}

.admin-gallery-preview-remove:hover
{
    color: #ffffff;
    text-decoration: underline;
}

/*==================================================
    ADMIN PRODUCT EDIT
==================================================*/

.admin-file-input
{
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

.admin-file-button
{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(0, 200, 232, 0.55);
    border-radius: 0.45rem;
    background: rgba(0, 200, 232, 0.12);
    color: #ffffff;
    font-weight: 600;
    cursor: pointer;
}

.admin-file-button:hover
{
    background: rgba(0, 200, 232, 0.2);
}

.admin-file-name
{
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9rem;
}

.admin-image-upload-placeholder
{
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 220px;
    margin-top: 1rem;
    overflow: hidden;
    border: 1px dashed rgba(255, 255, 255, 0.2);
    border-radius: 0.6rem;
    background: rgba(0, 0, 0, 0.18);
    color: rgba(255, 255, 255, 0.55);
}

.admin-image-upload-placeholder img
{
    display: none;
    width: 100%;
    max-height: 360px;
    object-fit: contain;
}

.admin-checkbox
{
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    cursor: pointer;
}

.admin-checkbox input
{
    width: 18px;
    height: 18px;
}

.admin-form-actions
{
    display: flex;
    justify-content: flex-end;
    gap: 1rem;

    margin-top: 2rem;
}

.admin-validation-summary
{
    margin-bottom: 1.5rem;
    padding: 1rem;
    border: 1px solid rgba(255, 80, 80, 0.45);
    border-radius: 0.5rem;
    background: rgba(255, 80, 80, 0.1);
    color: #ffb3b3;
}

.admin-validation-summary:empty
{
    display: none;
}

.field-validation-error
{
    display: block;
    margin-top: 0.4rem;
    color: #ff9d9d;
    font-size: 0.9rem;
}

.admin-button-danger
{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;

    padding: 0.75rem 1rem;

    border: 1px solid rgba(255, 90, 90, 0.65);
    border-radius: 0.5rem;

    background: rgba(180, 35, 35, 0.16);
    color: #ffaaaa;

    font: inherit;
    font-weight: 700;
    text-decoration: none;

    cursor: pointer;
    transition:
        background 0.15s ease,
        border-color 0.15s ease,
        transform 0.15s ease;
}

.admin-button-danger:hover
{
    border-color: #ff6666;
    background: rgba(210, 45, 45, 0.28);
    color: #ffffff;
}

.admin-button-danger:active
{
    transform: translateY(1px);
}

.admin-product-actions
{
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.admin-danger-card
{
    border-color: rgba(255, 90, 90, 0.4);
}

.admin-delete-summary
{
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.admin-delete-product-image
{
    width: 140px;
    height: 140px;
    border-radius: 0.75rem;
    object-fit: cover;
}

.admin-delete-summary ul
{
    margin: 0.75rem 0 0;
    padding-left: 1.25rem;
}

.admin-button-primary,
.admin-button-secondary
{
    min-width: 150px;
    height: 46px;
    border-radius: 8px;
}

.admin-card + .admin-card
{
    margin-top: 1.5rem;
}

.admin-card-description
{
    margin: -0.75rem 0 1.5rem;
    color: rgba(255, 255, 255, 0.62);
    line-height: 1.5;
}

.admin-card ul li
{
    color: rgba(255, 255, 255, 0.62);
}

.admin-image-upload-placeholder
{
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 220px;
    margin-top: 1rem;
    border: 1px dashed rgba(255, 255, 255, 0.2);
    border-radius: 0.6rem;
    background: rgba(0, 0, 0, 0.18);
    color: rgba(255, 255, 255, 0.55);
}

.admin-card h2
{
    color: #ffffff
}

.admin-form-group
{
    display: flex;

    flex-direction: column;

    gap: 8px;

    margin-bottom: 24px;
}

.admin-form-group:last-child
{
    margin-bottom: 0;
}

.admin-form-group label
{
    font-size: .95rem;

    font-weight: 600;

    color: #d7d7d7;
}

.admin-form-group input,
.admin-form-group textarea
{
    width: 100%;

    padding: 12px 14px;

    background: rgba(0,0,0,.30);

    border: 1px solid rgba(255,255,255,.10);

    border-radius: 8px;

    color: white;

    font-size: .95rem;

    font-family: inherit;

    transition:
        border-color .2s,
        box-shadow .2s;
}

.admin-form-group textarea
{
    resize: vertical;

    min-height: 140px;
}

.admin-form-group input:focus,
.admin-form-group textarea:focus
{
    outline: none;

    border-color: #5aa8ff;

    box-shadow:
        0 0 0 3px rgba(90,168,255,.15);
}

.admin-form-actions
{
    display: flex;

    justify-content: flex-end;
}

/*==================================================
    ADMIN FULFILLMENT
==================================================*/

.fulfillment-summary
{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;

    margin: 30px 0;
}

.fulfillment-summary-card
{
    min-width: 180px;

    padding: 18px 22px;

    background: rgba(255,255,255,.05);

    border: 1px solid rgba(255,255,255,.08);
    border-radius: 12px;
}



.fulfillment-summary-label
{
    display: block;

    margin-bottom: 8px;

    color: #9da6ad;

    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.fulfillment-summary-value
{
    color: #5aa8ff;

    font-size: 2rem;
    font-weight: 800;
}

.summary-card
{
    display: block;

    min-width: 180px;

    padding: 18px 22px;

    text-decoration: none;
    color: inherit;

    background: rgba(255,255,255,.05);

    border: 1px solid rgba(255,255,255,.08);
    border-radius: 12px;

    transition:
        transform .18s ease,
        border-color .18s ease,
        box-shadow .18s ease,
        background .18s ease;
}

.summary-card:hover
{
    transform: translateY(-2px);

    border-color: rgba(0,196,216,.45);

    box-shadow:
        0 10px 24px rgba(0,0,0,.22);
}

.fulfillment-summary-card.active
{
    border-color: var(--igs-teal);

    background:
        linear-gradient(
            180deg,
            rgba(0,196,216,.16),
            rgba(255,255,255,.05)
        );

    box-shadow:
        0 0 0 1px rgba(0,196,216,.20),
        0 12px 28px rgba(0,196,216,.10);
}

.summary-count
{
    color: var(--igs-teal);

    font-size: 2rem;
    font-weight: 800;

    line-height: 1;
}

.summary-label
{
    margin-top: 8px;

    color: #9da6ad;

    font-size: .85rem;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: .08em;
}

.fulfillment-order-list
{
    display: grid;
    gap: 18px;
}

.fulfillment-order-card
{
    overflow: hidden;

    background: rgba(255,255,255,.05);

    border: 1px solid rgba(255,255,255,.08);
    border-radius: 12px;

    transition:
        border-color .2s,
        box-shadow .2s;
}

.fulfillment-order-card:hover,
.fulfillment-order-card[open]
{
    border-color: rgba(90,168,255,.30);

    box-shadow:
        0 10px 24px rgba(0,0,0,.22);
}

.fulfillment-order-summary
{
    min-height: 76px;
    padding: 20px 24px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    cursor: pointer;
    user-select: none;

    list-style: none;

    transition:
        background .2s;
}

.fulfillment-order-summary::-webkit-details-marker
{
    display: none;
}

.fulfillment-order-summary:hover
{
    background: rgba(255,255,255,.025);
}

.fulfillment-order-summary-main
{
    display: flex;
    align-items: center;
    gap: 14px;
}

.fulfillment-order-caret
{
    width: 10px;
    height: 10px;

    border-right: 2px solid #8f9aa1;
    border-bottom: 2px solid #8f9aa1;

    transform:
        rotate(-45deg);

    transition:
        transform .18s,
        border-color .18s;
}

.fulfillment-order-card[open]
    .fulfillment-order-caret
{
    transform:
        rotate(45deg);

    border-color: #5aa8ff;
}

.fulfillment-order-number
{
    color: #ffffff;

    font-size: 1.08rem;
    font-weight: 750;
}

.fulfillment-status
{
    flex-shrink: 0;

    padding: 6px 12px;

    border-radius: 999px;

    font-size: .75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .035em;
}

.fulfillment-status.unfulfilled
{
    background: rgba(210,70,70,.15);

    color: #ff8c8c;
}

.fulfillment-status.fulfilled
{
    background: rgba(60,190,120,.15);

    color: #7ce5a4;
}

.fulfillment-order-expanded
{
    padding: 0 24px 26px;

    border-top: 1px solid rgba(255,255,255,.07);
}

.fulfillment-order-overview
{
    padding: 24px 0;

    display: grid;
    grid-template-columns:
        repeat(2, minmax(0, 1fr));
    gap: 24px;

    border-bottom: 1px solid rgba(255,255,255,.07);
}

.fulfillment-order-overview > div
{
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.fulfillment-order-overview strong
{
    color: #ffffff;
}

.fulfillment-order-overview span:not(
    .fulfillment-section-label)
{
    color: #aab3b9;
}

.fulfillment-section-label
{
    color: #7f8990;

    font-size: .75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.fulfillment-order-section
{
    padding: 24px 0;

    border-bottom: 1px solid rgba(255,255,255,.07);
}

.fulfillment-order-section h2
{
    margin: 0 0 16px;

    color: #ffffff;

    font-size: 1rem;
}

.fulfillment-shipping-address
{
    display: flex;
    flex-direction: column;
    gap: 4px;

    color: #b8c0c5;

    font-style: normal;
    line-height: 1.45;
}

.fulfillment-shipping-address strong
{
    color: #ffffff;
}

.fulfillment-order-items
{
    display: grid;
}

.fulfillment-order-item
{
    padding: 14px 0;

    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;

    border-top: 1px solid rgba(255,255,255,.06);
}

.fulfillment-order-item:first-child
{
    padding-top: 0;

    border-top: none;
}

.fulfillment-order-item strong
{
    color: #ffffff;
}

.fulfillment-order-item span
{
    display: block;

    margin-top: 4px;

    color: #9ea7ad;
}

.fulfillment-order-total
{
    margin-top: 18px;
    padding-top: 18px;

    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;

    border-top: 1px solid rgba(255,255,255,.08);
}

.fulfillment-order-total span
{
    color: #9da6ad;
}

.fulfillment-order-total strong
{
    color: #00c4d8;

    font-size: 1.35rem;
}

.fulfillment-order-form
{
    padding-top: 24px;
}

.fulfillment-order-form-footer
{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;

    margin-top: 24px;
}

.fulfillment-checkbox
{
    display: inline-flex;
    align-items: center;
    gap: 10px;

    color: #d5dadd;

    cursor: pointer;
}

.fulfillment-checkbox input
{
    width: 19px;
    height: 19px;

    accent-color: #00b8d9;
}

.fulfillment-completed-date
{
    margin: 18px 0 0 !important;

    color: #7ce5a4 !important;

    font-size: .86rem !important;
}

@media (max-width: 680px)
{
    .fulfillment-summary-card
    {
        flex: 1;
        min-width: 130px;
    }

    .fulfillment-order-summary
    {
        padding: 18px;
    }

    .fulfillment-order-expanded
    {
        padding:
            0 18px 22px;
    }

    .fulfillment-order-overview
    {
        grid-template-columns: 1fr;
    }

    .fulfillment-order-form-footer
    {
        align-items: stretch;
        flex-direction: column;
    }

    .fulfillment-order-form-footer
        .admin-button-primary
    {
        width: 100%;
    }
}

/* ============================================================
   Mobile
============================================================ */

@media (max-width: 520px)
{
    .cart-drawer-panel
    {
        width: 100%;
    }

    .cart-drawer-header
    {
        padding: 22px;
    }

    .cart-drawer-items
    {
        padding: 20px;
    }

    .cart-drawer-footer
    {
        padding: 20px;
    }

    .cart-drawer-item-image
    {
        width: 78px;
        height: 78px;
    }

    .cart-drawer-item-title
    {
        font-size: .95rem;
    }
}

@media (max-width: 680px) {
    .site-container {
        width: min(100% - 24px, 1380px);
    }

    .header-inner {
        min-height: auto;
        padding: 15px 0;
        align-items: flex-start;
        flex-direction: column;
        gap: 15px;
    }

    .site-nav {
        width: 100%;
        justify-content: space-between;
        gap: 14px;
    }

    .site-nav a {
        padding: 7px 0;
        font-size: 0.86rem;
    }

    .site-nav a::after {
        bottom: 0;
    }

    .store-hero-visual
    {
        height: 220px;
    }

    .store-hero-image
    {
        object-position: center 42%;
    }

    .hero-featured-label {
        top: 14px;
        left: 12px;
        padding: 8px 12px;
        font-size: 0.72rem;
    }

    .hero-product-callout
    {
        display: none;
    }

    .products-section {
        padding-top: 44px;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        align-items: center;
        flex-direction: column;
        text-align: center;
    }

    .product-modal-body {
        padding: 22px;
    }

    .product-modal-window {
        max-height: calc(100vh - 24px);
        border-radius: 14px;
    }

    .product-modal-close {
        top: 12px;
        right: 12px;
    }
}
