:root {
    --ink: #1f2933;
    --muted: #5f6f7d;
    --line: #d6dde3;
    --soft: #f5f8fa;
    --green: #126536;
    --green-dark: #0b4826;
    --sprintek-header: #ffffff;
    --sprintek-header-2: #f7faf8;
    --sprintek-subnav: #ffffff;
    --blue: #0f5e9c;
    --warn: #8a4b00;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    color: var(--ink);
    font-family: Arial, Helvetica, sans-serif;
    background: #fff;
}

a {
    color: var(--blue);
}

.store-header {
    background: var(--sprintek-header);
    color: var(--ink);
    border-bottom: 3px solid var(--green);
}

.checkout-only-header {
    min-height: 76px;
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr) 180px;
    align-items: center;
    padding: 10px clamp(14px, 3vw, 32px);
    color: var(--ink);
    background: var(--sprintek-header);
    border-bottom: 3px solid var(--green);
}

.checkout-logo,
.checkout-cart-link {
    color: var(--ink);
    text-decoration: none;
}

.checkout-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 20px;
}

.checkout-logo img {
    height: 42px;
    width: auto;
    padding: 4px;
    border-radius: 3px;
    background: transparent;
}

.checkout-only-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
}

.checkout-cart-link {
    justify-self: end;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 17px;
}

.checkout-logo:hover,
.checkout-cart-link:hover {
    color: var(--green-dark);
    outline: 1px solid rgba(18, 101, 54, 0.35);
    outline-offset: 4px;
}

.store-topbar {
    min-height: 54px;
    display: flex;
    gap: 14px;
    align-items: center;
    flex-wrap: nowrap;
    padding: 5px clamp(12px, 3vw, 30px);
}

.store-brand,
.ship-note,
.header-action,
.cart-action,
.store-subnav a {
    color: var(--ink);
    text-decoration: none;
}

.store-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 150px;
    font-weight: 700;
    font-size: 22px;
}

.store-brand img {
    height: 37px;
    width: auto;
    padding: 0;
    border-radius: 3px;
    background: transparent;
}

.ship-note {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-width: 142px;
    line-height: 1.05;
}

.ship-note small,
.header-action small {
    display: block;
    color: var(--muted);
    font-size: 13px;
}

.ship-note strong,
.header-action strong {
    display: block;
    color: var(--ink);
    font-size: 17px;
}

.store-search {
    display: grid;
    grid-template-columns: minmax(120px, 1fr) 54px;
    flex: 1 1 auto;
    min-width: 260px;
}

.store-search select,
.store-search input,
.store-search button {
    min-height: 44px;
    border: 0;
    font: inherit;
}

.store-search input {
    padding: 0 14px;
    border-radius: 5px 0 0 5px;
    border: 1px solid var(--line);
    border-right: 0;
    font-size: 18px;
}

.store-search button {
    border-radius: 0 5px 5px 0;
    border: 1px solid var(--line);
    border-left: 0;
    background: #fff;
    color: var(--green-dark);
    font-size: 20px;
}

.store-search button:hover {
    background: var(--soft);
}

.header-action {
    min-width: 78px;
    line-height: 1.05;
    border: 0;
    padding: 0;
    background: transparent;
    text-align: left;
    font: inherit;
    cursor: pointer;
}

.account-action {
    min-width: 108px;
    white-space: nowrap;
}

.account-menu-trigger {
    display: flex;
    align-items: center;
    gap: 8px;
}

.account-label {
    display: block;
}

.account-menu-wrap {
    position: relative;
    padding-bottom: 10px;
    margin-bottom: -10px;
}

.account-menu {
    position: absolute;
    top: calc(100% - 1px);
    right: -190px;
    z-index: 20;
    width: min(760px, 92vw);
    display: none;
    padding: 24px;
    color: var(--ink);
    border: 1px solid #cfd6dd;
    border-radius: 4px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
}

