/* *
* 1. create css variables
* 2. write variant options css
* 3. write product options css
* 4. write purchase options css
* 5. write add to cart button css
* 6 . subscribe and save benefits css
* 7. notify me form css
*/


/* 1. GLOBAL */
:root {
    --ghm-primary: #273779;
    --ghm-primary-light: #4a90e2;
    --ghm-primary-lighter: #4a90e21a;
    --ghm-secondary: #b8d436;
    --ghm-tertiary: #f69220;
    --ghm-tertiary-light: #ff8100;
    --ghm-white: #ffffff;
    --ghm-black: #000000;
    --ghm-gray: #9D9D9D;
}

.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: 16px;
    line-height: 1.5;
    color: #13161D;
    margin: 0 0 12px 0;
}

/* 2. VARIANT OPTIONS */
.ghm-offer-selector .variant-options {
    margin-bottom: 20px;
}

.ghm-offer-selector .variant-options .variant-label {
    display: block;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.7;
    color: #4C4E53;
    margin-bottom: 6px;
}

.ghm-offer-selector .variant-options .variant-radio {
    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: center;
    -ms-flex-align: center;
    align-items: center;
    overflow-x: hidden;
    gap: 6px;
}

.ghm-offer-selector .variant-options .variant-radio .variant-option {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.ghm-offer-selector .variant-options .variant-radio .variant-option label {
    width: 100%;
}

.ghm-offer-selector .variant-options .variant-select {
    width: 100%;
    -moz-appearance: none;
    appearance: none;
    -webkit-appearance: none;
    outline: none;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.7;
    color: #13161D;
    padding: 12px 44px 12px 20px;
    border: 1px solid #BDBEBF;
    -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);
    border-radius: 16px;
    background-color: #ffffff;
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIGZpbGw9J25vbmUnIHZpZXdCb3g9JzAgMCAyMCAyMCc+PHBhdGggc3Ryb2tlPScjNEM0RTUzJyBzdHJva2UtbGluZWNhcD0ncm91bmQnIHN0cm9rZS1saW5lam9pbj0ncm91bmQnIHN0cm9rZS13aWR0aD0nMS41JyBkPSdNNiA4bDQgNCA0LTQnLz48L3N2Zz4=");
    background-position: right 20px center;
    background-repeat: no-repeat;
    background-size: 20px;
    padding-right: 2.5rem;
}

.ghm-offer-selector .variant-options .variant-select:focus,
.ghm-offer-selector .variant-options .variant-select:active {
    border-color: #B9C9EE;
    -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);
}

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

.ghm-offer-selector .variant-option input[type="radio"]+span {
    display: block;
    color: #2945b8;
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.8;
    letter-spacing: 0.08em;
    text-align: center;
    border-radius: 999999px;
    border: 2px solid #B9C9EE;
    padding: 10px 20px;
    cursor: pointer;
}

.ghm-offer-selector .variant-option input[type="radio"]:checked+span {
    border-color: #2945b8;
    background-color: #E8F4FF;
}

/* 3. PRODUCT OPTIONS */
.ghm-offer-selector .product-options {
    border: 2px solid #B9C9EE;
    background: #E8F4FF;
    border-radius: 32px;
    padding: 12px 24px;
    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;
    gap: 4px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.ghm-offer-selector ul>*+* {
    /* border-top: 1px solid var(--ghm-gray); */
}

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

.ghm-offer-selector 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: 20px;
    padding: 12px 20px;
    cursor: pointer;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    border-radius: 12px;
    border: 1px solid #E8F4FF;
    -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: #ffffff;
}

.ghm-offer-selector ul li label:has(input[type="radio"]:checked) {
    accent-color: var(--ghm-primary);
    background-color: #FFFFFF;
    border: 1px solid #B9C9EE;
}

.ghm-offer-selector .product-options input[type="radio"] {
    -webkit-appearance: none;
    height: 24px;
    width: 24px;
    -moz-appearance: none;
    appearance: none;
    border: 2px solid #000000 !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: #ffffff;

}

.ghm-offer-selector .product-options input[type="radio"]:focus {
    -webkit-box-shadow: unset;
    box-shadow: unset;
    border-radius: inherit;
}

