:root {
    --bg: #04050a;
    --surface: #0f141f;
    --panel: #151c2b;
    --panel-alt: #1f2633;
    --border: #252b38;
    --border-soft: rgba(255, 255, 255, 0.08);
    --text: #141a24;
    --muted: #9299ab;
    --accent: #4ec3ff;
    --accent-strong: #1e9ae8;
    --danger: #ff5b5b;
    --shadow: 0 10px 45px rgba(2, 8, 20, 0.75);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    font-size: 15px;
    color: var(--text);
    font-family: "Inter", "Segoe UI", system-ui, sans-serif;
    line-height: 1.5;
}

a {
    color: var(--accent);
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.clear {
    clear: both;
}



.product-page {
    max-width: 1200px;
    margin: 0.25rem auto 0;
    padding: 0 3.5vw 3rem;
    background: #f3f5fb;
    border: 1px solid rgba(15, 20, 31, 0.05);
    border-radius: 32px;
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    box-shadow: 0 35px 80px rgba(15, 20, 31, 0.1);
    color: #0f141f;
}

.product-breadcrumb {
    padding: 0.25rem 3.5vw 0;
    margin-top: 0.25rem;
}

.product-page__overview {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: space-between;
    gap: 2rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(15, 20, 31, 0.08);
}

.product-page__meta {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}


.product-brand {
    font-size: 0.68rem;
    letter-spacing: 0.38em;
    text-transform: uppercase;
    color: rgba(15, 20, 31, 0.5);
}

.product-title {
    margin: 0;
    font-size: 2.1rem;
    letter-spacing: -0.02em;
    color: #0b1220;
    line-height: 1.15;
}

.product-tagline {
    margin: 0;
    color: rgba(15, 20, 31, 0.55);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-size: 0.72rem;
}

.sb-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    box-shadow: none;
    color: #0f141f;
}

.sb-header {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.3rem 0;
    border-bottom: 0;
}

.sb-header__meta {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.sb-brand {
    font-size: 0.68rem;
    letter-spacing: 0.38em;
    text-transform: uppercase;
    color: rgba(15, 20, 31, 0.5);
}

.sb-title {
    margin: 0;
    font-size: 2.1rem;
    letter-spacing: -0.02em;
    color: #0b1220;
    line-height: 1.15;
}

.sb-tagline {
    margin: 0;
    color: rgba(15, 20, 31, 0.55);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-size: 0.72rem;
}

.product-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(0, 0.9fr);
    gap: 1.5rem;
    align-items: start;
}

.site-shell {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.product-media {
    background: #fdfdff;
    border-radius: 1.35rem;
    border: 1px solid rgba(15, 20, 31, 0.08);
    padding: 1.35rem;
    box-shadow: 0 24px 55px rgba(15, 20, 31, 0.12);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    overflow: hidden;
}

.product-media__frame {
    display: grid;
    gap: 1rem;
    align-items: start;
    grid-template-columns: minmax(0, 1fr) 110px;
    grid-template-areas:
        "main gallery"
        "stock stock";
}

.product-main-image {
    grid-area: main;
    position: relative;
    text-align: center;
    background: #fff;
    border-radius: 1rem;
    padding: 1.5rem;
}

.product-main-image img {
    width: 100%;
    max-height: 420px;
    object-fit: contain;
    border-radius: 0.85rem;
    margin: 0 auto;
}

.product-main-image--systembuilder {
    min-height: 260px;
    display: grid;
    place-items: center;
}

.product-main-image--systembuilder img {
    max-height: 360px;
}

.product-availability-panel {
    grid-area: stock;
    border: 1px solid rgba(15, 20, 31, 0.04);
    background: #ffffff;
    border-radius: 0.85rem;
    padding: 0.75rem 0.9rem;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    box-shadow: 0 15px 30px rgba(15, 20, 31, 0.08);
}

.product-availability-panel__header {
    display: flex;
    justify-content: space-between;
    gap: 0.5rem;
    flex-wrap: wrap;
    align-items: baseline;
}

.product-availability-panel__title {
    font-size: 0.72rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(15, 20, 31, 0.65);
}

.product-availability-panel__meta {
    font-size: 0.7rem;
    color: rgba(15, 20, 31, 0.55);
}

.product-availability-panel__body {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.product-availability-panel__stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0.75rem;
    border-radius: 0.65rem;
    border: 1px solid rgba(15, 20, 31, 0.06);
    background: #f6f8ff;
}

.product-availability-panel__label {
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(15, 20, 31, 0.55);
    white-space: nowrap;
}

.product-availability-panel__value {
    flex: 1;
}

.product-availability-panel__value .stockcount {
    margin: 0;
}

.product-availability-panel__channels {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.availability-grid {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.availability-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.55rem;
    align-items: center;
    background: #f7f8ff;
    border: 1px solid rgba(15, 20, 31, 0.07);
    border-radius: 0.75rem;
    padding: 0.6rem 0.75rem;
}

.availability-card strong {
    display: block;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #0f141f;
    font-size: 0.78rem;
}

.availability-card p {
    margin: 0.1rem 0 0;
    color: #4d556a;
    font-size: 0.72rem;
}

.availability-icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1px solid rgba(15, 20, 31, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.7rem;
    background: rgba(14, 19, 36, 0.05);
}

.availability-icon--tick::before {
    content: "\2713";
    color: #3ddc97;
}

.availability-icon--cross::before {
    content: "\\2715";
    color: #ff5b5b;
}

.stockcount {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.45rem;
    align-items: center;
}

.stockcount strong {
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 0.9rem;
    color: #0f141f;
}

.stockcount p {
    margin: 0.05rem 0 0;
    color: rgba(15, 20, 31, 0.6);
    font-size: 0.7rem;
}

.product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: linear-gradient(120deg, var(--accent), var(--accent-strong));
    color: #fff;
    padding: 0.25rem 0.9rem;
    font-size: 0.7rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    border-radius: 999px;
}

.product-gallery {
    grid-area: gallery;
    border-radius: 1rem;
    margin-top: 0;
    position: relative;
    width: 110px;
    align-self: start;
}

.product-gallery-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.65rem;
}

.product-gallery-item {
    border-radius: 0.75rem;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.product-gallery-item img {
    width: 100%;
    display: block;
    object-fit: cover;
    height: 70px;
}

.gallery-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(15, 20, 31, 0.15);
    background: rgba(15, 20, 31, 0.08);
    color: #0f141f;
    cursor: pointer;
    box-shadow: 0 12px 25px rgba(15, 20, 31, 0.18);
}

.gallery-control::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
}

.gallery-control--prev {
    left: 0.5rem;
}

.gallery-control--next {
    right: 0.5rem;
}

.gallery-control--prev::before {
    content: '<';
}

.gallery-control--next::before {
    content: '>';
}

.product-summary {
    background: #fdfdff;
    border-radius: 1.35rem;
    border: 1px solid rgba(15, 20, 31, 0.08);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    box-shadow: 0 28px 60px rgba(15, 20, 31, 0.12);
}

.product-summary__meta {
    display: grid;
    gap: 0.35rem;
}

.product-summary__meta-line {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-size: 0.85rem;
    color: rgba(15, 20, 31, 0.55);
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

.product-summary__meta-line strong {
    font-size: 0.95rem;
    letter-spacing: normal;
    color: #0b1220;
}

.product-summary__note {
    color: #0d2244;
    letter-spacing: 0.4em;
    font-weight: 600;
    text-transform: uppercase;
}

.product-actions--stacked {
    display: grid;
    gap: 0.65rem;
}

.sb-summary__note {
    color: rgba(15, 20, 31, 0.55);
    letter-spacing: 0.2em;
    text-transform: none;
    font-weight: 500;
}

.spec-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.35rem;
}

.spec-list__item {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(15, 20, 31, 0.08);
}

.spec-list__item:last-child {
    border-bottom: 0;
}

.sb-panels {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    width: 100%;
}

.sb-card {
    background: transparent;
    border-radius: 0;
    border: 0;
    padding: 0;
    box-shadow: none;
}

#systembuilder-page {
    color: #0f141f;
    background: transparent;
    border: 0;
    padding-top: 0;
}

