.header {
    grid-template-areas: "logo" !important;
    grid-template-columns: minmax(100px, 175px) !important;
    justify-content: center;
}

.headerMenuButton {
    display: none !important;
}

.headerOrderButtons {
    display: none !important;
}

.headerIcons {
    display: none !important;
}

.headerNav {
    display: none !important;
}

.checkout {
    min-height: var(--safe-area);
}

.checkout.hidden {
    visibility: hidden;
}

.checkoutInner {
    display: grid;
    gap: 32px;
    grid-template-columns: 3fr minmax(400px, 2fr);
    padding: 32px 32px 32px;
    max-width: 1400px;
    margin: 0 auto;
}

.checkoutLeft {
    border: 1px solid #e9e9e9;
    padding: 32px 32px 0;
    background-color: #FFF;
    border-radius: 12px;
    box-shadow: var(--shadow-small);
}

.checkoutLeftInner {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas: "location" "guest" "utensils" "time" "rewards" "fundraiser" "payment";
    column-gap: 32px;
}

.checkoutLeftRewards {
    grid-area: rewards;
    padding: 24px 0;
    border-bottom: 1px solid #DDD;
}

.checkoutLeftRewardsItemName {
    color: var(--color-orange);
    font-weight: 500;
}

.checkoutLeftAccordionHeader {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.checkoutLeftAccordionHeaderTitle {
    font-family: "Eames Century Modern", sans-serif;
    font-size: 24px;
    color: var(--color-green);
    margin: 0;
}

.checkoutLeftAccordionHeaderIcon {
    color: var(--color-green);
}

.checkoutLeftAccordionContent {
    padding: 20px 0 0 0;
}

.checkoutLeftAccordionHeader[aria-expanded="true"] .checkoutLeftAccordionHeaderIcon {
    transform: rotate(180deg);
}

.checkoutLeftBackToMenu {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    transition: 0.3s;
    width: fit-content;
    line-height: 1;
}

.checkoutLeftBackToMenu:hover {
    color: var(--color-green);
}

.checkoutLeftBackToMenu .material-symbols-outlined {
    font-size: 14px;
    transform: translateY(1px);
}

.checkoutLeftLocation {
    grid-area: location;
    padding: 32px 0;
    border-bottom: 1px solid #DDD;
}

.checkoutLeftPickupLocation,
.checkoutLeftDeliveryLocation {

}

.checkoutLeftPickupLocationTitle,
.checkoutLeftDeliveryLocationTitle {
    font-family: "Eames Century Modern", sans-serif;
    font-size: 24px;
    color: var(--color-green);
    margin: 0 0 32px 0;
}

.checkoutLeftPickupLocationTableNumber {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 4px 0 0 0;
    line-height: 1.4;
}

.checkoutLeftPickupLocationMap,
.checkoutLeftDeliveryLocationMap {
    border-radius: 12px;
    box-shadow: var(--shadow-small);
    grid-area: map;
    cursor: pointer;
}

.checkoutLeftPickupLocationDetails {
    display: grid;
    grid-template-columns: 300px 1fr auto;
    grid-template-areas:
        "map info change"
        "map info change";
    align-items: start;
    column-gap: 24px;
    grid-auto-rows: min-content;
}

.checkoutLeftDeliveryLocationDetails {
    display: grid;
    grid-template-columns: 300px 1fr auto;
    grid-template-areas:
        "map info change"
        "map info change"
        "map instructions instructions";
    align-items: start;
    column-gap: 24px;
    grid-auto-rows: min-content;
}

.checkoutLeftDeliveryLocationInstructionsAccordion {
    grid-area: instructions;
    padding: 16px 0 0 0;
}

.checkoutLeftDeliveryLocationInstructionsAccordionHeader {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-family: "Eames Century Modern", sans-serif;
    font-size: 16px;
    color: var(--color-green);
}

.checkoutLeftDeliveryLocationInstructionsAccordionHeader[aria-expanded="true"] .checkoutLeftDeliveryLocationInstructionsAccordionHeaderIcon {
    transform: rotate(180deg);
}

.checkoutLeftDeliveryLocationInstructionsAccordionInputWrapper {
    position: relative;
}

.checkoutLeftDeliveryLocationInstructionsAccordionInput textarea {
    resize: none;
}

.checkoutLeftDeliveryLocationInstructionsAccordionInputCharacterCount {
    font-size: 14px;
    color: var(--text-secondary);
    position: absolute;
    bottom: 12px;
    right: 12px;
    background-color: #FFFFFF;
}

.checkoutLeftDeliveryLocationAddress {
    grid-area: info;
}

.checkoutLeftPickupLocationDetailsInfo {
    grid-area: info;
    align-self: center;
}

.checkoutLeftPickupLocationStore {
    grid-area: store;
    font-weight: 500;
    font-size: 18px;
    margin: 0;
    letter-spacing: 0.3px;
    color: var(--text-primary);
    color: var(--color-green);
}

.checkoutLeftPickupLocationAddress {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 4px 0 0 0;
    line-height: 1.4;
}

.checkoutLeftDeliveryLocationAddress {
    align-self: center;
}

.checkoutLeftDeliveryLocationAddressStore {
}

.checkoutLeftDeliveryLocationAddressStoreTitle {
    font-family: "Eames Century Modern", sans-serif;
    font-size: 16px;
    color: var(--color-green);
    margin: 0;
}

.checkoutLeftDeliveryLocationAddressStoreName {
    font-weight: 500;
    font-size: 18px;
    margin: 0 0 4px 0;
    letter-spacing: 0.3px;
    color: var(--text-primary);
}

.checkoutLeftDeliveryLocationAddressStoreAddress {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.4;
}

.checkoutLeftDeliveryLocationAddressCustomer {
    margin: 0 0 16px 0;
}

.checkoutLeftDeliveryLocationAddressCustomerTitle {
    font-family: "Eames Century Modern", sans-serif;
    font-size: 16px;
    color: var(--color-green);
    margin: 0;
}

.checkoutLeftDeliveryLocationAddressCustomerName {
    font-weight: 500;
    font-size: 18px;
    margin: 0 0 4px 0;
    letter-spacing: 0.3px;
    color: var(--text-primary);
}

.checkoutLeftDeliveryLocationAddressCustomerAddress {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.4;
}

.checkoutLeftPickupLocationChangeButton,
.checkoutLeftDeliveryLocationChangeButton {
    grid-area: change;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-green);
    cursor: pointer;
    transition: 0.3s;
    font-family: "Rebrand", sans-serif;
    text-transform: uppercase;
}

