:root {
    --shipps-ink: #102f3e;
    --shipps-navy: #0d3547;
    --shipps-navy-deep: #082532;
    --shipps-teal: #0f7e83;
    --shipps-teal-bright: #18a2a2;
    --shipps-mint: #dff2ef;
    --shipps-mist: #f2f8f7;
    --shipps-canvas: #f8fbfa;
    --shipps-line: #dbe7e5;
    --shipps-gold: #d9ab4d;
    --shipps-text-muted: #5c717a;
    --shipps-white: #fff;
    --shipps-shadow: 0 18px 50px rgba(8, 37, 50, .1);
    --shipps-shadow-soft: 0 10px 30px rgba(8, 37, 50, .07);
    --shipps-radius: 24px;
}

html {
    scroll-behavior: smooth;
}

body.shipps-theme {
    background: var(--shipps-canvas);
    color: var(--shipps-ink);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    -webkit-font-smoothing: antialiased;
}

.shipps-theme .font-dmserif {
    font-family: Inter, ui-sans-serif, system-ui, sans-serif;
}

.shipps-main {
    min-height: 50vh;
    background: var(--shipps-white);
}

.shipps-staging-notice {
    position: relative;
    z-index: 80;
    padding: 8px 20px;
    background: var(--shipps-navy-deep);
    color: #dff8f4;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .045em;
    text-align: center;
}

.shipps-site-header {
    position: sticky;
    top: 0;
    z-index: 60;
    border-bottom: 1px solid rgba(13, 53, 71, .08);
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 8px 26px rgba(8, 37, 50, .06);
    backdrop-filter: blur(18px);
}

.shipps-header-main__inner,
.shipps-header-search-row__inner,
.shipps-section,
.shipps-hero__inner,
.shipps-equipment-promo,
.shipps-trust-strip {
    width: min(100% - 48px, 1240px);
    margin-inline: auto;
}

.shipps-header-main__inner {
    display: grid;
    grid-template-columns: auto 158px minmax(0, 1fr) auto;
    align-items: center;
    gap: 28px;
    min-height: 88px;
}

.shipps-catalog-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 44px;
    padding: 0 17px;
    border: 1px solid var(--shipps-line);
    border-radius: 999px;
    background: var(--shipps-mist);
    color: var(--shipps-navy);
    font-size: 14px;
    font-weight: 750;
    transition: .2s ease;
}

.shipps-catalog-button:hover,
.shipps-catalog-button:focus-visible {
    border-color: var(--shipps-teal);
    background: var(--shipps-navy);
    color: var(--shipps-white);
}

.shipps-catalog-button svg,
.shipps-search svg,
.shipps-drawer-close svg,
.shipps-catalog-section svg,
.shipps-subcategory svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.shipps-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.shipps-logo img {
    width: 158px;
    height: 64px;
    object-fit: contain;
}

.shipps-primary-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(14px, 2vw, 31px);
    min-width: 0;
}

.shipps-primary-nav a {
    position: relative;
    color: var(--shipps-ink);
    font-size: 13px;
    font-weight: 680;
    white-space: nowrap;
}

.shipps-primary-nav a::after {
    position: absolute;
    right: 0;
    bottom: -7px;
    left: 0;
    height: 2px;
    border-radius: 2px;
    background: var(--shipps-teal);
    content: "";
    transform: scaleX(0);
    transition: transform .2s ease;
}

.shipps-primary-nav a:hover::after,
.shipps-primary-nav a:focus-visible::after {
    transform: scaleX(1);
}

.shipps-phone {
    display: grid;
    justify-items: end;
    color: var(--shipps-navy);
    line-height: 1.2;
}

.shipps-phone span {
    color: var(--shipps-text-muted);
    font-size: 11px;
}

.shipps-phone strong {
    margin-top: 3px;
    font-size: 16px;
    letter-spacing: -.01em;
}

.shipps-header-search-row {
    border-top: 1px solid #edf2f1;
}

.shipps-header-search-row__inner {
    display: flex;
    align-items: center;
    gap: 26px;
    min-height: 61px;
}

.shipps-search {
    width: min(100%, 720px);
}

.shipps-search > label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

.shipps-search__control {
    position: relative;
    display: flex;
    align-items: center;
}

