/* *
* 1. Global Styles
* 2. Purchase Type
* 3. Product Options
* 4. Add to Cart Button
* 5. Logged out message
* 6. Logged in messages
* 7. Out of Stock form
* 8. Responsive
*/


/* 1. Global */
:root {
    --tm-primary: #43423D;
    --tm-secondary: #B7500B;
    --tm-tertiary: #F58C1C;
    --tm-light-orange: #FFB96E;
    --tm-dark-orange: #D66E14;
    --tm-dark: #1B1B18;
    --tm-white: #ffffff;
    --tm-gray: #A59F94;
    --tm-light-gray: #CCC9C4;
    --tm-lighter-gray: #F6F4EF;
    --tm-neutral-tan: #ECE7DB;
    --tm-neutral-tan-300: #DCD6C9;
    --tm-neutral-tan-600: #756F61;
}

.ghm-hidden {
    display: none;
}

.ghm-offer-selector {
    font-family: inherit;
}

.ghm-offer-selector>* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.ghm-offer-selector .choose-package {
    font-weight: 600;
    font-size: 13px;
    line-height: 1.5;
    color: var(--tm-neutral-tan-600);
    margin-bottom: 15px;
}

/* 2. Purchase Type */
.ghm-offer-selector .purchase-type-options {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    gap: 10px;
    margin-bottom: 12px;
}

.ghm-offer-selector .purchase-type-option {
    width: 100%;
}

.ghm-offer-selector .purchase-type-option label {
    width: 100%;
    height: 100%;
}

.ghm-offer-selector .purchase-type-option input[type="radio"] {
    display: none;
}

.ghm-offer-selector .purchase-type-option input[type="radio"]+span {
    display: -webkit-box;
    /*     display: -ms-flexbox;
    display: flex; */
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: var(--tm-gray);
    font-family: inherit;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.2;
    text-align: center;
    letter-spacing: 0;
    background: var(--tm-lighter-gray);
    border: 1px solid var(--tm-light-gray);
    border-radius: 12px;
    padding: 14px 10px;
    cursor: pointer;
    -webkit-transition: 0.3s cubic-bezier(.17, .67, .83, .67);
    -o-transition: 0.3s cubic-bezier(.17, .67, .83, .67);
    transition: 0.3s cubic-bezier(.17, .67, .83, .67);
    box-shadow: 0px 4px 8px 0px #0000001A;
    height: 100%;
}

.ghm-offer-selector .purchase-type-option input[type="radio"]+span:hover,
.ghm-offer-selector .purchase-type-option input[type="radio"]:checked+span {
    background-color: var(--tm-secondary);
    color: var(--tm-white);
    border: 1px solid var(--tm-secondary);
}

.ghm-offer-selector .purchase-type-option .extra-discount {
    background: var(--tm-light-orange);
    padding: 2px 5px;
    margin-left: 12px;
    border-radius: 4px;
    position: relative;
    text-transform: uppercase;
    color: var(--tm-primary);
    font-size: 14px;
    line-height: 1;
    font-weight: 400;
    display: inline-block;
    text-align: center;
}

.ghm-offer-selector .purchase-type-option .extra-discount::before {
    width: 0;
    height: 0;
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
    border-right: 9px solid var(--tm-light-orange);
    content: "";
    position: absolute;
    left: -7px;
    top: 0px;
}

/* 3. Product Options */
.ghm-offer-selector .product-option {
    border: 1px solid var(--tm-neutral-tan-300);
    background: transparent;
    border-radius: 8px;
    margin-bottom: 20px;
}

.ghm-offer-selector ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    list-style: none;
    padding: 0;
    margin: 0;
}

.ghm-offer-selector .product-option ul li {
    position: relative;
}

.ghm-offer-selector .product-option ul li:not(:last-child) {
    border-bottom: 1px solid var(--tm-neutral-tan-300);
}

.ghm-offer-selector .product-option ul li label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 15px;
    padding: 15px;
    cursor: pointer;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-transition: 0.3s cubic-bezier(.17, .67, .83, .67);
    -o-transition: 0.3s cubic-bezier(.17, .67, .83, .67);
    transition: 0.3s cubic-bezier(.17, .67, .83, .67);
}

.ghm-offer-selector ul li label:hover {
    background-color: var(--tm-neutral-tan);
}