.account-menu::before {
    content: "";
    position: absolute;
    top: -10px;
    right: 210px;
    width: 20px;
    height: 20px;
    transform: rotate(45deg);
    border-left: 1px solid #cfd6dd;
    border-top: 1px solid #cfd6dd;
    background: #fff;
}

.account-menu-wrap:hover .account-menu,
.account-menu-wrap:focus-within .account-menu,
.account-menu-wrap.is-open .account-menu {
    display: block;
}

.account-menu-callout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 22px;
    padding: 14px 18px;
    border-radius: 8px;
    background: #e8f5f6;
}

.account-menu-callout span {
    font-size: 20px;
    font-weight: 700;
    color: #007185;
}

.account-menu a {
    color: #1f5f9e;
    text-decoration: none;
}

.account-menu-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.account-menu-columns > div + div {
    padding-left: 28px;
    border-left: 1px solid var(--line);
}

.account-menu h3 {
    margin: 0 0 12px;
    color: var(--ink);
    font-size: 22px;
}

.account-menu-columns a {
    display: block;
    margin: 9px 0;
    color: #444;
    font-size: 16px;
}

.account-menu-columns a:hover {
    color: #c45500;
    text-decoration: underline;
}

.signed-out-actions {
    display: grid;
    justify-items: center;
    gap: 8px;
    margin: -4px -4px 20px;
    padding: 0 0 18px;
    border-bottom: 1px solid var(--line);
    color: var(--muted);
    font-size: 13px;
}

.signed-out-actions .sign-in-button {
    width: min(260px, 100%);
    color: #111820;
    font-weight: 700;
    border: 0;
    border-radius: 8px;
    background: #ffd814;
}

.signed-out-actions .sign-in-button:hover {
    color: #111820;
    background: #f7ca00;
}

.cart-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-width: 84px;
    font-size: 17px;
    white-space: nowrap;
}

.cart-icon {
    position: relative;
    width: 44px;
    height: 36px;
    flex: 0 0 44px;
    display: inline-flex;
    align-items: flex-end;
    justify-content: center;
}

.cart-icon i {
    color: #111820;
    font-size: 37px;
    line-height: 1;
}

.cart-count {
    position: absolute;
    top: 1px;
    left: 21px;
    transform: translateX(-50%);
    z-index: 1;
    min-width: 18px;
    color: #f4ad43;
    font-size: 16px;
    font-weight: 800;
    line-height: 1;
    text-align: center;
    text-shadow: 0 1px 0 #fff;
}

.store-subnav {
    display: flex;
    gap: 24px;
    align-items: center;
    min-height: 38px;
    padding: 0 clamp(12px, 3vw, 30px);
    overflow-x: auto;
    border-top: 1px solid var(--line);
    background: var(--sprintek-subnav);
    white-space: nowrap;
}

.store-subnav a {
    color: var(--ink);
    font-weight: 700;
    font-size: 17px;
}

.store-subnav-support {
    margin-left: auto;
}

.store-subnav a:hover,
.store-brand:hover,
.ship-note:hover,
.header-action:hover,
.cart-action:hover {
    color: var(--green-dark);
    outline: 1px solid rgba(18, 101, 54, 0.35);
    outline-offset: 4px;
}

.page-shell {
    width: min(calc(100% - 48px), 2360px);
    max-width: none;
    margin: 22px auto 48px;
}

.checkout-page-shell {
    max-width: 1900px;
    margin: 18px auto 48px;
    padding: 0 clamp(12px, 2vw, 34px);
}

.site-footer {
    padding: 24px clamp(16px, 4vw, 48px);
    color: var(--muted);
    border-top: 1px solid var(--line);
}

.page-title {
    margin: 0 0 6px;
    font-size: 32px;
}

.lede {
    margin: 0 0 24px;
    color: var(--muted);
    line-height: 1.5;
}