.shipps-search__control svg {
    position: absolute;
    left: 16px;
    width: 19px;
    color: var(--shipps-teal);
}

.shipps-search input {
    width: 100%;
    height: 42px;
    padding: 0 100px 0 46px;
    border: 1px solid var(--shipps-line);
    border-radius: 999px;
    outline: none;
    background: #f5f9f8;
    color: var(--shipps-ink);
    font-size: 13px;
    transition: .2s ease;
}

.shipps-search input:focus {
    border-color: var(--shipps-teal);
    background: var(--shipps-white);
    box-shadow: 0 0 0 4px rgba(15, 126, 131, .1);
}

.shipps-search button {
    position: absolute;
    right: 5px;
    height: 32px;
    padding: 0 17px;
    border-radius: 999px;
    background: var(--shipps-navy);
    color: white;
    font-size: 12px;
    font-weight: 750;
}

.shipps-header-note {
    margin-left: auto;
    color: var(--shipps-text-muted);
    font-size: 12px;
    font-weight: 550;
    text-align: right;
}

body.shipps-drawer-open {
    overflow: hidden;
}

.shipps-catalog-drawer[hidden] {
    display: none;
}

.shipps-catalog-drawer {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: grid;
    grid-template-columns: min(520px, calc(100% - 28px)) 1fr;
}

.shipps-catalog-drawer__backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(3, 22, 30, .58);
    backdrop-filter: blur(3px);
}

.shipps-catalog-drawer__panel {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-rows: auto 1fr auto;
    grid-column: 1;
    max-height: 100vh;
    background: white;
    box-shadow: 24px 0 70px rgba(3, 22, 30, .24);
    animation: shipps-drawer-in .22s ease-out both;
}

@keyframes shipps-drawer-in {
    from { transform: translateX(-24px); opacity: .6; }
    to { transform: translateX(0); opacity: 1; }
}

.shipps-catalog-drawer__heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 98px;
    padding: 22px 26px;
    border-bottom: 1px solid var(--shipps-line);
}

.shipps-catalog-drawer__heading span {
    color: var(--shipps-teal);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.shipps-catalog-drawer__heading h2 {
    margin-top: 4px;
    color: var(--shipps-navy);
    font-size: 25px;
    font-weight: 750;
    letter-spacing: -.035em;
}

.shipps-drawer-close {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid var(--shipps-line);
    border-radius: 50%;
    color: var(--shipps-navy);
}

.shipps-drawer-close:hover {
    background: var(--shipps-mist);
}

.shipps-catalog-drawer__body {
    overflow-y: auto;
    padding: 14px 20px 28px;
}

.shipps-catalog-section {
    border-bottom: 1px solid var(--shipps-line);
}

.shipps-catalog-section > summary,
.shipps-subcategory > summary {
    display: flex;
    align-items: center;
    cursor: pointer;
    list-style: none;
}

.shipps-catalog-section > summary::-webkit-details-marker,
.shipps-subcategory > summary::-webkit-details-marker {
    display: none;
}

.shipps-catalog-section > summary {
    gap: 13px;
    min-height: 68px;
    padding: 7px 4px;
    color: var(--shipps-navy);
    font-size: 15px;
    font-weight: 720;
}

.shipps-catalog-section__icon {
    display: grid;
    flex: 0 0 46px;
    width: 46px;
    height: 46px;
    place-items: center;
    border-radius: 14px;
    background: var(--shipps-mist);
}

.shipps-catalog-section__icon img {
    width: 34px;
    height: 34px;
}

.shipps-catalog-section__chevron,
.shipps-subcategory summary svg {
    margin-left: auto;
    transition: transform .2s ease;
}

.shipps-catalog-section[open] > summary .shipps-catalog-section__chevron,
.shipps-subcategory[open] > summary svg {
    transform: rotate(180deg);
}

.shipps-catalog-section__content {
    padding: 0 4px 18px 59px;
}

.shipps-view-all {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
    padding: 10px 13px;
    border-radius: 10px;
    background: var(--shipps-navy);
    color: white;
    font-size: 13px;
    font-weight: 700;
}

.shipps-subcategory-list > a,
.shipps-subcategory > summary {
    min-height: 40px;
    padding: 9px 12px;
    border-radius: 9px;
    color: #3f5964;
    font-size: 13px;
    font-weight: 600;
}

.shipps-subcategory-list > a {
    display: block;
}

.shipps-subcategory-list > a:hover,
.shipps-subcategory > summary:hover {
    background: var(--shipps-mist);
    color: var(--shipps-teal);
}

.shipps-subcategory > div {
    display: grid;
    gap: 2px;
    padding: 2px 12px 8px 28px;
}

.shipps-subcategory > div a {
    padding: 6px 0;
    color: var(--shipps-text-muted);
    font-size: 12px;
}

.shipps-subcategory > div a:hover {
    color: var(--shipps-teal);
}

.shipps-catalog-drawer__footer {
    padding: 20px 26px 24px;
    border-top: 1px solid var(--shipps-line);
    background: var(--shipps-mist);
}

.shipps-catalog-drawer__footer p {
    margin-bottom: 7px;
    color: var(--shipps-text-muted);
    font-size: 12px;
}

.shipps-catalog-drawer__footer a {
    display: inline-block;
    margin-right: 16px;
    color: var(--shipps-navy);
    font-size: 13px;
    font-weight: 750;
}

.shipps-section {
    margin-top: 88px;
}

.shipps-section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 30px;
}