.ghm-offer-selector ul li label.active,
.ghm-offer-selector ul li label:has(input[type="radio"]:checked) {
    background-color: var(--tm-neutral-tan);
}

.ghm-offer-selector ul li label:hover .savings-message,
.ghm-offer-selector ul li label.active .savings-message,
.ghm-offer-selector ul li label:has(input[type=radio]:checked) .savings-message {
    color: var(--tm-light-secondary);
}

.ghm-offer-selector .product-options input[type="radio"] {
    -webkit-appearance: none;
    height: 28px;
    width: 28px;
    -moz-appearance: none;
    appearance: none;
    border: 1.5px solid var(--tm-light-gray) !important;
    border-radius: 99999px;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    padding: 0;
    -webkit-box-shadow: unset;
    box-shadow: unset;
    background-color: var(--tm-lighter-gray);

}

.ghm-offer-selector .product-options input[type="radio"]:checked {
    background-color: var(--tm-lighter-gray);
    border: 8px solid var(--tm-secondary) !important;
    border-radius: 99999px;
}


.ghm-offer-selector .pricing-container {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.ghm-offer-selector .quantity-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    /* display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-areas: "quantity badge old-price price";
    align-items: center;
    justify-items: end; */
}

.ghm-offer-selector .quantity-container.with-flags {
    grid-template-columns: repeat(5, 1fr);
    grid-template-areas: "quantity badge old-price price flags";
}

.ghm-offer-selector .quantity-container .quantity {
    font-weight: 500;
    font-size: 17px;
    line-height: 1;
    color: var(--tm-primary);
    font-family: inherit;
    justify-self: start;
    flex: 1;
}


.ghm-offer-selector .quantity-container .final-price {
    font-weight: 500;
    font-size: 21px;
    line-height: 1;
    color: var(--tm-primary);
    grid-area: price;
}

.ghm-offer-selector .quantity-container .compare-to-price {
    grid-area: old-price;
    font-size: 14px;
    line-height: 1;
    color: var(--tm-gray);
    font-weight: 300;
}

.ghm-offer-selector .badge {
    color: var(--tm-secondary);
    font-size: 14px;
    line-height: 1;
}

.ghm-offer-selector .savings-message {
    display: block;
    font-weight: 400;
    font-size: 12px;
    line-height: 1.4;
    color: var(--tm-primary);
    margin: 8px 0 0 0;
}

.notify-me-container .out-of-stock-message .ghm-offer-selector .badge {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: var(--tm-secondary);
    font-family: inherit;
    font-weight: 400;
    font-size: 14px;
    line-height: 1;
    text-align: center;
    border-radius: 4px;
    -webkit-transition: 0.3s cubic-bezier(.17, .67, .83, .67);
    -o-transition: 0.3s cubic-bezier(.17, .67, .83, .67);
    transition: 0.3s cubic-bezier(.17, .67, .83, .67);
    grid-area: badge;
}

.ghm-offer-selector .quantity-container .best-seller-flag,
.ghm-offer-selector .quantity-container .best-value-flag {
    width: 48px;
    grid-area: flags;
    position: absolute;
    top: 0;
}

/* 4. Add to Cart button */
.ghm-offer-selector .button-container .add-to-cart {
    display: block;
    width: 100%;
    padding: 10px 30px;
    text-align: center;
    font-weight: 600;
    font-size: 22px;
    line-height: 1.5;
    color: var(--tm-dark);
    background: var(--tm-tertiary);
    border-radius: 12px;
    -webkit-transition: 0.3s cubic-bezier(.17, .67, .83, .67);
    -o-transition: 0.3s cubic-bezier(.17, .67, .83, .67);
    transition: 0.3s cubic-bezier(.17, .67, .83, .67);
    outline: none;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.ghm-offer-selector .button-container .disabled-btn {
    background-color: var(--tm-light-gray);
    color: var(--tm-primary);
    pointer-events: none;
}

.ghm-offer-selector .button-container .add-to-cart:hover {
    background-color: var(--tm-dark-orange);
    color: var(--tm-dark);
}

.ghm-offer-selector .button-container .add-to-cart:focus {
    -webkit-box-shadow: 0px 0px 0px 2px rgb(0 0 0);
    box-shadow: 0px 0px 0px 2px rgb(0 0 0);
}

/* 5. Logged out message */
.ghm-offer-selector .logged-out-message-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    text-align: center;
    color: var(--tm-primary);
    border: 2px solid var(--tm-neutral-tan-300);
    border-radius: 12px;
    padding: 24px 16px;
}