.store-home-banner {
    min-height: 300px;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap: 26px;
    align-items: center;
    margin: -2px 0 18px;
    padding: clamp(24px, 4vw, 42px);
    color: #fff;
    background: linear-gradient(120deg, #063b22 0%, #0b5a34 58%, #12704a 100%);
}

.home-banner-copy {
    max-width: 680px;
}

.home-banner-copy-stage {
    min-height: 202px;
    display: grid;
    align-content: start;
}

.home-banner-copy span {
    color: #f4ad43;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0;
}

.home-banner-copy h1 {
    margin: 8px 0 12px;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.05;
}

.home-banner-copy p {
    max-width: 620px;
    margin: 0 0 20px;
    color: #dbe8ef;
    font-size: 17px;
    line-height: 1.45;
}

.home-category-carousel {
    max-width: 520px;
}

.home-category-slides {
    position: relative;
    min-height: 46px;
}

.home-category-slide {
    position: absolute;
    inset: 0 auto auto 0;
    width: auto;
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 16px;
    color: #111820;
    text-decoration: none;
    border: 0;
    border-radius: 4px;
    background: #f4ad43;
    opacity: 0;
    visibility: hidden;
    transform: translateY(2px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.home-category-slide[hidden] {
    display: none !important;
}

.home-category-slide.is-active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.home-category-slide:hover,
.home-category-slide:focus {
    color: #111820;
    background: #f7bd55;
    outline: 2px solid rgba(255, 255, 255, 0.85);
    outline-offset: 3px;
}

.home-category-slide span {
    color: #111820;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0;
}

.home-category-dots {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.home-category-dots button {
    width: 12px;
    height: 12px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 999px;
    background: transparent;
    cursor: pointer;
}

.home-category-dots button.is-active {
    border-color: #f4ad43;
    background: #f4ad43;
}

.home-category-dots button:focus {
    outline: 2px solid #fff;
    outline-offset: 3px;
}

.home-banner-products {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    justify-self: end;
}

.home-banner-products img {
    width: 100%;
    aspect-ratio: 1;
    padding: 14px;
    object-fit: contain;
    border-radius: 6px;
    background: #fff;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
}

.section-title {
    margin: 22px 0 12px;
    font-size: 24px;
}

.feature-band {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 16px;
    margin: 0 0 22px;
}

.feature-card {
    min-height: 150px;
    display: grid;
    grid-template-columns: 1fr 86px;
    grid-template-rows: auto 1fr;
    gap: 8px 12px;
    padding: 16px;
    color: var(--ink);
    text-decoration: none;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: #fff;
}

.feature-card:hover {
    color: var(--ink);
    border-color: #f4ad43;
}

.feature-card strong {
    font-size: 18px;
}

.feature-card span {
    color: var(--muted);
}

.feature-card img {
    grid-row: 1 / span 2;
    grid-column: 2;
    align-self: center;
    max-width: 86px;
    max-height: 100px;
    object-fit: contain;
}

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

.featured-product-card {
    min-height: 210px;
    display: grid;
    grid-template-rows: 120px auto auto;
    gap: 8px;
    padding: 14px;
    color: var(--ink);
    text-decoration: none;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: #fff;
}

.featured-product-card:hover {
    color: var(--ink);
    border-color: #f4ad43;
}

.featured-product-card img {
    width: 100%;
    height: 120px;
    object-fit: contain;
}

.featured-product-card span {
    color: var(--muted);
}

.featured-product-card strong {
    font-size: 18px;
}

.filter-summary {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin: 0 0 18px;
    padding: 10px 14px;
    border-left: 4px solid #f4ad43;
    background: #fff8ed;
}

.store-toast {
    position: fixed;
    top: 118px;
    right: 24px;
    z-index: 1050;
    max-width: min(420px, calc(100vw - 48px));
    margin: 0;
    padding: 10px 14px;
    border-radius: 6px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

textarea {
    min-height: 82px;
    resize: vertical;
}

.store-layout {
    display: grid;
    grid-template-columns: 1fr 330px;
    gap: 24px;
    align-items: start;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
    background: #fff;
}

/* Bootstrap xxl and up */
@media (min-width: 1400px) {
    .product-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.product-card {
    min-height: 400px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 0 16px 10px;
    border: 0;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    background: #fff;
}

.product-image-frame {
    width: calc(100% + 32px);
    height: 200px;
    margin: 0 -16px 4px;
    display: grid;
    place-items: center;
    padding: 14px;
    overflow: hidden;
    border: 0;
    border-radius: 0;
    background: #f7f7f7;
}

.product-image {
    width: 100%;
    height: 172px;
    object-fit: contain;
    object-position: center;
}

.product-card h2 {
    margin: 2px 0 0;
    font-size: 17px;
    line-height: 1.25;
    font-weight: 400;
}

.sku {
    color: var(--muted);
    font-weight: 700;
}

.category {
    color: var(--green-dark);
    font-size: 12px;
    line-height: 1.25;
    font-weight: 700;
}

.product-description {
    min-height: 32px;
    margin-top: 3px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.25;
}

.product-description:empty {
    display: none;
}

.price {
    margin-top: 4px;
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
}

.price-breaks {
    min-height: 16px;
    font-size: 12px;
    line-height: 1.25;
}

.product-variant-select {
    min-height: 42px;
    margin-top: auto;
    margin-bottom: 10px;
}

.add-row {
    margin-top: auto;
    padding-top: 6px;
}

.product-card .btn-warning {
    width: 100%;
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 999px;
    color: #111820;
    font-weight: 400;
    text-decoration: none;
    background: #ffd814;
}

.product-card .btn-warning:hover,
.product-card .btn-warning:focus {
    color: #111820;
    background: #f7ca00;
}

.cart-quantity {
    max-width: 84px;
    display: inline-block;
    margin: 8px 6px 8px 0;
}

.cart-panel {
    position: sticky;
    top: 16px;
    padding: 16px;
    max-height: calc(100vh - 32px);
    display: flex;
    flex-direction: column;
}

.cart-lines {
    overflow-y: auto;
    padding-right: 4px;
}

.cart-line,
.total-line {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--line);
}

.cart-line:last-child,
.total-line:last-child {
    border-bottom: 0;
}

.cart-page-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 20px;
}

.cart-page-main,
.cart-page-summary {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 6px;
}

.cart-page-main {
    padding: 18px;
}

.cart-page-heading {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--line);
}

.cart-page-heading h1 {
    margin: 0;
    font-size: 32px;
}

.cart-page-heading span {
    color: var(--muted);
}

.empty-cart {
    padding: 28px 0;
}

.cart-page-item {
    display: grid;
    grid-template-columns: 34px 170px minmax(0, 1fr) 130px;
    gap: 18px;
    padding: 22px 0;
    border-bottom: 1px solid var(--line);
}

.cart-item-check {
    display: flex;
    align-items: center;
}

.cart-item-check input {
    width: 18px;
    height: 18px;
}

.cart-item-image {
    display: grid;
    place-items: center;
}

.cart-item-image img {
    max-width: 160px;
    max-height: 150px;
    object-fit: contain;
}

.cart-item-info h2 {
    margin: 0 0 8px;
    font-size: 20px;
    line-height: 1.3;
}

.cart-item-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin-top: 12px;
}

.cart-qty-stepper {
    display: inline-grid;
    grid-template-columns: 34px 54px 34px;
    align-items: center;
    border: 2px solid #ffd814;
    border-radius: 18px;
    overflow: hidden;
}

.qty-button {
    display: grid;
    place-items: center;
    min-height: 32px;
    color: #111820;
    text-decoration: none;
    background: #fff;
}

.qty-button:hover {
    color: #111820;
    background: #fff8d6;
}

.cart-page-quantity {
    width: 54px;
    min-height: 32px;
    text-align: center;
    border: 0;
    border-left: 1px solid #ffe680;
    border-right: 1px solid #ffe680;
}

.cart-text-action {
    color: var(--blue);
    text-decoration: none;
}

.cart-text-action:hover {
    text-decoration: underline;
}

.cart-item-price {
    text-align: right;
}

.cart-item-price strong {
    display: block;
    font-size: 18px;
}

.cart-item-price span {
    color: var(--muted);
    font-size: 13px;
}

.cart-page-footer {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    padding-top: 14px;
    font-size: 18px;
}

.cart-page-summary {
    position: sticky;
    top: 16px;
    align-self: start;
    padding: 18px;
}

.threshold-bar {
    height: 12px;
    margin-bottom: 8px;
    overflow: hidden;
    border: 1px solid #1f8f4a;
    border-radius: 99px;
}

.threshold-bar span {
    display: block;
    width: 72%;
    height: 100%;
    background: #168a45;
}

.cart-threshold p {
    color: var(--ink);
    font-size: 14px;
    line-height: 1.35;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin: 18px 0;
    font-size: 18px;
}

.muted {
    color: var(--muted);
}

.message {
    margin: 14px 0;
    padding: 12px 14px;
    border-left: 4px solid var(--green);
    background: var(--soft);
}

.message.warn {
    border-left-color: var(--warn);
}

.checkout-title {
    margin: -22px calc(50% - 50vw) 18px;
    padding: 16px;
    color: #fff;
    text-align: center;
    background: var(--sprintek-header);
}

.checkout-title h1 {
    margin: 0;
    font-size: 30px;
}

.checkout-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 28px;
    align-items: start;
}

.checkout-main {
    display: grid;
    gap: 18px;
}

.checkout-section,
.checkout-summary {
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 4px;
    background: #fff;
}

.checkout-section-head {
    display: flex;
    justify-content: space-between;
    gap: 16px;
}

.checkout-section h2,
.checkout-section-head h2 {
    margin: 0 0 8px;
    font-size: 22px;
}

.checkout-section-head p {
    margin: 0 0 14px;
    color: var(--ink);
}

.checkout-address-summary {
    color: var(--ink);
    line-height: 1.45;
}

.checkout-address-summary p {
    margin: 0 0 8px;
}

.checkout-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 14px;
}

