.catalog-public {
    background: #fff;
    padding-bottom: 0;
}

.catalog-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    align-items: center;
    padding: 14px 18px;
    color: #8a9195;
    font-size: 13px;
}

.catalog-breadcrumbs a {
    color: inherit;
    text-decoration: none;
}

.catalog-listing,
.catalog-product-page {
    background: #fff;
}

.catalog-category-description {
    padding: 0 28px 24px;
    color: var(--agu-text);
    line-height: 1.55;
}

.catalog-empty {
    padding: 54px 28px;
    border-top: 1px solid var(--agu-border);
    color: #747b7f;
    text-align: center;
}

.catalog-search-summary {
    padding: 16px 28px;
    border-top: 1px solid var(--agu-border);
    color: #747b7f;
    font-size: 14px;
}

.catalog-search-summary strong {
    color: #3d4549;
    font-weight: 500;
}

.catalog-product-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid var(--agu-border);
}

.catalog-product-card {
    position: relative;
    display: grid;
    grid-template-rows: auto 1fr auto;
    min-width: 0;
    padding: 24px 28px 26px;
    border-right: 1px solid var(--agu-border);
    border-bottom: 1px solid var(--agu-border);
    background: #fff;
}

.catalog-product-card:nth-child(2n) {
    border-right: 0;
}

.catalog-product-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    width: min(50%, 520px);
    justify-self: center;
    border-right: 1px solid var(--agu-border);
    border-left: 1px solid var(--agu-border);
}

.catalog-product-card__media {
    position: relative;
    display: grid;
    min-height: 235px;
    place-items: center;
    text-decoration: none;
}

.catalog-product-card__media img {
    display: block;
    width: 100%;
    max-width: 310px;
    height: 235px;
    object-fit: contain;
    border-radius: 6px;
}

.catalog-product-card__image-placeholder {
    display: grid;
    width: min(100%, 310px);
    height: 235px;
    place-items: center;
    background: #f2f3f3;
    color: #bccf00;
    font-size: 40px;
    font-weight: 700;
}

.catalog-product-card__discount,
.catalog-product-summary__discount {
    position: absolute;
    top: 8px;
    right: 8px;
    display: grid;
    min-width: 58px;
    min-height: 38px;
    place-items: center;
    border-radius: 4px;
    background: #e9774d;
    color: #fff;
    padding: 5px 10px;
    font-weight: 700;
}

.catalog-product-card__body {
    display: grid;
    gap: 7px;
    align-content: start;
    padding: 12px 0 18px;
    text-align: center;
}

.catalog-product-card__heading {
    margin: 0;
    font: inherit;
}

.catalog-product-card__name {
    color: #3d4549;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
}

.catalog-product-card__model,
.catalog-product-card__status,
.catalog-product-summary__status,
.catalog-product-summary__delivery {
    color: #8a9195;
    font-size: 13px;
}

.catalog-product-card__price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 10px;
    margin-top: 4px;
}

.catalog-product-card__price s {
    color: #949a9e;
}

.catalog-product-card__price strong {
    color: #3d4549;
    font-size: 21px;
}

.catalog-product-card__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.catalog-product-card__more {
    border: 1px solid #cfd4d6;
    background: #fff;
    color: #5b6266;
}

.catalog-product-card__actions .button {
    display: grid;
    min-height: 40px;
    place-items: center;
    text-decoration: none;
}

.catalog-product-card__actions .is-disabled {
    opacity: .6;
}

.catalog-product-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
    gap: 34px;
    border-top: 1px solid var(--agu-border);
    padding: 30px;
}

.catalog-product-gallery {
    min-width: 0;
}

.catalog-product-gallery__main,
.catalog-product-gallery__placeholder {
    display: grid;
    min-height: 430px;
    place-items: center;
    background: #fff;
}

.catalog-product-gallery__main img {
    width: 100%;
    max-width: 560px;
    max-height: 430px;
    object-fit: contain;
}

.catalog-product-gallery__placeholder {
    background: #f2f3f3;
    color: #bccf00;
    font-size: 62px;
    font-weight: 700;
}

.catalog-product-gallery__thumbs {
    display: flex;
    gap: 10px;
    margin-top: 12px;
    overflow-x: auto;
}

.catalog-product-gallery__thumb {
    display: grid;
    flex: 0 0 auto;
    width: 78px;
    height: 78px;
    place-items: center;
    border: 1px solid var(--agu-border);
    border-radius: 3px;
    background: #fff;
    padding: 2px;
    cursor: pointer;
}

.catalog-product-gallery__thumb.is-active {
    border-color: var(--agu-lime-dark);
}

.catalog-product-gallery__thumb img {
    display: block;
    width: 72px;
    height: 72px;
    object-fit: contain;
}

.catalog-product-summary {
    position: relative;
    align-self: start;
    padding: 18px 4px;
    color: var(--agu-text);
    font-size: 14px;
    line-height: 1.4;
}

.catalog-product-summary h1 {
    margin: 0 70px 8px 0;
    color: #3d4549;
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 400;
    line-height: 1.15;
}

.catalog-product-summary__model {
    color: #99a0a4;
}

.catalog-product-summary__price {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin: 24px 0 10px;
}

.catalog-product-summary__price strong {
    color: #3d4549;
    font-size: 30px;
}

.catalog-product-summary__price s {
    color: #91989c;
    font-size: 17px;
}

.catalog-product-features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 18px;
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
}

.catalog-product-features li {
    display: flex;
    min-width: 0;
    gap: 10px;
    align-items: center;
    color: var(--agu-text);
    line-height: 1.35;
}

.catalog-product-features img {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    object-fit: contain;
}

.catalog-product-buy {
    display: inline-grid;
    min-width: 150px;
    min-height: 44px;
    place-items: center;
    margin: 10px 0 20px;
    text-decoration: none;
}

.catalog-product-summary__delivery {
    margin: 0 0 16px;
}



.catalog-product-content {
    border-top: 1px solid var(--agu-border);
    color: var(--agu-text);
    padding: 28px 34px;
    font-size: 15px;
    line-height: 1.5;
}

.catalog-product-content > h2 {
    margin: 0 0 16px;
    color: var(--agu-lime-dark);
    font-size: 27px;
    font-weight: 400;
    line-height: 1.35;
}

.catalog-product-content a {
    color: var(--agu-lime-dark);
}

@media (max-width: 980px) {
    .catalog-product-hero {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .catalog-product-grid {
        grid-template-columns: 1fr;
    }

    .catalog-product-card,
    .catalog-product-card:nth-child(2n),
    .catalog-product-card:last-child:nth-child(odd) {
        grid-column: auto;
        width: auto;
        justify-self: stretch;
        border-right: 0;
        border-left: 0;
    }

    .catalog-product-card__media,
    .catalog-product-card__image-placeholder {
        min-height: 210px;
        height: 210px;
    }

    .catalog-product-card__media img {
        height: 210px;
    }

    .catalog-product-hero {
        padding: 20px;
    }

    .catalog-product-gallery__main,
    .catalog-product-gallery__placeholder {
        min-height: 310px;
    }
}

.catalog-promotions-section > h2 {
    margin: 0;
    border-top: 1px solid var(--agu-border);
    padding: 20px 28px 14px;
    color: #3d4549;
    font-size: 22px;
    font-weight: 400;
}

.catalog-bundle-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid var(--agu-border);
}

.catalog-bundle-card {
    display: grid;
    min-width: 0;
    border-right: 1px solid var(--agu-border);
    border-bottom: 1px solid var(--agu-border);
    background: #fff;
    padding: 24px 28px 26px;
}

.catalog-bundle-card:nth-child(2n) {
    border-right: 0;
}

.catalog-bundle-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    width: min(50%, 520px);
    justify-self: center;
    border-right: 1px solid var(--agu-border);
    border-left: 1px solid var(--agu-border);
}

.catalog-bundle-card__media {
    position: relative;
    display: flex;
    min-height: 220px;
    align-items: center;
    justify-content: center;
    gap: 10px;
}







.catalog-bundle-card__body {
    display: grid;
    gap: 10px;
    padding-top: 12px;
    text-align: center;
}

.catalog-bundle-card__body h3 {
    margin: 0;
    color: #3d4549;
    font-size: 20px;
    font-weight: 500;
}

.catalog-bundle-card__products {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px 12px;
}

.catalog-bundle-card__products a,
.catalog-bundle-card__products span {
    color: #747b7f;
    font-size: 13px;
    text-decoration: none;
}

.catalog-bundle-card__savings {
    color: #7b8a00;
    font-size: 13px;
    font-weight: 600;
}

.catalog-product-bundle-promo {
    display: grid;
    gap: 8px;
    margin-top: 18px;
    border: 1px solid #d8df9c;
    border-radius: 8px;
    background: #fbfdea;
    padding: 14px 16px;
}