.sb-hero {
    display: grid;
    gap: 0.6rem;
    align-items: start;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.sb-hero > * {
    align-self: stretch;
}

.sb-media {
    background: #fff;
    border-radius: 1.35rem;
    border: 1px solid rgba(15, 20, 31, 0.08);
    padding: 0.75rem;
    box-shadow: 0 30px 70px rgba(15, 20, 31, 0.12);
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    position: relative;
    overflow: hidden;
}

.sb-case {
    position: relative;
    text-align: center;
    background: #fff;
    border-radius: 1rem;
    padding: 0.9rem;
    border: 1px solid rgba(15, 20, 31, 0.08);
    min-height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sb-case img {
    width: 100%;
    max-height: 260px;
    object-fit: contain;
    border-radius: 0.85rem;
    margin: 0 auto;
}

.sb-gallery {
    grid-area: gallery;
    width: 100%;
    border-radius: 1rem;
    border: 1px solid rgba(15, 20, 31, 0.08);
    background: #f5f7fb;
    padding: 0.75rem;
    margin-top: 0;
}

.sb-summary {
    width: 100%;
    align-self: stretch;
    background: #fff;
    border-radius: 1.35rem;
    border: 1px solid rgba(15, 20, 31, 0.08);
    padding: 0.8rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    box-shadow: 0 35px 75px rgba(15, 20, 31, 0.14);
    max-width: 320px;
}

.sb-overview {
    border: 0;
    background: #fff;
    border-radius: 1.25rem;
    padding: 0;
    display: grid;
    gap: 0.5rem;
    box-shadow: 0 26px 60px rgba(15, 20, 31, 0.12);
}

#system_partoverview {
    background: #fff;
    border-radius: 1rem;
    padding: 0.85rem 1rem;
    border: 1px solid rgba(15, 20, 31, 0.08);
    box-shadow: 0 12px 30px rgba(15, 20, 31, 0.08);
    font-size: 0.9rem;
    line-height: 1.55;
    color: #0f141f;
}

#system_partoverview h2 {
    margin: 0 0 0.6rem;
    font-size: 0.95rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(15, 20, 31, 0.65);
}

#system_partoverview label {
    display: inline-block;
    width: 75px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(15, 20, 31, 0.75);
    font-size: 0.75rem;
    margin-right: 0.5rem;
}

.sb-summary__meta {
    display: grid;
    gap: 0.35rem;
}

.sb-summary__meta-line {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-size: 0.85rem;
    color: rgba(15, 20, 31, 0.55);
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

.sb-summary__meta-line strong {
    font-size: 0.95rem;
    letter-spacing: normal;
    color: #0b1220;
}

.sb-brandlogos {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.sb-brandlogo {
    flex: 1 1 110px;
    min-height: 56px;
    border: 1px solid rgba(15, 20, 31, 0.08);
    border-radius: 0.85rem;
    background: #f5f7fb;
}

.sb-brandlogos--overlay {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    right: 0.75rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
    gap: 0.5rem;
    pointer-events: none;
}

.sb-brandlogos--overlay .sb-brandlogo {
    background: rgba(245, 247, 251, 0.9);
    backdrop-filter: blur(2px);
    border-radius: 0.75rem;
    border: 1px solid rgba(15, 20, 31, 0.1);
}

.sb-price-copy {
    margin: 0.75rem 0 0.35rem;
    font-size: 0.82rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(15, 20, 31, 0.55);
}

.sb-total {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.sb-total span {
    font-size: 0.72rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(15, 20, 31, 0.5);
}

#systemtotal {
    font-size: 1.7rem;
    font-weight: 600;
    color: #0b1220;
}

.sb-note {
    margin-top: 1rem;
}

.sb-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding: 0.5rem;
    border-radius: 1rem;
    background: #f8fafc;
    border: 1px solid rgba(15, 20, 31, 0.08);
}

.sb-tabs .systembuilder-tab {
    flex: 0 0 auto;
    border-radius: 999px;
    border: 1px solid rgba(15, 20, 31, 0.1);
    padding: 0.35rem 0.9rem;
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(15, 20, 31, 0.6);
    background: #fff;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.sb-tabs .systembuilder-tab.selected,
.sb-tabs .systembuilder-tab.systembuilder-selected {
    background: linear-gradient(120deg, rgba(78, 195, 255, 0.15), rgba(30, 154, 232, 0.2));
    border-color: rgba(30, 154, 232, 0.45);
    color: #0d2244;
}

.sb-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    border-radius: 1rem;
    border: 0;
    background: transparent;
    box-shadow: none;
}

#systembuilder-icons {
    margin: 0;
    padding: 0.15rem 0;
    gap: 0.35rem;
}

#systembuilder-icons .img {
    width: 52px;
    height: 52px;
    border-radius: 0.75rem;
    border: 1px solid rgba(15, 20, 31, 0.1);
    background-color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

#systembuilder-icons span {
    display: block;
    margin-top: 0.35rem;
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(15, 20, 31, 0.55);
}

.sb-options-card {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.sb-options {
    max-height: none;
    overflow: visible;
    padding-right: 0;
}

.sb-actions {
    display: flex;
    justify-content: flex-end;
}

.sb-actions--footer {
    margin-top: 0.5rem;
}

.sb-data {
    overflow: visible;
}

#systembuilder-compleft #system_partoverview {
    background: #fff;
    border: 1px solid rgba(15, 20, 31, 0.08);
    border-radius: 1rem;
    padding: 0.85rem;
    min-height: 200px;
    color: #0f141f;
}

#systembuilder-container {
    background: transparent;
    padding: 0.35rem 0.5rem;
}

#systembuilder-container .systembuilder-tabpanel,
#systembuilder-container .systembuilder-panel {
    background: transparent;
}

#systembuilder-compleft {
    width: 100% !important;
    float: none !important;
    height: auto !important;
}

#systembuilder-container {
    margin: 0;
    width: 100%;
    box-sizing: border-box;
}

.systembuilder-listpanel {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    margin: 0;
}

.systembuilder-listpanel-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.35rem 0.8rem;
    border-bottom: 1px solid rgba(15, 20, 31, 0.06);
}

.systembuilder-listpanel-row:last-child {
    border-bottom: none;
}

.systembuilder-listpanel-row a {
    color: #0f223d;
    font-weight: 600;
}

.systembuilder-listpanel-row span {
    color: rgba(15, 20, 31, 0.6);
}

.systembuilder-listpanel input {
    margin: 0;
}

#systembuilder-icons .selected span {
    background: linear-gradient(120deg, rgba(78, 195, 255, 0.28), rgba(30, 154, 232, 0.28));
    color: #0b223d;
}

#systembuilder_icons {
    height: auto;
    border: none;
}

button.systembuilder_next {
    border: none;
    border-radius: 999px;
    background: linear-gradient(120deg, var(--accent), var(--accent-strong));
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-size: 0.74rem;
    padding: 0.45rem 1.1rem;
    box-shadow: 0 12px 35px rgba(30, 154, 232, 0.35);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    float: none !important;
    margin: 0;
}

button.systembuilder_next:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(30, 154, 232, 0.45);
}

.sb-actions,
.sb-actions--footer {
    justify-content: flex-end;
}

.spec-list__label {
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(15, 20, 31, 0.5);
}

.spec-list__value {
    font-weight: 600;
    color: #0f141f;
    text-align: right;
}

.systembuilder-banner {
    margin-top: 1rem;
    border-radius: 0.85rem;
    overflow: hidden;
    border: 1px solid rgba(15, 20, 31, 0.08);
}

.systembuilder-banner img {
    display: block;
    width: 100%;
    height: auto;
}

.product-pricing {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    align-items: center;
}

.product-pricing .price {
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    background: #f5f7fb;
    border: 1px solid rgba(15, 20, 31, 0.08);
    font-size: 1.15rem;
    font-weight: 600;
    color: #0b1220;
}