.checkout-form-grid label {
    margin-bottom: 4px;
    font-weight: 700;
}

.checkout-form-grid .span-2 {
    grid-column: span 2;
}

.checkout-item {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr) 110px;
    gap: 16px;
    padding: 16px 0;
    border-top: 1px solid var(--line);
}

.checkout-item-image {
    display: grid;
    place-items: center;
    background: var(--soft);
    border-radius: 6px;
}

.checkout-item-image img {
    max-width: 110px;
    max-height: 110px;
    object-fit: contain;
}

.checkout-item h3 {
    margin: 0 0 6px;
    font-size: 17px;
    line-height: 1.35;
}

.checkout-item > strong {
    text-align: right;
}

.checkout-summary {
    position: sticky;
    top: 16px;
}

.checkout-agreement {
    margin: 14px 0 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
    font-size: 13px;
    line-height: 1.4;
}

.checkout-total-lines {
    display: grid;
    gap: 8px;
    margin-bottom: 18px;
}

.checkout-total-lines div {
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

.checkout-total-lines .order-total {
    padding-top: 8px;
    color: var(--ink);
    font-size: 22px;
    font-weight: 800;
}

.table th,
.table td {
    padding: 10px;
    border-bottom: 1px solid var(--line);
    text-align: left;
    vertical-align: top;
}

.table th:last-child,
.table td:last-child {
    text-align: right;
}

.order-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 24px;
    margin: 12px 0 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--line);
}

