/* Production storefront layer */
.public-shell {
    --store-bg: #f3f6f8;
    --store-surface: #fff;
    --store-ink: #11181b;
    --store-muted: #66747b;
    --store-line: #d8e3e8;
    --store-soft: #edf4f7;
    --store-dark: #10191d;
    --store-cyan: #00a7d8;
    --store-cyan-dark: #008db8;
    --store-green: #18a45c;
    --store-red: #df3f43;
    --store-amber: #f5bd3d;
    --store-shadow: 0 18px 44px rgba(17, 24, 27, .08);
    --store-radius: 8px;
    min-width: 320px;
    color: var(--store-ink);
    background: var(--store-bg);
}

.public-shell main {
    min-height: calc(100vh - 340px);
    padding: 0 0 44px;
}

.public-shell .section-shell,
.public-shell .retail-hero {
    width: min(1320px, calc(100% - 40px));
    margin-left: auto;
    margin-right: auto;
}

.public-shell .public-header {
    position: sticky;
    top: 0;
    z-index: 50;
    height: auto;
    display: block;
    padding: 0;
    border: 0;
    background: rgba(255, 255, 255, .97);
    box-shadow: 0 1px 0 rgba(216, 227, 232, .95), 0 14px 34px rgba(17, 24, 27, .05);
    backdrop-filter: blur(16px);
}

.public-shell .public-topbar,
.public-shell .public-mainbar,
.public-shell .public-nav-row {
    width: min(1320px, calc(100% - 40px));
    margin: 0 auto;
}

.public-shell .public-topbar {
    min-height: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    color: var(--store-muted);
    font-size: 13px;
    font-weight: 800;
}

.public-shell .public-mainbar {
    min-height: 74px;
    display: grid;
    grid-template-columns: auto auto minmax(260px, 1fr) auto auto;
    align-items: center;
    gap: 12px;
}

.public-shell .brand {
    gap: 10px;
    color: var(--store-ink);
    font-size: 16px;
    font-weight: 950;
}

.public-shell .brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    color: var(--store-cyan);
    background: var(--store-dark);
    box-shadow: 0 12px 28px rgba(0, 167, 216, .18);
}

.public-shell .catalog-button,
.public-shell .header-cart,
.public-shell .header-contact {
    min-height: 44px;
    border-radius: var(--store-radius);
    font-size: 14px;
    font-weight: 900;
}

.public-shell .catalog-button {
    padding: 0 16px;
    border: 0;
    background: var(--store-dark);
    color: #fff;
}

.public-shell .header-search {
    position: relative;
    height: 46px;
    overflow: visible;
    border: 2px solid var(--store-cyan);
    border-radius: var(--store-radius);
    background: #fff;
}

.public-shell .header-search input {
    color: var(--store-ink);
    font-size: 15px;
    font-weight: 750;
}

.public-shell .header-search button {
    background: var(--store-cyan);
    font-size: 15px;
    font-weight: 950;
}

.public-shell .header-search-suggest {
    position: absolute;
    z-index: 80;
    top: calc(100% + 8px);
    left: -2px;
    right: -2px;
    max-height: min(460px, calc(100vh - 150px));
    overflow: auto;
    padding: 8px;
    border: 1px solid var(--store-line);
    border-radius: var(--store-radius);
    background: #fff;
    box-shadow: 0 24px 60px rgba(17, 24, 27, .18);
}

.public-shell .header-search-suggest[hidden] {
    display: none;
}

.public-shell .header-search-suggest [hidden] {
    display: none;
}

.public-shell .header-search-suggest a {
    min-width: 0;
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    padding: 9px;
    border-radius: 7px;
    color: var(--store-ink);
}

.public-shell .header-search-suggest a:hover,
.public-shell .header-search-suggest a:focus {
    background: var(--store-soft);
}

.public-shell .suggest-media {
    width: 56px;
    height: 44px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border-radius: 6px;
    background: #edf4f7;
}

.public-shell .suggest-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.public-shell .suggest-media svg {
    width: 28px;
    height: 28px;
    color: var(--store-cyan-dark);
}

.public-shell .suggest-copy {
    min-width: 0;
    display: grid;
    gap: 3px;
}