.ghm-offer-selector .product-options input[type="radio"]:checked {
    background-color: #338900;
    border-color: #338900 !important;
    background-size: 12px;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url(data:image/svg+xml;base64,PHN2ZyBmaWxsPSJ3aGl0ZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTEyIDUxMiI+PCEtLSEgRm9udCBBd2Vzb21lIFBybyA2LjIuMSBieSBAZm9udGF3ZXNvbWUgLSBodHRwczovL2ZvbnRhd2Vzb21lLmNvbSBMaWNlbnNlIC0gaHR0cHM6Ly9mb250YXdlc29tZS5jb20vbGljZW5zZSAoQ29tbWVyY2lhbCBMaWNlbnNlKSBDb3B5cmlnaHQgMjAyMiBGb250aWNvbnMsIEluYy4gLS0+PHBhdGggZD0iTTQ3MC42IDEwNS40YzEyLjUgMTIuNSAxMi41IDMyLjggMCA0NS4zbC0yNTYgMjU2Yy0xMi41IDEyLjUtMzIuOCAxMi41LTQ1LjMgMGwtMTI4LTEyOGMtMTIuNS0xMi41LTEyLjUtMzIuOCAwLTQ1LjNzMzIuOC0xMi41IDQ1LjMgMEwxOTIgMzM4LjcgNDI1LjQgMTA1LjRjMTIuNS0xMi41IDMyLjgtMTIuNSA0NS4zIDB6Ii8+PC9zdmc+);
}

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

.ghm-offer-selector .quantity-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 24px;
}

.ghm-offer-selector .quantity-container .right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 24px;
}

.ghm-offer-selector .quantity {
    font-weight: 700;
    font-size: 20px;
    line-height: 1.4;
    color: #13161D;
}

.ghm-offer-selector .savings-message {
    display: block;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.4;
    color: #892100;
    margin: 4px 0 0 0;
}

.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;
    padding: 4px 12px;
    background-color: #ffffff;
    font-weight: 600;
    font-size: 12px;
    line-height: 1.33333;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #151825;
    text-align: center;
    border-radius: 99999999px;
    -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 .badge,
.ghm-offer-selector ul li label:has(input[type="radio"]:checked) .badge {
    background-color: #2945b8;
    color: #ffffff;
}

.ghm-offer-selector .compare-to-price {
    color: var(--ghm-gray);
}

.ghm-offer-selector .final-price {
    font-weight: 700;
    font-size: 20px;
    line-height: 1.4;
    color: #13161D;
    text-align: right;
}

.ghm-offer-selector .final-price .frequency {
    display: block;
    font-size: 14px;
    font-weight: 400;
}

.ghm-offer-selector .best-seller-flag,
.ghm-offer-selector .best-value-flag {
    position: absolute;
    width: 3.875rem;
    top: 0;
    right: 0.6rem;
}

.best-seller-flag-space {
    padding-right: 4.5rem;
}

/* 4. PURCHASE OPTION */
.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: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
}

.ghm-offer-selector .purchase-type-option {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.ghm-offer-selector .purchase-type-option label {
    width: 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: #2945b8;
    letter-spacing: 0.16em;
    font-size: 14px;
    font-weight: 800;
    line-height: 2;
    text-align: center;
    text-transform: uppercase;
    border-radius: 99999999px;
    padding: 8px 32px;
    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);
}

.ghm-offer-selector .purchase-type-option input[type="radio"]+span:hover,
.ghm-offer-selector .purchase-type-option input[type="radio"]:checked+span {
    background-color: #E8F4FF;
}

/* 5. ADD TO CART BUTTON */
.ghm-offer-selector .button-container .add-to-cart {
    display: block;
    width: 100%;
    padding: 16px;
    text-align: center;
    font-weight: 700;
    font-size: 18px;
    line-height: 2.2;
    letter-spacing: 0.12em;
    color: #FFFFFF;
    background: #2945b8;
    border-radius: 99999999px;
    -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;
}

.ghm-offer-selector .button-container .disabled-btn {
    background-color: #D9DADA;
    color: #BDBEBF;
    pointer-events: none;
}

.ghm-offer-selector .button-container .add-to-cart:hover {
    background-color: #192C7C;
    color: #ffffff;
}

.ghm-offer-selector .button-container .add-to-cart: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);
}

.ghm-offer-selector .logged-in-message {
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.3333;
    text-transform: uppercase;
    color: #892100;
    margin-bottom: 20px;
}

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

.ghm-offer-selector .subscribe-save-message-container .logged-in-subscribe-save-message {
    font-size: 10px;
    line-height: 1.2;
    font-weight: 400;
    color: #000000;
    margin-top: 16px;
    border: 1px solid #d9dada;
    padding: 10px;
}

.ghm-offer-selector .subscribe-save-message-container .logged-in-subscribe-save-message>a {
    font-size: inherit;
    font-weight: inherit;
}