.catalog-product-bundle-promo__label {
    color: #7b8a00;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.catalog-product-bundle-promo > strong {
    color: #3d4549;
    font-size: 17px;
}

.catalog-product-bundle-promo p {
    margin: 0;
    color: #6f767a;
    font-size: 13px;
    line-height: 1.45;
}

.catalog-product-bundle-promo a {
    color: var(--agu-lime-dark);
    text-decoration: none;
    font-weight: 500;
}

.catalog-product-bundle-promo__price {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 8px 12px;
}

.catalog-product-bundle-promo__price s {
    color: #949a9e;
}

.catalog-product-bundle-promo__price strong {
    color: #3d4549;
    font-size: 20px;
}

.catalog-product-bundle-promo__price span {
    border-radius: 4px;
    background: #e9774d;
    color: #fff;
    padding: 3px 7px;
    font-size: 12px;
    font-weight: 700;
}

@media (max-width: 760px) {
    .catalog-bundle-grid {
        grid-template-columns: 1fr;
    }

    .catalog-bundle-card,
    .catalog-bundle-card:nth-child(2n),
    .catalog-bundle-card:last-child:nth-child(odd) {
        grid-column: auto;
        width: auto;
        border-right: 0;
        border-left: 0;
    }

    .catalog-bundle-card__media {
        min-height: 180px;
    }

    
}



@media (max-width: 700px) {
    .catalog-product-features {
        grid-template-columns: 1fr;
    }
}

.catalog-bundle-card__media--promotion {
    overflow: hidden;
    min-height: 240px;
    text-decoration: none;
}

.catalog-bundle-card__media--promotion > img {
    display: block;
    width: 100%;
    height: 240px;
    object-fit: contain;
}

.catalog-bundle-card__placeholder {
    display: grid;
    width: 100%;
    min-height: 240px;
    place-items: center;
    background: #f2f3f3;
    color: var(--agu-lime);
    font-size: 28px;
    font-weight: 700;
}

.catalog-bundle-card__body h3 a {
    color: inherit;
    text-decoration: none;
}

.catalog-bundle-card__link {
    justify-self: center;
    color: var(--agu-lime-dark);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}

.catalog-bundle-page__badge,
.catalog-bundle-card__badge {
    display: inline-flex;
    width: fit-content;
    margin: 0 0 11px;
    padding: 8px 16px 8px 13px;
    clip-path: polygon(0 0, calc(100% - 9px) 0, 100% 50%, calc(100% - 9px) 100%, 0 100%);
    background: #e9774d;
    box-shadow: 0 2px 5px rgb(0 0 0 / 14%);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .055em;
    line-height: 1.1;
    text-transform: uppercase;
}

.catalog-bundle-page__state {
    display: inline-flex;
    width: fit-content;
    margin: 2px 0 6px;
    border-radius: 999px;
    padding: 6px 10px;
    background: #f1f3f3;
    color: #697175;
    font-size: 13px;
    font-weight: 600;
}

.catalog-bundle-page__state.is-active {
    background: #f4f8d7;
    color: #758300;
}

.catalog-bundle-page__state.is-expired {
    background: #f3f3f3;
    color: #777;
}

.catalog-bundle-page__period {
    margin: 0;
    color: #747b7f;
    font-size: 13px;
}

.catalog-bundle-page__savings {
    margin: -2px 0 8px;
    color: #7b8a00;
    font-size: 14px;
    font-weight: 600;
}













.catalog-bundle-ended-note {
    background: #fafafa;
}

.catalog-bundle-ended-note p {
    margin: 0;
}

@media (max-width: 720px) {
    

    .catalog-bundle-card__media--promotion,
    .catalog-bundle-card__media--promotion > img,
    .catalog-bundle-card__placeholder {
        min-height: 210px;
        height: 210px;
    }
}

/* Product page visual refinement. */
.catalog-product-gallery__main {
    position: relative;
    width: 100%;
    border: 0;
    background: #fff;
    padding: 0;
    cursor: zoom-in;
}

.catalog-product-gallery__zoom {
    position: absolute;
    right: 12px;
    bottom: 12px;
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 1px solid #d9dddf;
    border-radius: 50%;
    background: rgba(255, 255, 255, .94);
    color: #727a7e;
    font-size: 22px;
    line-height: 1;
    opacity: 0;
    transition: opacity .18s ease;
}

.catalog-product-gallery__main:hover .catalog-product-gallery__zoom,
.catalog-product-gallery__main:focus-visible .catalog-product-gallery__zoom {
    opacity: 1;
}

.catalog-product-gallery__thumbs-shell {
    position: relative;
    width: min(100%, 602px);
    min-width: 0;
    margin: 14px auto 0;
    padding: 0 42px;
}

.catalog-product-gallery__thumbs-shell.is-static {
    width: fit-content;
    max-width: 100%;
    padding-inline: 0;
}