.product-pricing .price span {
    display: block;
    font-size: 0.65rem;
    color: rgba(15, 20, 31, 0.5);
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.product-price-old {
    grid-column: span 2;
    color: rgba(15, 20, 31, 0.5);
    font-size: 0.9rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.product-actions {
    display: flex;
    width: 100%;
}

.product-actions .btn--solid {
    width: 100%;
    border-radius: 18px;
    padding: 0.95rem 1.25rem;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 600;
    background: linear-gradient(135deg, var(--accent), var(--accent-strong));
    color: #fff;
    box-shadow: 0 18px 40px rgba(30, 154, 232, 0.4);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-actions .btn--solid:hover {
    transform: translateY(-1px);
    box-shadow: 0 24px 45px rgba(30, 154, 232, 0.55);
}

.product-summary__brand img {
    max-width: 180px;
    height: auto;
    border-radius: 0.75rem;
    border: 1px solid rgba(15, 20, 31, 0.08);
    background: #fff;
    padding: 0.5rem;
}

.product-utility {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.product-utility__link {
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(15, 20, 31, 0.12);
    color: #1f2a3c;
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: #e7ecf7;
}

.product-detail-panels {
    display: grid;
    /*grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));*/
    grid-auto-flow: dense;
    gap: 1rem;
}

.product-detail-card {
    background: #f7f9ff;
    border-radius: 1.25rem;
    border: 1px solid rgba(15, 20, 31, 0.07);
    padding: 1.35rem;
    box-shadow: 0 20px 40px rgba(15, 20, 31, 0.1);
    color: #1d2533;
}

.product-detail-card h2 {
    margin-top: 0;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(15, 20, 31, 0.75);
}

.product-detail-card p {
    margin: 0;
    color: #2f374a;
    line-height: 1.6;
}

.product-detail-card__body {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    color: inherit;
    line-height: 1.7;
}

.product-detail-card a {
    color: #1e6fda;
    font-weight: 600;
}

.product-detail-card table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 0.75rem;
    color: #1d2533;
}

.product-detail-card th,
.product-detail-card td {
    text-align: left;
    padding: 0.4rem 0.25rem;
    border-bottom: 1px solid rgba(15, 20, 31, 0.08);
}

.product-detail-card ul {
    margin: 0.5rem 0 0;
    padding-left: 1.2rem;
    color: #2f374a;
    line-height: 1.6;
}

.product-detail-card--description {
    grid-column: 1 / -1;
    background: #fff;
    border: 1px solid rgba(15, 20, 31, 0.06);
}

.product-related {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.product-related__header h2 {
    margin: 0;
    font-size: 1.4rem;
}

.product-related__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.related-card {
    background: #f8f9ff;
    border: 1px solid rgba(15, 20, 31, 0.06);
    border-radius: 1.25rem;
    padding: 1.1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    box-shadow: 0 20px 40px rgba(15, 20, 31, 0.1);
}

.related-card__image img {
    width: 100%;
    border-radius: 0.75rem;
    object-fit: contain;
    aspect-ratio: 1 / 1;
}

.related-card__body {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.related-card__brand {
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(15, 20, 31, 0.45);
}

.related-card__title {
    margin: 0;
    font-size: 1.1rem;
}

.related-card__title a {
    color: #0f141f;
}

.related-card__pricing {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    font-weight: 600;
}

.related-card__pricing small {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(15, 20, 31, 0.45);
}

.related-card__sale {
    font-size: 0.8rem;
    color: #d9480f;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.product-support {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.product-support__card {
    background: #fff;
    border: 1px solid rgba(15, 20, 31, 0.08);
    border-radius: 1.2rem;
    padding: 1.1rem;
    text-align: center;
    box-shadow: 0 20px 40px rgba(15, 20, 31, 0.12);
    color: #0f141f;
}

.product-support__card img {
    max-width: 100%;
    height: auto;
}

.product-configure,
.product-basket-actions {
    margin-top: 0.5rem;
}

.product-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.product-attributes {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.product-basket-actions .btn--solid {
    width: 100%;
    justify-content: center;
    padding: 0.85rem 1.5rem;
}

.product-brand-logo {
    margin-top: 1rem;
    max-width: 180px;
}

.product-brand-logo img {
    width: 100%;
    height: auto;
    display: block;
}

.product-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1rem;
}

.product-detail-card {
    background: #fff;
    border-radius: 1.25rem;
    border: 1px solid rgba(15, 20, 31, 0.08);
    padding: 1.35rem;
    box-shadow: 0 20px 45px rgba(15, 20, 31, 0.12);
}

.product-detail-card h2 {
    margin-top: 0;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text);
}

.product-detail-card p {
    margin: 0;
    line-height: 1.6;
}

.product-related {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.product-related__header h2 {
    margin: 0;
    font-size: 1.4rem;
}

.product-related__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.related-card {
    background: #fff;
    border: 1px solid rgba(15, 20, 31, 0.09);
    border-radius: 1.25rem;
    padding: 1.1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    box-shadow: 0 22px 50px rgba(15, 20, 31, 0.12);
}

.related-card__image img {
    width: 100%;
    border-radius: 0.75rem;
    object-fit: contain;
    aspect-ratio: 1 / 1;
}

.related-card__body {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.related-card__brand {
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--muted);
}

.related-card__title {
    margin: 0;
    font-size: 1.1rem;
}

.related-card__title a {
    color: var(--text);
}

.related-card__pricing {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    font-weight: 600;
}

.related-card__pricing small {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--muted);
}

.related-card__sale {
    font-size: 0.8rem;
    color: var(--accent);
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

@media (max-width: 1024px) {
    .product-hero {
        grid-template-columns: 1fr;
    }

    .product-media__frame {
        grid-template-columns: 1fr;
        grid-template-areas:
            "main"
            "gallery"
            "stock";
    }

    .product-gallery {
        width: 100%;
        max-width: none;
    }

    .product-gallery-list {
        grid-template-columns: repeat(auto-fit, minmax(70px, 1fr));
    }

    .product-pricing {
        grid-template-columns: 1fr;
    }

    .product-utility {
        justify-content: center;
    }

    .sb-hero {
        grid-template-columns: 1fr;
    }

    .sb-gallery {
        max-width: none;
    }
}

@media (max-width: 768px) {
    .product-page {
        padding: 0 1.25rem 2rem;
    }

    .product-media {
        padding: 1rem;
    }

    .product-media__stock-header {
        align-items: flex-start;
    }

    .product-stock__grid {
        grid-template-columns: 1fr;
    }

    .spec-list__item {
        align-items: flex-start;
        flex-direction: column;
    }

    .spec-list__value {
        text-align: left;
    }

    .product-support__card {
        padding: 0.7rem;
    }

    .sb-page {
        padding: 0 1.25rem 2rem;
    }

    .sb-media {
        padding: 1rem;
    }
}

.site-header {
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 25px 40px rgba(0, 0, 0, 0.35);
}

.header-top {
    display: grid;
    grid-template-columns: auto minmax(280px, 1fr) auto;
    align-items: center;
    gap: 1.25rem;
    padding: 0.65rem 3.5vw;
    max-width: 1240px;
    margin: 0 auto;
    width: 100%;
}

.brand-area {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.site-logo {
    display: inline-flex;
    align-items: center;
}

.site-logo img {
    height: 78px;
    width: auto;
    display: block;
}

.header-search--desktop {
    width: 100%;
    max-width: 520px;
}

.brand-tagline {
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--muted);
}

.search-form {
    display: flex;
    align-items: center;
    border-radius: 999px;
    background: #fff;
    border: 1px solid rgba(15, 20, 31, 0.08);
    overflow: hidden;
    transition: border-color 0.2s ease, background 0.2s ease;
    width: 100%;
    max-width: 520px;
}

.search-form input {
    flex: 1;
    border: 0;
    padding: 0.65rem 1.25rem;
    background: transparent;
    color: var(--text);
    font-size: 0.95rem;
    min-width: 0;
}

.search-form input::placeholder {
    color: rgba(15, 20, 31, 0.5);
}

.search-form button {
    border: 0;
    background: linear-gradient(120deg, var(--accent), var(--accent-strong));
    color: #fff;
    padding: 0.6rem 1.7rem;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 999px;
}

.search-form:hover,
.search-form:focus-within {
    border-color: rgba(30, 154, 232, 0.5);
    background: #fff;
}

.header-actions {
    display: flex;
    gap: 0.85rem;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    min-width: 0;
}

.top-links {
    display: flex;
    gap: 0.65rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
}

.top-links a {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

.social-links {
    display: flex;
    gap: 0.5rem;
}

.social-links img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    display: block;
}

.cart-summary {
    display: flex;
    align-items: center;
    border-radius: 999px;
    padding: 0.35rem 0.65rem;
    background: linear-gradient(120deg, rgba(78, 195, 255, 0.2), rgba(30, 154, 232, 0.35));
    border: 1px solid rgba(78, 195, 255, 0.45);
    min-width: 180px;
}

.cart-summary .cart-link {
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.45rem;
    width: 100%;
    justify-content: space-between;
}

.cart-summary .cart-label {
    font-size: 0.65rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
}

.cart-summary .cart-total {
    font-size: 1.1rem;
    font-weight: 700;
}

.cart-summary .cart-arrow {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
}

.cart-summary #minicart {
    display: none;
}

.minicart {
    background: #fff;
    border: 1px solid rgba(15, 20, 31, 0.08);
    border-radius: 1rem;
    box-shadow: 0 18px 45px rgba(15, 20, 31, 0.2);
    padding: 0.9rem;
    width: min(420px, 90vw);
    color: #0f141f;
}

#shoppingcart-drop {
    top: 48px !important;
    right: -12px !important;
    z-index: 5000;
}

.minicart__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 0.65rem;
}

.minicart__titles {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.minicart__eyebrow {
    margin: 0;
    font-size: 0.65rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: rgba(15, 20, 31, 0.6);
}

.minicart__title {
    margin: 0;
    font-size: 1.1rem;
    letter-spacing: -0.02em;
}

.minicart__cta {
    padding: 0.5rem 1.1rem;
    font-size: 0.78rem;
    letter-spacing: 0.2em;
    white-space: nowrap;
}

.minicart__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.55rem;
    max-height: 360px;
    overflow-y: auto;
}

.minicart__item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.65rem;
    align-items: center;
    padding: 0.45rem 0.35rem;
    border: 1px solid rgba(15, 20, 31, 0.06);
    border-radius: 0.65rem;
}

.minicart__thumb img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 0.5rem;
    border: 1px solid rgba(15, 20, 31, 0.08);
    background: #f7f8fb;
}