.order-detail-grid h3 {
    margin: 0 0 6px;
    font-size: 17px;
}

.order-detail-grid p {
    margin: 0;
    color: var(--muted);
    line-height: 1.45;
}

.order-detail-span {
    grid-column: 1 / -1;
}

.payment-options {
    display: grid;
    gap: 14px;
}

.payment-option {
    padding: 16px;
}

.payment-option h2 {
    margin-top: 0;
    font-size: 20px;
}

.direct-pay-card {
    margin-bottom: 20px;
    padding: 16px;
}

.direct-pay-form {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 10px 18px;
    align-items: center;
}

.direct-pay-form label {
    margin: 0;
    color: var(--ink);
    font-size: 22px;
    font-weight: 700;
}

.direct-pay-form .form-control {
    min-height: 42px;
    font-size: 24px;
}

.direct-pay-amount {
    max-width: 520px;
}

.direct-pay-actions {
    display: flex;
    justify-content: flex-start;
    margin-top: 16px;
}

.direct-pay-actions .direct-pay-update {
    width: auto !important;
    flex: 0 0 auto;
    min-width: 230px;
    max-width: 100%;
}

.direct-pay-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}

.direct-pay-method {
    flex: 1 1 260px;
    max-width: 420px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: #fff;
    cursor: pointer;
}