.catalog-product-gallery__thumbs {
    display: flex;
    width: 100%;
    min-width: 0;
    max-width: 518px;
    gap: 10px;
    margin: 0 auto;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.catalog-product-gallery__thumbs-shell.is-static .catalog-product-gallery__thumbs {
    width: auto;
    max-width: 100%;
    justify-content: center;
    overflow: visible;
}

.catalog-product-gallery__thumbs::-webkit-scrollbar {
    display: none;
}

.catalog-product-gallery__thumb-arrow {
    position: absolute;
    top: 50%;
    z-index: 2;
    display: grid;
    width: 34px;
    height: 58px;
    place-items: center;
    transform: translateY(-50%);
    border: 1px solid #d9dddf;
    border-radius: 3px;
    background: #fff;
    color: #777f83;
    cursor: pointer;
    font-size: 27px;
    line-height: 1;
}

.catalog-product-gallery__thumb-arrow--prev {
    left: 0;
}

.catalog-product-gallery__thumb-arrow--next {
    right: 0;
}

.catalog-product-gallery__thumb-arrow:hover:not(:disabled),
.catalog-product-gallery__thumb-arrow:focus-visible:not(:disabled) {
    border-color: var(--agu-lime-dark);
    color: var(--agu-lime-dark);
}

.catalog-product-gallery__thumb-arrow:disabled {
    opacity: .28;
    cursor: default;
}

.catalog-product-gallery__thumb-arrow[hidden] {
    display: none;
}

.catalog-product-summary h1 {
    margin: 0 70px 2px 0;
    color: #485156;
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    font-size: clamp(23px, 2vw, 27px);
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.12;
    text-transform: uppercase;
}

.catalog-product-summary__model {
    margin: 0 0 14px;
    color: #687278;
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: .01em;
    line-height: 1.2;
    text-transform: uppercase;
}

.catalog-product-features {
    gap: 9px 18px;
    margin-top: 18px;
}

.catalog-product-features li {
    gap: 8px;
    font-size: 13px;
    line-height: 1.3;
}

.catalog-product-features img {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
}

.catalog-product-summary__price {
    margin-top: 20px;
}

.catalog-product-purchase {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: end;
    margin: 12px 0 20px;
}

.catalog-product-quantity {
    display: grid;
    gap: 6px;
    color: #747c80;
    font-size: 12px;
}

.catalog-product-quantity__control {
    display: grid;
    grid-template-columns: 36px 52px 36px;
    height: 44px;
    border: 1px solid #cfd4d6;
    border-radius: 3px;
    overflow: hidden;
    background: #fff;
}

.catalog-product-quantity__control button,
.catalog-product-quantity__control input {
    border: 0;
    background: #fff;
    color: #50585c;
    font: inherit;
    text-align: center;
}

.catalog-product-quantity__control button {
    cursor: pointer;
    font-size: 20px;
}

.catalog-product-quantity__control button:hover {
    background: #f4f5f5;
    color: var(--agu-lime-dark);
}

.catalog-product-quantity__control input {
    width: 52px;
    border-right: 1px solid #e1e4e5;
    border-left: 1px solid #e1e4e5;
    border-radius: 0;
    appearance: textfield;
    font-size: 14px;
}

.catalog-product-quantity__control input::-webkit-outer-spin-button,
.catalog-product-quantity__control input::-webkit-inner-spin-button {
    margin: 0;
    appearance: none;
}

.catalog-product-purchase .catalog-product-buy {
    min-width: 170px;
    margin: 0;
}

.catalog-product-content--summary {
    background: #fff;
    padding-top: 22px;
    padding-bottom: 22px;
}

.catalog-product-short-description {
    max-width: 1120px;
    color: var(--agu-text);
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    font-size: 14px;
    line-height: 1.35;
}

.catalog-product-short-description > :first-child {
    margin-top: 0;
}

.catalog-product-short-description > :last-child {
    margin-bottom: 0;
}

.catalog-product-short-description p {
    margin: 0 0 5px;
}

.catalog-product-meta {
    display: grid;
    gap: 5px;
    margin-top: 14px;
}

.catalog-product-meta p {
    margin: 0;
}

.catalog-product-meta__origin {
    color: var(--agu-lime-dark);
}

.catalog-product-meta__origin span,
.catalog-product-meta__warranty span {
    font-weight: 500;
}

.catalog-product-meta__origin strong {
    color: var(--agu-lime-dark);
    font-weight: 500;
}

.catalog-product-meta__warranty {
    color: #667177;
}

.catalog-product-meta__warranty strong {
    color: #4c565b;
    font-weight: 500;
}

.catalog-product-video-grid {
    display: grid;
    gap: 22px;
    max-width: 980px;
}

.catalog-product-video {
    position: relative;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 4px;
    background: #111;
}

.catalog-product-video iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.catalog-gallery-open {
    overflow: hidden;
}

.catalog-gallery-modal {
    width: fit-content;
    max-width: 85vw;
    height: fit-content;
    max-height: 85vh;
    margin: auto;
    overflow: visible;
    border: 0;
    border-radius: 8px;
    background: transparent;
    padding: 0;
}

.catalog-gallery-modal::backdrop {
    background: rgba(15, 18, 20, .24);
}

.catalog-gallery-modal__inner {
    position: relative;
    display: block;
    width: fit-content;
    max-width: 85vw;
    max-height: 85vh;
    overflow: hidden;
    border-radius: 8px;
    background: transparent;
    box-shadow: 0 18px 55px rgba(0, 0, 0, .22);
}

.catalog-gallery-modal__stage {
    position: relative;
    display: grid;
    width: fit-content;
    max-width: 85vw;
    max-height: 85vh;
    place-items: center;
    overflow: hidden;
    background: transparent;
}

.catalog-gallery-modal__stage img {
    display: block;
    width: auto;
    height: auto;
    max-width: 85vw;
    max-height: 85vh;
    object-fit: contain;
}

.catalog-gallery-modal__counter {
    position: absolute;
    bottom: 10px;
    left: 50%;
    z-index: 3;
    transform: translateX(-50%);
    border-radius: 999px;
    background: rgba(0, 0, 0, .58);
    color: #fff;
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1;
}

.catalog-gallery-modal__close,
.catalog-gallery-modal__arrow {
    position: absolute;
    z-index: 4;
    display: grid;
    place-items: center;
    border: 0;
    background: rgba(0, 0, 0, .48);
    color: #fff;
    cursor: pointer;
    opacity: .82;
    transition:
        color .15s ease,
        background-color .15s ease,
        opacity .15s ease;
}

.catalog-gallery-modal__close {
    top: 8px;
    right: 8px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    font-size: 30px;
    line-height: 1;
}

.catalog-gallery-modal__arrow {
    top: 50%;
    width: 44px;
    height: 64px;
    transform: translateY(-50%);
    border-radius: 8px;
    font-size: 46px;
    line-height: 1;
}

.catalog-gallery-modal__arrow--prev {
    left: 8px;
}

.catalog-gallery-modal__arrow--next {
    right: 8px;
}

.catalog-gallery-modal__arrow:hover,
.catalog-gallery-modal__close:hover {
    background: rgba(0, 0, 0, .68);
    color: var(--agu-lime);
    opacity: 1;
}

@media (max-width: 720px) {
    .catalog-product-gallery__thumbs-shell {
        padding-inline: 36px;
    }

    .catalog-product-gallery__thumbs-shell.is-static {
        padding-inline: 0;
    }

    .catalog-product-gallery__thumb-arrow {
        width: 30px;
        height: 54px;
    }

    .catalog-product-summary h1 {
        margin-right: 0;
        font-size: 22px;
    }

    .catalog-product-content {
        padding: 22px 20px;
    }

    .catalog-product-content > h2 {
        font-size: 23px;
    }

    .catalog-product-summary__discount {
        position: static;
        width: fit-content;
        margin-bottom: 10px;
    }

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

    .catalog-product-purchase {
        align-items: stretch;
        flex-direction: column;
    }

    .catalog-product-purchase .catalog-product-buy {
        width: 100%;
    }

    .catalog-gallery-modal,
    .catalog-gallery-modal__inner,
    .catalog-gallery-modal__stage {
        max-width: 94vw;
        max-height: 88vh;
    }

    .catalog-gallery-modal__stage img {
        max-width: 94vw;
        max-height: 88vh;
    }

    .catalog-gallery-modal__arrow {
        width: 38px;
        height: 56px;
        font-size: 40px;
    }

    .catalog-gallery-modal__close {
        width: 38px;
        height: 38px;
        font-size: 27px;
    }
}


/* Product page visual corrections: presentation only. */
.catalog-product-summary h1,
.catalog-product-summary__model {
    color: #3d4549;
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.15;
    text-transform: uppercase;
}

.catalog-product-summary h1 {
    margin: 0 70px 1px 0;
    font-size: clamp(24px, 2vw, 27px);
}

.catalog-product-summary__model {
    margin: 0 0 14px;
    font-size: clamp(21px, 1.7vw, 23px);
}

.catalog-product-summary__delivery {
    color: #4b5459;
    font-weight: 500;
}

.catalog-product-short-description {
    max-width: 1120px;
    color: var(--agu-text);
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    font-size: 15px;
    line-height: 1.65;
}

.catalog-product-short-description p {
    margin: 0 0 12px;
}

.catalog-product-meta__origin,
.catalog-product-meta__warranty,
.catalog-product-meta__origin strong,
.catalog-product-meta__warranty strong {
    color: #202428;
    font-weight: 700;
}

.catalog-product-video-grid {
    width: 100%;
    margin-inline: auto;
}

.catalog-product-quantity__control {
    width: 124px;
    max-width: 124px;
}

@media (max-width: 720px) {
    .catalog-product-summary h1 {
        margin-right: 0;
        font-size: 24px;
    }

    .catalog-product-summary__model {
        font-size: 21px;
    }

    .catalog-product-purchase {
        align-items: flex-start;
    }

    .catalog-product-quantity,
    .catalog-product-quantity__control {
        width: 124px;
        max-width: 124px;
        align-self: flex-start;
    }

    .catalog-product-purchase .catalog-product-buy {
        width: 100%;
        align-self: stretch;
    }

    .catalog-product-video-grid {
        max-width: 100%;
    }
}



/* Catalog visual alignment: listings, product meta and manuals. */
.catalog-breadcrumbs {
    padding: 24px 76px 14px;
}

.catalog-listing > .section-heading-row {
    padding-inline: 76px;
}

.catalog-category-description {
    padding-right: 76px;
    padding-left: 76px;
}

.catalog-empty {
    margin-inline: 76px;
}

.catalog-product-grid,
.catalog-bundle-grid {
    margin-inline: 76px;
}

.catalog-promotions-section > h2 {
    margin-right: 76px;
    margin-left: 76px;
    padding-right: 0;
    padding-left: 0;
}

.catalog-product-hero,
.catalog-product-content {
    padding-right: 76px;
    padding-left: 76px;
}

.catalog-product-summary__status,
.catalog-product-summary__delivery,
.catalog-product-quantity > span:first-child {
    color: #4b5459;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.4;
}

.catalog-product-summary__model {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: baseline;
}

.catalog-product-summary__badge-text {
    text-transform: uppercase;
}

.catalog-product-documents {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    width: min(100%, 518px);
    margin: 14px auto 0;
}

.catalog-product-document-button:only-child {
    grid-column: 1 / -1;
    width: calc((100% - 10px) / 2);
    justify-self: center;
}

.catalog-product-document-button {
    display: grid;
    min-height: 36px;
    place-items: center;
    padding: 7px 12px;
    border-color: var(--agu-lime);
    background: #fff;
    color: var(--agu-lime-dark);
    text-align: center;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
}

.button--lime.catalog-product-document-button:hover,
.button--lime.catalog-product-document-button:focus-visible {
    border-color: var(--agu-lime);
    background: var(--agu-lime);
    color: #fff;
}

/* Product/catalog cards: two horizontal cards per row. */
.catalog-product-card {
    grid-template-columns: minmax(170px, 44%) minmax(0, 1fr);
    grid-template-rows: 1fr auto;
    min-height: 270px;
    padding: 0;
}

.catalog-product-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    width: 100%;
    justify-self: stretch;
    border-right: 0;
    border-left: 0;
}

.catalog-product-card__media {
    grid-column: 1;
    grid-row: 1 / 3;
    min-height: 270px;
    padding: 18px 14px;
}

.catalog-product-card__media img {
    max-width: 250px;
    height: 230px;
}