.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 #13161D !important;
    vertical-align: middle;
    margin-right: 12px;
    padding: 0;
    -webkit-box-shadow: unset;
    box-shadow: unset;
    border-radius: 0;
    cursor: pointer;
}

.ghm-offer-selector .subscribe-save-message-container input[type="checkbox"]:focus {
    -webkit-box-shadow: unset;
    box-shadow: unset;
    border-radius: inherit;
}

.ghm-offer-selector .subscribe-save-message-container input[type="checkbox"]:checked {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%2313161D' viewBox='0 0 512 512'%3E%3Cpath d='M470.6 105.4c12.5 12.5 12.5 32.8 0 45.3l-256 256c-12.5 12.5-32.8 12.5-45.3 0l-128-128c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0L192 338.7 425.4 105.4c12.5-12.5 32.8-12.5 45.3 0z'/%3E%3C/svg%3E");
    background-size: 18px;
    background-repeat: no-repeat;
    background-position: center;
}

.ghm-offer-selector .subscribe-save-message-container label {
    font-size: 16px;
    line-height: 1.5;
    font-weight: 600;
    color: #13161D;
    letter-spacing: 0.04em;
    cursor: pointer;
}

.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;
    padding: 16px;
    background-color: #FFFFFF;
    border: 2px solid #B9C9EE;
    border-radius: 20px;
    color: #2945b8;
    margin-top: 20px;
    text-align: center;
}

.ghm-offer-selector .logged-out-message-container .message {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.33;
}

.ghm-offer-selector .logged-out-message-container .message p {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
}

.ghm-offer-selector .logged-out-message-container .message p>span {
    display: block;
}

.ghm-offer-selector .logged-out-message-container .message p>span,
.ghm-offer-selector .logged-out-message-container .message .saving-price {
    font-size: 34px;
    font-weight: 700;
    line-height: 1.5;
}

.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 27px;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.7;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 50px;
    border: 2px solid #2945b8;
}

.ghm-offer-selector .logged-out-message-container .links .login-link {
    color: #2945b8;
}

.ghm-offer-selector .logged-out-message-container .links .login-link:hover {
    background-color: #2945b8;
    color: #ffffff;
}

.ghm-offer-selector .logged-out-message-container .links .sign-up-link {
    background-color: #2945b8;
    color: #ffffff;
}

.ghm-offer-selector .logged-out-message-container .links .sign-up-link:hover {
    background-color: #192C7C;
    border-color: #192C7C;
}