.ghm-offer-selector .logged-out-message-container .message p {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
}

.ghm-offer-selector .logged-out-message-container .message p:first-child {
    display: flex;
    align-items: center;
    gap: 5px;
}

.ghm-offer-selector .logged-out-message-container .message p:nth-child(2) {
    font-size: 17px;
    font-weight: 500;
    line-height: 1.7;
}

.ghm-offer-selector .logged-out-message-container .message p>span,
.ghm-offer-selector .logged-out-message-container .message .saving-price {
    font-weight: 500;
    color: var(--tm-secondary);
    font-size: 32px;
}

.ghm-offer-selector .logged-out-message-container .links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 15px;
}

.ghm-offer-selector .logged-out-message-container .links .link-as-btn {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    padding: 10px 25px;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 2px solid var(--tm-secondary);
    border-radius: 12px;
    -webkit-transition: 0.3s cubic-bezier(.17, .67, .83, .67);
    -o-transition: 0.3s cubic-bezier(.17, .67, .83, .67);
    transition: 0.3s cubic-bezier(.17, .67, .83, .67);
}

.ghm-offer-selector .logged-out-message-container .links .sign-up-link {
    background-color: var(--tm-secondary);
    color: #ffffff;
}

.ghm-offer-selector .logged-out-message-container .links .sign-up-link:hover {
    background-color: var(--tm-primary);
    border-color: var(--tm-primary);
}


.ghm-offer-selector .logged-out-message-container .links .login-link {
    color: var(--tm-secondary);
}

.ghm-offer-selector .logged-out-message-container .links .login-link:hover {
    background-color: var(--tm-primary);
    color: #ffffff;
    border-color: var(--tm-primary);
}

.ghm-offer-selector .logged-out-message-container .footer p {
    margin: 0;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.7;
}

.ghm-offer-selector .logged-out-message-container .footer p:first-child {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
}

.ghm-offer-selector .logged-out-message-container .footer .subscribe-save-list {
    color: var(--tm-primary);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    display: block;
}

.ghm-offer-selector .logged-out-message-container .footer .subscribe-save-list li {
    padding: 2px 0;
}

.ghm-offer-selector .logged-out-message-container .footer .subscribe-save-list li svg {
    margin-right: 10px;
    color: var(--tm-secondary);

}

.ghm-offer-selector .logged-out-message-container .footer .subscribe-save-list .extra-discount {
    background: var(--tm-light-orange);
    padding: 2px 5px;
    margin-left: 15px;
    border-radius: 4px;
    position: relative;
    text-transform: uppercase;
    color: var(--tm-primary);
    font-size: 14px;
    font-weight: 400;
    display: inline-block;
    text-align: center;
}

.ghm-offer-selector .logged-out-message-container .footer .subscribe-save-list .extra-discount::before {
    width: 0;
    height: 0;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-right: 12px solid var(--tm-light-orange);
    content: "";
    position: absolute;
    left: -10px;
    top: 0px;
}

.ghm-offer-selector .disclaimer {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 10px;
    gap: 4px;
}

.ghm-offer-selector .disclaimer p {
    margin: 0;
    text-align: center;
}

.ghm-offer-selector .disclaimer span {
    font-weight: 400;
    font-family: inherit;
    font-size: 14px;
    line-height: 1.5;
    text-align: center;
    color: var(--tm-neutral-tan-600);
    margin: 0;
    padding: 0 6px;
}

.ghm-offer-selector .disclaimer .guarantee {
    border-left: 1px solid var(--tm-gray);
}

/* 6. Logged in messages */
.ghm-offer-selector .logged-in-message {
    text-align: center;
    font-size: 16px;
    font-family: inherit;
    font-weight: 600;
    line-height: 1.5;
    text-transform: uppercase;
    color: var(--tm-primary);
    margin-bottom: 20px;
}

.ghm-offer-selector .subscribe-save-message-container {
    margin-bottom: 15px;
}