.shipps-eyebrow,
.shipps-hero__eyebrow {
    margin-bottom: 9px;
    color: var(--shipps-teal);
    font-size: 11px;
    font-weight: 820;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.shipps-section-heading h2 {
    color: var(--shipps-navy);
    font-size: clamp(27px, 3.4vw, 42px);
    font-weight: 740;
    letter-spacing: -.045em;
    line-height: 1.05;
}

.shipps-carousel-actions,
.shipps-carousel-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.shipps-carousel-actions {
    gap: 18px;
}

.shipps-carousel-actions > a {
    color: var(--shipps-teal);
    font-size: 13px;
    font-weight: 750;
}

.shipps-carousel-controls button {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid var(--shipps-line);
    border-radius: 50%;
    background: white;
    color: var(--shipps-navy);
    font-size: 18px;
    transition: .2s ease;
}

.shipps-carousel-controls button:hover {
    border-color: var(--shipps-navy);
    background: var(--shipps-navy);
    color: white;
}

.shipps-category-grid {
    display: grid;
    grid-auto-columns: minmax(176px, 1fr);
    grid-auto-flow: column;
    gap: 16px;
    overflow-x: auto;
    padding: 3px 3px 14px;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.shipps-category-grid::-webkit-scrollbar,
.shipps-product-track::-webkit-scrollbar {
    display: none;
}

.shipps-category-card {
    position: relative;
    display: grid;
    min-height: 204px;
    padding: 20px;
    overflow: hidden;
    border: 1px solid var(--shipps-line);
    border-radius: 22px;
    background: linear-gradient(145deg, #f7fbfa, #edf7f5);
    box-shadow: 0 2px 0 rgba(8, 37, 50, .02);
    scroll-snap-align: start;
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.shipps-category-card::before {
    position: absolute;
    top: -50px;
    right: -45px;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: rgba(24, 162, 162, .08);
    content: "";
}

.shipps-category-card:hover {
    z-index: 1;
    border-color: rgba(15, 126, 131, .4);
    box-shadow: var(--shipps-shadow-soft);
    transform: translateY(-4px);
}

.shipps-category-card__art {
    display: grid;
    width: 100px;
    height: 100px;
    place-items: center;
    margin-bottom: 22px;
    border-radius: 25px;
    background: rgba(255, 255, 255, .82);
}

.shipps-category-card__art img {
    width: 82px;
    height: 82px;
    object-fit: contain;
}

.shipps-category-card__label {
    align-self: end;
    padding-right: 24px;
    color: var(--shipps-navy);
    font-size: 15px;
    font-weight: 740;
    line-height: 1.25;
}

.shipps-category-card__arrow {
    position: absolute;
    right: 18px;
    bottom: 18px;
    color: var(--shipps-teal);
    font-size: 18px;
}

.shipps-product-track {
    display: flex;
    gap: 22px;
    overflow-x: auto;
    padding: 3px 3px 24px;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.shipps-product-card {
    flex: 0 0 290px;
    width: 290px !important;
    min-width: 290px;
    overflow: hidden !important;
    border: 1px solid var(--shipps-line);
    border-radius: 22px !important;
    background: white;
    box-shadow: 0 3px 12px rgba(8, 37, 50, .04);
    scroll-snap-align: start;
    transition: transform .22s ease, box-shadow .22s ease !important;
}

.shipps-product-card:hover {
    box-shadow: var(--shipps-shadow-soft) !important;
    transform: translateY(-4px);
}

.shipps-product-card > div:first-child {
    width: 100%;
    max-width: none !important;
    height: 282px;
    max-height: none !important;
    border-radius: 0 !important;
    background: #f5f8f7;
}

.shipps-product-card > div:first-child img {
    object-fit: contain;
}

.shipps-product-card > div:last-child {
    width: 100%;
    max-width: none !important;
    min-height: 118px;
    margin-top: 0 !important;
    padding: 17px 18px 20px !important;
    border-top: 1px solid #edf2f1;
    border-radius: 0 !important;
    transform: none !important;
}

.shipps-product-card > div:last-child > p {
    color: var(--shipps-ink);
    font-size: 14px !important;
    font-weight: 650;
    line-height: 1.4 !important;
}

.shipps-product-card > div:last-child [v-html] {
    color: var(--shipps-teal);
}

.shipps-product-card .action-items {
    display: none !important;
}

.shipps-hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 85% 20%, rgba(24, 162, 162, .2), transparent 32%),
        linear-gradient(118deg, #ebf7f5 0%, #f9fcfb 48%, #e3f2ef 100%);
}

.shipps-hero::after {
    position: absolute;
    right: -10vw;
    bottom: -42%;
    width: 45vw;
    height: 45vw;
    border: 1px solid rgba(15, 126, 131, .14);
    border-radius: 50%;
    content: "";
}

.shipps-hero__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(330px, .88fr);
    align-items: center;
    gap: 72px;
    min-height: 540px;
    padding-block: 64px;
}

.shipps-hero h1 {
    max-width: 760px;
    color: var(--shipps-navy);
    font-size: clamp(44px, 5.6vw, 76px);
    font-weight: 720;
    letter-spacing: -.06em;
    line-height: .98;
}

.shipps-hero__lead {
    max-width: 650px;
    margin-top: 24px;
    color: #4f6973;
    font-size: 18px;
    line-height: 1.65;
}

.shipps-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 31px;
}

.shipps-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 23px;
    border: 1px solid var(--shipps-navy);
    border-radius: 999px;
    font-size: 14px;
    font-weight: 760;
    transition: .2s ease;
}

.shipps-button--primary {
    background: var(--shipps-navy);
    color: white;
}

.shipps-button--primary:hover {
    background: var(--shipps-teal);
    border-color: var(--shipps-teal);
}

.shipps-button--secondary {
    background: rgba(255, 255, 255, .6);
    color: var(--shipps-navy);
}

.shipps-button--secondary:hover {
    background: white;
}

.shipps-hero__proof {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 32px;
    margin-top: 35px;
    color: var(--shipps-text-muted);
    font-size: 12px;
    font-weight: 650;
}

.shipps-hero__proof span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.shipps-hero__proof span::before {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--shipps-teal-bright);
    content: "";
}