.catalog-product-card__image-placeholder {
    width: min(100%, 250px);
    height: 230px;
}

.catalog-product-card__discount {
    right: auto;
    left: 12px;
}

.catalog-product-card__body {
    grid-column: 2;
    grid-row: 1;
    align-content: center;
    gap: 5px;
    padding: 24px 18px 8px;
    text-align: left;
}

.catalog-product-card__badge {
    display: inline-flex;
    width: fit-content;
    max-width: 100%;
    align-items: center;
    border-radius: 3px;
    background: var(--catalog-badge-color, #bccf00);
    color: #fff;
    padding: 3px 8px;
    font-size: 11px;
    font-weight: 500;
    line-height: 1.2;
    text-transform: none;
}

.catalog-product-card__name {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.18;
    text-transform: uppercase;
}

.catalog-product-card__model {
    color: #7e878c;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.25;
    text-transform: uppercase;
}

.catalog-product-card__price {
    justify-content: flex-start;
    margin-top: 8px;
}

.catalog-product-card__price strong {
    font-size: 18px;
}

.catalog-product-card__actions {
    grid-column: 2;
    grid-row: 2;
    grid-template-columns: minmax(0, 1fr);
    gap: 6px;
    width: min(100%, 190px);
    padding: 0 18px 22px;
}

.catalog-product-card__actions .button {
    min-height: 32px;
    padding: 5px 12px;
    font-size: 12px;
    font-weight: 500;
}

.catalog-product-card__more {
    border-color: var(--agu-lime);
    color: var(--agu-lime-dark);
}

@media (max-width: 1100px) {
    .catalog-breadcrumbs {
        padding-right: 44px;
        padding-left: 44px;
    }

    .catalog-listing > .section-heading-row {
        padding-inline: 44px;
    }

    .catalog-category-description {
        padding-right: 44px;
        padding-left: 44px;
    }

    .catalog-empty,
    .catalog-product-grid,
    .catalog-bundle-grid {
        margin-right: 44px;
        margin-left: 44px;
    }

    .catalog-promotions-section > h2 {
        margin-right: 44px;
        margin-left: 44px;
    }

    .catalog-product-hero,
    .catalog-product-content {
        padding-right: 44px;
        padding-left: 44px;
    }
}

@media (max-width: 760px) {
    .catalog-breadcrumbs {
        padding: 20px 20px 14px;
    }

    .catalog-listing > .section-heading-row {
        padding-inline: 20px;
    }

    .catalog-category-description {
        padding-right: 20px;
        padding-left: 20px;
    }

    .catalog-empty,
    .catalog-product-grid,
    .catalog-bundle-grid {
        margin-right: 20px;
        margin-left: 20px;
    }

    .catalog-promotions-section > h2 {
        margin-right: 20px;
        margin-left: 20px;
    }

    .catalog-product-hero,
    .catalog-product-content {
        padding-right: 20px;
        padding-left: 20px;
    }

    .catalog-product-card {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        min-height: 0;
    }

    .catalog-product-card__media {
        grid-column: 1;
        grid-row: 1;
        min-height: 210px;
        padding: 14px;
    }

    .catalog-product-card__media img,
    .catalog-product-card__image-placeholder {
        height: 210px;
    }

    .catalog-product-card__body {
        grid-column: 1;
        grid-row: 2;
        padding: 12px 16px 8px;
        text-align: center;
        justify-items: center;
    }

    .catalog-product-card__price {
        justify-content: center;
    }

    .catalog-product-card__actions {
        grid-column: 1;
        grid-row: 3;
        width: min(100%, 210px);
        justify-self: center;
        padding: 0 16px 18px;
    }

    .catalog-product-documents {
        grid-template-columns: 1fr;
        width: min(100%, 320px);
    }

    .catalog-product-document-button:only-child {
        grid-column: 1;
        width: 100%;
    }
}



/* Final catalog promotion controls: fixed reference price and mobile actions. */
.catalog-product-card__promo-period,
.catalog-product-summary__promo-period {
    color: #6b7377;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.35;
}

.catalog-product-card__promo-period {
    display: block;
    margin-top: -1px;
}

.catalog-product-summary__promo-period {
    margin: 3px 0 8px;
}

.catalog-product-gallery {
    position: relative;
}

.catalog-product-gallery__discount {
    display: none;
}

@media (max-width: 720px) {
    .catalog-product-summary__discount {
        display: none;
    }

    .catalog-product-gallery__discount {
        position: absolute;
        z-index: 3;
        top: 8px;
        left: 8px;
        display: grid;
        min-width: 58px;
        min-height: 38px;
        place-items: center;
        border-radius: 4px;
        background: #e9774d;
        color: #fff;
        padding: 5px 10px;
        font-weight: 700;
    }

    .catalog-product-purchase {
        display: flex;
        flex-flow: row nowrap;
        gap: 12px;
        align-items: flex-end;
    }

    .catalog-product-quantity {
        flex: 0 0 124px;
        width: 124px;
        max-width: 124px;
    }

    .catalog-product-purchase .catalog-product-buy {
        width: auto;
        min-width: 0;
        flex: 1 1 auto;
        align-self: flex-end;
    }
}

/*
 * Catalog listing finish:
 * - keep the existing product-card inset;
 * - extend horizontal separators across the full public surface;
 * - match catalog breadcrumb typography to Pages / Contacts.
 */
.catalog-breadcrumbs {
    color: #929aa2;
    font-size: 12px;
    line-height: 1.4;
}

.catalog-breadcrumbs a {
    color: #929aa2;
}

.catalog-breadcrumbs a:hover,
.catalog-breadcrumbs a:focus-visible {
    color: var(--agu-lime-dark);
    text-decoration: underline;
}

.catalog-breadcrumbs a:last-child {
    font-weight: 700;
}

.catalog-product-grid {
    --catalog-listing-gutter: 76px;

    position: relative;
    border-top: 0;
}

.catalog-product-grid::before {
    content: "";
    position: absolute;
    top: 0;
    right: calc(-1 * var(--catalog-listing-gutter));
    left: calc(-1 * var(--catalog-listing-gutter));
    z-index: 2;
    height: 1px;
    background: var(--agu-border);
    pointer-events: none;
}

.catalog-product-card {
    border-bottom: 0;
}

.catalog-product-card:nth-child(2n)::after,
.catalog-product-card:last-child:nth-child(odd)::after {
    content: "";
    position: absolute;
    right: calc(-1 * var(--catalog-listing-gutter));
    bottom: 0;
    z-index: 2;
    height: 1px;
    background: var(--agu-border);
    pointer-events: none;
}

.catalog-product-card:nth-child(2n)::after {
    left: calc(-100% - var(--catalog-listing-gutter));
}

.catalog-product-card:last-child:nth-child(odd)::after {
    left: calc(-1 * var(--catalog-listing-gutter));
}

@media (max-width: 1100px) {
    .catalog-product-grid {
        --catalog-listing-gutter: 44px;
    }
}

@media (max-width: 760px) {
    .catalog-product-grid {
        --catalog-listing-gutter: 20px;
    }
}

@media (max-width: 720px) {
    .catalog-product-card::after,
    .catalog-product-card:nth-child(2n)::after,
    .catalog-product-card:last-child:nth-child(odd)::after {
        content: "";
        position: absolute;
        right: calc(-1 * var(--catalog-listing-gutter));
        bottom: 0;
        left: calc(-1 * var(--catalog-listing-gutter));
        z-index: 2;
        height: 1px;
        background: var(--agu-border);
        pointer-events: none;
    }
}

/*
 * Shopping cart
 */
.catalog-product-card__actions form {
    display: block;
    min-width: 0;
    margin: 0;
}

.catalog-product-card__actions form .button {
    width: 100%;
    border: 0;
    cursor: pointer;
    font: inherit;
}

.catalog-bundle-buy-form {
    margin: 16px 0 20px;
}

.catalog-bundle-buy-form .catalog-product-buy {
    border: 0;
    cursor: pointer;
    font: inherit;
}

.catalog-cart {
    border-top: 1px solid var(--agu-border);
}

.catalog-cart__notice {
    margin: 18px 28px 0;
    border-radius: 4px;
    padding: 12px 14px;
    font-size: 14px;
}

.catalog-cart__notice--error {
    border: 1px solid #eccaca;
    background: #fff3f3;
    color: #9f3f3f;
}

.catalog-cart__notice--info {
    border: 1px solid #dce4b6;
    background: #f8faec;
    color: #667400;
}

.catalog-cart__empty {
    display: grid;
    gap: 18px;
    justify-items: center;
    padding: 58px 28px 68px;
    color: #747b7f;
    text-align: center;
}

.catalog-cart__empty p {
    margin: 0;
}

.catalog-cart__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
    gap: 30px;
    align-items: start;
    padding: 26px 28px 42px;
}