.ghm-offer-selector .subscribe-save-message-container .logged-in-subscribe-save-message {
    font-size: 10px;
    line-height: 1.5;
    font-weight: 400;
    color: var(--tm-primary);
    margin: 16px 0;
    border-radius: 12px;
    text-align: left;
    border: 1px solid var(--tm-primary);
    padding: 10px;
}


.ghm-offer-selector .subscribe-save-message-container .logged-in-subscribe-save-message a {
    color: var(--tm-secondary);
}

.ghm-offer-selector .subscribe-save-message-container input[type="checkbox"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    height: 24px;
    width: 24px;
    border: 2px solid var(--tm-secondary) !important;
    -webkit-box-shadow: unset;
    box-shadow: unset;
    background-color: var(--tm-lighter-gray);
    vertical-align: middle;
    cursor: pointer;
    border-radius: 4px;
}

.ghm-offer-selector .subscribe-save-message-container input[type="checkbox"]:checked {
    background-image: url('data:image/svg+xml,<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 448 512"><defs><style> .cls-1 { fill: %23fff; stroke-width: 0px; } </style></defs><path class="cls-1" d="M438.6,105.4c12.5,12.5,12.5,32.8,0,45.3L182.6,406.7c-12.5,12.5-32.8,12.5-45.3,0L9.3,278.7c-12.5-12.5-12.5-32.8,0-45.3s32.8-12.5,45.3,0l105.4,105.3,233.4-233.3c12.5-12.5,32.8-12.5,45.3,0h0Z"/></svg>');
    background-size: 16px;
    background-repeat: no-repeat;
    background-position: center;
    background-color: var(--tm-secondary);
}

.ghm-offer-selector .subscribe-save-message-container label {
    display: inline;
    font-size: 17px;
    line-height: 1.3;
    font-weight: 500;
    color: var(--tm-primary);
    cursor: pointer;
}

.ghm-offer-selector .subscribe-save-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.ghm-offer-selector .subscribe-save-benefits p {
    display: flex;
    align-items: center;
}

.ghm-offer-selector .subscribe-save-benefits svg {
    margin-right: 5px;
}

/* 7. Out of Stock form */
.notify-me-container .out-of-stock-message {
    color: var(--tm-secondary);
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    line-height: 1.5;
}

.notify-me-container .notify-me-form .form-group {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    gap: 6px;
}

.notify-me-container .notify-me-form .form-group label {
    font-weight: 600;
    font-size: 13px;
    line-height: 1.5;
    color: var(--tm-primary);
    margin-bottom: 15px;
}

.notify-me-container .notify-me-form .form-group input {
    display: block;
    width: 100%;
    border-radius: 12px;
    padding: 12px 28px;
    background: var(--tm-lighter-gray);
    color: var(--tm-primary);
    border: 1px solid var(--tm-light-gray);
    outline: none;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
}

.notify-me-container .notify-me-form .form-group input:focus,
.notify-me-container .notify-me-form .form-group input:active {
    -webkit-box-shadow: 0px 2px 3px rgba(19, 22, 29, 0.04), 0px 1px 2px rgba(19, 22, 29, 0.08);
    box-shadow: 0px 2px 3px rgba(19, 22, 29, 0.04), 0px 1px 2px rgba(19, 22, 29, 0.08);
}

.notify-me-container .notify-me-form .notify-me-submit-btn {
    margin: 20px auto;
    display: block;
    padding: 12px 20px;
    background-color: var(--tm-tertiary);
    border-radius: 12px;
    border: none;
    outline: none;
    color: var(--tm-primary);
    font-size: 14px;
    text-transform: uppercase;
    line-height: 2;
    letter-spacing: 2px;
    font-weight: 600;
    -webkit-transition: 0.3s cubic-bezier(.17, .67, .83, .67);
    -o-transition: 0.3s cubic-bezier(.17, .67, .83, .67);
    transition: 0.3s cubic-bezier(.17, .67, .83, .67);
}

.notify-me-container .notify-me-form .notify-me-submit-btn:hover {
    background-color: var(--tm-secondary);
}

.notify-me-container .notify-me-form .notify-me-submit-btn:focus {
    -webkit-box-shadow: 0px 0px 0px 4px rgba(41, 69, 184, 0.12);
    box-shadow: 0px 0px 0px 4px rgba(41, 69, 184, 0.12);
}