.minicart__details {
    display: grid;
    gap: 0.2rem;
}

.minicart__brand {
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(15, 20, 31, 0.6);
}

.minicart__name {
    color: #0b1220;
    font-weight: 600;
    font-size: 0.9rem;
    line-height: 1.35;
    text-decoration: none;
}

.minicart__name:hover {
    color: var(--accent-strong);
}

.minicart__price {
    display: flex;
    gap: 0.6rem;
    align-items: baseline;
    font-weight: 700;
    font-size: 0.95rem;
}

.minicart__price .ex_tax {
    font-weight: 600;
    font-size: 0.78rem;
    color: rgba(15, 20, 31, 0.65);
}

.minicart__summary {
    margin-top: 0.6rem;
    padding: 0.65rem 0.35rem 0.15rem;
    border-top: 1px solid rgba(15, 20, 31, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

.minicart__summary-totalwrap {
    display: grid;
    gap: 0.1rem;
}

.minicart__summary-label {
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(15, 20, 31, 0.55);
}

.minicart__summary-inc {
    font-size: 1.15rem;
    font-weight: 700;
}

.minicart__summary-ex {
    font-size: 0.82rem;
    color: rgba(15, 20, 31, 0.65);
}

.minicart__empty {
    padding: 0.8rem 0.4rem;
    font-weight: 600;
    color: rgba(15, 20, 31, 0.65);
}

.main-nav {
    background: rgba(11, 16, 33, 0.92);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 10px 25px rgba(0, 0, 0, 0.45);
    width: 100%;
}

.mobile-nav-search {
    display: none;
    width: 100%;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-nav-search .search-form {
    display: flex !important;
    max-width: 100%;
}

.main-nav.nav-open .mobile-nav-search {
    display: block;
}

.nav-border {
    border-top: 1px solid var(--border-soft);
}

.nav-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.sf-menu {
    list-style: none;
    margin: 0;
    padding: 0 1rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
    font-size: 0.95rem;
}

.sf-menu li {
    position: static;
}

.sf-menu a {
    padding: 0.85rem 1.15rem;
    border-radius: 999px;
    transition: background 0.2s ease, color 0.2s ease;
    color: rgba(247, 249, 255, 0.92);
}

.sf-menu a:hover,
.sf-menu li.sfHover > a {
    background: rgba(78, 195, 255, 0.1);
}

.mega-menu {
    position: absolute;
    left: 50%;
    right: auto;
    top: 100%;
    transform: translateX(-50%) translateY(12px);
    width: min(1240px, 100vw);
    background: var(--panel-alt);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    padding: 1.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.mega-menu dl {
    margin: 0;
}

.mega-menu dt {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--muted);
    margin-bottom: 0.4rem;
}

.mega-menu dd {
    margin: 0.3rem 0;
}

.mega-menu dd a {
    color: rgba(247, 249, 255, 0.9);
    font-size: 0.85rem;
}

.mega-menu::after {
    content: "";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-bottom-color: var(--panel-alt);
}

.sf-menu li.sfHover > .mega-menu,
.sf-menu li:focus-within > .mega-menu,
.sf-menu li.is-open > .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.submenu-toggle {
    display: none;
    border: none;
    background: transparent;
    color: var(--accent);
    padding: 0.25rem 0.4rem;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    cursor: pointer;
    transition: color 0.2s ease;
}

.submenu-toggle span {
    width: 16px;
    height: 2px;
    display: block;
    background: rgba(247, 249, 255, 0.9);
    margin: 3px 0;
    transition: transform 0.2s ease;
}

.menu-toggle {
    display: none;
    margin-right: 1rem;
    border: 1px solid transparent;
    border-radius: 999px;
    padding: 0.4rem;
    background: rgba(255, 255, 255, 0.04);
    cursor: pointer;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    margin: 3px auto;
    background: rgba(247, 249, 255, 0.9);
    border-radius: 1px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.main-nav.nav-open .menu-toggle span:nth-child(1) {
    transform: translateY(5px) rotate(45deg);
}

.main-nav.nav-open .menu-toggle span:nth-child(2) {
    opacity: 0;
}

.main-nav.nav-open .menu-toggle span:nth-child(3) {
    transform: translateY(-5px) rotate(-45deg);
}

@media (max-width: 980px) {
    .nav-inner {
        flex-direction: column;
        align-items: stretch;
    }

    .menu-toggle {
        align-self: flex-end;
        display: inline-flex;
    }

    .submenu-toggle {
        display: inline-flex;
    }

    .sf-menu {
        display: none;
        flex-direction: column;
        padding: 1rem 1.25rem 1rem;
        gap: 0;
        border-top: 1px solid var(--border);
        background: rgba(5, 7, 13, 0.95);
        width: 100%;
    }

    .main-nav.nav-open .sf-menu {
        display: flex;
    }

    .sf-menu li {
        width: 100%;
        position: relative;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .sf-menu li:last-child {
        border-bottom: none;
    }

    .sf-menu a {
        width: 100%;
        padding: 0.85rem 1.5rem;
        border-radius: 0;
    }

    .mega-menu {
        position: static;
        border: none;
        box-shadow: none;
        padding: 0.75rem 1rem;
        margin-top: 0;
        display: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(255, 255, 255, 0.02);
    }

    .sf-menu li.is-open > .mega-menu {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 0.5rem;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        padding-top: 0.85rem;
        padding-bottom: 0.85rem;
    }

    .mega-menu dl {
        border-bottom: none;
        padding: 0;
        margin: 0;
    }

    .mega-menu::after {
        display: none;
    }

    .mega-menu dd a {
        padding-left: 0.3rem;
        display: block;
        font-size: 0.8rem;
    }
}

.hero-surface {
    background: linear-gradient(135deg, rgba(78, 195, 255, 0.15), rgba(12, 15, 22, 0.9) 60%);
    margin: 2rem auto;
    max-width: 1240px;
    border-radius: 1.25rem;
    padding: clamp(1.5rem, 2vw, 2.75rem);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    box-shadow: var(--shadow);
}

.hero-content h2 {
    margin: 0;
    font-size: clamp(2.4rem, 4vw, 3rem);
    line-height: 1.2;
}

.hero-content p {
    margin: 0.75rem 0 1.25rem;
    color: rgba(244, 246, 251, 0.72);
}

.hero-cta {
    display: flex;
    gap: 0.9rem;
    flex-wrap: wrap;
}

.hero-cta .btn {
    padding: 0.85rem 1.8rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.hero-stat {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0.9rem;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.hero-stat span {
    display: block;
}

.hero-stat .stat-value {
    font-size: 2rem;
    font-weight: 700;
}

.hero-stat .stat-label {
    font-size: 0.8rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--muted);
}

.page-wrapper {
    flex: 1;
    width: min(1240px, 100%);
    margin: 0 auto;
    padding: 0 5vw 4rem;
    display: flex;
    flex-direction: column;
}

#page-content {
    margin-left: auto;
    margin-right: auto;
    width: min(1240px, 100%);
    padding: 0;
}

.product-listing {
    width: 100%;
}

.listing-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.listing-header > * { 
    margin: 0;
}

.listing-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--text);
}

.listing-breadcrumb ul,
.listing-breadcrumb ol {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.listing-breadcrumb li {
    display: flex;
    align-items: center;
}

.listing-breadcrumb li + li::before {
    content: '/';
    margin: 0 0.35rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.listing-breadcrumb a {
    color: var(--text);
    opacity: 0.85;
}

.listing-breadcrumb a:hover {
    color: var(--accent);
    opacity: 1;
}

.listing-title {
    font-size: 1.5rem;
    font-weight: 600;
}

.product-shell {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 1.8rem;
    align-items: start;
    width: 100%;
    max-width: 1160px;
    margin: 0 auto;
}

.product-shell .refine-panel {
    background: #fff;
    border: 1px solid rgba(15, 20, 31, 0.08);
    border-radius: 1.35rem;
    padding: 1.35rem;
    box-shadow: 0 25px 65px rgba(15, 20, 31, 0.12);
    position: relative;
    overflow: hidden;
    color: #0f141f;
}

.product-shell .refine-panel::before {
    content: none;
}

.product-shell .refine-panel h3 {
    margin-top: 0;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: rgba(15, 20, 31, 0.65);
}

.refine-panel__title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.refine-panel__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.refine-panel__body {
    position: relative;
    z-index: 1;
}

.pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border: 1px solid rgba(15, 20, 31, 0.12);
    color: #4a5264;
    background: rgba(15, 20, 31, 0.02);
}

.pill--accent {
    border-color: rgba(30, 154, 232, 0.35);
    background: linear-gradient(120deg, rgba(78, 195, 255, 0.2), rgba(30, 154, 232, 0.15));
    color: #0d2244;
    box-shadow: inset 0 0 0 1px rgba(30, 154, 232, 0.18);
}

.refine-toggle {
    color: #0d2244;
    border-color: rgba(30, 154, 232, 0.4);
    background: rgba(78, 195, 255, 0.15);
}

.refine-toggle:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(30, 154, 232, 0.25);
}

.refine-panel .filter-divider {
    height: 1px;
    background: rgba(15, 20, 31, 0.08);
    margin: 1rem 0;
}

#category-refine {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    background: #fff;
    padding: 1rem;
    border-radius: 1.1rem;
    border: 1px solid rgba(15, 20, 31, 0.09);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4);
}

#category-refine label {
    display: block;
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(15, 20, 31, 0.55);
    margin-bottom: 0.35rem;
}