.shipps-hero__visual {
    position: relative;
    min-height: 390px;
}

.shipps-hero__visual-card {
    position: absolute;
    inset: 10px 18px 18px 22px;
    overflow: hidden;
    border: 1px solid rgba(15, 126, 131, .15);
    border-radius: 42% 42% 28px 28px;
    background: rgba(255, 255, 255, .75);
    box-shadow: var(--shipps-shadow);
}

.shipps-hero__visual-card img {
    width: 100%;
    height: 100%;
    padding: 22px 16px 0;
    object-fit: contain;
    object-position: bottom;
}

.shipps-hero__badge {
    position: absolute;
    right: 0;
    bottom: 0;
    display: grid;
    width: 142px;
    height: 142px;
    place-content: center;
    padding: 18px;
    border: 7px solid #e8f4f1;
    border-radius: 50%;
    background: var(--shipps-navy);
    color: white;
    text-align: center;
}

.shipps-hero__badge strong {
    font-size: 24px;
}

.shipps-hero__badge span {
    margin-top: 3px;
    font-size: 10px;
    line-height: 1.35;
    text-transform: uppercase;
}

.shipps-equipment-promo {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    margin-top: 80px;
}

.shipps-promo-card {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(160px, .75fr);
    min-height: 310px;
    overflow: hidden;
    border-radius: var(--shipps-radius);
    background: var(--shipps-navy);
    box-shadow: var(--shipps-shadow-soft);
}