.direct-pay-method input {
    margin-top: 4px;
}

.direct-pay-method span {
    display: grid;
    gap: 3px;
}

.direct-pay-method strong {
    color: var(--ink);
}

.direct-pay-method small {
    color: var(--muted);
    line-height: 1.35;
}

.direct-pay-zelle {
    padding: 16px;
}

.copy-line {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
    align-items: center;
    margin: 8px 0;
}

.copy-button {
    min-height: 32px;
    padding: 4px 12px;
    border: 1px solid #f4bf2a;
    border-radius: 999px;
    color: #111820;
    background: #ffd814;
    font: inherit;
    font-size: 14px;
    cursor: pointer;
}

.copy-button:hover,
.copy-button:focus {
    background: #f7ca00;
}

.reorder-actions {
    display: flex;
    justify-content: flex-start;
    margin-top: 16px;
}

.reorder-actions .reorder-button {
    width: auto !important;
    flex: 0 0 auto;
    min-width: 180px;
    max-width: 100%;
}

.admin-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 420px;
    gap: 24px;
}

.admin-table td {
    white-space: normal;
}

.admin-page-head {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: flex-start;
}

.account-form,
.profile-form {
    max-width: 520px;
}

.registration-honeypot {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.profile-form {
    max-width: 820px;
}

.account-home-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.account-home-card {
    min-height: 160px;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    grid-template-rows: auto 1fr;
    gap: 8px 14px;
    padding: 18px;
    color: var(--ink);
    text-decoration: none;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: #fff;
}

.account-home-card:hover {
    color: var(--ink);
    border-color: #f4ad43;
    box-shadow: 0 8px 20px rgba(17, 24, 32, 0.08);
}

.account-home-card i {
    grid-row: 1 / span 2;
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    color: #0f5e9c;
    border-radius: 6px;
    background: var(--soft);
    font-size: 20px;
}

.account-home-card strong {
    font-size: 20px;
}

.account-home-card span {
    color: var(--muted);
    line-height: 1.45;
}

.saved-address-picker {
    display: grid;
    gap: 6px;
    margin: 0 0 16px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--soft);
}

.saved-address-picker-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
}

.saved-address-picker-head label {
    margin: 0;
}

.address-list {
    display: grid;
    gap: 12px;
}

.address-list-item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: #fff;
}

.address-actions {
    display: flex;
    gap: 8px;
    align-items: flex-start;
}

.zelle-qr {
    width: min(260px, 100%);
    height: auto;
    display: block;
}

