:root {
    --blr-primary: #000000;
    --blr-white: #ffffff;
    --blr-lighter-gray: #D9DADA;
    --blr-light-gray: #808080;
    --blr-dark-gray: #575757;
    --blr-red: #D33C0D;
    --blr-dark-red: #B55B40;
    --blr-darker-red: #783C2A;
}

.ghm-bundle-offer-selector {}

/* Single */
.ghm-bundle-offer-selector-single {}

.ghm-bundle-offer-selector-single .pricing-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
}

.ghm-bundle-offer-selector-single .pricing-row .price {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--blr-primary);
}

.ghm-bundle-offer-selector-single .pricing-row .savings-details {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.ghm-bundle-offer-selector-single .pricing-row .savings-details .base-price {
    font-size: 10px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--blr-primary)
}

.ghm-bundle-offer-selector-single .pricing-row .savings-details .base-price s {
    text-decoration-color: #797675;
}

.ghm-bundle-offer-selector-single .pricing-row .savings-details .savings-in-dollars,
.ghm-bundle-offer-selector-single .pricing-row .savings-details .savings-in-percentage {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--blr-dark-red);
}

.ghm-bundle-offer-selector-single .bundle-add-to-cart,
.ghm-bundle-offer-selector-single .out-of-stock {
    display: block;
    width: fit-content;
    padding: 10px 32px;
    text-align: center;
    font-weight: 800;
    font-size: 16px;
    line-height: 1.5;
    text-transform: uppercase;
    margin: 16px auto;
    border-width: 0px;
    border-radius: 9999px;
    outline: none;
}

.ghm-bundle-offer-selector-single .bundle-add-to-cart {
    color: var(--blr-white);
    background-color: var(--blr-dark-red);
    box-shadow: 1px 2.33px 3.33px -0.33px rgba(0, 0, 0, 0.10), -1px 2.66px 3.33px -0.33px rgba(0, 0, 0, 0.10);
}

.ghm-bundle-offer-selector-single .bundle-add-to-cart:hover {
    background: var(--blr-darker-red);
    color: var(--blr-white);
}

.ghm-bundle-offer-selector-single .out-of-stock {
    background-color: var(--blr-lighter-gray);
    color: var(--blr-dark-gray);
    pointer-events: none;
}

/* Archive */
.ghm-bundle-offer-selector-archive .pricing-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
    padding-top: 5px;
    padding-bottom: 5px;
}

.ghm-bundle-offer-selector-archive .pricing-row .price {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--blr-primary);
}

.ghm-bundle-offer-selector-archive .pricing-row .savings-details {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.ghm-bundle-offer-selector-archive .pricing-row .savings-details .base-price {
    font-size: 10px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--blr-primary)
}

.ghm-bundle-offer-selector-archive .pricing-row .savings-details .base-price s {
    text-decoration-color: #797675;
}

.ghm-bundle-offer-selector-archive .pricing-row .savings-details .savings-in-dollars,
.ghm-bundle-offer-selector-archive .pricing-row .savings-details .savings-in-percentage {
    font-size: 10px;
    font-weight: 600;
    color: var(--blr-red);
}

.ghm-bundle-offer-selector-archive .bundle-add-to-cart,
.ghm-bundle-offer-selector-archive .bundle-learn-more,
.ghm-bundle-offer-selector-archive .out-of-stock {
    display: block;
    width: 100%;
    padding: 14px;
    text-align: center;
    font-weight: 800;
    font-size: 16px;
    line-height: 1.25;
    text-transform: uppercase;
    margin: 20px 0 0 0;
    border-width: 0px;
    border-radius: 9999px;
    outline: none;
}

.ghm-bundle-offer-selector-archive .bundle-add-to-cart,
.ghm-bundle-offer-selector-archive .bundle-learn-more {
    color: var(--blr-white);
    background-color: var(--blr-dark-red);
    box-shadow: 1px 2.33px 3.33px -0.33px rgba(0, 0, 0, 0.10), -1px 2.66px 3.33px -0.33px rgba(0, 0, 0, 0.10);
}

.ghm-bundle-offer-selector-archive .bundle-add-to-cart:hover,
.ghm-bundle-offer-selector-archive .bundle-learn-more:hover {
    background: var(--blr-darker-red);
    color: var(--blr-white);
}

.ghm-bundle-offer-selector-archive .out-of-stock {
    background-color: var(--blr-lighter-gray);
    color: var(--blr-dark-gray);
    pointer-events: none;
}

.ghm-bundle-offer-selector-archive .login-container {
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--blr-primary);
    margin: 20px 0 0 0;
}

.ghm-bundle-offer-selector-archive .login-container a {
    text-decoration: underline !important;
    color: inherit;
}