#category-refine input,
#category-refine select {
    width: 100%;
    border-radius: 999px;
    border: 1px solid rgba(15, 20, 31, 0.15);
    padding: 0.65rem 0.9rem;
    background: #f5f7fb;
    color: #0f141f;
    font-size: 0.9rem;
}

#category-refine input:focus,
#category-refine select:focus {
    outline: none;
    border-color: rgba(30, 154, 232, 0.6);
    box-shadow: 0 0 0 2px rgba(78, 195, 255, 0.15);
    background: #fff;
}

#category-refine .filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

#category-refine ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
    display: grid;
    gap: 0.35rem;
}

#category-refine ul li {
    padding-left: 1.1rem;
    position: relative;
    color: #4a5264;
    font-size: 0.93rem;
}

#category-refine ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: linear-gradient(120deg, rgba(78, 195, 255, 0.9), rgba(30, 154, 232, 0.8));
    box-shadow: 0 0 0 3px rgba(78, 195, 255, 0.2);
}

#category-refine .filter-group + .filter-group {
    padding-top: 0.75rem;
    border-top: 1px solid rgba(15, 20, 31, 0.08);
}

#category-refine button {
    align-self: flex-start;
    border-radius: 999px;
    border: none;
    background: linear-gradient(120deg, rgba(78, 195, 255, 0.95), rgba(30, 154, 232, 0.85));
    color: #fff;
    padding: 0.55rem 1.4rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.72rem;
    cursor: pointer;
    box-shadow: 0 12px 30px rgba(30, 154, 232, 0.35);
}

.listing-main {
    background: transparent;
}

.section-ajax-loader {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 0.9rem;
}

.product-grid {
    display: grid;
    gap: 1.6rem;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    margin-top: 1rem;
}

.product-card {
    background: #fff;
    border: 1px solid rgba(15, 20, 31, 0.08);
    border-radius: 1.35rem;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 20px 55px rgba(15, 20, 31, 0.12);
    color: #0f141f;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 80px rgba(15, 20, 31, 0.15);
}

.product-card--bundle {
    border-color: rgba(30, 154, 232, 0.4);
    box-shadow: 0 26px 70px rgba(30, 154, 232, 0.25);
}

.product-card__image {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    margin-bottom: 1rem;
    background: linear-gradient(145deg, #eff4fb, #f8fafd);
}

.product-card__image a {
    display: block;
}

.product-card__badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: linear-gradient(120deg, rgba(78, 195, 255, 0.25), rgba(30, 154, 232, 0.15));
    border: 1px solid rgba(30, 154, 232, 0.35);
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #0f223d;
}

.delivery-badge {
    position: absolute;
    bottom: 0.75rem;
    left: 0.75rem;
    background: rgba(255, 91, 91, 0.12);
    border: 1px solid rgba(255, 91, 91, 0.35);
    padding: 0.3rem 0.8rem;
    border-radius: 0.85rem;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    color: #b42318;
}

.product-card__details {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    flex: 1;
}

.product-card__brand {
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(15, 20, 31, 0.55);
}

.product-card__title {
    margin: 0.1rem 0;
    font-size: 1.25rem;
    color: #0f141f;
}

.product-card__title a {
    color: inherit;
}

.product-card__meta {
    font-size: 0.75rem;
    color: #7a849c;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.product-card__summary {
    font-size: 0.88rem;
    color: #4c5468;
    margin-top: 0.5rem;
}

.product-card__summary span {
    display: inline-block;
    margin-right: 0.3rem;
    color: #5b657a;
}

.product-card__price {
    margin-top: 0.8rem;
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
    color: #0b1220;
}

.product-card__price strong {
    font-size: 1.5rem;
    font-weight: 600;
}

.product-card__price .inc_tax {
    color: #0f141f;
}

.product-card__price .ex_tax {
    color: rgba(15, 20, 31, 0.5);
    font-size: 0.82rem;
}

.product-card__sale {
    color: #d9480f;
    font-size: 0.8rem;
    margin-top: 0.4rem;
}

.product-card__actions {
    margin-top: 1rem;
    display: flex;
    gap: 0.7rem;
    flex-wrap: wrap;
}

.product-card__actions .btn--text {
    border-color: rgba(15, 20, 31, 0.25);
    color: #0f141f;
}

.product-card__actions .btn--text:hover {
    border-color: rgba(15, 20, 31, 0.4);
}

.widget-productlist {
    width: 100%;
    border-radius: 0;
    background: transparent;
    border: none;
    padding: 0;
    box-shadow: none;
}

.widget-productlist__header h2 {
    margin: 0 0 0.5rem;
    font-size: 1.3rem;
    color: #0e1324;
}

.widget-productlist__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.widget-productcard {
    background: #fff;
    border-radius: 1.1rem;
    border: 1px solid rgba(15, 20, 31, 0.08);
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 16px 40px rgba(15, 20, 31, 0.12);
}

.widget-productcard:hover {
    transform: translateY(-3px);
    box-shadow: 0 25px 60px rgba(15, 20, 31, 0.18);
}

.widget-productcard__image img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: contain;
    border-radius: 0.9rem;
    background: #f5f7fb;
    padding: 0.75rem;
}

.widget-productcard__body {
    color: #0e1324;
}

.widget-productcard__body h3 {
    margin: 0;
    font-size: 1rem;
    line-height: 1.3;
}

.widget-productcard__body h3 a {
    color: #0e1324;
    text-decoration: none;
}

.widget-productcard__brand {
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #7a8194;
}

.widget-productcard__price strong {
    font-size: 1.15rem;
}

.widget-productcard__price span {
    font-size: 0.75rem;
    margin-left: 0.25rem;
    color: rgba(14, 19, 36, 0.6);
}