.public-shell .suggest-copy strong,
.public-shell .suggest-copy em {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.public-shell .suggest-copy strong {
    font-size: 14px;
    line-height: 1.2;
}

.public-shell .suggest-copy em {
    color: var(--store-muted);
    font-size: 12px;
    font-style: normal;
    font-weight: 850;
}

.public-shell .suggest-price {
    display: grid;
    justify-items: end;
    color: var(--store-ink);
    font-size: 14px;
    font-weight: 950;
}

.public-shell .suggest-price .price-stack {
    align-items: flex-end;
}

.public-shell .suggest-price del {
    font-size: 11px;
}

.public-shell .header-search-suggest .suggest-all {
    grid-template-columns: 1fr;
    min-height: 38px;
    justify-items: center;
    margin-top: 4px;
    border: 1px solid var(--store-line);
    color: var(--store-cyan-dark);
    font-weight: 950;
}

.public-shell .header-cart,
.public-shell .header-contact {
    border: 1px solid var(--store-line);
    background: #fff;
    color: var(--store-ink);
    box-shadow: none;
}

.public-shell .header-cart em {
    background: var(--store-dark);
}

.public-shell .header-contact span {
    color: var(--store-muted);
}

.public-shell .public-nav-row {
    min-height: 46px;
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-end;
    gap: 6px;
    overflow-x: auto;
    scrollbar-width: none;
}

.public-shell .public-nav-row::-webkit-scrollbar {
    display: none;
}

.public-shell .public-nav-row a {
    flex: 0 0 auto;
    min-height: 38px;
    padding: 0 13px;
    color: var(--store-muted);
    font-size: 14px;
    font-weight: 900;
    white-space: nowrap;
}

.public-shell .public-nav-row a.active,
.public-shell .public-nav-row a:hover {
    color: var(--store-ink);
    background: var(--store-soft);
}

.public-shell .mobile-catalog-drawer {
    width: min(1320px, calc(100% - 40px));
    margin: 0 auto 14px;
    padding: 14px;
    border: 1px solid var(--store-line);
    border-radius: var(--store-radius);
    background: #fff;
    box-shadow: 0 22px 50px rgba(17, 24, 27, .12);
}

.public-shell .mobile-catalog-drawer[hidden] {
    display: none;
}

.public-shell .mobile-catalog-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.public-shell .mobile-catalog-head strong {
    font-size: 18px;
}

.public-shell .mobile-catalog-head a,
.public-shell .mobile-catalog-actions a {
    color: var(--store-cyan-dark);
    font-size: 13px;
    font-weight: 950;
}

.public-shell .mobile-catalog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.public-shell .mobile-catalog-grid a {
    min-width: 0;
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    grid-template-areas: "icon title" "icon text";
    gap: 4px 10px;
    padding: 12px;
    border: 1px solid var(--store-line);
    border-radius: var(--store-radius);
    background: var(--store-soft);
    color: var(--store-ink);
}

.public-shell .mobile-catalog-grid .product-icon {
    grid-area: icon;
    width: 38px;
    height: 38px;
}

.public-shell .mobile-catalog-grid strong {
    grid-area: title;
    display: -webkit-box;
    overflow: hidden;
    overflow-wrap: anywhere;
    font-size: 14px;
    line-height: 1.15;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.public-shell .mobile-catalog-grid em {
    grid-area: text;
    display: -webkit-box;
    overflow: hidden;
    color: var(--store-muted);
    font-size: 12px;
    font-style: normal;
    font-weight: 800;
    line-height: 1.25;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.public-shell .mobile-catalog-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.public-shell .mobile-catalog-actions a {
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    border: 1px solid var(--store-line);
    border-radius: var(--store-radius);
    background: #fff;
    color: var(--store-ink);
}

.public-shell .page-heading {
    margin: 0 0 26px;
    padding-top: 42px;
}

.public-shell .page-heading h1,
.public-shell .promo-hero-panel h1 {
    margin: 0;
    color: var(--store-ink);
    font-size: 44px;
    line-height: 1.05;
    letter-spacing: 0;
}

.public-shell .page-heading p,
.public-shell .promo-hero-panel p {
    max-width: 760px;
    margin: 8px 0 0;
    color: var(--store-muted);
    font-size: 16px;
    line-height: 1.55;
}

.public-shell .retail-hero {
    margin-top: 22px;
    margin-bottom: 28px;
    display: grid;
    grid-template-columns: 255px minmax(0, 1fr) 260px;
    align-items: start;
    gap: 14px;
}

.public-shell .hero-catalog,
.public-shell .hero-deals,
.public-shell .hero-promo,
.public-shell .catalog-sidebar,
.public-shell .product-tile,
.public-shell .promo-card,
.public-shell .news-card,
.public-shell .product-gallery,
.public-shell .product-detail-copy,
.public-shell .product-buy-card,
.public-shell .spec-sheet,
.public-shell .product-help-card,
.public-shell .cart-items,
.public-shell .cart-summary,
.public-shell .cart-empty {
    border: 1px solid var(--store-line);
    border-radius: var(--store-radius);
    background: var(--store-surface);
    box-shadow: none;
}

.public-shell .hero-catalog,
.public-shell .hero-deals {
    align-self: start;
    height: auto;
    min-height: 0;
    padding: 18px;
}

.public-shell .hero-catalog > strong,
.public-shell .hero-deals > strong,
.public-shell .catalog-sidebar > strong {
    display: block;
    margin-bottom: 14px;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 950;
}

.public-shell .hero-promo {
    min-height: 430px;
    display: grid;
    grid-template-columns: minmax(410px, .92fr) minmax(0, 1.08fr);
    overflow: hidden;
    box-shadow: var(--store-shadow);
}

.public-shell .hero-promo .hero-copy {
    padding: 40px 18px 40px 40px;
    align-self: center;
}

.public-shell .hero-promo h1 {
    max-width: 560px;
    margin: 0;
    font-size: 40px;
    line-height: 1.09;
    letter-spacing: 0;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
}

.public-shell .hero-promo p {
    max-width: 520px;
    margin: 16px 0 0;
    color: var(--store-muted);
    font-size: 17px;
    line-height: 1.55;
}

.public-shell .hero-actions {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.public-shell .hero-media,
.public-shell .hero-media img {
    min-height: 430px;
}

.public-shell .hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.public-shell .hero-category-list,
.public-shell .deal-list,
.public-shell .category-chips {
    display: grid;
    gap: 8px;
}

.public-shell .hero-category-list a,
.public-shell .category-chips a,
.public-shell .deal-list a {
    min-height: 42px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    border-radius: var(--store-radius);
    color: var(--store-ink);
    font-size: 14px;
    font-weight: 900;
}

.public-shell .category-chips a.active,
.public-shell .hero-category-list a:hover,
.public-shell .category-chips a:hover {
    background: var(--store-dark);
    color: #fff;
}

.public-shell .category-chips svg,
.public-shell .hero-category-list svg {
    width: 20px;
    height: 20px;
    color: var(--store-cyan);
    flex: 0 0 auto;
}

.public-shell .deal-list a {
    align-items: flex-start;
    flex-direction: column;
    border: 1px solid #e2ebef;
    background: #f8fbfc;
}

.public-shell .deal-list span {
    color: var(--store-red);
    font-size: 20px;
    font-weight: 950;
}

.public-shell .category-showcase {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 32px;
}

.public-shell .category-card {
    min-height: 154px;
    padding: 16px;
    border: 1px solid var(--store-line);
    border-radius: var(--store-radius);
    background: #fff;
    box-shadow: none;
}

.public-shell .category-card strong {
    font-size: 16px;
}

.public-shell .category-card em {
    display: -webkit-box;
    overflow: hidden;
    color: var(--store-muted);
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.public-shell .section-heading {
    margin: 0 0 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.public-shell .section-heading h2 {
    margin: 0;
    color: var(--store-ink);
    font-size: 28px;
    line-height: 1.1;
    letter-spacing: 0;
}

.public-shell .section-heading a {
    color: var(--store-cyan-dark);
    font-weight: 950;
}

.public-shell .home-products,
.public-shell .promo-strip,
.public-shell .news-strip,
.public-shell .related-products {
    margin-bottom: 34px;
}

.public-shell .product-grid,
.public-shell .catalog-grid,
.public-shell .featured-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.public-shell .catalog-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.public-shell .product-tile {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 420px;
    overflow: hidden;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.public-shell .product-tile:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 167, 216, .45);
    box-shadow: var(--store-shadow);
}

.public-shell .product-photo {
    position: relative;
    display: block;
    height: 220px;
    padding: 0;
    overflow: hidden;
    background: #edf4f7;
    border-bottom: 1px solid var(--store-line);
}

.public-shell .product-photo img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.public-shell .discount-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    right: auto;
    z-index: 3;
    width: max-content;
    max-width: calc(100% - 24px);
    padding: 7px 10px;
    border-radius: 7px;
    background: var(--store-dark);
    color: #fff;
    font-size: 12px;
    font-weight: 950;
    line-height: 1;
}

.public-shell .product-meta {
    flex: 1 1 auto;
    margin: 0;
    padding: 16px 16px 0;
}

.public-shell .product-meta span,
.public-shell .sku-line {
    color: var(--store-muted);
    font-size: 12px;
    font-weight: 950;
    text-transform: uppercase;
}

.public-shell .product-meta h3 {
    min-height: 44px;
    margin: 7px 0 8px;
    color: var(--store-ink);
    font-size: 17px;
    line-height: 1.25;
}

.public-shell .product-meta p {
    display: -webkit-box;
    min-height: 44px;
    overflow: hidden;
    color: var(--store-muted);
    line-height: 1.48;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.public-shell .product-footer {
    padding: 12px 16px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.public-shell .product-footer strong,
.public-shell .buy-price strong {
    color: var(--store-ink);
    font-size: 22px;
    line-height: 1.1;
}

.public-shell .price-stack {
    display: grid;
    gap: 3px;
}

.public-shell .price-stack strong {
    color: var(--store-red);
}

.public-shell .price-stack del {
    color: #73828a;
    font-size: 13px;
    font-weight: 850;
}

.public-shell .stock-pill {
    min-width: max-content;
    padding: 6px 9px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 950;
}

.public-shell .stock-pill.ok {
    background: #dff5e9;
    color: #078544;
}

.public-shell .stock-pill.low {
    background: #fff1c9;
    color: #946404;
}

.public-shell .stock-pill.critical {
    background: #ffe0e2;
    color: #ba2026;
}

.public-shell .product-card-actions {
    position: relative;
    z-index: 4;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 112px;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 0 16px 16px;
}

.public-shell .product-card-actions form {
    margin: 0;
}

.public-shell .product-card-action,
.public-shell .product-detail-link,
.public-shell .promo-card-action {
    height: 40px;
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--store-radius);
    font-size: 13px;
    font-weight: 950;
    text-decoration: none;
}

.public-shell .product-card-action {
    width: 100%;
    border: 0;
    background: var(--store-dark);
    color: #fff;
    cursor: pointer;
}

.public-shell .product-detail-link,
.public-shell .promo-card-action {
    border: 1px solid var(--store-line);
    background: #fff;
    color: var(--store-ink);
}

.public-shell .catalog-page,
.public-shell .content-page,
.public-shell .product-detail-page,
.public-shell .cart-page {
    margin-bottom: 36px;
}

.public-shell .catalog-layout {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
}

.public-shell .catalog-sidebar {
    position: sticky;
    top: 170px;
    padding: 18px;
}

.public-shell .catalog-toolbar {
    margin: 0 0 16px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 210px auto;
    gap: 10px;
    background: transparent;
}

.public-shell .catalog-toolbar input,
.public-shell .catalog-toolbar select,
.public-shell .stack-form input,
.public-shell .stack-form select,
.public-shell .stack-form textarea,
.public-shell .inline-lead input {
    min-width: 0;
    width: 100%;
    border: 1px solid var(--store-line);
    border-radius: var(--store-radius);
    background: #fff;
    color: var(--store-ink);
    font-size: 14px;
    font-weight: 750;
}

.public-shell .catalog-toolbar input,
.public-shell .catalog-toolbar select {
    min-height: 46px;
    padding: 0 14px;
}

.public-shell .catalog-filter-panel {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    align-items: center;
    padding: 14px;
    border: 1px solid var(--store-line);
    border-radius: var(--store-radius);
    background: #fff;
    box-shadow: 0 18px 44px rgba(8, 19, 23, .06);
}

.public-shell .catalog-filter-panel .catalog-search-input {
    grid-column: span 2;
}

.public-shell .price-filter,
.public-shell .sale-toggle {
    min-height: 46px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 12px;
    border: 1px solid var(--store-line);
    border-radius: var(--store-radius);
    background: #fff;
    color: var(--store-muted);
    font-size: 13px;
    font-weight: 900;
}

.public-shell .price-filter span {
    color: var(--store-ink);
}

.public-shell .price-filter input {
    min-height: 38px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
}

.public-shell .sale-toggle {
    grid-column: span 2;
    cursor: pointer;
}

.public-shell .sale-toggle input {
    width: 18px;
    min-width: 18px;
    height: 18px;
    min-height: 18px;
    padding: 0;
    accent-color: var(--store-cyan);
}

.public-shell .catalog-reset {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 14px;
    border: 1px solid var(--store-line);
    border-radius: var(--store-radius);
    color: var(--store-ink);
    font-size: 14px;
    font-weight: 950;
    text-decoration: none;
}

.public-shell .catalog-result-bar {
    min-height: 46px;
    margin: 0 0 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 0 14px;
    border: 1px solid rgba(0, 174, 221, .2);
    border-radius: var(--store-radius);
    background: linear-gradient(90deg, rgba(0, 174, 221, .08), rgba(255, 255, 255, .95));
}

.public-shell .catalog-result-bar strong {
    color: var(--store-ink);
    font-size: 15px;
}

.public-shell .catalog-result-bar span {
    color: var(--store-muted);
    font-size: 13px;
    font-weight: 850;
    text-align: right;
}

.public-shell .promo-grid,
.public-shell .public-promos {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.public-shell .promo-card {
    min-height: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.public-shell .promo-card > img {
    width: 100%;
    height: 210px;
    min-height: 210px;
    object-fit: cover;
    object-position: center;
    background: #edf4f7;
}

.public-shell .promo-card-copy {
    display: grid;
    gap: 10px;
    padding: 20px;
}

.public-shell .promo-card span {
    width: max-content;
    margin: 0;
    padding: 9px 11px;
    border-radius: 7px;
    background: var(--store-dark);
    color: #fff;
    font-size: 15px;
    font-weight: 950;
}

.public-shell .promo-card h3 {
    margin: 0;
    color: var(--store-ink);
    font-size: 22px;
    line-height: 1.18;
}

.public-shell .promo-card p {
    margin: 0;
    color: var(--store-muted);
    line-height: 1.5;
}

.public-shell .promo-card em {
    color: #058340;
    font-style: normal;
    font-weight: 950;
}

.public-shell .promo-card-action {
    margin-top: 6px;
}

.public-shell .promo-hero-panel {
    margin: 42px 0 22px;
    min-height: 224px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(380px, .62fr);
    align-items: center;
    gap: 24px;
    padding: 30px;
    border-radius: var(--store-radius);
    background: linear-gradient(135deg, #11181b 0%, #172329 56%, #008db8 100%);
    color: #fff;
    box-shadow: var(--store-shadow);
}

.public-shell .promo-hero-copy {
    min-width: 0;
}

.public-shell .promo-hero-panel h1,
.public-shell .promo-hero-panel p {
    color: #fff;
}

.public-shell .promo-hero-panel p {
    max-width: 650px;
    margin-bottom: 24px;
    color: #dcecf1;
}

.public-shell .promo-hero-deck {
    display: grid;
    gap: 10px;
}

.public-shell .promo-hero-offer,
.public-shell .promo-hero-empty {
    min-width: 0;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: var(--store-radius);
    background: rgba(255, 255, 255, .1);
    backdrop-filter: blur(12px);
}

.public-shell .promo-hero-offer {
    min-height: 86px;
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr) 32px;
    align-items: center;
    gap: 12px;
    padding: 9px;
    color: #fff;
    text-decoration: none;
}

.public-shell .promo-hero-offer:hover {
    border-color: rgba(255, 255, 255, .42);
    background: rgba(255, 255, 255, .16);
}

.public-shell .promo-hero-media {
    width: 96px;
    height: 68px;
    overflow: hidden;
    border-radius: 7px;
    background: #eaf2f5;
}

.public-shell .promo-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.public-shell .promo-hero-fallback {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    color: var(--store-red);
    font-weight: 950;
}

.public-shell .promo-hero-text {
    min-width: 0;
    display: grid;
    gap: 4px;
}

.public-shell .promo-hero-text strong {
    color: #fff;
    font-size: 18px;
    line-height: 1;
}

.public-shell .promo-hero-text em {
    overflow: hidden;
    color: #e9f6fa;
    font-style: normal;
    font-size: 14px;
    font-weight: 950;
    line-height: 1.25;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.public-shell .promo-hero-arrow {
    display: grid;
    place-items: center;
    color: #fff;
}

.public-shell .promo-hero-arrow svg {
    width: 20px;
    height: 20px;
}

.public-shell .promo-hero-empty {
    padding: 22px;
    color: #e9f6fa;
    font-weight: 950;
}

.public-shell .news-hub {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 16px;
    align-items: start;
}

.public-shell .news-card {
    overflow: hidden;
    min-height: 0;
}

.public-shell .news-card.featured {
    display: grid;
    grid-template-columns: minmax(360px, .9fr) minmax(0, 1.1fr);
    grid-column: auto;
    min-height: 320px;
    border-color: rgba(0, 167, 216, .45);
    box-shadow: var(--store-shadow);
}

.public-shell .news-card > div {
    padding: 22px;
}

.public-shell .news-card-media {
    margin: 0;
    overflow: hidden;
    background: #edf4f7;
}

.public-shell .news-card-media img {
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: center;
}

.public-shell .news-card time {
    color: var(--store-muted);
    font-size: 13px;
    font-weight: 900;
}

.public-shell .news-card h2 {
    margin: 14px 0 10px;
    color: var(--store-ink);
    font-size: 24px;
    line-height: 1.2;
}

.public-shell .news-card p,
.public-shell .news-card div div {
    color: #344249;
    line-height: 1.55;
}

.public-shell .news-card div div {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.public-shell .news-card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 16px 0 0;
}

.public-shell .news-card-actions a {
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    border-radius: var(--store-radius);
    border: 1px solid var(--store-line);
    color: var(--store-ink);
    background: #fff;
    font-size: 13px;
    font-weight: 950;
    text-decoration: none;
}

.public-shell .news-card-actions a:first-child {
    border-color: var(--store-cyan-dark);
    background: var(--store-cyan);
    color: #fff;
}

.public-shell .news-feed {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.public-shell .news-feed .news-card {
    display: grid;
    grid-template-columns: 190px minmax(0, 1fr);
    min-height: 230px;
}

.public-shell .news-feed .news-card div div {
    -webkit-line-clamp: 2;
}

.public-shell .news-side-panel,
.public-shell .content-service-band article,
.public-shell .product-service-grid article {
    border: 1px solid var(--store-line);
    border-radius: var(--store-radius);
    background: #fff;
}

.public-shell .news-side-panel {
    position: sticky;
    top: 170px;
    display: grid;
    gap: 12px;
    padding: 22px;
}

.public-shell .news-side-panel strong {
    font-size: 20px;
}

.public-shell .news-side-panel span {
    padding-bottom: 10px;
    border-bottom: 1px solid var(--store-line);
    color: var(--store-muted);
    font-weight: 850;
}

.public-shell .news-side-panel a {
    color: var(--store-cyan-dark);
    font-weight: 950;
}

.public-shell .content-service-band,
.public-shell .product-service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 36px;
}

.public-shell .content-service-band article,
.public-shell .product-service-grid article {
    padding: 20px;
}

.public-shell .content-service-band strong,
.public-shell .product-service-grid strong {
    color: var(--store-ink);
    font-size: 18px;
}

.public-shell .content-service-band p,
.public-shell .product-service-grid p {
    margin: 8px 0 0;
    color: var(--store-muted);
}

.public-shell .product-detail {
    display: grid;
    grid-template-columns: minmax(380px, .92fr) minmax(0, 1fr) 340px;
    gap: 18px;
    align-items: start;
    padding: 16px;
    border: 1px solid var(--store-line);
    border-radius: var(--store-radius);
    background: var(--store-surface);
    box-shadow: var(--store-shadow);
}

.public-shell .breadcrumb {
    display: inline-flex;
    margin: 26px 0 14px;
    color: var(--store-cyan-dark);
    font-size: 14px;
    font-weight: 950;
}

.public-shell .product-gallery {
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.public-shell .product-gallery-main {
    aspect-ratio: 4 / 3;
    height: auto;
    min-height: 0;
    overflow: hidden;
    border-radius: var(--store-radius);
    background: #edf4f7;
}

.public-shell .product-gallery-main img {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.public-shell .gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 12px;
}

.public-shell .gallery-thumb {
    height: 92px;
    border: 1px solid var(--store-line);
    border-radius: var(--store-radius);
    background: #fff;
    cursor: pointer;
}

.public-shell .gallery-thumb.active {
    border-color: var(--store-cyan);
    box-shadow: inset 0 0 0 1px var(--store-cyan);
}

.public-shell .gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.public-shell .product-detail-copy,
.public-shell .product-buy-card {
    padding: 24px;
}

.public-shell .product-detail .product-detail-copy {
    border: 0;
    background: transparent;
    box-shadow: none;
    padding: 12px 10px;
}

.public-shell .product-detail .product-buy-card {
    border: 1px solid var(--store-line);
    background: #f8fbfc;
    box-shadow: none;
}

.public-shell .product-detail-copy h1 {
    margin: 10px 0 14px;
    color: var(--store-ink);
    font-size: 42px;
    line-height: 1.08;
    letter-spacing: 0;
}

.public-shell .product-detail-copy > p {
    color: var(--store-muted);
    font-size: 16px;
    line-height: 1.55;
}

.public-shell .feature-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 18px 0;
    padding: 0;
    list-style: none;
}

.public-shell .feature-list li {
    padding: 7px 10px;
    border-radius: 7px;
    background: var(--store-soft);
    font-size: 13px;
    font-weight: 900;
}

.public-shell .spec-list div,
.public-shell .spec-sheet dl div {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 16px;
    padding: 13px 0;
    border-bottom: 1px solid var(--store-line);
}

.public-shell .spec-list dt,
.public-shell .spec-sheet dt {
    color: var(--store-muted);
    font-weight: 900;
}

.public-shell .spec-list dd,
.public-shell .spec-sheet dd {
    margin: 0;
    color: var(--store-ink);
    font-weight: 900;
}

.public-shell .product-buy-card {
    position: sticky;
    top: 170px;
    display: grid;
    gap: 14px;
}

.public-shell .mobile-buy-bar {
    display: none;
}

.public-shell .product-buy-card .discount-badge {
    position: static;
}

.public-shell .product-buy-card p {
    margin: 0;
    color: var(--store-muted);
    line-height: 1.55;
}

.public-shell .add-to-cart-form {
    display: grid;
    grid-template-columns: 86px minmax(0, 1fr);
    gap: 10px;
}

.public-shell .add-to-cart-form label {
    display: grid;
    gap: 6px;
    color: var(--store-muted);
    font-size: 13px;
    font-weight: 900;
}

.public-shell .add-to-cart-form input {
    min-height: 46px;
    width: 100%;
    border: 1px solid var(--store-line);
    border-radius: var(--store-radius);
    padding: 0 12px;
    font-weight: 950;
}

.public-shell .inline-lead {
    display: grid;
    gap: 10px;
}

.public-shell .inline-lead input {
    min-height: 44px;
    padding: 0 12px;
}

.public-shell .product-specs-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 18px;
    margin-bottom: 34px;
}

.public-shell .spec-sheet,
.public-shell .product-help-card {
    padding: 24px;
}

.public-shell .spec-sheet h2,
.public-shell .product-help-card h2 {
    margin: 0 0 14px;
    font-size: 26px;
    line-height: 1.14;
}

.public-shell .product-help-card {
    align-self: start;
    display: grid;
    gap: 14px;
    color: #fff;
    background: var(--store-dark);
}

.public-shell .product-help-card p {
    margin: 0;
    color: #c8d5da;
}

.public-shell .site-footer {
    width: 100%;
    margin: 24px 0 0;
    padding: 0;
    border: 0;
    background: var(--store-dark);
    color: #fff;
}

.public-shell .footer-inner {
    width: min(1320px, calc(100% - 40px));
    margin: 0 auto;
    padding: 30px 0 22px;
    display: grid;
    grid-template-columns: minmax(280px, 1.35fr) repeat(3, minmax(160px, .75fr));
    gap: 28px;
}

.public-shell .footer-brand p {
    max-width: 380px;
    margin: 16px 0 0;
    color: #c7d3d8;
    line-height: 1.55;
}

.public-shell .site-footer .brand {
    color: #fff;
}

.public-shell .footer-column {
    display: grid;
    gap: 10px;
    align-content: start;
}

.public-shell .footer-column strong {
    color: #fff;
    font-size: 15px;
    font-weight: 950;
}

.public-shell .footer-column a,
.public-shell .footer-column span {
    color: #c7d3d8;
    font-size: 14px;
    font-weight: 850;
}

.public-shell .footer-column a:hover {
    color: #fff;
}

.public-shell .footer-bottom {
    grid-column: 1 / -1;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, .14);
    color: #c7d3d8;
}

.public-shell .primary-button,
.public-shell .ghost-button {
    min-height: 42px;
    border-radius: var(--store-radius);
    font-weight: 950;
}

.public-shell .primary-button {
    border-color: var(--store-cyan-dark);
    background: var(--store-cyan);
}

.public-shell .ghost-button.light {
    border-color: var(--store-line);
    background: #fff;
    color: var(--store-ink);
}

.public-shell .empty-state {
    grid-column: 1 / -1;
    padding: 38px;
    border: 1px solid var(--store-line);
    border-radius: var(--store-radius);
    background: #fff;
    color: var(--store-muted);
    font-weight: 850;
}

.public-shell .cart-layout {
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 18px;
}

.public-shell .cart-items,
.public-shell .cart-summary,
.public-shell .cart-empty {
    border-color: var(--store-line);
    box-shadow: none;
}

.public-shell .cart-row {
    grid-template-columns: 128px minmax(0, 1fr) 156px 130px 38px;
    gap: 14px;
    padding: 14px 16px;
}

.public-shell .cart-row-media {
    aspect-ratio: 4 / 3;
    background: #edf4f7;
}

.public-shell .cart-row-copy h2 {
    font-size: 18px;
}

.public-shell .cart-qty {
    grid-template-columns: 58px minmax(0, 1fr);
}

.public-shell .cart-qty input,
.public-shell .cart-qty button,
.public-shell .cart-remove,
.public-shell .cart-checkout input,
.public-shell .cart-checkout textarea {
    border-color: var(--store-line);
    border-radius: var(--store-radius);
}

.public-shell .cart-qty button,
.public-shell .cart-remove {
    background: #fff;
}

.public-shell .cart-row-price {
    display: grid;
    justify-items: end;
    gap: 2px;
}

.public-shell .cart-row-price > strong,
.public-shell .cart-row-price .price-stack strong {
    font-size: 19px;
}

.public-shell .cart-row-price small {
    color: var(--store-ink);
    font-size: 12px;
    opacity: .78;
}

.public-shell .cart-summary {
    top: 170px;
    padding: 20px;
}

.public-shell .cart-summary p {
    color: var(--store-muted);
    line-height: 1.5;
}

.public-shell .cart-empty-rich {
    min-height: 280px;
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(320px, 1.1fr);
    align-items: center;
    gap: 24px;
    padding: 26px;
    background:
        linear-gradient(120deg, rgba(0, 167, 216, .09), rgba(255, 255, 255, .96) 46%),
        #fff;
}

.public-shell .cart-empty-copy {
    display: grid;
    gap: 14px;
}

.public-shell .cart-empty-copy h2 {
    margin: 0;
    color: var(--store-ink);
    font-size: 30px;
    line-height: 1.08;
}

.public-shell .cart-empty-copy p {
    max-width: 520px;
    margin: 0;
    color: var(--store-muted);
    font-size: 16px;
    line-height: 1.55;
}

.public-shell .cart-empty-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.public-shell .cart-empty-categories {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.public-shell .cart-empty-categories a {
    min-height: 72px;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    padding: 12px;
    border: 1px solid var(--store-line);
    border-radius: var(--store-radius);
    background: var(--store-soft);
    color: var(--store-ink);
    font-size: 14px;
    font-weight: 950;
}

.public-shell .cart-empty-categories .product-icon {
    width: 42px;
    height: 42px;
}

.public-shell .cart-recommendations {
    margin-top: 26px;
}

.public-shell .cart-checkout label {
    color: var(--store-muted);
    font-size: 13px;
    font-weight: 900;
}

.public-shell .cart-checkout input,
.public-shell .cart-checkout textarea {
    margin-top: 6px;
    color: var(--store-ink);
}

.public-shell .cart-checkout input::placeholder,
.public-shell .cart-checkout textarea::placeholder {
    color: #93a1a8;
}

@media (max-width: 1180px) {
    .public-shell .retail-hero {
        grid-template-columns: 235px minmax(0, 1fr);
    }

    .public-shell .hero-deals {
        grid-column: 1 / -1;
    }

    .public-shell .product-grid,
    .public-shell .catalog-grid,
    .public-shell .featured-grid,
    .public-shell .promo-grid,
    .public-shell .public-promos {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .public-shell .product-detail {
        grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
    }

    .public-shell .product-gallery {
        grid-row: auto;
    }

    .public-shell .product-gallery-main {
        aspect-ratio: auto;
        height: min(360px, calc((100vw - 62px) * .75));
    }

    .public-shell .product-detail-copy {
        grid-column: auto;
    }

    .public-shell .product-buy-card {
        position: static;
        grid-column: 1 / -1;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        align-items: start;
    }

    .public-shell .content-service-band,
    .public-shell .product-service-grid {
        grid-template-columns: 1fr;
    }

    .public-shell .promo-hero-panel {
        align-items: flex-start;
        grid-template-columns: 1fr;
        min-height: 0;
        padding: 26px;
    }

    .public-shell .promo-hero-panel p {
        max-width: 720px;
    }

    .public-shell .catalog-filter-panel {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .public-shell .catalog-filter-panel .catalog-search-input {
        grid-column: span 3;
    }

    .public-shell .sale-toggle {
        grid-column: span 1;
    }
}

@media (max-width: 860px) {
    .public-shell main {
        padding-bottom: 26px;
    }

    .public-shell:has(.mobile-buy-bar) main {
        padding-bottom: 112px;
    }

    .public-shell .section-shell,
    .public-shell .retail-hero,
    .public-shell .public-topbar,
    .public-shell .public-mainbar,
    .public-shell .public-nav-row,
    .public-shell .footer-inner {
        width: min(100% - 28px, 1320px);
    }

    .public-shell .public-topbar {
        display: none;
    }

    .public-shell .public-mainbar {
        min-height: 118px;
        grid-template-columns: minmax(0, 1fr) auto auto;
        gap: 9px;
        padding: 10px 0;
    }

    .public-shell .brand span:last-child {
        max-width: 92px;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .public-shell .catalog-button {
        min-width: 44px;
        padding: 0 10px;
    }

    .public-shell .catalog-button span {
        display: none;
    }

    .public-shell .header-search {
        grid-column: 1 / -1;
        order: 4;
        height: 42px;
    }

    .public-shell .header-search-suggest {
        max-height: min(410px, calc(100vh - 150px));
    }

    .public-shell .header-search-suggest a {
        grid-template-columns: 48px minmax(0, 1fr);
        gap: 9px;
    }

    .public-shell .suggest-media {
        width: 48px;
        height: 42px;
    }

    .public-shell .suggest-price {
        grid-column: 2;
        justify-items: start;
        font-size: 13px;
    }

    .public-shell .header-search-suggest .suggest-all {
        grid-column: auto;
    }

    .public-shell .header-cart {
        min-width: 44px;
        padding: 0 9px;
    }

    .public-shell .header-cart span,
    .public-shell .header-contact {
        display: none;
    }

    .public-shell .public-nav-row {
        min-height: 43px;
        justify-content: flex-start;
        gap: 4px;
        padding-bottom: 8px;
    }

    .public-shell .public-nav-row a {
        min-height: 32px;
        padding: 0 9px;
        font-size: 13px;
    }

    .public-shell .mobile-catalog-drawer {
        width: min(100% - 28px, 1320px);
        margin-bottom: 10px;
        padding: 12px;
    }

    .public-shell .mobile-catalog-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .public-shell .mobile-catalog-grid a {
        grid-template-columns: 34px minmax(0, 1fr);
        grid-template-areas: "icon title";
        align-items: center;
        min-height: 52px;
        padding: 10px;
    }

    .public-shell .mobile-catalog-grid .product-icon {
        width: 34px;
        height: 34px;
    }

    .public-shell .mobile-catalog-grid em {
        display: none;
    }

    .public-shell .mobile-catalog-grid strong {
        display: block;
        overflow: visible;
        overflow-wrap: normal;
        -webkit-line-clamp: initial;
    }

    .public-shell .page-heading {
        padding-top: 26px;
        margin-bottom: 20px;
    }

    .public-shell .page-heading h1,
    .public-shell .promo-hero-panel h1 {
        font-size: 32px;
    }

    .public-shell .retail-hero,
    .public-shell .hero-promo,
    .public-shell .catalog-layout,
    .public-shell .catalog-toolbar,
    .public-shell .product-detail,
    .public-shell .product-specs-section,
    .public-shell .content-service-band,
    .public-shell .product-service-grid,
    .public-shell .news-hub,
    .public-shell .news-feed,
    .public-shell .news-card.featured,
    .public-shell .news-feed .news-card,
    .public-shell .promo-hero-panel,
    .public-shell .footer-inner {
        grid-template-columns: 1fr;
    }

    .public-shell .hero-catalog,
    .public-shell .hero-deals {
        padding: 14px;
    }

    .public-shell .hero-promo {
        order: 1;
    }

    .public-shell .hero-catalog {
        order: 2;
    }

    .public-shell .hero-deals {
        display: none;
    }

    .public-shell .hero-category-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .public-shell .hero-promo .hero-copy {
        padding: 24px 20px;
    }

    .public-shell .hero-promo h1 {
        font-size: 30px;
    }

    .public-shell .hero-media,
    .public-shell .hero-media img {
        min-height: 230px;
    }

    .public-shell .category-showcase,
    .public-shell .product-grid,
    .public-shell .catalog-grid,
    .public-shell .featured-grid,
    .public-shell .promo-grid,
    .public-shell .public-promos {
        grid-template-columns: 1fr;
    }

    .public-shell .catalog-sidebar,
    .public-shell .news-side-panel,
    .public-shell .product-buy-card {
        position: static;
    }

    .public-shell .catalog-sidebar {
        padding: 14px;
    }

    .public-shell .catalog-filter-panel {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        padding: 12px;
    }

    .public-shell .catalog-filter-panel .catalog-search-input {
        grid-column: 1 / -1;
    }

    .public-shell .catalog-filter-panel .primary-button,
    .public-shell .catalog-reset {
        width: 100%;
    }

    .public-shell .sale-toggle {
        grid-column: auto;
    }

    .public-shell .catalog-result-bar {
        align-items: flex-start;
        flex-direction: column;
        order: 2;
        padding: 12px;
    }

    .public-shell .catalog-result-bar span {
        text-align: left;
    }

    .public-shell .catalog-layout {
        gap: 12px;
        min-width: 0;
    }

    .public-shell .catalog-results {
        display: contents;
    }

    .public-shell .catalog-sidebar {
        order: 3;
        width: 100%;
        max-width: 100%;
        min-width: 0;
        padding: 0;
        border: 0;
        background: transparent;
    }

    .public-shell .catalog-sidebar > strong {
        margin: 4px 0 10px;
        font-size: 16px;
    }

    .public-shell .category-chips {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        overflow: visible;
        padding-bottom: 0;
    }

    .public-shell .category-chips a {
        width: 100%;
        min-width: 0;
        min-height: 38px;
        padding: 0 12px;
        border: 1px solid var(--store-line);
        background: #fff;
        white-space: normal;
        line-height: 1.15;
    }

    .public-shell .catalog-toolbar {
        order: 1;
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .public-shell .catalog-grid {
        order: 4;
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .public-shell .product-tile {
        min-height: 0;
    }

    .public-shell .product-photo {
        height: 205px;
    }

    .public-shell .product-card-actions {
        grid-template-columns: minmax(0, 1fr) 112px;
    }

    .public-shell .product-detail-copy {
        grid-column: auto;
    }

    .public-shell .product-gallery {
        grid-row: auto;
    }

    .public-shell .product-detail-copy,
    .public-shell .product-buy-card,
    .public-shell .spec-sheet,
    .public-shell .product-help-card {
        padding: 20px;
    }

    .public-shell .product-detail .product-buy-card {
        display: none;
    }

    .public-shell .mobile-buy-bar {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 60;
        display: grid;
        grid-template-columns: minmax(0, 1fr) 150px;
        gap: 10px;
        padding: 8px 14px calc(8px + env(safe-area-inset-bottom));
        border-top: 1px solid var(--store-line);
        background: rgba(255, 255, 255, .98);
        box-shadow: 0 -18px 34px rgba(17, 24, 27, .12);
        backdrop-filter: blur(16px);
    }

    .public-shell .mobile-buy-price {
        min-width: 0;
        display: grid;
        align-content: center;
        gap: 3px;
    }

    .public-shell .mobile-buy-price strong {
        color: var(--store-ink);
        font-size: 19px;
        line-height: 1;
    }

    .public-shell .mobile-buy-price .price-stack strong {
        color: var(--store-red);
    }

    .public-shell .mobile-buy-price del,
    .public-shell .mobile-buy-price span {
        color: var(--store-muted);
        font-size: 12px;
        font-weight: 900;
    }

    .public-shell .mobile-buy-bar form {
        margin: 0;
    }

    .public-shell .mobile-buy-bar button {
        width: 100%;
        min-height: 44px;
        border: 0;
        border-radius: var(--store-radius);
        background: var(--store-dark);
        color: #fff;
        font-weight: 950;
        cursor: pointer;
    }

    .public-shell .product-detail-copy h1 {
        font-size: 30px;
    }

    .public-shell .add-to-cart-form {
        grid-template-columns: 1fr;
    }

    .public-shell .spec-list div,
    .public-shell .spec-sheet dl div {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .public-shell .promo-card > img {
        height: 165px;
        min-height: 165px;
        padding: 12px;
    }

    .public-shell .promo-card-copy {
        gap: 8px;
        padding: 16px;
    }

    .public-shell .promo-card h3 {
        font-size: 20px;
    }

    .public-shell .promo-card p {
        display: -webkit-box;
        overflow: hidden;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }

    .public-shell .news-card-media {
        height: 150px;
    }

    .public-shell .news-card.featured {
        min-height: 0;
    }

    .public-shell .news-card > div {
        padding: 16px;
    }

    .public-shell .news-card h2 {
        margin: 10px 0 8px;
        font-size: 22px;
    }

    .public-shell .news-card div div {
        display: none;
    }

    .public-shell .news-side-panel {
        display: none;
    }

    .public-shell .promo-hero-panel {
        align-items: stretch;
        margin-top: 26px;
        padding: 22px;
    }

    .public-shell .promo-hero-deck {
        gap: 8px;
    }

    .public-shell .promo-hero-offer {
        grid-template-columns: 86px minmax(0, 1fr) 28px;
        min-height: 78px;
    }

    .public-shell .promo-hero-media {
        width: 86px;
        height: 60px;
    }

    .public-shell .promo-hero-text em {
        display: -webkit-box;
        white-space: normal;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }

    .public-shell .footer-inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
        padding: 24px 0 18px;
    }

    .public-shell .footer-brand,
    .public-shell .footer-bottom {
        grid-column: 1 / -1;
    }

    .public-shell .footer-brand p {
        max-width: none;
        margin-top: 12px;
    }

    .public-shell .footer-column {
        gap: 8px;
    }

    .public-shell .footer-column a,
    .public-shell .footer-column span {
        font-size: 13px;
        line-height: 1.35;
    }

    .public-shell .cart-page .page-heading {
        margin-bottom: 16px;
    }

    .public-shell .cart-layout {
        grid-template-columns: 1fr;
    }

    .public-shell .cart-empty-rich {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 18px;
    }

    .public-shell .cart-empty-copy h2 {
        font-size: 26px;
    }

    .public-shell .cart-empty-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .public-shell .cart-empty-categories {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .public-shell .cart-empty-categories a {
        min-height: 56px;
        grid-template-columns: 36px minmax(0, 1fr);
        padding: 10px;
    }

    .public-shell .cart-empty-categories .product-icon {
        width: 36px;
        height: 36px;
    }

    .public-shell .cart-recommendations {
        margin-top: 20px;
    }

    .public-shell .cart-items,
    .public-shell .cart-summary {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .public-shell .cart-row {
        grid-template-columns: 96px minmax(0, 1fr);
        gap: 12px;
        padding: 12px;
    }

    .public-shell .cart-row-media {
        grid-row: span 2;
        align-self: start;
        aspect-ratio: 1 / 1;
    }

    .public-shell .cart-row-copy h2 {
        font-size: 16px;
    }

    .public-shell .cart-qty {
        grid-column: 1 / -1;
        grid-template-columns: 76px minmax(0, 1fr);
    }

    .public-shell .cart-row-price {
        grid-column: 1 / -1;
        justify-items: start;
    }

    .public-shell .cart-remove-form {
        grid-column: 2;
        grid-row: 2;
        justify-self: end;
        align-self: end;
    }

    .public-shell .cart-summary {
        padding: 16px;
    }
}

@media (max-width: 420px) {
    .public-shell .hero-category-list {
        grid-template-columns: 1fr;
    }

    .public-shell .product-photo {
        height: 190px;
    }

    .public-shell .product-gallery-main {
        height: 220px;
    }

    .public-shell .gallery-thumb {
        height: 72px;
    }

    .public-shell .section-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .public-shell .public-nav-row {
        gap: 2px;
    }

    .public-shell .public-nav-row a {
        padding: 0 8px;
        font-size: 12px;
    }

    .public-shell .footer-inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 340px) {
    .public-shell .category-chips {
        grid-template-columns: 1fr;
    }

    .public-shell .footer-inner {
        grid-template-columns: 1fr;
    }
}

/* Premium hardware storefront redesign */
.public-shell {
    --store-bg: #f4f7f8;
    --store-surface: #fff;
    --store-ink: #091114;
    --store-muted: #64737b;
    --store-line: #d8e4e9;
    --store-soft: #edf4f6;
    --store-dark: #071014;
    --store-dark-2: #111b20;
    --store-cyan: #04aee8;
    --store-cyan-dark: #0489b7;
    --store-amber: #f7a61a;
    --store-red: #e54247;
    --store-shadow: 0 28px 70px rgba(6, 16, 20, .12);
    background: #f4f7f8;
}

.public-shell.page-home {
    background: linear-gradient(180deg, #071014 0, #071014 660px, #f4f7f8 661px), #f4f7f8;
}

.public-shell .site-header.public-header {
    color: #fff;
    background: rgba(7, 16, 20, .9);
    box-shadow: 0 1px 0 rgba(255, 255, 255, .08);
    backdrop-filter: blur(18px);
}

.public-shell .site-header.public-header .public-mainbar {
    min-height: 62px;
    grid-template-columns: auto auto minmax(260px, 560px) auto auto;
}

.public-shell .public-topbar {
    display: none;
}

.public-shell .brand,
.public-shell .public-nav-row a {
    color: rgba(255, 255, 255, .86);
}

.public-shell .brand:hover,
.public-shell .public-nav-row a.active,
.public-shell .public-nav-row a:hover {
    color: #fff;
}

.public-shell .public-nav-row a.active,
.public-shell .public-nav-row a:hover {
    background: rgba(255, 255, 255, .09);
}

.public-shell .brand-mark {
    border: 1px solid rgba(4, 174, 232, .42);
    color: var(--store-cyan);
    background: rgba(255, 255, 255, .06);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, .05), 0 18px 36px rgba(4, 174, 232, .14);
}

.public-shell .catalog-button,
.public-shell .header-cart,
.public-shell .header-contact {
    border-color: rgba(255, 255, 255, .14);
    background: rgba(255, 255, 255, .07);
    color: #fff;
}

.public-shell .catalog-button:hover,
.public-shell .header-cart:hover,
.public-shell .header-contact:hover {
    background: rgba(255, 255, 255, .12);
}

.public-shell .header-cart em {
    background: var(--store-cyan);
}

.public-shell .header-contact span {
    color: rgba(255, 255, 255, .62);
}

.public-shell .site-header.public-header .header-search {
    justify-self: stretch;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, .14);
    background: rgba(255, 255, 255, .08);
}

.public-shell .site-header.public-header .header-search input {
    background: transparent;
    color: #fff;
}

.public-shell .site-header.public-header .header-search input::placeholder {
    color: rgba(255, 255, 255, .58);
}

.public-shell .site-header.public-header .header-search button {
    min-width: 104px;
    background: var(--store-cyan);
    color: #061014;
}

.public-shell .retail-hero {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 38px max(22px, calc((100vw - 1320px) / 2)) 0;
    display: block;
}

.public-shell .hero-promo {
    position: relative;
    min-height: 610px;
    display: grid;
    grid-template-columns: minmax(340px, .72fr) minmax(0, 1.28fr);
    border: 0;
    border-radius: 0;
    background: #071014;
    box-shadow: none;
    overflow: hidden;
}

.public-shell .hero-promo::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 150px;
    background: linear-gradient(180deg, rgba(7, 16, 20, 0), #071014 82%);
    pointer-events: none;
}

.public-shell .hero-promo::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(90deg, rgba(7, 16, 20, .98) 0%, rgba(7, 16, 20, .92) 32%, rgba(7, 16, 20, .46) 60%, rgba(7, 16, 20, .12) 100%),
        linear-gradient(180deg, rgba(7, 16, 20, .08), rgba(7, 16, 20, .58));
    pointer-events: none;
}

.public-shell .hero-promo .hero-copy {
    position: relative;
    z-index: 3;
    max-width: 560px;
    padding: clamp(54px, 8vw, 104px) 0 96px;
    align-self: center;
}

.public-shell .hero-promo h1 {
    max-width: 520px;
    color: #fff;
    font-size: 76px;
    line-height: .98;
    letter-spacing: 0;
}

.public-shell .hero-promo p {
    max-width: 470px;
    margin-top: 22px;
    color: rgba(255, 255, 255, .72);
    font-size: 19px;
    line-height: 1.55;
}

.public-shell .hero-actions {
    margin-top: 30px;
    gap: 12px;
}

.public-shell .hero-actions .primary-button,
.public-shell .hero-actions .ghost-button {
    min-height: 58px;
    padding: 0 24px;
    border-radius: 8px;
    font-size: 15px;
}

.public-shell .hero-actions .primary-button {
    background: var(--store-cyan);
    color: #061014;
    box-shadow: 0 20px 42px rgba(4, 174, 232, .28);
}

.public-shell .hero-actions .ghost-button {
    border-color: rgba(255, 255, 255, .3);
    background: rgba(255, 255, 255, .08);
    color: #fff;
}

.public-shell .hero-media {
    position: absolute;
    inset: 0;
    z-index: 1;
    min-height: 610px;
}

.public-shell .hero-media img {
    width: 100%;
    height: 100%;
    min-height: 610px;
    object-fit: cover;
    object-position: center right;
    filter: saturate(1.1) contrast(1.12) brightness(.62);
}

.public-shell .category-showcase {
    position: relative;
    z-index: 3;
    width: min(1320px, calc(100% - 44px));
    margin: -68px auto 42px;
    padding: 20px 28px;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 8px;
    background: rgba(8, 17, 21, .92);
    box-shadow: 0 28px 80px rgba(0, 0, 0, .28);
    backdrop-filter: blur(14px);
}

.public-shell .category-card {
    min-height: 138px;
    padding: 18px 20px;
    border: 0;
    border-right: 1px solid rgba(255, 255, 255, .12);
    border-radius: 0;
    background: transparent;
    color: #fff;
    box-shadow: none;
}

.public-shell .category-card:last-child {
    border-right: 0;
}

.public-shell .category-card .product-icon {
    width: 54px;
    height: 54px;
    border: 1px solid rgba(4, 174, 232, .34);
    background: rgba(4, 174, 232, .1);
    color: var(--store-cyan);
}

.public-shell .category-card strong {
    margin-top: 16px;
    color: #fff;
    font-size: 17px;
}

.public-shell .category-card em {
    margin-top: 6px;
    color: rgba(255, 255, 255, .66);
}

.public-shell .section-heading {
    margin-bottom: 20px;
}

.public-shell .section-heading h2 {
    font-size: 36px;
    letter-spacing: 0;
}

.public-shell .section-heading a {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 12px;
    border-radius: 8px;
    color: var(--store-cyan-dark);
    background: rgba(4, 174, 232, .08);
}

.public-shell .home-products {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
    margin-bottom: 34px;
}

.public-shell .featured-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.public-shell .product-tile {
    min-height: 470px;
    border-color: #d9e5e9;
    background: #fff;
    box-shadow: 0 18px 48px rgba(8, 20, 24, .06);
}

.public-shell .product-tile:hover {
    transform: translateY(-4px);
    border-color: rgba(4, 174, 232, .45);
    box-shadow: 0 32px 70px rgba(8, 20, 24, .12);
}

.public-shell .product-photo {
    height: 252px;
    background: linear-gradient(180deg, #f7fbfc, #ecf4f6);
}

.public-shell .product-photo img {
    object-fit: cover;
    padding: 0;
    mix-blend-mode: normal;
}

.public-shell .product-meta {
    padding: 18px 20px 0;
}

.public-shell .product-meta h3 {
    min-height: auto;
    font-size: 20px;
}

.public-shell .product-footer {
    padding: 14px 20px 10px;
}

.public-shell .product-card-actions {
    grid-template-columns: minmax(0, 1fr) 104px;
    padding: 0 20px 20px;
}

.public-shell .product-card-action {
    background: #071014;
}

.public-shell .lead-panel.compact {
    min-height: 180px;
    display: grid;
    grid-template-columns: minmax(250px, .7fr) minmax(0, 1.3fr);
    align-items: center;
    gap: 22px;
    padding: 28px;
    border: 1px solid rgba(4, 174, 232, .18);
    border-radius: 8px;
    background: linear-gradient(105deg, #071014 0%, #0f2229 48%, #0b1519 100%);
    color: #fff;
    box-shadow: 0 30px 80px rgba(7, 16, 20, .18);
}

.public-shell .lead-panel.compact h2 {
    margin: 0;
    color: #fff;
    font-size: 36px;
    line-height: 1.05;
}

.public-shell .lead-panel.compact p {
    max-width: 360px;
    margin: 12px 0 0;
    color: rgba(255, 255, 255, .7);
}

.public-shell .lead-panel.compact .lead-mini-form {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
    gap: 10px;
}

.public-shell .lead-panel.compact .lead-mini-form textarea {
    grid-column: 1 / -2;
}

.public-shell .lead-panel.compact .lead-mini-form label {
    color: rgba(255, 255, 255, .68);
}

.public-shell .lead-panel.compact .lead-mini-form input,
.public-shell .lead-panel.compact .lead-mini-form select,
.public-shell .lead-panel.compact .lead-mini-form textarea {
    border-color: rgba(255, 255, 255, .16);
    background: rgba(255, 255, 255, .08);
    color: #fff;
}

.public-shell .lead-panel.compact .lead-mini-form input::placeholder,
.public-shell .lead-panel.compact .lead-mini-form textarea::placeholder {
    color: rgba(255, 255, 255, .48);
}

.public-shell .lead-panel.compact .lead-mini-form select option {
    color: var(--store-ink);
}

.public-shell .lead-panel.compact .lead-mini-form .primary-button {
    align-self: end;
    min-width: 170px;
    background: var(--store-cyan);
    color: #061014;
}

.public-shell .promo-strip {
    margin-bottom: 28px;
}

.public-shell .promo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.public-shell .promo-card {
    min-height: 240px;
    border: 0;
    border-radius: 8px;
    background: #071014;
    box-shadow: 0 24px 60px rgba(8, 20, 24, .16);
}

.public-shell .promo-card img {
    filter: saturate(1.05) contrast(1.05) brightness(.82);
}

.public-shell .promo-card::after {
    background: linear-gradient(90deg, rgba(7, 16, 20, .92), rgba(7, 16, 20, .5), rgba(7, 16, 20, .12));
}

.public-shell .promo-card-copy {
    color: #fff;
}

.public-shell .promo-card-copy span,
.public-shell .promo-card-copy h3,
.public-shell .promo-card-copy strong {
    color: #fff;
}

.public-shell .promo-card-copy p,
.public-shell .promo-card-copy em {
    color: rgba(255, 255, 255, .72);
}

.public-shell .promo-card-action {
    width: max-content;
    border: 0;
    background: var(--store-cyan);
    color: #061014;
}

.public-shell .content-service-band {
    margin-bottom: 34px;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    border: 1px solid var(--store-line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 48px rgba(8, 20, 24, .06);
    overflow: hidden;
}

.public-shell .content-service-band article {
    min-height: 120px;
    padding: 24px;
    border-right: 1px solid var(--store-line);
}

.public-shell .content-service-band article:last-child {
    border-right: 0;
}

.public-shell .content-service-band strong {
    color: var(--store-ink);
    font-size: 18px;
}

.public-shell .content-service-band p {
    max-width: 360px;
    color: var(--store-muted);
}

.public-shell .site-footer {
    margin-top: 0;
    border-top-color: rgba(255, 255, 255, .08);
    background: #071014;
}

@media (max-width: 1180px) {
    .public-shell .hero-promo {
        min-height: 560px;
        grid-template-columns: 1fr;
    }

    .public-shell .hero-media {
        left: 24vw;
        right: 0;
    }

    .public-shell .category-showcase,
    .public-shell .featured-grid,
    .public-shell .content-service-band {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .public-shell .category-card:nth-child(2n) {
        border-right: 0;
    }

    .public-shell .lead-panel.compact,
    .public-shell .lead-panel.compact .lead-mini-form {
        grid-template-columns: 1fr;
    }

    .public-shell .lead-panel.compact .lead-mini-form textarea {
        grid-column: auto;
    }
}

@media (max-width: 860px) {
    .public-shell.page-home {
        background: linear-gradient(180deg, #071014 0, #071014 590px, #f4f7f8 591px);
    }

    .public-shell .site-header.public-header .public-mainbar {
        grid-template-columns: minmax(0, 1fr) auto auto;
    }

    .public-shell .site-header.public-header .header-search {
        grid-column: 1 / -1;
        width: 100%;
        max-width: 100%;
        min-width: 0;
        background: rgba(255, 255, 255, .1);
    }

    .public-shell .site-header.public-header .header-search button {
        min-width: 82px;
    }

    .public-shell .site-header.public-header .header-cart {
        width: auto;
        min-width: 44px;
        padding: 0 10px;
    }

    .public-shell .retail-hero {
        width: 100%;
        padding: 18px 14px 0;
    }

    .public-shell .hero-promo {
        min-height: 560px;
        border-radius: 0;
    }

    .public-shell .hero-promo .hero-copy {
        padding: 32px 0 300px;
    }

    .public-shell .hero-promo h1 {
        max-width: 360px;
        font-size: 46px;
    }

    .public-shell .hero-promo p {
        max-width: 330px;
        font-size: 16px;
    }

    .public-shell .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
        max-width: 310px;
    }

    .public-shell .hero-media {
        top: auto;
        left: 0;
        right: 0;
        bottom: 0;
        height: 330px;
        min-height: 330px;
    }

    .public-shell .hero-media img {
        min-height: 330px;
        object-position: 66% center;
    }

    .public-shell .category-showcase {
        width: min(100% - 28px, 1320px);
        margin-top: -44px;
        padding: 10px;
        grid-template-columns: 1fr;
    }

    .public-shell .category-card {
        min-height: 96px;
        display: grid;
        grid-template-columns: 52px minmax(0, 1fr);
        grid-template-areas: "icon title" "icon text";
        gap: 4px 12px;
        padding: 12px;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .1);
    }

    .public-shell .category-card:last-child {
        border-bottom: 0;
    }

    .public-shell .category-card .product-icon {
        grid-area: icon;
    }

    .public-shell .category-card strong {
        grid-area: title;
        margin-top: 4px;
    }

    .public-shell .category-card em {
        grid-area: text;
        margin-top: 0;
    }

    .public-shell .featured-grid,
    .public-shell .promo-grid,
    .public-shell .content-service-band {
        grid-template-columns: 1fr;
    }

    .public-shell .product-tile {
        min-height: 0;
    }

    .public-shell .product-photo {
        height: clamp(230px, 64vw, 310px);
    }

    .public-shell .product-photo img {
        padding: 18px;
    }

    .public-shell .product-card-actions {
        grid-template-columns: 1fr;
    }

    .public-shell .product-detail-link {
        width: 100%;
    }

    .public-shell .lead-panel.compact {
        padding: 22px;
    }

    .public-shell .promo-card {
        min-height: 250px;
    }

    .public-shell .content-service-band article {
        border-right: 0;
        border-bottom: 1px solid var(--store-line);
    }

    .public-shell .content-service-band article:last-child {
        border-bottom: 0;
    }
}

/* Premium storefront motion layer */
.public-shell {
    --store-motion-ease: cubic-bezier(.2, .78, .22, 1);
    --store-motion-fast: 180ms;
    --store-motion-medium: 520ms;
}

.public-shell .hero-promo,
.public-shell .hero-media,
.public-shell .product-photo,
.public-shell .promo-card {
    isolation: isolate;
}

.public-shell .hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(110deg, transparent 0 32%, rgba(4, 174, 232, .2) 46%, transparent 58%),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, .08) 0 1px, transparent 1px 90px);
    opacity: .26;
    mix-blend-mode: screen;
    pointer-events: none;
}

.public-shell .hero-promo h1 {
    font-size: 76px;
    text-wrap: balance;
}

.public-shell .hero-promo p {
    font-size: 19px;
    text-wrap: pretty;
}

.public-shell .section-heading h2,
.public-shell .lead-panel.compact h2 {
    font-size: 36px;
}

.public-shell .page-heading h1,
.public-shell .promo-hero-panel h1 {
    font-size: 44px;
}

.public-shell .product-detail-copy h1 {
    font-size: 42px;
}

.public-shell .primary-button,
.public-shell .ghost-button,
.public-shell .product-card-action,
.public-shell .product-detail-link,
.public-shell .promo-card-action,
.public-shell .catalog-button,
.public-shell .header-cart,
.public-shell .header-contact,
.public-shell .section-heading a {
    position: relative;
    overflow: hidden;
}

.public-shell .primary-button::after,
.public-shell .product-card-action::after,
.public-shell .promo-card-action::after,
.public-shell .section-heading a::after {
    content: "";
    position: absolute;
    inset: -60% auto -60% -46%;
    width: 42%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .45), transparent);
    transform: skewX(-18deg);
    opacity: 0;
    pointer-events: none;
}

.public-shell .category-card {
    position: relative;
}

.public-shell .category-card::after {
    content: "";
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 0;
    height: 2px;
    background: var(--store-cyan);
    transform: scaleX(0);
    transform-origin: left center;
    opacity: .85;
}

.public-shell .product-tile {
    position: relative;
    overflow: hidden;
}

.public-shell .product-tile::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid rgba(4, 174, 232, 0);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .65);
    pointer-events: none;
}

.public-shell .product-tile::after {
    content: "";
    position: absolute;
    left: 18px;
    right: 18px;
    top: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--store-cyan), transparent);
    opacity: 0;
    transform: translateY(-3px);
    pointer-events: none;
}

.public-shell .product-photo img,
.public-shell .promo-card > img,
.public-shell .category-card .product-icon,
.public-shell .brand-mark {
    transform: translateZ(0);
}

@media (prefers-reduced-motion: no-preference) {
    .public-shell .hero-media img {
        animation: storeHeroDrift 16s ease-in-out infinite alternate;
        transform-origin: 66% 50%;
    }

    .public-shell .hero-media::after {
        animation: storeHeroSignal 7s linear infinite;
    }

    .public-shell .reveal-ready {
        opacity: 0;
        transform: translate3d(0, 22px, 0);
        transition:
            opacity var(--store-motion-medium) var(--store-motion-ease),
            transform var(--store-motion-medium) var(--store-motion-ease);
        will-change: opacity, transform;
    }

    .public-shell .reveal-ready.reveal-in {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }

    .public-shell .hero-copy > .reveal-ready:nth-child(1) {
        transition-delay: 70ms;
    }

    .public-shell .hero-copy > .reveal-ready:nth-child(2) {
        transition-delay: 150ms;
    }

    .public-shell .hero-copy > .reveal-ready:nth-child(3) {
        transition-delay: 230ms;
    }

    .public-shell .category-showcase .reveal-ready:nth-child(2),
    .public-shell .featured-grid .reveal-ready:nth-child(2),
    .public-shell .promo-grid .reveal-ready:nth-child(2),
    .public-shell .content-service-band .reveal-ready:nth-child(2) {
        transition-delay: 90ms;
    }

    .public-shell .category-showcase .reveal-ready:nth-child(3),
    .public-shell .featured-grid .reveal-ready:nth-child(3),
    .public-shell .promo-grid .reveal-ready:nth-child(3),
    .public-shell .content-service-band .reveal-ready:nth-child(3) {
        transition-delay: 160ms;
    }

    .public-shell .category-showcase .reveal-ready:nth-child(4) {
        transition-delay: 230ms;
    }

    .public-shell .category-showcase .reveal-ready:nth-child(5) {
        transition-delay: 300ms;
    }

    .public-shell .motion-card,
    .public-shell .product-photo img,
    .public-shell .promo-card > img,
    .public-shell .category-card .product-icon,
    .public-shell .category-card::after,
    .public-shell .product-tile::before,
    .public-shell .product-tile::after,
    .public-shell .primary-button,
    .public-shell .ghost-button,
    .public-shell .product-card-action,
    .public-shell .product-detail-link,
    .public-shell .promo-card-action,
    .public-shell .catalog-button,
    .public-shell .header-cart,
    .public-shell .header-contact,
    .public-shell .section-heading a {
        transition:
            transform var(--store-motion-fast) ease,
            opacity var(--store-motion-fast) ease,
            border-color var(--store-motion-fast) ease,
            box-shadow var(--store-motion-fast) ease,
            background var(--store-motion-fast) ease,
            color var(--store-motion-fast) ease,
            filter var(--store-motion-fast) ease;
    }

    .public-shell .primary-button:hover::after,
    .public-shell .product-card-action:hover::after,
    .public-shell .promo-card-action:hover::after,
    .public-shell .section-heading a:hover::after {
        animation: storeButtonSweep 780ms ease forwards;
    }

    .public-shell .brand-mark {
        animation: storeChipPulse 3.6s ease-in-out infinite;
    }
}

@media (prefers-reduced-motion: no-preference) and (hover: hover) and (pointer: fine) {
    .public-shell .motion-card:hover {
        transform: translate3d(0, -7px, 0);
    }

    .public-shell .product-tile.motion-card:hover {
        border-color: rgba(4, 174, 232, .5);
        box-shadow: 0 34px 80px rgba(7, 16, 20, .15);
    }

    .public-shell .product-tile.motion-card:hover::before {
        border-color: rgba(4, 174, 232, .32);
    }

    .public-shell .product-tile.motion-card:hover::after {
        opacity: 1;
        transform: translateY(0);
    }

    .public-shell .product-tile.motion-card:hover .product-photo img {
        transform: scale(1.045);
        filter: saturate(1.08) contrast(1.04);
    }

    .public-shell .category-card.motion-card:hover {
        background: rgba(255, 255, 255, .045);
    }

    .public-shell .category-card.motion-card:hover::after {
        transform: scaleX(1);
    }

    .public-shell .category-card.motion-card:hover .product-icon {
        transform: translateY(-3px) scale(1.04);
        box-shadow: 0 16px 34px rgba(4, 174, 232, .22);
    }

    .public-shell .promo-card.motion-card:hover {
        box-shadow: 0 36px 86px rgba(7, 16, 20, .24);
    }

    .public-shell .promo-card.motion-card:hover > img {
        transform: scale(1.045);
        filter: saturate(1.14) contrast(1.08) brightness(.86);
    }

    .public-shell .primary-button:hover,
    .public-shell .product-card-action:hover,
    .public-shell .promo-card-action:hover,
    .public-shell .section-heading a:hover {
        transform: translateY(-2px);
        box-shadow: 0 18px 38px rgba(4, 174, 232, .22);
    }

    .public-shell .ghost-button:hover,
    .public-shell .product-detail-link:hover,
    .public-shell .catalog-button:hover,
    .public-shell .header-cart:hover,
    .public-shell .header-contact:hover {
        transform: translateY(-2px);
    }
}

@keyframes storeHeroDrift {
    from {
        transform: scale(1.02) translate3d(0, 0, 0);
    }

    to {
        transform: scale(1.08) translate3d(-1.4%, .8%, 0);
    }
}

@keyframes storeHeroSignal {
    from {
        background-position: -220px 0, 0 0;
    }

    to {
        background-position: 620px 0, 90px 0;
    }
}

@keyframes storeButtonSweep {
    0% {
        left: -46%;
        opacity: 0;
    }

    20% {
        opacity: .85;
    }

    100% {
        left: 118%;
        opacity: 0;
    }
}

@keyframes storeChipPulse {
    0%, 100% {
        filter: drop-shadow(0 0 0 rgba(4, 174, 232, 0));
    }

    50% {
        filter: drop-shadow(0 0 12px rgba(4, 174, 232, .34));
    }
}

@media (max-width: 1180px) {
    .public-shell .hero-promo h1 {
        font-size: 62px;
    }

    .public-shell .section-heading h2,
    .public-shell .lead-panel.compact h2 {
        font-size: 32px;
    }

    .public-shell .page-heading h1,
    .public-shell .promo-hero-panel h1,
    .public-shell .product-detail-copy h1 {
        font-size: 38px;
    }
}

@media (max-width: 860px) {
    .public-shell .hero-promo h1 {
        font-size: 46px;
    }

    .public-shell .hero-promo p {
        font-size: 16px;
    }

    .public-shell .section-heading h2,
    .public-shell .lead-panel.compact h2 {
        font-size: 28px;
    }

    .public-shell .page-heading h1,
    .public-shell .promo-hero-panel h1,
    .public-shell .product-detail-copy h1 {
        font-size: 34px;
    }

    .public-shell .hero-media::after {
        opacity: .18;
    }
}

@media (prefers-reduced-motion: reduce) {
    .public-shell *,
    .public-shell *::before,
    .public-shell *::after {
        animation: none !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}

/* Reference-inspired shop composition */
.public-shell.page-home {
    background: linear-gradient(180deg, #071014 0, #071014 760px, #f4f7f8 761px), #f4f7f8;
}

.public-shell .retail-hero {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: clip;
}

.public-shell .hero-promo {
    min-height: min(820px, calc(100svh - 74px));
    padding: 0 max(22px, calc((100vw - 1320px) / 2));
}

.public-shell .hero-promo .hero-copy {
    max-width: 650px;
    padding: 96px 0 198px;
}

.public-shell .hero-kicker {
    display: inline-flex;
    align-items: center;
    width: max-content;
    min-height: 34px;
    margin-bottom: 18px;
    padding: 0 13px;
    border: 1px solid rgba(4, 174, 232, .34);
    border-radius: 999px;
    background: rgba(4, 174, 232, .1);
    color: #9eeaff;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.public-shell .hero-promo h1 {
    max-width: 640px;
    font-size: 82px;
}

.public-shell .hero-promo p {
    max-width: 520px;
    font-size: 20px;
}

.public-shell .hero-proofline {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.public-shell .hero-proofline span {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    padding: 0 12px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 999px;
    background: rgba(255, 255, 255, .07);
    color: rgba(255, 255, 255, .76);
    font-size: 13px;
    font-weight: 800;
}

.public-shell .hero-media img {
    object-position: 68% center;
    filter: saturate(1.16) contrast(1.16) brightness(.58);
}

.public-shell .hero-shelf {
    position: relative;
    z-index: 5;
    width: min(1320px, calc(100% - 44px));
    margin: -118px auto 58px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 8px;
    background: rgba(7, 16, 20, .86);
    box-shadow: 0 36px 100px rgba(0, 0, 0, .36);
    backdrop-filter: blur(18px);
    overflow: hidden;
}

.public-shell .hero-shelf-item {
    min-height: 126px;
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr) auto;
    align-items: center;
    gap: 16px;
    padding: 18px;
    border-right: 1px solid rgba(255, 255, 255, .1);
    color: #fff;
    text-decoration: none;
}

.public-shell .hero-shelf-item:last-child {
    border-right: 0;
}

.public-shell .hero-shelf-media {
    width: 92px;
    height: 82px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: rgba(255, 255, 255, .08);
    overflow: hidden;
}

.public-shell .hero-shelf-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.public-shell .hero-shelf-media svg {
    width: 44px;
    height: 44px;
    color: var(--store-cyan);
}

.public-shell .hero-shelf-copy {
    min-width: 0;
    display: grid;
    gap: 6px;
}

.public-shell .hero-shelf-copy em {
    color: rgba(255, 255, 255, .52);
    font-size: 11px;
    font-style: normal;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.public-shell .hero-shelf-copy strong {
    color: #fff;
    font-size: 16px;
    line-height: 1.18;
}

.public-shell .hero-shelf-item b {
    color: var(--store-cyan);
    font-size: 18px;
    white-space: nowrap;
}

.public-shell .category-showcase {
    margin-top: 0;
    margin-bottom: 56px;
}

.public-shell .shop-editorial {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
    gap: 20px;
    margin-bottom: 60px;
}

.public-shell .editorial-panel {
    position: relative;
    min-height: 520px;
    display: grid;
    align-items: end;
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 28px 76px rgba(8, 20, 24, .12);
    isolation: isolate;
}

.public-shell .editorial-panel.dark {
    background: #071014;
    color: #fff;
}

.public-shell .editorial-panel.light {
    background: #fff;
    color: var(--store-ink);
}

.public-shell .editorial-panel::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.public-shell .editorial-panel.dark::after {
    background: linear-gradient(180deg, rgba(7, 16, 20, .02), rgba(7, 16, 20, .84) 78%);
}

.public-shell .editorial-panel.light::after {
    background: linear-gradient(180deg, rgba(255, 255, 255, .02), rgba(255, 255, 255, .92) 76%);
}

.public-shell .editorial-media {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: grid;
    place-items: center;
    overflow: hidden;
}

.public-shell .editorial-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translateZ(0);
}

.public-shell .editorial-media svg {
    width: 42%;
    height: 42%;
    color: var(--store-cyan);
}

.public-shell .editorial-copy {
    position: relative;
    z-index: 2;
    max-width: 560px;
    display: grid;
    gap: 12px;
    padding: 36px;
}

.public-shell .editorial-copy em {
    width: max-content;
    max-width: 100%;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(4, 174, 232, .12);
    color: var(--store-cyan);
    font-style: normal;
    font-size: 11px;
    font-weight: 950;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.public-shell .editorial-copy strong {
    color: inherit;
    font-size: 40px;
    line-height: 1;
    text-wrap: balance;
}

.public-shell .editorial-copy span {
    max-width: 460px;
    color: currentColor;
    opacity: .78;
    font-size: 16px;
    line-height: 1.55;
}

.public-shell .editorial-copy b {
    color: inherit;
    font-size: 15px;
    line-height: 1.35;
}

.public-shell .editorial-copy b .price-stack {
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
}

.public-shell .editorial-panel.dark .editorial-copy b .price-stack strong,
.public-shell .editorial-panel.dark .editorial-copy b > strong {
    color: #fff;
}

@media (prefers-reduced-motion: no-preference) and (hover: hover) and (pointer: fine) {
    .public-shell .hero-shelf-item.motion-card:hover {
        background: rgba(255, 255, 255, .08);
    }

    .public-shell .hero-shelf-item.motion-card:hover .hero-shelf-media img,
    .public-shell .editorial-panel.motion-card:hover .editorial-media img {
        transform: scale(1.055);
    }

    .public-shell .editorial-panel.motion-card:hover {
        box-shadow: 0 38px 92px rgba(8, 20, 24, .18);
    }
}

@media (prefers-reduced-motion: no-preference) {
    .public-shell .hero-shelf-item,
    .public-shell .editorial-media img {
        transition:
            transform var(--store-motion-fast) ease,
            background var(--store-motion-fast) ease,
            box-shadow var(--store-motion-fast) ease,
            filter var(--store-motion-fast) ease;
    }
}

@media (max-width: 1180px) {
    .public-shell.page-home {
        background: linear-gradient(180deg, #071014 0, #071014 800px, #f4f7f8 801px), #f4f7f8;
    }

    .public-shell .hero-promo {
        min-height: 760px;
    }

    .public-shell .hero-promo .hero-copy {
        padding-bottom: 220px;
    }

    .public-shell .hero-promo h1 {
        font-size: 64px;
    }

    .public-shell .hero-shelf {
        grid-template-columns: 1fr;
        margin-top: -146px;
    }

    .public-shell .hero-shelf-item {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .1);
    }

    .public-shell .hero-shelf-item:last-child {
        border-bottom: 0;
    }

    .public-shell .shop-editorial {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 860px) {
    .public-shell.page-home {
        background: linear-gradient(180deg, #071014 0, #071014 720px, #f4f7f8 721px), #f4f7f8;
    }

    .public-shell .hero-promo {
        min-height: 670px;
        padding: 0 14px;
    }

    .public-shell .hero-promo .hero-copy {
        padding: 34px 0 248px;
    }

    .public-shell .hero-kicker {
        min-height: 30px;
        margin-bottom: 14px;
        font-size: 11px;
    }

    .public-shell .hero-promo h1 {
        max-width: 360px;
        font-size: 44px;
    }

    .public-shell .hero-promo p {
        max-width: 330px;
        font-size: 16px;
    }

    .public-shell .hero-proofline {
        gap: 8px;
        margin-top: 18px;
    }

    .public-shell .hero-proofline span {
        min-height: 30px;
        padding: 0 10px;
        font-size: 12px;
    }

    .public-shell .hero-media {
        height: 365px;
        min-height: 365px;
    }

    .public-shell .hero-media img {
        min-height: 365px;
        object-position: 68% center;
    }

    .public-shell .hero-shelf {
        width: calc(100% - 28px);
        margin: -108px auto 34px;
    }

    .public-shell .hero-shelf-item {
        min-height: 104px;
        grid-template-columns: 74px minmax(0, 1fr);
        gap: 12px;
        padding: 14px;
    }

    .public-shell .hero-shelf-media {
        width: 74px;
        height: 68px;
    }

    .public-shell .hero-shelf-item b {
        grid-column: 2;
        font-size: 16px;
    }

    .public-shell .hero-shelf-copy strong {
        font-size: 14px;
    }

    .public-shell .category-showcase {
        margin-bottom: 34px;
    }

    .public-shell .shop-editorial {
        width: calc(100% - 28px);
        gap: 14px;
        margin-bottom: 36px;
    }

    .public-shell .editorial-panel {
        min-height: 430px;
    }

    .public-shell .editorial-copy {
        padding: 24px;
    }

    .public-shell .editorial-copy strong {
        font-size: 30px;
    }
}

/* First viewport tightening after visual pass */
.public-shell.page-home {
    background: linear-gradient(180deg, #071014 0, #071014 650px, #f4f7f8 651px), #f4f7f8;
}

.public-shell .hero-promo {
    min-height: 720px;
}

.public-shell .hero-promo .hero-copy {
    padding: 76px 0 118px;
}

.public-shell .hero-promo h1 {
    font-size: 74px;
}

.public-shell .hero-shelf {
    margin-top: -86px;
}

.public-shell .product-card-actions {
    align-items: stretch;
    gap: 10px;
}

.public-shell .product-card-action,
.public-shell .product-detail-link {
    height: 44px;
    min-height: 44px;
    margin: 0;
    padding: 0 14px;
    box-sizing: border-box;
}

@media (max-width: 1180px) {
    .public-shell.page-home {
        background: linear-gradient(180deg, #071014 0, #071014 690px, #f4f7f8 691px), #f4f7f8;
    }

    .public-shell .hero-promo {
        min-height: 700px;
    }

    .public-shell .hero-promo .hero-copy {
        padding-bottom: 140px;
    }

    .public-shell .hero-media {
        left: 0;
        right: 0;
    }

    .public-shell .hero-shelf {
        margin-top: -92px;
    }
}

@media (max-width: 860px) {
    .public-shell.page-home {
        background: linear-gradient(180deg, #071014 0, #071014 640px, #f4f7f8 641px), #f4f7f8;
    }

    .public-shell .hero-promo {
        min-height: 650px;
    }

    .public-shell .hero-promo .hero-copy {
        padding: 32px 0 138px;
    }

    .public-shell .hero-promo h1 {
        font-size: 40px;
    }

    .public-shell .hero-promo p {
        font-size: 15px;
    }

    .public-shell .hero-actions {
        max-width: none;
    }

    .public-shell .hero-actions .primary-button,
    .public-shell .hero-actions .ghost-button {
        min-height: 54px;
    }

    .public-shell .hero-media {
        height: 330px;
        min-height: 330px;
    }

    .public-shell .hero-media img {
        min-height: 330px;
    }

    .public-shell .hero-shelf {
        margin-top: -76px;
    }

    .public-shell .product-card-actions {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        padding-left: 20px;
        padding-right: 20px;
        padding-bottom: 18px;
    }

    .public-shell .product-card-actions form,
    .public-shell .product-card-action,
    .public-shell .product-detail-link {
        display: flex;
        width: 100%;
        height: 44px;
        min-height: 44px;
    }
}