.shipps-promo-card:nth-child(2) {
    background: var(--shipps-teal);
}

.shipps-promo-card__copy {
    z-index: 1;
    align-self: center;
    padding: 36px 0 36px 36px;
    color: white;
}

.shipps-promo-card__copy span {
    color: #bfe5df;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.shipps-promo-card h3 {
    margin-top: 10px;
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 700;
    letter-spacing: -.04em;
    line-height: 1.05;
}

.shipps-promo-card p {
    margin-top: 13px;
    color: rgba(255, 255, 255, .76);
    font-size: 13px;
    line-height: 1.55;
}

.shipps-promo-card a {
    display: inline-flex;
    margin-top: 24px;
    padding-bottom: 4px;
    border-bottom: 1px solid rgba(255, 255, 255, .65);
    color: white;
    font-size: 13px;
    font-weight: 750;
}

.shipps-promo-card img {
    align-self: end;
    width: 100%;
    height: 285px;
    padding: 20px 12px 0 0;
    object-fit: contain;
    object-position: bottom;
    filter: drop-shadow(0 18px 20px rgba(0, 0, 0, .2));
}

.shipps-trust-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 88px;
    overflow: hidden;
    border: 1px solid var(--shipps-line);
    border-radius: 20px;
    background: var(--shipps-mist);
}

.shipps-trust-item {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 13px;
    padding: 25px 28px;
}

.shipps-trust-item + .shipps-trust-item {
    border-left: 1px solid var(--shipps-line);
}

.shipps-trust-item__icon {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 13px;
    background: white;
    color: var(--shipps-teal);
    font-size: 17px;
    font-weight: 800;
}

.shipps-trust-item strong,
.shipps-trust-item span {
    display: block;
}

.shipps-trust-item strong {
    color: var(--shipps-navy);
    font-size: 13px;
}

.shipps-trust-item span {
    margin-top: 2px;
    color: var(--shipps-text-muted);
    font-size: 11px;
}

.shipps-theme .primary-button {
    border-radius: 999px;
    background: var(--shipps-navy);
}

.shipps-theme .secondary-button {
    border-color: var(--shipps-navy);
    border-radius: 999px;
    color: var(--shipps-navy);
}

.shipps-theme footer {
    margin-top: 96px !important;
    background: var(--shipps-navy) !important;
    color: rgba(255, 255, 255, .82);
}

.shipps-theme footer > div:first-child {
    width: min(100%, 1360px);
    margin-inline: auto;
    padding-block: 62px;
}

.shipps-theme footer a:hover {
    color: #80d8d3;
}

.shipps-theme footer > div:last-child {
    background: var(--shipps-navy-deep) !important;
}

.shipps-theme footer > div:last-child p {
    color: rgba(255, 255, 255, .62) !important;
}

@media (max-width: 1120px) {
    .shipps-header-main__inner {
        grid-template-columns: auto 145px minmax(0, 1fr) auto;
        gap: 18px;
    }

    .shipps-primary-nav a:nth-last-child(-n + 2) {
        display: none;
    }

    .shipps-header-note {
        display: none;
    }

    .shipps-search {
        width: 100%;
    }
}