.catalog-cart__items {
    display: grid;
    min-width: 0;
    border-top: 1px solid var(--agu-border);
}

.catalog-cart-item {
    position: relative;
    display: grid;
    grid-template-columns: 110px minmax(180px, 1fr) 120px 134px 140px;
    gap: 18px;
    align-items: center;
    min-width: 0;
    padding: 22px 42px 22px 0;
    border-bottom: 1px solid var(--agu-border);
}

.catalog-cart-item.is-updating {
    opacity: .72;
}

.catalog-cart-item.is-unavailable {
    background: #fafafa;
}

.catalog-cart-item__media {
    display: grid;
    min-height: 92px;
    place-items: center;
}

.catalog-cart-item__media a {
    display: grid;
    width: 100%;
    height: 100%;
    place-items: center;
}

.catalog-cart-item__media img {
    display: block;
    width: 100%;
    max-width: 100px;
    height: 92px;
    object-fit: contain;
}

.catalog-cart-item__placeholder {
    display: grid;
    width: 92px;
    height: 92px;
    place-items: center;
    background: #f2f3f3;
    color: var(--agu-lime);
    font-size: 24px;
    font-weight: 700;
}

.catalog-cart-item__identity {
    min-width: 0;
}

.catalog-cart-item__identity h2 {
    margin: 0 0 6px;
    color: #485156;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.3;
}

.catalog-cart-item__identity h2 a {
    color: inherit;
    text-decoration: none;
}

.catalog-cart-item__identity h2 a:hover,
.catalog-cart-item__identity h2 a:focus-visible {
    color: var(--agu-lime-dark);
}

.catalog-cart-item__identity p {
    margin: 3px 0 0;
    color: #8a9195;
    font-size: 12px;
    line-height: 1.35;
}

.catalog-cart-item__identity .catalog-cart-item__promotion {
    color: var(--agu-lime-dark);
    font-weight: 500;
}

.catalog-cart-item__identity .catalog-cart-item__unavailable {
    color: #a14d4d;
}

.catalog-cart-item__unit-price,
.catalog-cart-item__quantity,
.catalog-cart-item__total {
    display: grid;
    gap: 5px;
    align-content: center;
    color: #7b8387;
    font-size: 12px;
}

.catalog-cart-item__unit-price strong,
.catalog-cart-item__total strong,
.catalog-cart-item__quantity > strong {
    color: #3d4549;
    font-size: 15px;
    font-weight: 500;
}

.catalog-cart-item__unit-price s {
    color: #9aa0a3;
    font-size: 12px;
}

.catalog-cart-item__quantity form {
    display: grid;
    gap: 5px;
}

.catalog-cart-item__quantity .catalog-product-quantity__control {
    grid-template-columns: 34px 48px 34px;
    width: 116px;
    height: 40px;
}

.catalog-cart-item__quantity .catalog-product-quantity__control input {
    width: 48px;
}

.catalog-cart-item__update {
    justify-self: start;
    border: 0;
    background: transparent;
    color: #7d8589;
    padding: 0;
    cursor: pointer;
    font-size: 11px;
    text-decoration: underline;
}

.catalog-cart-item__total small {
    color: var(--agu-lime-dark);
    font-size: 11px;
    line-height: 1.25;
}

.catalog-cart-item__remove {
    position: absolute;
    top: 17px;
    right: 0;
    margin: 0;
}

.catalog-cart-item__remove button {
    border: 0;
    background: transparent;
    color: #9a6b6b;
    padding: 3px 0;
    cursor: pointer;
    font-size: 11px;
    text-decoration: underline;
}

.catalog-cart-summary {
    position: sticky;
    top: 18px;
    border: 1px solid var(--agu-border);
    border-radius: 5px;
    background: #fff;
    padding: 22px;
}

.catalog-cart-summary h2 {
    margin: 0 0 18px;
    color: #485156;
    font-size: 20px;
    font-weight: 500;
}

.catalog-cart-summary dl {
    display: grid;
    gap: 0;
    margin: 0;
}

.catalog-cart-summary dl > div {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 10px 0;
    border-bottom: 1px solid #eceeef;
    color: #6f777b;
    font-size: 13px;
}

.catalog-cart-summary dt,
.catalog-cart-summary dd {
    margin: 0;
}

.catalog-cart-summary dd {
    color: #485156;
    text-align: right;
}

.catalog-cart-summary__discount dd {
    color: var(--agu-lime-dark);
}

.catalog-cart-summary__free-delivery,
.catalog-cart-summary__warning,
.catalog-cart-summary__delivery-note {
    margin: 14px 0 0;
    border-radius: 4px;
    padding: 10px 12px;
    font-size: 12px;
    line-height: 1.4;
}

.catalog-cart-summary__free-delivery {
    background: #f5f8e3;
    color: #657300;
}

.catalog-cart-summary__warning {
    background: #fff3f3;
    color: #9f3f3f;
}

.catalog-cart-summary__delivery-note {
    background: #f5f6f6;
    color: #70787c;
}

.catalog-cart__price-confirmation {
    display: grid;
    gap: 12px;
    margin-top: 18px;
    border: 1px solid #e7d7b0;
    border-radius: 4px;
    background: #fff9eb;
    padding: 14px 16px;
    color: #7b6732;
    font-size: 13px;
    line-height: 1.45;
}

.catalog-cart__price-confirmation p,
.catalog-cart__price-confirmation form {
    margin: 0;
}

.catalog-cart__price-confirmation form {
    display: flex;
    justify-content: flex-start;
}

.catalog-cart__price-confirmation .button {
    min-height: 38px;
    border: 0;
    cursor: pointer;
    font: inherit;
    font-weight: 500;
}

.catalog-cart-summary__total {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: baseline;
    margin-top: 18px;
    color: #485156;
    font-size: 15px;
}

.catalog-cart-summary__total strong {
    font-size: 22px;
    font-weight: 500;
}

.catalog-cart-summary__checkout {
    display: grid;
    width: 100%;
    min-height: 44px;
    margin-top: 20px;
    place-items: center;
    text-decoration: none;
}

.catalog-cart-summary__checkout.is-disabled {
    opacity: .55;
    pointer-events: none;
}

.catalog-cart-summary__continue {
    display: block;
    margin-top: 12px;
    color: #737b7f;
    font-size: 12px;
    text-align: center;
}

@media (max-width: 1100px) {
    .catalog-cart__layout {
        grid-template-columns: minmax(0, 1fr) 310px;
        gap: 22px;
    }

    .catalog-cart-item {
        grid-template-columns: 92px minmax(160px, 1fr) 110px 120px;
    }

    .catalog-cart-item__total {
        grid-column: 2 / -1;
        justify-self: end;
        text-align: right;
    }
}

@media (max-width: 860px) {
    .catalog-cart__layout {
        grid-template-columns: 1fr;
    }

    .catalog-cart-summary {
        position: static;
    }
}

@media (max-width: 640px) {
    .catalog-cart__layout {
        padding: 18px 18px 32px;
    }

    .catalog-cart__notice {
        margin-inline: 18px;
    }

    .catalog-cart-item {
        grid-template-columns: 82px minmax(0, 1fr);
        gap: 14px;
        padding: 18px 0;
    }

    .catalog-cart-item__media {
        grid-row: 1 / span 2;
    }

    .catalog-cart-item__media img,
    .catalog-cart-item__placeholder {
        width: 76px;
        height: 76px;
    }

    .catalog-cart-item__unit-price,
    .catalog-cart-item__quantity,
    .catalog-cart-item__total {
        grid-column: 2;
    }

    .catalog-cart-item__total {
        justify-self: start;
        text-align: left;
    }

    .catalog-cart-item__remove {
        position: static;
        grid-column: 2;
        justify-self: start;
    }
}

/* Public checkout. */
.catalog-checkout-page {
    padding-bottom: 36px;
}

.catalog-checkout {
    background: #fff;
}

.catalog-checkout__notice {
    margin: 18px 24px 0;
    padding: 12px 14px;
    border: 1px solid #d8dee3;
    background: #f7f9fa;
    color: #69747d;
    font-size: 14px;
}

.catalog-checkout__notice.is-success {
    border-color: #c3d222;
    background: #f8fae9;
    color: #647000;
}

.catalog-checkout__notice.is-error {
    border-color: #e1b4b4;
    background: #fff6f6;
    color: #9b4141;
}

.catalog-checkout__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 28px;
    padding: 26px 24px 34px;
}

.catalog-checkout__main {
    display: grid;
    gap: 20px;
}

.catalog-checkout-card,
.catalog-checkout-summary {
    border: 1px solid #e1e5e8;
    background: #fff;
}