.checkoutLeftUtensils {
    grid-area: utensils;
}

.checkoutLeftUtensilsAccordion {
    display: block;
    padding: 24px 0;
    border-bottom: 1px solid #DDD;
}

.checkoutLeftUtensilsAccordionHeader {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.checkoutLeftUtensilsAccordionHeader[aria-expanded="true"] .checkoutLeftUtensilsAccordionHeaderIcon {
    transform: rotate(180deg);
}

.checkoutLeftUtensilsAccordionHeaderTitle {
    font-family: "Eames Century Modern", sans-serif;
    font-size: 24px;
    color: var(--color-green);
    margin: 0;
}

.checkoutLeftUtensilsAccordionHeaderIcon {
    font-size: 32px;
    color: var(--color-green);
}

.checkoutLeftUtensilsAccordionContent {
    padding: 20px 20px 0;
}

.checkoutLeftUtensilsAccordionContentItems {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.checkoutUtensilItemsItemLabel {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.checkoutUtensilItemsItemLabelQuantity {
    display: flex;
    align-items: center;
    position: relative;
    gap: 8px;
}

.checkoutUtensilItemsItemLabelQuantityButton {
    width: 20px;
    height: 20px;
    font-weight: 600;
    border-radius: 100%;
    font-size: 16px;
    background-color: #FFFFFF;
    color: var(--color-green);
    border: 2px solid var(--color-green);
    line-height: 1;
}

.checkoutUtensilItemsItemLabelQuantityButton:hover {
    background-color: #95CA5742;
}

.checkoutUtensilItemsItemLabelQuantityValue {
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    padding-top: 9px;
    font-weight: 600;
    border-radius: 100%;
    font-size: 13px;
    color: #FFFFFF;
    background-color: var(--color-green);
    line-height: 10px;
}

.checkoutUtensilItemsItemLabelText {
    font-family: "Eames Century Modern", sans-serif;
    font-size: 22px;
    color: var(--color-green);
}

.checkoutLeftGuest {
    grid-area: guest;
    padding: 32px 0;
    border-bottom: 1px solid #DDD;
}

.checkoutLeftGuest.hidden {
    display: none;
}

.checkoutLeftGuestTitle {
    font-family: "Eames Century Modern", sans-serif;
    font-size: 24px;
    color: var(--color-green);
    margin: 0 0 32px 0;
}

.checkoutLeftGuestForm {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 32px;
}

.checkoutLeftTime {
    padding: 24px 0;
    border-bottom: 1px solid #DDD;
    grid-area: time;
}

.checkoutLeftTimeAccordionHeader {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.checkoutLeftTimeAccordionHeader[aria-expanded="true"] .checkoutLeftTimeAccordionHeaderIcon {
    transform: rotate(180deg);
}

.checkoutLeftTimeAccordionHeaderTitle {
    font-family: "Eames Century Modern", sans-serif;
    font-size: 24px;
    color: var(--color-green);
    margin: 0;
}

.checkoutLeftTimeAccordionHeaderIcon {
    font-size: 32px;
    color: var(--color-green);
}

.checkoutLeftTimeAccordionContent {
    padding: 20px 0 0;
}

.checkoutLeftTimeReadyTime {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas: "title change" "text change";
    align-items: start;
}

.checkoutLeftTimeReadyTimeText {
    font-weight: 500;
    font-size: 18px;
    margin: 0;
    letter-spacing: 0.3px;
    color: var(--text-primary);
    grid-area: text;
}

.checkoutLeftTimeReadyTimeChangeButton {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-green);
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
    font-family: "Rebrand", sans-serif;
    display: inline-block;
    grid-area: change;
}

.checkoutLeftPayment {
    padding: 32px 0;
    grid-area: payment;
}

.checkoutLeftPaymentTitle {
    font-family: "Eames Century Modern", sans-serif;
    font-size: 24px;
    color: var(--color-green);
    margin: 0 0 32px 0;
}

.checkoutLeftPaymentMethodCreditCardsEmpty {
    margin: 0;
    color: var(--text-secondary);
    font-size: 14px;
}

.checkoutLeftPaymentNewCardButton {
    margin: 0 0 16px 0;
}

.checkoutLeftPaymentNewCardButton.hidden {
    display: none;
}

.checkoutLeftPaymentForm iframe {
    margin: 0 0 16px 0;
}

.checkoutLeftPaymentActions {
    display: flex;
    gap: 16px;
    padding: 16px 0 0;
}

.checkoutLeftPaymentActionsButton {
    flex: 1;
}

.checkoutLeftPaymentMethodCreditCards, .checkoutLeftPaymentMethodGiftCards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 0 0 16px 0;
}

.checkoutLeftPaymentMethodsItem {
    border: 1px solid #DDD;
}

.checkoutLeftPaymentMethodCreditCards.hidden, .checkoutLeftPaymentMethodGiftCards.hidden {
    display: none;
}

.checkoutAddCreditCardModalTitle {
    font-size: 28px;
    font-weight: 500;
    text-align: center;
    margin: 0 0 30px 0;
    font-family: "Eames Century Modern", sans-serif;
    color: var(--color-green);
}

.checkoutAddCreditCardModalButtons {
    padding: 32px 0 0 0;
}

.checkoutAddCreditCardModalAlert.hidden {
    display: none;
}

.checkoutAddCreditCardModalAlert {
    margin: 0 0 16px 0;
}

.checkoutAddGiftCardModalTitle {
    font-size: 28px;
    font-weight: 500;
    text-align: center;
    margin: 0 0 30px 0;
    font-family: "Eames Century Modern", sans-serif;
    color: var(--color-green);
}

.checkoutAddGiftCardModalButtons {
    padding: 32px 0 0 0;
}

.checkoutAddGiftCardModalFormAlert {
    display: none;
    margin: 0 0 16px 0;
}

.checkoutAddGiftCardModalFormAlert.active {
    display: block;
}

.checkoutLeftFundraiser {
    padding: 24px 0;
    grid-area: fundraiser;
    border-bottom: 1px solid #DDD;
}

.checkoutLeftFundraiserAccordionHeader[aria-expanded="true"] .checkoutLeftFundraiserAccordionHeaderIcon {
    transform: rotate(180deg);
}

.checkoutLeftFundraiserAccordionHeader {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.checkoutLeftFundraiserAccordionHeaderTitle {
    font-family: "Eames Century Modern", sans-serif;
    font-size: 24px;
    color: var(--color-green);
    margin: 0;
}

.checkoutLeftFundraiserAccordionHeaderIcon {
    font-size: 32px;
    color: var(--color-green);
}

.checkoutLeftFundraiserForm {
    display: flex;
    align-items: center;
    gap: 16px;
}

.checkoutLeftFundraiserFormInput {
    flex: 1;
}

.checkoutRight {
    border: 1px solid #e9e9e9;
    padding: 32px;
    background-color: #FFF;
    border-radius: 12px;
    box-shadow: var(--shadow-small);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    height: 0;
    min-height: 100%;
}

.checkoutRightTitle {
    font-family: "Eames Century Modern", sans-serif;
    font-size: 24px;
    color: var(--color-green);
    margin: 0;
    padding: 0 0 20px 0;
    border-bottom: 1px solid #DDD;
}

.checkoutRightBagItems {
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.checkoutRightBagItem {
    border-bottom: 1px solid #DDD;
    padding: 16px 0;
    position: relative;
}

.checkoutRightBagItemDetails {
    display: grid;
    grid-template-areas: "visual name price" "visual sizeStyle sizeStyle" "visual children children" "visual actions actions";
    grid-template-columns: 80px 1fr auto;
    column-gap: 16px;
}

.checkoutRightBagItemDetailsVisual {
    grid-area: visual;
}

.checkoutRightBagItemDetailsClasses {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0 0 4px 0;
}

.checkoutRightBagItemDetailsClassesClass {
    font-size: 11px;
    color: #2a2a2a;
    background-color: #fad467;
    border-radius: 6px;
    padding: 4px 6px 6px 6px;
    text-transform: uppercase;
    font-weight: 600;
    width: fit-content;
    text-align: center;
    font-weight: 600;
    line-height: 1;
    font-family: "Rebrand", sans-serif;
}

.checkoutRightBagItemDetailsClassesClass.chefSpotlight {
    position: relative;
    background: linear-gradient(45deg, #287528 0%, #6AB575 50%, #287528 100%);
    overflow: hidden;
    z-index: 1;
    color: #FFFFFF;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.checkoutRightBagItemDetailsClassesClass.chefSpotlight::after {
    content: "";
    position: absolute;
    top: 0;
    left: -50%;
    width: 50%;
    height: 100%;
    pointer-events: none;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 60%);
    transform: skewX(-25deg);
    animation: checkoutSpotlightMove 6s ease-in-out infinite;
    z-index: -1;
    will-change: left;
}

.checkoutRightBagItemDetailsImage {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow-small);
}

.checkoutRightBagItemDetailsName {
    grid-area: name;
    font-family: "Eames Century Modern", sans-serif;
    font-size: 15px;
    margin: 0;
    align-self: center;
    color: var(--color-green);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.checkoutRightBagItemDetailsPrice {
    grid-area: price;
    margin: 0;
    font-size: 14px;
    color: var(--text-primary);
    font-weight: 600;
    letter-spacing: -0.3px;
    text-align: right;
}

.checkoutRightBagItemDetailsSizeStyle {
    grid-area: sizeStyle;
    font-size: 13px;
    color: var(--text-secondary);
}

.checkoutRightBagItemDetailsChildItems {
    grid-area: children;
}

.checkoutRightBagItemDetailsChildItemsItem {
    display: grid;
    grid-template-areas: "quantity name price" "quantity grandchildren grandchildren";
    grid-template-columns: auto 1fr auto;
}

.checkoutRightBagItemDetailsChildItemsItemQuantity {
    grid-area: quantity;
    font-size: 13px;
    color: var(--text-secondary);
    margin-right: 4px;
}

.checkoutRightBagItemDetailsChildItemsItemName {
    grid-area: name;
    font-size: 13px;
    color: var(--text-secondary);
}

.checkoutRightBagItemDetailsChildItemsItemPrice {
    grid-area: price;
    font-size: 13px;
    color: var(--text-secondary);
    letter-spacing: -0.3px;
}

.checkoutRightBagItemDetailsGrandchildItems {
    grid-area: grandchildren;
    display: grid;
    grid-template-areas: "name price";
    grid-template-columns: auto 1fr;
    line-height: 1;
    margin-bottom: 4px;
}

.checkoutRightBagItemDetailsChildItemsItemGrandchildItemsItemName {
    grid-area: name;
    font-size: 13px;
    color: var(--text-secondary);
}

.checkoutRightBagItemDetailsChildItemsItemGrandchildItemsItemPrice {
    grid-area: price;
    font-size: 13px;
    color: var(--text-secondary);
    letter-spacing: -0.3px;
}

.checkoutRightBagItemDetailsActions {
    grid-area: actions;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.checkoutRightBagItemDetailsActionsQuantity {
    display: flex;
    align-items: center;
    position: relative;
    gap: 8px;
}

.checkoutRightBagItemDetailsActionsQuantityButton {
    width: 20px;
    height: 20px;
    font-weight: 600;
    border-radius: 100%;
    font-size: 16px;
    background-color: #FFFFFF;
    color: var(--color-green);
    border: 2px solid var(--color-green);
    line-height: 1;
}

.checkoutRightBagItemDetailsActionsQuantityButton:hover {
    background-color: #95CA5742;
}

.checkoutRightBagItemDetailsActionsQuantityValue {
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    padding-top: 9px;
    font-weight: 600;
    border-radius: 100%;
    font-size: 13px;
    color: #FFFFFF;
    background-color: var(--color-green);
    line-height: 10px;
}

.checkoutRightBagItemDetailsActionsRemoveButton {
    font-size: 10px;
    color: #e0564c;
    cursor: pointer;
    font-family: "Rebrand", sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1;
}

.checkoutRightBagItemDetailsActionsRemoveButton:hover {
    text-decoration: underline;
}

.checkoutRightCouponForm {
    display: flex;
    gap: 16px;
    align-items: center;
    padding: 32px 0;
}

.checkoutRightCouponFormInput {
    flex: 1;
}

.checkoutRightBagTotals {
    padding: 32px 0;
    border-top: 1px solid #DDD;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.checkoutRightBagTotalsItem {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.checkoutRightBagTotalsItem.coupon.chefSpotlight .checkoutRightBagTotalsItemLabel {
    position: relative;
    background: linear-gradient(45deg, #287528 0%, #6AB575 50%, #287528 100%);
    overflow: hidden;
    z-index: 1;
    color: #FFFFFF;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
    border-radius: 6px;
    text-transform: uppercase;
    font-weight: 600;
    line-height: 1;
    color: #FFFFFF;
    font-size: 12px;
    padding: 6px 12px 10px 12px;
}

.checkoutRightBagTotalsItem.coupon.chefSpotlight .checkoutRightBagTotalsItemLabel::after {
    content: "";
    position: absolute;
    top: 0;
    left: -50%;
    width: 50%;
    height: 100%;
    pointer-events: none;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 60%);
    transform: skewX(-25deg);
    animation: checkoutSpotlightMove 6s ease-in-out infinite;
    z-index: -1;
    will-change: left;
}

.checkoutRightBagTotalsItem.coupon.chefSpotlight .checkoutRightBagTotalsItemLabelInfoButton {
    color: #FFFFFF;
    font-size: 16px;
    transform: translateY(1px);
    margin: 0 0 0 6px;
}

.checkoutRightBagTotalsItem.coupon.chefSpotlight .checkoutRightBagTotalsItemValue {
    color: var(--color-green);
}

@keyframes checkoutSpotlightMove {
    0% {
        left: -50%;
    }
    100% {
        left: 100%;
    }
}

.checkoutRightBagTotalsItem.surcharge .checkoutRightBagTotalsItemLabel, .checkoutRightBagTotalsItem.surcharge .checkoutRightBagTotalsItemValue {
    font-weight: 600;
}

.checkoutRightBagTotalsItem.coupon .checkoutRightBagTotalsItemLabel, .checkoutRightBagTotalsItem.coupon .checkoutRightBagTotalsItemValue {
    font-weight: 600;
    color: var(--color-orange);
}

.checkoutRightBagTotalsItemLabel {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1;
}

.checkoutRightBagTotalsItemLabelInfoButton {
    font-size: 16px;
    color: var(--text-secondary);
    cursor: pointer;
    line-height: 1;
}

.checkoutRightBagTotalsItemLabelInfoButton .material-symbols-outlined {
    font-size: inherit;
    line-height: inherit;
    transform: translateY(3px);
}

.checkoutRightBagTotalsItemValue {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1;
}

.checkoutRightBagTotalsSeparator {
    height: 1px;
    background-color: #DDD;
    margin: 8px 0;
}

.checkoutRightBagTotalsGrandTotal {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.checkoutRightBagTotalsGrandTotalLabel {
    font-size: 16px;
    color: var(--color-green);
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.checkoutRightBagTotalsGrandTotalValue {
    font-size: 16px;
    color: var(--color-green);
    font-weight: 700;
    letter-spacing: -0.3px;
    line-height: 1;
}

.checkoutRightTip {
    padding: 32px 0;
    border-bottom: 1px solid #DDD;
}

.checkoutRightTipTitle {
    font-family: "Eames Century Modern", sans-serif;
    font-size: 20px;
    color: var(--color-green);
    margin: 0 0 16px 0;
    text-align: center;
}

.checkoutRightTipOptionsForm {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.checkoutRightTipOptionsFormOptionInput {
    display: none;
}

.checkoutRightTipOptionsFormOptionInput:checked + .checkoutRightTipOptionsFormOptionLabelSelector {
    background-color: var(--color-green);
    color: #FFFFFF;
}

.checkoutRightTipOptionsFormOptionLabelSelector {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-green);
    border-radius: 8px;
    color: var(--color-green);
    padding: 12px;
    cursor: pointer;
    font-weight: 500;
    line-height: 1;
    height: 100%;
    font-size: 16px;
}

.checkoutRightTipOptionsFormOptionLabelSelector:hover {
    background-color: #95CA5742;
}

.checkoutRightTipOptionsFormOptionLabelSelector.hidden {
    display: none;
}

.checkoutRightTipOptionsFormOptionLabelOtherInputContainer {
    height: 100%;
    display: block;
    background-color: var(--color-green);
    border-radius: 8px;
}

.checkoutRightTipOptionsFormOptionLabelOtherInputContainer.hidden {
    display: none;
}

.checkoutRightTipOptionsFormOptionLabelOtherInput {
    display: flex;
    border: 2px solid var(--color-green);
    border-radius: 8px;
    color: #FFF;
    padding: 12px;
    cursor: pointer;
    font-weight: 600;
    line-height: 1;
    height: 100%;
    font-size: 16px;
    text-align: center;
}

.checkoutRightTipOptionsFormOptionLabelOtherInput::placeholder {
    color: #FFF;
    opacity: 0.8;
}

.checkoutRightTipOptionsFormOptionLabelOtherInput:focus {
    outline: none;
}

.checkoutInsufficientGiftCardBalanceModalTitle {
    font-size: 28px;
    font-weight: 500;
    text-align: center;
    margin: 0 0 20px 0;
    font-family: "Eames Century Modern", sans-serif;
    color: var(--color-green);
}

.checkoutInsufficientGiftCardBalanceModalText {
    font-size: 16px;
    color: var(--text-primary);
    text-align: center;
    margin: 0 0 24px 0;
}

.checkoutInsufficientGiftCardBalanceModalPaymentMethods {
    margin: 0 0 24px 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.checkoutInsufficientGiftCardBalanceModalButtons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

@media (max-width: 1268px) {
    .checkoutInner {
        grid-template-columns: 1fr;
    }

    .checkoutRight {
        height: auto;
    }
}

.checkoutRightBagPaymentButtons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.checkoutRightBagPaymentButtons apple-pay-button {
    --apple-pay-button-width: 100%;
    --apple-pay-button-height: 48px;
    --apple-pay-button-border-radius: 6px;
    --apple-pay-button-padding: 8px 32px;
    --apple-pay-button-box-sizing: border-box;
}

@media (max-width: 768px) {
    .checkoutRightBagPaymentButtons.scrolled {
        position: fixed;
        bottom: calc(var(--surchargeBannerHeight) + var(--appNavigationHeight));
        left: 0;
        z-index: 10;
        padding: 12px 16px;
        width: 100%;
        backdrop-filter: blur(5px);
    }

    .checkoutRightBagPaymentButtons apple-pay-button {
        --apple-pay-button-height: 42px;
    }
}

@media (max-width: 768px) {
    .header {
        grid-template-areas: "logo" !important;
        grid-template-columns: 1fr !important;
        justify-items: center !important;
    }

    .headerLogo {
        justify-self: center;
        width: 175px;
    }

    .headerLogo svg {
        width: 60px;
    }

    .checkoutInner {
        padding: 32px 20px calc(var(--appNavigationHeight) + 32px) 20px;
    }

    .checkoutLeftInner {
        grid-template-columns: 1fr;
        grid-template-areas: "location" "guest" "utensils" "time" "rewards" "fundraiser" "payment";
    }
}

@media (max-width: 490px) {
    .checkoutInner {
        padding: 16px 16px calc(var(--appNavigationHeight) + 32px);
        gap: 16px;
    }

    .checkoutLeftPickupLocationTitle, .checkoutLeftDeliveryLocationTitle, .checkoutLeftUtensilsAccordionHeaderTitle, .checkoutLeftTimeAccordionHeaderTitle, .checkoutLeftGuestTitle, .checkoutLeftFundraiserAccordionHeaderTitle, .checkoutLeftPaymentTitle, .checkoutRightTitle {
        font-size: 22px;
    }

    .checkoutUtensilItemsItemLabelText {
        font-size: 18px;
    }

    .checkoutLeftUtensilsAccordionHeaderIcon, .checkoutLeftTimeAccordionHeaderIcon, .checkoutLeftFundraiserAccordionHeaderIcon {
        font-size: 24px;
    }

    .checkoutLeft {
        padding: 0 20px;
    }

    .checkoutLeftBackToMenu {
        padding-top: 20px;
        font-size: 12px;
    }

    .checkoutRight {
        padding: 20px;
    }

    .checkoutLeftPickupLocationDetails, .checkoutLeftDeliveryLocationDetails {
        grid-template-columns: 1fr auto;
        grid-template-areas: "map map" "info change" "info change" "instructions instructions";
        column-gap: 16px;
        row-gap: 20px;
        align-items: start;
    }

    .checkoutLeftDeliveryLocationInstructionsAccordion {
        padding: 0;
    }

    .checkoutLeftPickupLocationChangeButton, .checkoutLeftDeliveryLocationChangeButton {
        font-size: 12px;
    }

    .checkoutLeftPickupLocationTitle, .checkoutLeftDeliveryLocationTitle {
        margin: 0 0 24px 0;
    }

    .checkoutLeftPickupLocationStore {
        font-size: 16px;
    }

    .checkoutLeftDeliveryLocationAddressCustomerName, .checkoutLeftDeliveryLocationAddressStoreName {
        font-size: 16px;
    }

    .checkoutLeftTimeReadyTime {
        column-gap: 16px;
    }

    .checkoutLeftTimeReadyTimeChangeButton {
        font-size: 12px;
    }

    .checkoutLeftTimeReadyTimeText {
        font-size: 14px;
    }

    .checkoutLeftGuestTitle {
        margin: 0 0 24px 0;
    }

    .checkoutLeftGuestForm {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .checkoutLeftPayment {
        padding: 32px 0 20px 0;
    }

    .checkoutLeftPaymentTitle {
        margin: 0 0 24px 0;
    }

    .checkoutLeftPaymentMethodCreditCards, .checkoutLeftPaymentMethodGiftCards {
        gap: 12px;
        margin: 0 0 12px 0;
    }

    .checkoutLeftPaymentActions {
        gap: 12px;
    }

    .checkoutRightTitle {
        margin: 0;
        padding: 0 0 16px 0;
    }

    .checkoutRightTipOptionsForm {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .checkoutRightTipOptionsFormOptionLabelSelector {
        font-size: 14px;
        border: 1px solid var(--color-green);
    }

    .checkoutRightBagItemDetails {
        grid-template-areas: "name price" "sizeStyle sizeStyle" "children children" "actions actions";
        grid-template-columns: 1fr auto;
    }

    .checkoutRightBagItemDetailsVisual {
        display: none;
    }
}