/* Below Bootstrap xl */
@media (max-width: 1199.98px) {
    .store-header {
        position: sticky;
        top: 0;
        z-index: 1000;
        box-shadow: 0 2px 8px rgba(17, 24, 32, 0.12);
    }

    .store-topbar {
        gap: 14px;
    }

    .ship-note,
    .orders-action {
        display: none;
    }

    .store-brand {
        min-width: 0;
    }

    .account-menu-wrap {
        margin-left: auto;
        justify-self: end;
    }

    .account-menu {
        right: -82px;
        width: min(620px, 92vw);
    }

    .account-menu::before {
        right: 102px;
    }

    .cart-action {
        justify-self: end;
    }
}

/* Below Bootstrap lg */
@media (max-width: 991.98px) {
    .store-topbar {
        flex-wrap: wrap;
    }

    .store-search {
        order: 10;
        flex: 1 0 100%;
        width: 100%;
        min-width: 0;
    }

    .store-subnav-support,
    .store-subnav-main {
        display: none;
    }

    .checkout-only-header {
        grid-template-columns: auto minmax(0, 1fr) auto;
    }

    .checkout-only-title {
        font-size: 26px;
    }

    .store-home-banner {
        grid-template-columns: 1fr;
    }

    .home-banner-copy-stage {
        min-height: 178px;
    }

    .home-banner-products {
        max-width: 520px;
        justify-self: start;
    }

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

    .featured-product-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

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

    .cart-page-grid,
    .checkout-grid,
    .admin-detail-grid {
        grid-template-columns: 1fr;
    }

    .cart-panel,
    .cart-page-summary,
    .checkout-summary {
        position: static;
    }

    .cart-page-item {
        grid-template-columns: 28px 132px minmax(0, 1fr);
    }

    .cart-item-price {
        grid-column: 3;
        text-align: left;
    }

    .checkout-form-grid {
        grid-template-columns: 1fr;
    }

    .checkout-form-grid .span-2 {
        grid-column: auto;
    }

    .checkout-item {
        grid-template-columns: 100px minmax(0, 1fr);
    }

    .checkout-item > strong {
        grid-column: 2;
        text-align: left;
    }

    .address-list-item {
        grid-template-columns: 1fr;
    }
}

/* Bootstrap xs only */
@media (max-width: 575.98px) {
    .store-topbar {
        gap: 10px;
        padding-inline: 12px;
    }

    .cart-action {
        min-width: 44px;
    }

    .cart-action strong {
        display: none;
    }

    .store-home-banner {
        padding: 20px;
    }

    .home-banner-copy-stage {
        min-height: 210px;
    }

    .home-banner-products {
        grid-template-columns: 1fr;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .feature-band {
        grid-template-columns: 1fr;
    }

    .featured-product-row {
        grid-template-columns: 1fr;
    }

    .cart-page-main {
        padding: 14px;
    }

    .cart-page-heading {
        align-items: flex-start;
    }

    .cart-page-heading h1 {
        font-size: 28px;
    }

    .cart-page-item {
        grid-template-columns: 24px 92px minmax(0, 1fr);
        gap: 12px;
    }

    .cart-item-image img {
        max-width: 90px;
        max-height: 100px;
    }

    .cart-item-info h2 {
        font-size: 17px;
    }

    .cart-item-price {
        grid-column: 2 / -1;
    }

    .checkout-title h1 {
        font-size: 26px;
    }

    .checkout-section-head {
        display: grid;
    }

    .order-detail-grid {
        grid-template-columns: 1fr;
    }

    .direct-pay-form {
        grid-template-columns: 1fr;
    }

    .direct-pay-form label {
        font-size: 18px;
    }

    .checkout-item {
        grid-template-columns: 82px minmax(0, 1fr);
        gap: 12px;
    }

    .checkout-item-image img {
        max-width: 76px;
        max-height: 86px;
    }

    .account-home-grid {
        grid-template-columns: 1fr;
    }
}