.catalog-checkout-card {
    padding: 22px;
}

.catalog-checkout-card h2,
.catalog-checkout-summary h2 {
    margin: 0 0 18px;
    color: #7f8991;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
}

.catalog-checkout-fields {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
    gap: 18px 20px;
}

.catalog-checkout-field {
    display: grid;
    align-self: start;
    gap: 7px;
    min-width: 0;
    color: #727d85;
    font-size: 13px;
    font-weight: 600;
}

.catalog-checkout-field--wide {
    grid-column: 1 / -1;
}

.catalog-checkout-delivery-method-native {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    margin: -1px !important;
    padding: 0 !important;
    overflow: hidden !important;
    clip: rect(0 0 0 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.catalog-checkout-delivery-options[hidden] {
    display: none;
}

.catalog-checkout-delivery-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.catalog-checkout-delivery-option {
    position: relative;
    display: grid;
    grid-template-columns: 68px minmax(0, 1fr) 18px;
    gap: 12px;
    align-items: center;
    min-height: 72px;
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #d8dee3;
    border-radius: 3px;
    background: #fff;
    color: #646f77;
    font: inherit;
    text-align: left;
    cursor: pointer;
    transition: border-color .15s ease, background-color .15s ease, box-shadow .15s ease;
}

.catalog-checkout-delivery-option:hover {
    border-color: #c3ccd2;
    background: #fafbfb;
}

.catalog-checkout-delivery-option:focus-visible {
    outline: 2px solid rgba(195, 210, 34, .28);
    outline-offset: 2px;
    border-color: #b4c600;
}

.catalog-checkout-delivery-option.is-selected {
    border-color: #b4c600;
    background: #fbfce9;
    box-shadow: inset 0 0 0 1px rgba(180, 198, 0, .12);
}

.catalog-checkout-delivery-option__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 68px;
    height: 42px;
    padding: 4px;
}

.catalog-checkout-delivery-option__logo img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.catalog-checkout-delivery-option__logo svg {
    width: 30px;
    height: 30px;
    fill: none;
    stroke: #8b969d;
    stroke-width: 1.6;
    stroke-linejoin: round;
}

.catalog-checkout-delivery-option__copy {
    display: grid;
    gap: 3px;
    min-width: 0;
    padding-right: 58px;
}

.catalog-checkout-delivery-option__copy strong {
    color: #5f6970;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.25;
}

.catalog-checkout-delivery-option__copy small {
    color: #8a949b;
    font-size: 11px;
    font-weight: 400;
    line-height: 1.35;
}

.catalog-checkout-delivery-option__price[hidden] {
    display: none;
}

.catalog-checkout-delivery-option__price {
    position: absolute;
    right: 38px;
    bottom: 10px;
    margin: 0;
    color: #68737a;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
    white-space: nowrap;
}

.catalog-checkout-delivery-option__indicator {
    position: relative;
    width: 16px;
    height: 16px;
    border: 1px solid #c5cdd2;
    border-radius: 50%;
    background: #fff;
}

.catalog-checkout-delivery-option.is-selected .catalog-checkout-delivery-option__indicator {
    border-color: #aebe00;
}

.catalog-checkout-delivery-option.is-selected .catalog-checkout-delivery-option__indicator::after {
    content: '';
    position: absolute;
    inset: 3px;
    border-radius: 50%;
    background: #b4c600;
}

.catalog-checkout-field input,
.catalog-checkout-field select,
.catalog-checkout-field textarea,
.catalog-checkout-settlement input {
    width: 100%;
    min-width: 0;
    border: 1px solid #d8dee3;
    background: #fff;
    padding: 10px 11px;
    color: #646f77;
    font: inherit;
    font-weight: 400;
}

.catalog-checkout-field textarea {
    resize: vertical;
}

.catalog-checkout-field input:disabled {
    border-color: #e0e4e7;
    background: #f2f4f5;
    color: #7b858c;
    cursor: not-allowed;
}

.catalog-checkout-field input:focus,
.catalog-checkout-field select:focus,
.catalog-checkout-field textarea:focus,
.catalog-checkout-settlement input:focus {
    outline: 2px solid rgba(195, 210, 34, 0.22);
    border-color: #b4c600;
}

.catalog-checkout-field small[data-checkout-error-for],
.catalog-checkout-settlement small[data-checkout-error-for],
.catalog-checkout-summary__error {
    min-height: 0;
    color: #a64242;
    font-size: 12px;
    font-weight: 400;
}

.catalog-checkout-field__help {
    color: #929aa2;
    font-size: 12px;
    font-weight: 400;
}

.catalog-checkout-settlement {
    position: relative;
    display: grid;
    align-self: start;
    gap: 7px;
    color: #727d85;
    font-size: 13px;
    font-weight: 600;
}

.catalog-checkout-settlement__suggestions {
    position: absolute;
    z-index: 20;
    top: calc(100% - 18px);
    left: 0;
    right: 0;
    max-height: 240px;
    overflow-y: auto;
    border: 1px solid #d8dee3;
    background: #fff;
    box-shadow: 0 10px 24px rgba(55, 68, 77, 0.12);
}

.catalog-checkout-settlement__suggestions button {
    display: block;
    width: 100%;
    border: 0;
    border-bottom: 1px solid #edf0f2;
    background: #fff;
    padding: 9px 11px;
    color: #6d7880;
    text-align: left;
    cursor: pointer;
}

.catalog-checkout-settlement__suggestions button:hover,
.catalog-checkout-settlement__suggestions button:focus-visible {
    background: #f7f9e8;
}









.catalog-checkout-verification__resend {
    border: 0;
    background: transparent;
    padding: 5px 0;
    color: #899500;
    font: inherit;
    font-size: 12px;
    font-weight: 600;
    text-decoration: underline;
    cursor: pointer;
}





.catalog-checkout-payment-note {
    margin-top: 16px;
    border-left: 3px solid #c3d222;
    background: #f8fae9;
    padding: 13px 15px;
    color: #737e85;
    font-size: 14px;
    line-height: 1.55;
}

.catalog-checkout-payment-note p {
    margin: 8px 0 0;
}

.catalog-checkout-bank-account {
    margin-top: 12px;
    border: 1px solid #dde3e6;
    background: #fff;
    padding: 11px 12px;
    color: #68737b;
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    white-space: normal;
}

.catalog-checkout-summary {
    align-self: start;
    position: sticky;
    top: 18px;
    padding: 22px;
}

.catalog-checkout-summary__items {
    display: grid;
    gap: 10px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e5e9eb;
}

.catalog-checkout-summary__item,
.catalog-checkout-summary__row,
.catalog-checkout-summary__total {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    color: #7c878f;
    font-size: 13px;
}

.catalog-checkout-summary__item strong,
.catalog-checkout-summary__row strong {
    flex: 0 0 auto;
    color: #68737b;
}

.catalog-checkout-summary__row {
    padding-top: 13px;
}

.catalog-checkout-summary__total {
    margin-top: 16px;
    border-top: 1px solid #dce1e4;
    padding-top: 16px;
    align-items: baseline;
    font-size: 16px;
    font-weight: 700;
}

.catalog-checkout-summary__total strong {
    color: #7d8c00;
    font-size: 22px;
}

.catalog-checkout-summary__vat {
    margin: 8px 0 18px;
    color: #939ca3;
    font-size: 11px;
}

.catalog-checkout-summary__action {
    width: 100%;
    margin-top: 12px;
}

.catalog-checkout-summary__back {
    display: block;
    margin-top: 12px;
    color: #8c969d;
    font-size: 13px;
    text-align: center;
}

@media (max-width: 900px) {
    .catalog-checkout__layout {
        grid-template-columns: 1fr;
    }

    .catalog-checkout-summary {
        position: static;
    }
}

@media (max-width: 720px) {
    .catalog-checkout-delivery-options {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 620px) {
    .catalog-checkout__layout {
        padding-inline: 14px;
    }

    .catalog-checkout-card,
    .catalog-checkout-summary {
        padding: 17px;
    }

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

    .catalog-checkout-field--wide {
        grid-column: auto;
    }

    

    
}

/* Checkout processing state. */
body.catalog-checkout-is-processing {
    overflow: hidden;
}

.catalog-checkout-processing[hidden] {
    display: none;
}

.catalog-checkout-processing {
    position: fixed;
    z-index: 260;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.94);
}

.catalog-checkout-processing__panel {
    width: min(100%, 360px);
    border: 1px solid #e1e5e8;
    background: #fff;
    padding: 24px 24px 22px;
    box-shadow: 0 10px 30px rgba(55, 68, 77, 0.08);
    text-align: center;
}

.catalog-checkout-processing__panel strong,
.catalog-checkout-processing__panel > span {
    display: block;
}

.catalog-checkout-processing__panel strong {
    color: #717c84;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.35;
}

.catalog-checkout-processing__panel > span {
    margin-top: 7px;
    color: #919aa1;
    font-size: 13px;
    line-height: 1.45;
}

.catalog-checkout-processing__bar {
    position: relative;
    height: 4px;
    margin-top: 20px;
    overflow: hidden;
    background: #edf0f2;
}

.catalog-checkout-processing__bar span {
    position: absolute;
    inset-block: 0;
    left: 0;
    width: 42%;
    background: #c3d222;
    animation: catalog-checkout-processing 1.15s ease-in-out infinite;
}

@keyframes catalog-checkout-processing {
    0% {
        transform: translateX(-110%);
    }

    100% {
        transform: translateX(340%);
    }
}

@media (max-width: 620px) {
    .catalog-checkout-processing {
        padding: 16px;
    }

    .catalog-checkout-processing__panel {
        padding: 21px 18px 19px;
    }

    .catalog-checkout-processing__panel strong {
        font-size: 17px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .catalog-checkout-processing__bar span {
        width: 100%;
        animation: none;
        transform: none;
    }
}

/* Order confirmation. */
.catalog-order-success-page {
    padding-bottom: 40px;
}

.catalog-order-success__content {
    display: grid;
    gap: 22px;
    padding: 26px 24px 36px;
}

.catalog-order-success__intro {
    display: flex;
    gap: 16px;
    align-items: center;
    border: 1px solid #dfe6b2;
    background: #fafceb;
    padding: 18px 20px;
}

.catalog-order-success__mark {
    display: grid;
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    place-items: center;
    border-radius: 50%;
    background: #bccf00;
    color: #fff;
    font-size: 25px;
    font-weight: 700;
}

.catalog-order-success__intro h2,
.catalog-order-success__intro p {
    margin: 0;
}

.catalog-order-success__intro h2 {
    color: #68737b;
    font-size: 20px;
}

.catalog-order-success__intro p {
    margin-top: 5px;
    color: #7b858c;
    font-size: 14px;
}

.catalog-order-success__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
    gap: 22px;
}

.catalog-order-success__card,
.catalog-order-success__payment {
    border: 1px solid #e1e5e8;
    background: #fff;
    padding: 22px;
}

.catalog-order-success__card h3,
.catalog-order-success__payment h3 {
    margin: 0 0 16px;
    color: #7f8991;
    font-size: 17px;
    text-transform: uppercase;
}

.catalog-order-success__items {
    display: grid;
    gap: 12px;
}

.catalog-order-success__item {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid #edf0f2;
    color: #6d7880;
    font-size: 13px;
}

.catalog-order-success__item > div {
    display: grid;
    gap: 2px;
}

.catalog-order-success__item span,
.catalog-order-success__item small {
    color: #929aa2;
}

.catalog-order-success__totals {
    display: grid;
    gap: 10px;
    margin-top: 16px;
}

.catalog-order-success__totals > div {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    color: #7c878f;
    font-size: 13px;
}

.catalog-order-success__totals .catalog-order-success__total {
    margin-top: 5px;
    border-top: 1px solid #dce1e4;
    padding-top: 13px;
    font-size: 16px;
    font-weight: 700;
}

.catalog-order-success__total strong {
    color: #7d8c00;
    font-size: 20px;
}

.catalog-order-success__details {
    display: grid;
    gap: 12px;
    margin: 0;
}

.catalog-order-success__details > div {
    display: grid;
    grid-template-columns: 130px minmax(0, 1fr);
    gap: 12px;
}

.catalog-order-success__details dt {
    color: #929aa2;
    font-size: 12px;
}

.catalog-order-success__details dd {
    margin: 0;
    color: #68737b;
    font-size: 13px;
}

.catalog-order-success__payment {
    border-left: 3px solid #c3d222;
    background: #f8fae9;
    color: #737e85;
    font-size: 14px;
    line-height: 1.55;
}

.catalog-order-success__payment p {
    margin: 10px 0 0;
}

.catalog-order-success__bank-account {
    margin-top: 14px;
    border: 1px solid #dde3e6;
    background: #fff;
    padding: 12px 14px;
    color: #68737b;
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

.catalog-order-success__actions {
    display: flex;
    justify-content: center;
}

@media (max-width: 820px) {
    .catalog-order-success__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 620px) {
    .catalog-order-success__content {
        padding-inline: 14px;
    }

    .catalog-order-success__intro,
    .catalog-order-success__card,
    .catalog-order-success__payment {
        padding: 17px;
    }

    .catalog-order-success__details > div {
        grid-template-columns: 1fr;
        gap: 3px;
    }
}

/* Dedicated guest checkout verification step. */
.catalog-checkout-verification-page__card {
    max-width: 560px;
    margin: 26px auto 38px;
}

.catalog-checkout-verification-page__intro {
    margin: 0 0 18px;
    color: #737e85;
    font-size: 14px;
    line-height: 1.6;
}

.catalog-checkout-verification-page__field {
    display: block;
}

.catalog-checkout-verification-page__field input {
    max-width: 220px;
    font-size: 20px;
    letter-spacing: 3px;
}

.catalog-checkout-verification-page__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin-top: 18px;
}

@media (max-width: 620px) {
    .catalog-checkout-verification-page__card {
        margin-inline: 14px;
    }

    .catalog-checkout-verification-page__field input {
        max-width: none;
        width: 100%;
    }

    .catalog-checkout-verification-page__actions {
        align-items: stretch;
        flex-direction: column;
    }
}

/* Public return form. */
.catalog-return-page {
    padding: 24px 76px 38px;
    background: #fff;
}

.catalog-return-card {
    width: min(100%, 980px);
    margin: 0 auto;
    border: 0;
    border-radius: 0;
    background: transparent;
    padding: 0;
}

.catalog-return-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 24px;
}