.widget-productcard__price-ex {
    font-size: 0.75rem;
    color: rgba(14, 19, 36, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.widget-productcard__sale {
    font-size: 0.75rem;
    color: #ef4444;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    border-radius: 999px;
    padding: 0.65rem 1.4rem;
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn--solid {
    background: linear-gradient(120deg, var(--accent), var(--accent-strong));
    color: #fff;
    box-shadow: 0 12px 30px rgba(30, 154, 232, 0.5);
}

.btn--solid:hover {
    transform: translateY(-1px);
}

.btn--text {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text);
}

.listing-pagination {
    margin-top: 2rem;
    text-align: center;
}

.listing-pagination .pagination {
    display: inline-flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.site-footer {
    border-top: 1px solid var(--border);
    background: var(--surface);
    padding: 3rem 5vw 2rem;
    color: rgba(247, 249, 255, 0.9);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.footer-column h3 {
    font-size: 0.95rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 0.75rem;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.85rem;
    font-weight: 500;
}

.footer-column a:hover {
    color: #fff;
}

.footer-legal {
    margin-top: 2rem;
    border-top: 1px solid var(--border);
    padding-top: 1.5rem;
    font-size: 0.75rem;
    color: var(--muted);
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: space-between;
    align-items: center;
}

.social-links {
    display: flex;
    gap: 0.5rem;
}

.social-links img {
    width: 28px;
    height: 28px;
}

.frontpage-shell {
    --shell-offset: 0;
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;

    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    color: #0e1324;
    margin-bottom: 0.5em;
}

.frontpage-main {
    width: 100%;
    background: transparent;
    border-radius: 0;
    padding: 0;
    border: none;
    box-shadow: none;
    margin: 0;
    color: #0e1324;
}

.frontpage-adverts {
    display: grid;
    gap: 0.75rem;
    margin: 0 calc(-1 * var(--shell-offset));
    width: calc(100% + (var(--shell-offset) * 2));
    background: transparent;
}

.frontpage-adverts__hero,
.frontpage-adverts__grid > div {
    background: transparent;
    padding: 0;
    border-radius: 0;
    border: none;
    box-shadow: none;
}

.frontpage-adverts__hero {
    width: 100%;
}

.frontpage-adverts__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0.75rem;
}
.frontpage-wides {
    background: transparent;
    border-radius: 0;
    padding: 0;
    border: none;
    box-shadow: none;
    width: calc(100% + (var(--shell-offset) * 2));
    margin: 0 calc(-1 * var(--shell-offset));
    color: #0e1324;
}

.frontpage-split {
    display: grid;
    grid-template-columns: minmax(0, 2fr) 200px;
    gap: 1rem;
    background: transparent;
    border-radius: 0;
    border: none;
    padding: 1rem 0;
    box-shadow: none;
    color: #0e1324;
}

@media (max-width: 960px) {
    .frontpage-shell {
        padding: 0.3rem 1rem 0.8rem;
    }

    .frontpage-adverts__grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }

    .frontpage-split {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .frontpage-shell {
        padding: 0.3rem 1rem;
    }

    .frontpage-main,
    .frontpage-wides {
        margin: 0 calc(-1 * var(--shell-offset));
        width: calc(100% + (var(--shell-offset) * 2));
    }

    .frontpage-adverts__grid {
        grid-template-columns: 1fr;
    }
}

.frontpage-split__content h1 {
    margin-top: 0;
    margin-bottom: 0.75rem;
    font-size: 1.4rem;
}

.frontpage-split__content p {
    margin-bottom: 0.85rem;
    color: rgba(14, 19, 36, 0.8);
}

.frontpage-split__trust img {
    max-width: 100%;
    border-radius: 0.85rem;
    border: 1px solid rgba(15, 23, 42, 0.08);
}

@media (max-width: 960px) {
.frontpage-panels,
.frontpage-split {
        grid-template-columns: 1fr;
    }

    .frontpage-main,
    .frontpage-aside {
        padding: 0.9rem;
    }
}

.productgrid-shortdesc {
    display: none;
}

.productgrid-text {
    margin-top: 0.75rem;
}

.productgrid-image img {
    border-radius: 0.6rem;
}

.itemSplash {
    position: absolute;
    top: 0;
    right: 0;
}

@media (max-width: 1100px) {
    .product-shell {
        grid-template-columns: 1fr;
    }

    .product-shell .refine-panel {
        order: -1;
        width: 100%;
    }

    .sf-menu {
        flex-wrap: wrap;
    }

    .header-top {
        grid-template-columns: auto 1fr auto;
        gap: 0.75rem;
    }

    .header-search--desktop {
        max-width: 100%;
    }

    .header-actions {
        width: auto;
        justify-content: flex-end;
    }

    .top-links {
        justify-content: flex-end;
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .header-top {
        grid-template-columns: 1fr;
        padding: 0.8rem 1rem;
        gap: 0.75rem;
    }

    .header-actions {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }

    .top-links {
        width: auto;
        justify-content: flex-end;
        flex-wrap: wrap;
        gap: 0.45rem;
    }

    .header-search--desktop {
        display: none;
    }

    .search-form button {
        padding: 0 1.2rem;
    }

    .cart-summary {
        justify-content: center;
    }

    .hero-surface {
        margin: 1.25rem;
    }
}

@media (max-width: 560px) {
    .sf-menu a {
        padding: 0.6rem 0.7rem;
    }

    .hero-cta {
        flex-direction: column;
    }
}

@media (max-width: 960px) {
    .frontpage-panels {
        grid-template-columns: 1fr;
    }

    .frontpage-adverts {\n    display: grid;\n    gap: 0.75rem;\n    margin: 0 calc(-1 * var(--shell-offset));\n    width: calc(100% + (var(--shell-offset) * 2));\n    background: transparent;\n}\n\n.frontpage-adverts__hero,\n.frontpage-adverts__grid > div {\n    background: transparent;\n    padding: 0;\n    border-radius: 0;\n    border: none;\n    box-shadow: none;\n}\n\n.frontpage-adverts__hero {\n    width: 100%;\n}\n\n.frontpage-adverts__grid {\n    display: grid;\n    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));\n    gap: 0.75rem;\n}
}

@media (max-width: 640px) {
    .frontpage-shell {
        padding: 0.4rem 1.5vw 1rem;
    }

    .frontpage-adverts {\n    display: grid;\n    gap: 0.75rem;\n    margin: 0 calc(-1 * var(--shell-offset));\n    width: calc(100% + (var(--shell-offset) * 2));\n    background: transparent;\n}\n\n.frontpage-adverts__hero,\n.frontpage-adverts__grid > div {\n    background: transparent;\n    padding: 0;\n    border-radius: 0;\n    border: none;\n    box-shadow: none;\n}\n\n.frontpage-adverts__hero {\n    width: 100%;\n}\n\n.frontpage-adverts__grid {\n    display: grid;\n    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));\n    gap: 0.75rem;\n}
}