@media (max-width: 850px) {
    .shipps-header-main__inner,
    .shipps-header-search-row__inner,
    .shipps-section,
    .shipps-hero__inner,
    .shipps-equipment-promo,
    .shipps-trust-strip {
        width: min(100% - 32px, 1240px);
    }

    .shipps-header-main__inner {
        grid-template-columns: auto 1fr auto;
        min-height: 72px;
    }

    .shipps-catalog-button {
        width: 43px;
        min-height: 43px;
        padding: 0;
        justify-content: center;
    }

    .shipps-catalog-button span,
    .shipps-primary-nav,
    .shipps-phone span {
        display: none;
    }

    .shipps-logo {
        justify-self: center;
    }

    .shipps-logo img {
        width: 132px;
        height: 54px;
    }

    .shipps-phone strong {
        font-size: 12px;
    }

    .shipps-header-search-row__inner {
        min-height: 56px;
    }

    .shipps-hero__inner {
        grid-template-columns: 1fr;
        gap: 38px;
        min-height: auto;
        padding-block: 54px;
    }

    .shipps-hero__copy {
        text-align: center;
    }

    .shipps-hero h1,
    .shipps-hero__lead {
        margin-inline: auto;
    }

    .shipps-hero__actions,
    .shipps-hero__proof {
        justify-content: center;
    }

    .shipps-hero__visual {
        width: min(100%, 440px);
        min-height: 360px;
        margin-inline: auto;
    }

    .shipps-equipment-promo {
        grid-template-columns: 1fr;
    }

    .shipps-trust-strip {
        grid-template-columns: 1fr;
    }

    .shipps-trust-item + .shipps-trust-item {
        border-top: 1px solid var(--shipps-line);
        border-left: 0;
    }
}

@media (max-width: 640px) {
    .shipps-staging-notice {
        padding-inline: 14px;
        font-size: 10px;
    }

    .shipps-phone {
        display: none;
    }

    .shipps-header-main__inner {
        grid-template-columns: auto 1fr 43px;
    }

    .shipps-header-main__inner::after {
        width: 43px;
        content: "";
    }

    .shipps-header-search-row__inner {
        width: calc(100% - 24px);
    }

    .shipps-search input {
        padding-right: 48px;
        font-size: 12px;
    }

    .shipps-search button {
        width: 34px;
        padding: 0;
        overflow: hidden;
        color: transparent;
    }

    .shipps-search button::after {
        position: absolute;
        inset: 0;
        display: grid;
        place-items: center;
        color: white;
        content: "→";
    }

    .shipps-catalog-drawer {
        grid-template-columns: min(100%, 440px);
    }

    .shipps-catalog-drawer__heading {
        min-height: 84px;
        padding: 17px 18px;
    }

    .shipps-catalog-drawer__body {
        padding-inline: 12px;
    }

    .shipps-catalog-section__content {
        padding-left: 18px;
    }

    .shipps-section {
        margin-top: 62px;
    }

    .shipps-section-heading {
        align-items: center;
        margin-bottom: 22px;
    }

    .shipps-section-heading h2 {
        font-size: 28px;
    }

    .shipps-carousel-controls {
        display: none;
    }

    .shipps-category-grid {
        grid-auto-columns: minmax(150px, 46vw);
        gap: 12px;
    }

    .shipps-category-card {
        min-height: 177px;
        padding: 16px;
        border-radius: 18px;
    }

    .shipps-category-card__art {
        width: 80px;
        height: 80px;
        margin-bottom: 16px;
        border-radius: 20px;
    }

    .shipps-category-card__art img {
        width: 68px;
        height: 68px;
    }

    .shipps-product-track {
        gap: 14px;
    }

    .shipps-product-card {
        flex-basis: 220px;
        width: 220px !important;
        min-width: 220px;
    }

    .shipps-product-card > div:first-child {
        height: 215px;
    }

    .shipps-hero__inner {
        width: calc(100% - 28px);
        padding-block: 43px;
    }

    .shipps-hero h1 {
        font-size: clamp(39px, 12vw, 52px);
    }

    .shipps-hero__lead {
        margin-top: 19px;
        font-size: 15px;
    }

    .shipps-button {
        width: 100%;
    }

    .shipps-hero__proof {
        gap: 11px 19px;
        margin-top: 24px;
    }

    .shipps-hero__visual {
        min-height: 305px;
    }

    .shipps-hero__visual-card {
        inset-inline: 4px;
    }

    .shipps-hero__badge {
        width: 112px;
        height: 112px;
        border-width: 5px;
    }

    .shipps-hero__badge strong {
        font-size: 18px;
    }

    .shipps-equipment-promo {
        width: calc(100% - 28px);
        margin-top: 54px;
    }

    .shipps-promo-card {
        grid-template-columns: 1fr 135px;
        min-height: 280px;
    }

    .shipps-promo-card__copy {
        padding: 28px 0 28px 24px;
    }

    .shipps-promo-card img {
        height: 250px;
    }

    .shipps-trust-strip {
        width: calc(100% - 28px);
        margin-top: 58px;
    }

    .shipps-theme footer {
        margin-top: 68px !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }
}