.catalog-return-heading h1,
.catalog-return-verify h1,
.catalog-return-success h1 {
    margin: 0 0 8px;
}

.catalog-return-heading p,
.catalog-return-verify > p,
.catalog-return-success > p {
    margin: 0;
    color: #737e85;
    line-height: 1.6;
}

.catalog-return-notice,
.catalog-return-error-summary {
    margin: 0 0 18px;
    border-radius: 6px;
    padding: 12px 14px;
    line-height: 1.5;
}

.catalog-return-notice {
    border: 1px solid #d9e4a4;
    background: #fafced;
}

.catalog-return-error-summary {
    display: grid;
    gap: 3px;
    border: 1px solid #e2bcbc;
    background: #fff6f6;
}

.catalog-return-form {
    display: grid;
    gap: 26px;
}

.catalog-return-fields {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.catalog-return-field,
.catalog-return-manual-item label,
.catalog-return-verify-form label {
    display: grid;
    gap: 6px;
}

.catalog-return-field:has(textarea) {
    grid-column: 1 / -1;
}

.catalog-return-field > span,
.catalog-return-manual-item label > span,
.catalog-return-verify-form label > span {
    font-size: 13px;
    font-weight: 600;
}

.catalog-return-field input,
.catalog-return-field textarea,
.catalog-return-manual-item input,
.catalog-return-verify-form input {
    width: 100%;
    border: 1px solid #cfd5d9;
    border-radius: 5px;
    background: #fff;
    padding: 10px 11px;
    font: inherit;
}

.catalog-return-field textarea {
    min-height: 92px;
    resize: vertical;
}

.catalog-return-field input[readonly] {
    background: #f6f7f8;
}

.catalog-return-field.has-error input,
.catalog-return-field.has-error textarea {
    border-color: #bf6262;
}

.catalog-return-field-help,
.catalog-return-field-error {
    display: block;
    font-size: 12px;
    line-height: 1.4;
}

.catalog-return-field-help {
    color: #737e85;
}

.catalog-return-field-error {
    color: #a84141;
}

.catalog-return-items {
    display: grid;
    gap: 12px;
    border-top: 1px solid #e5e8ea;
    padding-top: 22px;
}

.catalog-return-items h2 {
    margin: 0;
    font-size: 20px;
}

.catalog-return-items > p {
    margin: 0;
    color: #737e85;
}

.catalog-return-order-items,
.catalog-return-manual-items {
    display: grid;
    gap: 10px;
}

.catalog-return-order-item,
.catalog-return-manual-item {
    display: grid;
    align-items: center;
    gap: 14px;
    border: 1px solid #e1e5e8;
    border-radius: 7px;
    background: #fafbfb;
    padding: 13px 14px;
}

.catalog-return-order-item {
    grid-template-columns: minmax(0, 1fr) auto;
}

.catalog-return-order-item__check {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 4px 10px;
}

.catalog-return-order-item__check input {
    align-self: center;
}

.catalog-return-order-item__identity {
    min-width: 0;
}

.catalog-return-order-item__identity strong,
.catalog-return-order-item__identity small {
    display: block;
}

.catalog-return-order-item__identity small {
    margin-top: 2px;
    color: #737e85;
}

.catalog-return-order-item__quantity {
    display: grid;
    grid-template-columns: auto 80px auto;
    align-items: center;
    gap: 8px;
    font-size: 13px;
}

.catalog-return-order-item__quantity input {
    width: 80px;
    border: 1px solid #cfd5d9;
    border-radius: 5px;
    padding: 8px;
}

.catalog-return-manual-item {
    grid-template-columns: minmax(0, 1fr) 110px auto;
}

.catalog-return-remove-item {
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 50%;
    background: #eceff1;
    color: #566068;
    font-size: 22px;
    cursor: pointer;
}

.catalog-return-add-item {
    justify-self: start;
}

.catalog-return-conditions {
    display: grid;
    gap: 10px;
    border-top: 1px solid #e5e8ea;
    padding-top: 20px;
}

.catalog-return-conditions label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
}