@media (max-width: 900px) {
    .header-top {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .top-links {
        justify-content: center;
        flex-wrap: wrap;
    }

    .header-actions {
        justify-content: center;
        width: 100%;
    }

    .cart-summary {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .site-header {
        position: sticky;
        top: 0;
        box-shadow: 0 18px 30px rgba(0, 0, 0, 0.35);
    }

    .header-top {
        position: relative;
        display: grid;
        grid-template-columns: auto 1fr auto;
        align-items: center;
        padding: 0.35rem 0.9rem;
        gap: 0.35rem;
    }

    .brand-area {
        justify-self: center;
    }

    .site-logo img {
        height: 56px;
    }

    .header-actions {
        justify-content: flex-end;
        gap: 0;
    }

    .top-links,
    .social-links,
    .header-search--desktop,
    .search-form {
        display: none !important;
    }

    .menu-toggle-inline {
        display: inline-flex;
        justify-self: flex-start;
    }

    .cart-summary {
        width: auto;
        min-width: 0;
        padding: 0.2rem 0.6rem;
        justify-content: flex-end;
    }

    .cart-summary .cart-label,
    .cart-summary .cart-arrow {
        display: none;
    }

    .cart-summary .cart-total {
        font-size: 0.95rem;
    }
}

@media (max-width: 960px) {
    .frontpage-panels,
    .frontpage-split {
        grid-template-columns: 1fr;
    }

    .frontpage-adverts {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
}

@media (max-width: 640px) {
    .frontpage-shell {
        padding: 0.4rem 1.5vw 1rem;
    }

    .frontpage-adverts {
        grid-template-columns: 1fr;
    }
}

.slick-slider,
.slick-list,
.slick-track {
    width: 100%;
}

.slick-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
}

.slick-slide > * {
    width: 100%;
}

.slick-dots {
    bottom: -2rem;
}

.slick-prev,
.slick-next {
    z-index: 2;
}

.slick-slider {
    width: 100%;
    margin: 0;
}

.slick-list {
    padding: 0;
}

.slick-slide {
    margin: 0;
}

.frontpage-main .slick-slider,
.frontpage-main .slick-list {
    padding: 0;
    margin: 0 auto;
    width: 100%;
    max-width: 1240px;
}

.frontpage-main .slick-slide > a > div {
    width: 100%;
    max-width: 1240px;
    aspect-ratio: 31 / 10;
    min-height: 0;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    overflow: hidden;
    background-color: #0e1324;
}
@media (max-width: 640px) {
    .header-top {
        grid-template-columns: 1fr;
        row-gap: 0.75rem;
    }

    .cart-summary {
        width: 100%;
        justify-content: space-between;
    }

    .search-form {
        order: 3;
    }
}

.checkout-container {
    width: min(1180px, 100%);
    margin: 2rem auto 3rem;
    padding: 1.5rem var(--shell-offset) 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    color: #0f141f;
    background: #f0f3fb;
    border-radius: 36px;
    border: 1px solid rgba(15, 20, 31, 0.08);
    box-shadow: 0 30px 70px rgba(15, 20, 31, 0.12);
}

.checkout-progress {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 0.75rem;
    background: #f8f9fd;
    border: 1px solid rgba(15, 20, 31, 0.08);
    border-radius: 24px;
    padding: 0.75rem;
    flex-wrap: wrap;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.checkout-progress__step {
    flex: 1;
    min-width: 120px;
    padding: 0.85rem;
    text-align: center;
    text-decoration: none;
    color: rgba(15, 20, 31, 0.65);
    border-radius: 999px;
    background: #fff;
    border: 1px solid rgba(15, 20, 31, 0.08);
    transition: all 0.2s ease;
    font-weight: 600;
    box-shadow: 0 8px 16px rgba(15, 20, 31, 0.08);
}

.checkout-progress__step.is-current {
    background: #e2f2fe;
    border-color: rgba(78, 195, 255, 0.55);
    color: #0a1b2f;
    box-shadow: 0 18px 24px rgba(78, 195, 255, 0.25);
}

.checkout-progress__step.is-complete {
    color: rgba(15, 20, 31, 0.75);
    border-color: rgba(78, 195, 255, 0.35);
}

.checkout-progress__number {
    font-size: 0.95rem;
    font-weight: 600;
    display: block;
}

.checkout-progress__label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
}

.checkout-content {
    background: #fff;
    border-radius: 32px;
    padding: clamp(1.25rem, 4vw, 2.5rem);
    border: 1px solid rgba(15, 20, 31, 0.1);
    box-shadow: 0 35px 70px rgba(15, 20, 31, 0.12);
}

.checkout-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding-bottom: 1rem;
}

.checkout-section__header {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.checkout-section__header h2 {
    margin: 0;
    font-size: clamp(1.4rem, 3vw, 2rem);
    letter-spacing: -0.01em;
    color: #050b16;
}

.checkout-section__copy {
    color: rgba(15, 20, 31, 0.65);
    max-width: 580px;
}

.checkout-section__body {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.checkout-section__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
}

.checkout-card {
    background: #fefefe;
    border: 1px solid rgba(15, 20, 31, 0.08);
    border-radius: 1.5rem;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.95rem;
    color: #0f141f;
    box-shadow: 0 24px 45px rgba(15, 20, 31, 0.1);
}

.checkout-card--halo {
    background: #f7fbff;
    border-color: rgba(78, 195, 255, 0.35);
    box-shadow: 0 24px 45px rgba(78, 195, 255, 0.15);
}

.checkout-card__title {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: #0f223d;
    margin: 0;
}

.checkout-card__list {
    margin: 0;
    padding-left: 1.2rem;
    color: #4c5468;
}

.checkout-field {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    font-size: 0.85rem;
    position: relative;
    padding-bottom: 1.1rem;
}

.checkout-field--select {
    padding-bottom: 1.6rem;
}

.checkout-select {
    position: relative;
}

.checkout-select select {
    width: 100%;
    border-radius: 999px;
    border: 1px solid rgba(15, 20, 31, 0.15);
    padding: 0.65rem 0.9rem;
    background: #f5f7fb;
    color: #0f141f;
    font-size: 0.95rem;
    font-family: inherit;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.checkout-select::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 1rem;
    width: 0.55rem;
    height: 0.35rem;
    border-left: 2px solid rgba(15, 20, 31, 0.6);
    border-bottom: 2px solid rgba(15, 20, 31, 0.6);
    transform: translateY(-25%) rotate(-45deg);
    pointer-events: none;
}

.checkout-select select:focus {
    border-color: rgba(30, 154, 232, 0.6);
    outline: none;
    box-shadow: 0 0 0 2px rgba(78, 195, 255, 0.2);
    background: #fff;
}

.checkout-field .fielderror {
    position: absolute;
    left: 0;
    bottom: 0;
    margin-top: 0;
    color: #d12c4a;
    font-size: 0.78rem;
    font-weight: 600;
}

.checkout-input {
    width: 100%;
    border-radius: 999px;
    border: 1px solid rgba(15, 20, 31, 0.15);
    padding: 0.65rem 0.9rem;
    background: #f5f7fb;
    color: #0f141f;
}

.checkout-input:focus {
    border-color: rgba(30, 154, 232, 0.6);
    outline: none;
    box-shadow: 0 0 0 2px rgba(78, 195, 255, 0.2);
    background: #fff;
}

.checkout-input--light {
    background: #fff;
    color: #0f141f;
    border-color: rgba(0, 0, 0, 0.18);
}

.checkout-input--light:focus {
    box-shadow: 0 0 0 2px rgba(78, 195, 255, 0.25);
}

.checkout-card__actions {
    margin-top: auto;
}

.checkout-card__actions .btn {
    width: 100%;
}

.checkout-section button {
    align-self: flex-start;
}

.checkout-section__actions {
    margin-top: 0.5rem;
    display: flex;
}

.checkout-confirmation {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.checkout-confirmation__status {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.checkout-confirmation__icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(78, 195, 255, 0.4), rgba(255, 255, 255, 0.2));
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.checkout-confirmation__icon.failed {
    background: rgba(255, 91, 91, 0.2);
    border-color: rgba(255, 91, 91, 0.5);
}

.checkout-confirmation__details {
    font-size: 0.95rem;
    line-height: 1.6;
}

.checkout-alert {
    background: rgba(255, 255, 255, 0.08);
    padding: 0.75rem;
    border-radius: 0.8rem;
    color: #ff5b5b;
}

.checkout-confirmation__code {
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Shopping Cart */
#shoppingcart-container {
    width: 100%;
}

.shoppingcart-shell {
    max-width: 1200px;
    margin: 2rem auto 3rem;
    padding: clamp(1.25rem, 3vw, 3rem);
    background: #f4f7fc;
    border-radius: 32px;
    border: 1px solid rgba(15, 20, 31, 0.07);
    color: #0f141f;
    box-shadow: 0 30px 70px rgba(15, 20, 31, 0.13);
}

.shoppingcart-shell__header {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(15, 20, 31, 0.12);
}

.shoppingcart-shell__title h1 {
    margin: 0.15rem 0 0;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    letter-spacing: -0.02em;
    color: #050b16;
}

.shoppingcart-shell__eyebrow {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.28em;
    color: rgba(15, 20, 31, 0.5);
    margin: 0;
}

.shoppingcart-shell__tagline {
    margin-top: 0.4rem;
    font-size: 0.95rem;
    color: rgba(15, 20, 31, 0.65);
}

.shoppingcart-shell__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    align-items: center;
}

.shoppingcart-action-button {
    border: none;
    border-radius: 999px;
    padding: 0.85rem 1.75rem;
    font-size: 0.95rem;
    font-weight: 600;
    background: #1e9ae8;
    color: #fff;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
    box-shadow: 0 12px 20px rgba(30, 154, 232, 0.35);
}

.shoppingcart-action-button:hover {
    transform: translateY(-1px);
}

.shoppingcart-action-button--ghost {
    background: #e7ecf7;
    color: #0f141f;
    border: 1px solid rgba(15, 20, 31, 0.12);
    box-shadow: none;
}

.shoppingcart-action-button--ghost:hover {
    border-color: rgba(15, 20, 31, 0.35);
    color: #050b16;
}

.shoppingcart-empty {
    text-align: center;
    padding: 3rem 1rem 4rem;
    color: rgba(15, 20, 31, 0.75);
}

.shoppingcart-empty p {
    margin: 0.35rem 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.shoppingcart-empty__hint {
    font-size: 0.95rem;
    color: rgba(15, 20, 31, 0.6);
}

.shoppingcart-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin: 2rem 0 1.5rem;
}

.shoppingcart-highlight {
    background: #fff;
    border-radius: 1rem;
    padding: 1.25rem;
    border: 1px solid rgba(15, 20, 31, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.shoppingcart-highlight__eyebrow {
    display: block;
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 0.24em;
    color: rgba(15, 20, 31, 0.5);
    margin-bottom: 0.3rem;
}

.shoppingcart-highlight h3 {
    margin: 0.1rem 0 0.4rem;
    font-size: 1.1rem;
    color: #050b16;
}

.shoppingcart-highlight p {
    margin: 0;
    font-size: 0.95rem;
    color: rgba(15, 20, 31, 0.7);
    line-height: 1.5;
}

.shoppingcart-table__divider {
    height: 1px;
    background: rgba(15, 20, 31, 0.08);
    margin: 1.5rem 0;
}

.shoppingcart-table {
    border-radius: 1.5rem;
    border: 1px solid rgba(15, 20, 31, 0.08);
    background: #fff;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(15, 20, 31, 0.08);
}

.shoppingcart-table__header {
    display: grid;
    grid-template-columns: minmax(120px, 160px) minmax(250px, 1fr) 140px 140px;
    gap: 1rem;
    padding: 1rem 1.5rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.28em;
    color: rgba(15, 20, 31, 0.55);
    border-bottom: 1px solid rgba(15, 20, 31, 0.08);
}

.shoppingcart-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.shoppingcart-list li + li .shoppingcart-row {
    border-top: 1px solid rgba(15, 20, 31, 0.06);
}

.shoppingcart-row {
    display: grid;
    grid-template-columns: minmax(120px, 160px) minmax(250px, 1fr) 140px 140px;
    gap: 1rem;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background: #f7f9ff;
}

.shoppingcart-rowimage img {
    border-radius: 1rem;
    border: 1px solid rgba(15, 20, 31, 0.08);
    background: #fff;
    width: 100%;
    max-width: 140px;
}

.shoppingcart-rowdescription__brand {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin: 0;
    color: rgba(15, 20, 31, 0.5);
}

.shoppingcart-rowdescription__name {
    margin: 0.15rem 0 0.35rem;
    font-size: 1.05rem;
    font-weight: 600;
    color: #050b16;
}

.shoppingcart-rowdescription__details,
.shoppingcart-rowdescription .extras {
    display: block;
    margin: 0.15rem 0;
    font-size: 0.9rem;
    color: rgba(15, 20, 31, 0.62);
}

#shoppingcart-container .extras {
    color: #5a6276;
    font-size: 0.78rem;
}

#shoppingcart-container .extras .label {
    font-size: 0.78rem;
    width: 70px;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(15, 20, 31, 0.55);
}

.shoppingcart-rowquantity {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cart-quantity {
    width: 76px;
    border-radius: 999px;
    border: 1px solid rgba(15, 20, 31, 0.18);
    padding: 0.45rem 0.4rem;
    text-align: center;
    font-weight: 600;
    background: #f3f5fa;
    color: #050b16;
}

.shoppingcart-rowend {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.35rem;
}

.shoppingcart-rowtotal {
    font-size: 1.05rem;
    font-weight: 600;
    color: #050b16;
}

.shoppingcart-rowtotal .ex_tax {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(15, 20, 31, 0.5);
}

.shoppingcart-rowactions {
    display: flex;
    gap: 0.75rem;
}

.shoppingcart-remove {
    font-size: 0.85rem;
    color: #ff5b5b;
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

.shoppingcart-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1rem;
    margin-top: 1.75rem;
}

.shoppingcart-total-panel,
.shoppingcart-voucher {
    border: 1px solid rgba(15, 20, 31, 0.1);
    border-radius: 1.2rem;
    padding: 1.25rem;
    background: #fdfdff;
}

.shoppingcart-total-panel__label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(15, 20, 31, 0.6);
}

.shoppingcart-total-panel__value {
    font-size: 2rem;
    font-weight: 700;
}

.shoppingcart-total-panel__note {
    margin-top: 0.25rem;
    font-size: 0.9rem;
    color: rgba(15, 20, 31, 0.6);
}

.shoppingcart-voucher label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.shoppingcart-voucher__form {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.shoppingcart-voucher__input {
    flex: 1 1 240px;
    border-radius: 999px;
    border: 1px solid rgba(15, 20, 31, 0.18);
    background: #f5f7fb;
    padding: 0.65rem 1rem;
}

.shoppingcart-voucher__button {
    border: none;
    border-radius: 999px;
    padding: 0.65rem 1.35rem;
    font-weight: 600;
    background: #0f223d;
    color: #fff;
    cursor: pointer;
}

.shoppingcart-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: flex-end;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(15, 20, 31, 0.08);
}

@media (max-width: 960px) {
    .shoppingcart-table__header,
    .shoppingcart-row {
        grid-template-columns: minmax(120px, 1fr) minmax(200px, 2fr);
    }

    .shoppingcart-rowquantity,
    .shoppingcart-rowend {
        grid-column: span 2;
        justify-content: flex-start;
        align-items: flex-start;
    }

    .shoppingcart-rowend {
        align-items: flex-start;
    }
}

@media (max-width: 640px) {
    .shoppingcart-shell {
        border-radius: 20px;
    }

    .shoppingcart-shell__header {
        flex-direction: column;
        align-items: flex-start;
    }

    .shoppingcart-table__header {
        display: none;
    }

    .shoppingcart-row {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .shoppingcart-rowimage img {
        max-width: 180px;
    }

    .shoppingcart-rowquantity,
    .shoppingcart-rowend {
        grid-column: auto;
    }

    .shoppingcart-footer {
        justify-content: center;
    }
}

/* Bread Crumb */
#breadcrumb {
    z-index: 5;
    list-style: none outside none;
    padding: 6px 0 4px;
    min-height: 32px;
    display: block;
    margin-top: 0;
    margin-bottom: 4px;
    overflow: hidden;
    clear: both;
    margin-left: 0;
}
.breadcrumb {
    overflow: hidden;
    height: 32px;
    display: flex;
    align-items: center;
}
.breadcrumb li {
    float: left;
    padding: 2px 6px 0 0;
    list-style: none outside none;
    height: 24px;
    display: flex;
    align-items: center;
}
.breadcrumb li a {
    padding-top: 0;
    margin-right: 6px;
    text-decoration: none;
    color: black;
    font-size: 11px;
    line-height: 1.2;
}
.breadcrumb li a:hover {color: #39c}

.breadcrumb .home { background-position: -495px -55px;}
.breadcrumb .home a { width: 30px; disdplay: block;}
.breadcrumb .sep { background-position: -523px -55px; width: 20px; height: 20px;}
#breadcrumb-container {margin-right: 40px; display:block; overflow: hidden;}
.custombuild-hero {
    margin: 2rem 0;
    border-radius: 30px;
    overflow: hidden;
    min-height: 320px;
    box-shadow: 0 35px 80px rgba(15, 20, 31, 0.18);
}

.custombuild-hero__media img {
    width: 100%;
    display: block;
    object-fit: cover;
}

.product-hero--stacked {
    grid-template-columns: minmax(0, 1fr);
}
.product-spec-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
}

.product-spec-grid .specbox {
    background: #fff;
    border: 1px solid rgba(15, 20, 31, 0.08);
    border-radius: 1rem;
    padding: 1rem;
    box-shadow: 0 12px 25px rgba(15, 20, 31, 0.08);
    color: #1d2533;
}

.product-spec-grid .specbox h2 {
    margin: 0 0 0.35rem;
    font-size: 0.85rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(15, 20, 31, 0.55);
}

.product-spec-grid .specbox p {
    margin: 0;
}
.menu-toggle-inline {
    display: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    margin-right: 0.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(15, 20, 31, 0.6);
    cursor: pointer;
    padding: 0.35rem;
}

.menu-toggle-inline span {
    display: block;
    width: 22px;
    height: 2px;
    margin: 4px auto;
    background: rgba(247,249,255,0.9);
    border-radius: 2px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle-inline.is-open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.menu-toggle-inline.is-open span:nth-child(2) {
    opacity: 0;
}

.menu-toggle-inline.is-open span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.mobile-nav-search {
    display: none;
    width: 100%;
    margin: 0.75rem 0;
}

.main-nav.nav-open .mobile-nav-search {
    display: block;
}