.ghm-offer-selector .logged-out-message-container .footer p {
    color: #13161D;
    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 .disclaimer {
    margin: 20px 0 0 0;
    font-size: 12px;
    line-height: 1.33;
    text-align: center;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #13161D;
}

.ghm-offer-selector .disclaimer p {
    font-weight: 800;
    font-size: 12px;
    line-height: 1.33;
    text-align: center;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #13161D;
    margin: 8px 0 0 0;
}

.ghm-offer-selector .disclaimer>*+* {
    margin: 4px 0 0 0;
}

.ghm-offer-selector .disclaimer .guarantee {
    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;
}

.ghm-offer-selector .disclaimer .guarantee svg {
    display: inline;
    height: 12px;
    width: 12px;
    margin-right: 10px;
}

.ghm-offer-selector .logged-out-message-container .footer .subscribe-save-list {
    color: #13161D;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    display: block;
    text-align: left;
}

.ghm-offer-selector .logged-out-message-container .footer .subscribe-save-list li svg {
    margin-right: 10px;

}

.ghm-offer-selector .logged-out-message-container .footer .subscribe-save-list .subscribe-save {
    color: #2945b8;
    font-weight: 600;
}

.ghm-offer-selector .logged-out-message-container .footer .subscribe-save-list .extra-discount {
    background: #E7F3AB;
    padding: 4px 8px;
    margin-left: 12px;
    border-radius: 4px;
    position: relative;
    text-transform: uppercase;
    color: #2945b8;
    font-size: 12px;
    font-weight: 600;
    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: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-right: 8px solid #e7f3ab;
    content: "";
    position: absolute;
    left: -5px;
    top: 4px;
}

.ghm-offer-selector .logged-out-message-container .footer .subscribe-save-list ul {
    margin-left: 36px;
    font-style: italic;
}

.ghm-offer-selector .logged-out-message-container .footer .subscribe-save-list ul li::before {
    content: "";
    width: 3px;
    height: 3px;
    position: absolute;
    background: #13161D;
    top: 10px;
    left: -10px;
    border-radius: 999px;
}

@media screen and (max-width: 386px) {
    .ghm-offer-selector .button-container .add-to-cart {
        font-size: 16px;
    }
}

@media screen and (max-width: 480px) {
    .ghm-offer-selector .product-options {
        padding: 12px 10px;
    }

    .ghm-offer-selector .purchase-type-option input[type="radio"]+span {
        font-size: 11px;
        line-height: 1.5;
        padding: 8px 17px;
    }

    .ghm-offer-selector .quantity {
        font-size: 16px;
    }

    .ghm-offer-selector .quantity-container.with-flags {
        margin-bottom: 28px;
    }

    .ghm-offer-selector .final-price .frequency {
        position: absolute;
    }

    .ghm-offer-selector .savings-message {
        font-size: 13px;
    }

    .ghm-offer-selector .savings-message.with-flags {
        font-size: 10.5px;
        margin-top: -25px;
        position: relative;
        white-space: pre-wrap;
        left: 85px;
        width: 65%;
    }

    .ghm-offer-selector .final-price {
        font-size: 16px;
    }

    .ghm-offer-selector ul li label {
        padding: 12px 10px;
    }

    .ghm-offer-selector .variant-option input[type="radio"]+span {
        padding: 8px 10px;
    }

    .ghm-offer-selector .badge {
        -ms-flex-negative: 0;
        flex-shrink: 0;
    }

    .ghm-offer-selector .badge.with-flags {
        position: absolute;
        left: 40px;
        top: 38px;
        font-size: 10.5px;
    }

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

    .ghm-offer-selector .quantity-container .left {
        -ms-flex-negative: 0;
        flex-shrink: 0;
    }

    .ghm-offer-selector .quantity-container,
    .ghm-offer-selector .quantity-container .right,
    .ghm-offer-selector ul li label {
        gap: 8px;
    }

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

    .ghm-offer-selector .logged-out-message-container .footer .subscribe-save-list {
        font-size: 14px;
    }

    .ghm-offer-selector .logged-out-message-container .footer .subscribe-save-list .extra-discount {
        position: absolute;
        top: -6px;
        font-size: 12px;
    }

    .ghm-offer-selector .logged-out-message-container .footer .subscribe-save-list .extra-discount::before {
        top: 10px;
    }

    .ghm-offer-selector .subscribe-save-benefits ul {
        font-size: 14px !important;
    }
}

@supports not selector(:has(*)) {
    .ghm-offer-selector ul li label.active {
        accent-color: var(--ghm-primary);
        background-color: #FFFFFF;
        border: 1px solid #B9C9EE;
    }

    .ghm-offer-selector ul li label.active .badge {
        background-color: #2945b8;
        color: #ffffff;
    }
}

/* 6. SUBSCRIBE AND SAVE BENEFITS */
.ghm-offer-selector .subscribe-save-benefits {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.ghm-offer-selector .subscribe-save-benefits h6 {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
    text-align: center;
}

.ghm-offer-selector .subscribe-save-benefits ul {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    list-style: none;
    padding: 0;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 20px;
    row-gap: 10px;
    max-width: 400px;
    width: 100%;
}

.ghm-offer-selector .subscribe-save-benefits ul li {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 5px;
}

.ghm-offer-selector .subscribe-save-benefits ul li svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    fill: #2945b8;
}

.ghm-offer-selector .subscribe-save-benefits ul li strong {
    color: #2945b8;
}

/* 7. NOTIFY ME FORM */
.notify-me-container .out-of-stock-message {
    text-transform: uppercase;
    color: #892100;
    text-align: center;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.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 {
    display: block;
    font-size: 14px;
    line-height: 1.7;
    font-weight: 600;
    color: #4C4E53;
}

.notify-me-container .notify-me-form .form-group input {
    display: block;
    width: 100%;
    border-radius: 16px;
    padding: 12px 24px;
    background: #FFFFFF;
    color: #13161D;
    border: 1px solid #D9DADA;
    -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);
    border-radius: 16px;
    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 {
    border-color: #B9C9EE;
    -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 {
    margin: 20px auto auto auto;
    display: block;
    padding: 12px 28px;
    background-color: #2945b8;
    border-radius: 99999px;
    border: none;
    outline: none;
    text-transform: uppercase;
    color: #FFFFFF;
    font-size: 14px;
    line-height: 2;
    font-weight: 800;
    letter-spacing: 0.16em;
}

.notify-me-container .notify-me-form .notify-me-submit-btn:hover {
    background-color: #192C7C;
}

.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 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);
    }
}