.catalog-return-conditions input {
    margin-top: 4px;
}

.catalog-return-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.catalog-return-word-note {
    display: grid;
    gap: 4px;
    margin-top: 28px;
    border-top: 1px solid #e5e8ea;
    padding-top: 20px;
    color: #737e85;
}

.catalog-return-word-note strong {
    color: #3d464d;
}

.catalog-return-verify,
.catalog-return-success {
    max-width: 620px;
}

.catalog-return-verify-form,
.catalog-return-resend-form {
    display: flex;
    align-items: end;
    gap: 10px;
    margin-top: 20px;
}

.catalog-return-verify-form label {
    flex: 1;
}

.catalog-return-verify-form input {
    max-width: 240px;
    font-size: 20px;
    letter-spacing: 3px;
}

.catalog-return-success {
    text-align: center;
}

.catalog-return-success__mark {
    display: grid;
    width: 54px;
    height: 54px;
    place-items: center;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: #BCCF00;
    color: #fff;
    font-size: 30px;
    font-weight: 700;
}

.catalog-return-success .catalog-return-actions {
    justify-content: center;
    margin-top: 22px;
}

@media (max-width: 1100px) {
    .catalog-return-page {
        padding-right: 44px;
        padding-left: 44px;
    }
}

@media (max-width: 760px) {
    .catalog-return-page {
        padding: 20px 20px 30px;
    }

    .catalog-return-card {
        padding: 0;
    }

    .catalog-return-heading,
    .catalog-return-verify-form,
    .catalog-return-resend-form {
        align-items: stretch;
        flex-direction: column;
    }

    .catalog-return-fields,
    .catalog-return-order-item,
    .catalog-return-manual-item {
        grid-template-columns: 1fr;
    }

    .catalog-return-order-item__quantity {
        justify-content: start;
    }

    .catalog-return-remove-item {
        justify-self: end;
    }
}

/* T.11 contextual return state and success-page spacing. */
.catalog-return-success .catalog-return-notice {
    margin-top: 20px;
}

.catalog-return-notice--info {
    border-color: #dfe7b7;
    background: #fafcec;
}

.catalog-return-actions--contextual-end {
    margin-top: 18px;
}



/* Bundle detail: compact component references below the bundle gallery. */
.catalog-bundle-includes {
    display: grid;
    gap: 8px;
    margin-top: 18px;
    border-top: 1px solid var(--agu-border);
    padding-top: 14px;
    color: #697277;
    font-size: 13px;
    line-height: 1.35;
}

.catalog-bundle-includes > strong {
    color: #4c565b;
    font-weight: 600;
}

.catalog-bundle-includes ul {
    display: grid;
    gap: 5px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.catalog-bundle-includes li {
    min-width: 0;
}

.catalog-bundle-includes a,
.catalog-bundle-includes span {
    color: #697277;
    text-decoration: none;
}

.catalog-bundle-includes a {
    color: var(--agu-lime-dark);
}

.catalog-bundle-includes a:hover,
.catalog-bundle-includes a:focus-visible {
    text-decoration: underline;
}

/* Bundle promotion listing cards follow the product listing geometry. */
.catalog-bundle-card {
    grid-template-columns: minmax(170px, 44%) minmax(0, 1fr);
    grid-template-rows: 1fr;
    min-height: 270px;
    padding: 0;
}

.catalog-bundle-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    width: 100%;
    justify-self: stretch;
    border-right: 0;
    border-left: 0;
}

.catalog-bundle-card__media--promotion {
    grid-column: 1;
    grid-row: 1;
    min-height: 270px;
    padding: 18px 14px;
}

.catalog-bundle-card__media--promotion > img {
    max-width: 250px;
    height: 230px;
}

.catalog-bundle-card__placeholder {
    width: min(100%, 250px);
    min-height: 230px;
}

.catalog-bundle-card__body {
    grid-column: 2;
    grid-row: 1;
    align-content: center;
    justify-items: start;
    gap: 6px;
    padding: 24px 18px;
    text-align: left;
}

.catalog-bundle-card__body h3 {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.18;
    text-transform: uppercase;
}

.catalog-bundle-card__products {
    justify-content: flex-start;
}

.catalog-bundle-card__link {
    justify-self: start;
}

@media (max-width: 760px) {
    .catalog-bundle-card,
    .catalog-bundle-card:nth-child(2n),
    .catalog-bundle-card:last-child:nth-child(odd) {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        min-height: 0;
        grid-column: auto;
        width: auto;
        justify-self: stretch;
        border-right: 0;
        border-left: 0;
    }

    .catalog-bundle-card__media--promotion {
        grid-column: 1;
        grid-row: 1;
        min-height: 210px;
        padding: 14px;
    }

    .catalog-bundle-card__media--promotion > img {
        height: 210px;
    }

    .catalog-bundle-card__placeholder {
        min-height: 210px;
    }

    .catalog-bundle-card__body {
        grid-column: 1;
        grid-row: 2;
        justify-items: center;
        padding: 12px 16px 18px;
        text-align: center;
    }

    .catalog-bundle-card__products {
        justify-content: center;
    }

    .catalog-bundle-card__link {
        justify-self: center;
    }
}

/* Promotions page: one continuous listing with full-width separators. */
.catalog-promotions-page .catalog-bundle-grid {
    --catalog-listing-gutter: 76px;

    position: relative;
    border-top: 0;
}

.catalog-promotions-page .catalog-bundle-grid::before {
    content: "";
    position: absolute;
    top: 0;
    right: calc(-1 * var(--catalog-listing-gutter));
    left: calc(-1 * var(--catalog-listing-gutter));
    z-index: 2;
    height: 1px;
    background: var(--agu-border);
    pointer-events: none;
}

.catalog-promotions-page .catalog-bundle-card {
    position: relative;
    border-bottom: 0;
}

.catalog-promotions-page .catalog-bundle-card:nth-child(2n)::after,
.catalog-promotions-page .catalog-bundle-card:last-child:nth-child(odd)::after {
    content: "";
    position: absolute;
    right: calc(-1 * var(--catalog-listing-gutter));
    bottom: 0;
    z-index: 2;
    height: 1px;
    background: var(--agu-border);
    pointer-events: none;
}

.catalog-promotions-page .catalog-bundle-card:nth-child(2n)::after {
    left: calc(-100% - var(--catalog-listing-gutter));
}

.catalog-promotions-page .catalog-bundle-card:last-child:nth-child(odd)::after {
    left: calc(-1 * var(--catalog-listing-gutter));
}

.catalog-promotions-page .catalog-bundle-card__badge {
    justify-self: start;
}

/* The bundle row already provides the separator before following product promotions. */
.catalog-promotions-page .catalog-promotions-section + .catalog-promotions-section .catalog-product-grid::before {
    display: none;
}

@media (max-width: 1100px) {
    .catalog-promotions-page .catalog-bundle-grid {
        --catalog-listing-gutter: 44px;
    }
}

@media (max-width: 760px) {
    .catalog-promotions-page .catalog-bundle-grid {
        --catalog-listing-gutter: 20px;
    }
}

@media (max-width: 720px) {
    .catalog-promotions-page .catalog-bundle-card::after,
    .catalog-promotions-page .catalog-bundle-card:nth-child(2n)::after,
    .catalog-promotions-page .catalog-bundle-card:last-child:nth-child(odd)::after {
        content: "";
        position: absolute;
        right: calc(-1 * var(--catalog-listing-gutter));
        bottom: 0;
        left: calc(-1 * var(--catalog-listing-gutter));
        z-index: 2;
        height: 1px;
        background: var(--agu-border);
        pointer-events: none;
    }
}