.notify-me-container .notify-me-form .notify-me-submit-btn .loading {
    display: none;
    margin: auto;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid var(--tm-white);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    -webkit-animation: spinner 0.6s infinite linear;
    animation: spinner 0.6s infinite linear;
}

.notify-me-container .notify-me-message {
    font-size: 16px;
    line-height: 1.5;
    text-align: center;
}

@-webkit-keyframes spinner {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}

@keyframes spinner {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}

.ghm-offer-selector .variant-options {
    margin-bottom: 24px;
}

.ghm-offer-selector .variant-options .variant-label {
    font-weight: 600;
    font-size: 13px;
    line-height: 1.3;
    color: var(--tm-neutral-tan-600);
    margin-bottom: 15px;
}

.ghm-offer-selector .variant-options .variant-radio {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: stretch;
    border: 1px solid var(--tm-neutral-tan-300);
    border-radius: 12px;
    overflow: hidden;
}

.ghm-offer-selector .variant-options .variant-radio .variant-option {
    display: flex;
    align-items: center;
    flex: 1;
}

.ghm-offer-selector .variant-options .variant-radio .variant-option input[type="radio"] {
    -webkit-appearance: none;
    height: 28px;
    width: 28px;
    -moz-appearance: none;
    appearance: none;
    border: 1.5px solid var(--tm-light-gray) !important;
    border-radius: 99999px;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    padding: 0;
    -webkit-box-shadow: unset;
    box-shadow: unset;
    background-color: var(--tm-lighter-gray);
    vertical-align: middle;
    margin-right: 10px;

}

.ghm-offer-selector .variant-options .variant-radio .variant-option input[type="radio"]:checked {
    background-color: var(--tm-lighter-gray);
    border: 8px solid var(--tm-secondary) !important;
    border-radius: 99999px;
}

.ghm-offer-selector .variant-options .variant-radio .variant-option label {
    width: 100%;
    padding: 15px 20px;
    cursor: pointer;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.ghm-offer-selector .variant-options .variant-radio .variant-option:has(label input[type=radio]:checked) {
    background: var(--tm-neutral-tan);
}

.ghm-offer-selector .variant-options .variant-select {
    border: 1px solid var(--tm-light-gray);
    border-radius: 12px;
    padding: 12px 20px;
    color: var(--tm-primary);
    font-size: 17px;
    font-weight: 400;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
}

/* 8. Responsive */
@media screen and (max-width: 1050px) {
    .ghm-offer-selector .quantity-container.with-flags {
        grid-template-columns: repeat(4, 1fr);
        grid-template-areas:
            "quantity badge price flags"
            ". . old-price flags";
    }

    .ghm-offer-selector .badge {
        justify-self: start;
    }

    .ghm-offer-selector .quantity-container .best-seller-flag,
    .ghm-offer-selector .quantity-container .best-value-flag {
        top: 0;
        right: 10px;
        position: absolute;
    }
}

@media screen and (max-width: 450px) {
    .ghm-offer-selector .quantity-container {
        grid-template-columns: repeat(3, 1fr);
        grid-template-areas: "quantity old-price price"
            "badge . .";
        gap: 15px;
    }

    .ghm-offer-selector .quantity-container.with-flags {
        grid-template-columns: repeat(3, 1fr);
        grid-template-areas:
            "quantity price flags"
            "badge old-price flags";
    }

    .ghm-offer-selector .badge {}

    .ghm-offer-selector .quantity-container .quantity {}

    .ghm-offer-selector .quantity-container .final-price {
        font-size: 19px;
    }

    .ghm-offer-selector .logged-out-message-container .links {
        gap: 4px;
        flex-direction: column;
    }

    .ghm-offer-selector .logged-out-message-container .links .link-as-btn {
        font-size: 14px;
    }

    .ghm-offer-selector .quantity-container .best-seller-flag,
    .ghm-offer-selector .quantity-container .best-value-flag {
        width: 46px;
    }

    .ghm-offer-selector .button-container .add-to-cart {
        font-size: 18px;
    }

    .ghm-offer-selector .variant-options .variant-radio .variant-option label {
        padding: 12px 10px;
    }
}