/* pa-mobile-cart-drawer-style */
.pa-mobile-cart-overlay,
.pa-mobile-cart-drawer {
  display: none;
}

@media all {
  body.pa-mobile-cart-is-open {
    overflow: hidden !important;
    touch-action: none !important;
  }

  .pa-mobile-cart-overlay {
    position: fixed;
    inset: 0;
    z-index: 999998;
    display: block;
    background: rgba(5, 13, 33, 0.62);
    opacity: 0;
    pointer-events: none;
    transition: opacity 160ms ease;
  }

  .pa-mobile-cart-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
  }

  .pa-mobile-cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 999999;
    display: grid;
    grid-template-rows: auto minmax(0, 1fr) auto;
    width: min(92vw, 430px);
    height: 100vh;
    height: 100dvh;
    background: #ffffff;
    color: #111111;
    box-shadow: -16px 0 36px rgba(5, 13, 33, 0.28);
    transform: translate3d(104%, 0, 0);
    transition: transform 190ms ease;
    will-change: transform;
  }

  .pa-mobile-cart-drawer.is-open {
    transform: translate3d(0, 0, 0);
  }

  .pa-mobile-cart-drawer__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 46px;
    padding: max(8px, env(safe-area-inset-top)) 14px 8px;
    background: #050d21;
    color: #ffffff;
    border-bottom: 3px solid #c07010;
  }

  .pa-mobile-cart-drawer__title {
    margin: 0;
    color: #ffffff;
    font-size: 20px;
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: 0;
  }

  .pa-mobile-cart-drawer__close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #ffffff;
    font-size: 36px;
    font-weight: 300;
    line-height: 1;
    box-shadow: none;
  }

  .pa-mobile-cart-drawer__shipping {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 10px 18px;
    background: #fff8ef;
    color: #050d21;
    border-bottom: 1px solid rgba(192, 112, 16, 0.28);
    font-size: 17px;
    font-weight: 900;
    line-height: 1.2;
    text-align: center;
  }

  .pa-mobile-cart-drawer__body {
    min-height: 0;
    overflow: auto;
    padding: 14px 18px 12px;
    -webkit-overflow-scrolling: touch;
  }

  .pa-mobile-cart-drawer__items {
    min-width: 0;
  }

  .pa-mobile-cart-drawer__scroll-extras {
    min-width: 0;
    padding-bottom: 4px;
  }

  .pa-mobile-cart-drawer__empty {
    padding: 42px 10px;
    color: #555555;
    font-size: 17px;
    text-align: center;
  }

  .pa-mobile-cart-drawer__error {
    margin: 0 0 10px;
    padding: 10px 12px;
    border: 1px solid rgba(192, 112, 16, 0.34);
    border-radius: 8px;
    background: #fff8ef;
    color: #111111;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.3;
  }

  .pa-mobile-cart-drawer__item {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr) auto;
    gap: 10px;
    align-items: center;
    padding: 10px;
    margin: 0 0 10px;
    border: 1px solid rgba(5, 13, 33, 0.16);
    border-radius: 8px;
    background: #ffffff;
  }

  .pa-mobile-cart-drawer__image {
    width: 56px;
    height: 56px;
    border: 1px solid rgba(5, 13, 33, 0.1);
    border-radius: 4px;
    object-fit: cover;
    background: #ffffff;
  }

  .pa-mobile-cart-drawer__details {
    min-width: 0;
    overflow: hidden;
  }

  .pa-mobile-cart-drawer__name {
    display: -webkit-box;
    margin: 0;
    overflow: hidden;
    color: #111111;
    font-size: 15px;
    font-weight: 900;
    line-height: 1.16;
    letter-spacing: 0;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }

  .pa-mobile-cart-drawer__meta {
    margin-top: 3px;
    color: #444444;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.18;
  }

  .pa-mobile-cart-drawer__controls {
    display: inline-grid;
    grid-template-columns: 28px 32px 28px;
    align-items: center;
    min-height: 30px;
    margin-top: 7px;
    border: 1px solid #111111;
    border-radius: 6px;
    overflow: hidden;
  }

  .pa-mobile-cart-drawer__qty-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 30px;
    border: 0;
    border-radius: 0;
    background: #ffffff;
    color: #111111;
    font-size: 18px;
    font-weight: 800;
    line-height: 1;
    box-shadow: none;
  }

  .pa-mobile-cart-drawer__qty-button:disabled,
  .pa-mobile-cart-drawer__qty-button[aria-disabled="true"] {
    cursor: not-allowed;
    background: #eeeeee;
    color: #9a9a9a;
    opacity: 1;
  }

  .pa-mobile-cart-drawer__qty {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 30px;
    border-right: 1px solid #111111;
    border-left: 1px solid #111111;
    color: #111111;
    font-size: 13px;
    font-weight: 900;
  }

  .pa-mobile-cart-drawer__side {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
    min-width: 64px;
  }

  .pa-mobile-cart-drawer__remove {
    width: 28px;
    height: 28px;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #111111;
    font-size: 22px;
    line-height: 1;
    box-shadow: none;
  }

  .pa-mobile-cart-drawer__price {
    color: #111111;
    font-size: 13px;
    font-weight: 900;
    line-height: 1.1;
    white-space: nowrap;
  }

  .pa-mobile-cart-drawer__price-regular {
    color: #777777;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.1;
    text-decoration: line-through;
    white-space: nowrap;
  }

  .pa-mobile-cart-drawer__offer {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    max-width: 100%;
    margin-top: 5px;
    padding: 4px 6px;
    border: 1px solid rgba(192, 112, 16, 0.32);
    border-radius: 5px;
    background: #fff8ef;
    color: #050d21;
    font-size: 10px;
    font-weight: 900;
    line-height: 1.15;
  }

  .pa-mobile-cart-drawer__item-savings {
    margin-top: 4px;
    color: #c07010;
    font-size: 11px;
    font-weight: 800;
    line-height: 1.15;
  }

  .pa-mobile-cart-drawer__footer {
    position: relative;
    z-index: 2;
    padding: 8px 16px calc(8px + env(safe-area-inset-bottom));
    border-top: 1px solid rgba(5, 13, 33, 0.16);
    background: #ffffff;
    box-shadow: 0 -8px 18px rgba(5, 13, 33, 0.08);
  }

  .pa-mobile-cart-drawer.has-items .pa-mobile-cart-drawer__footer::before {
    content: 'Secure checkout \2022 Ships from Canada \2022 Support available';
    display: block;
    margin: 0 0 7px;
    color: #050d21;
    font-size: 11px;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
  }

  .pa-mobile-cart-drawer__upsell {
    box-sizing: border-box;
    margin: 0 0 10px;
    padding: 10px;
    border: 1px solid rgba(5, 13, 33, 0.16);
    border-radius: 8px;
    background: #fff8ef;
    color: #111111;
  }

  .pa-mobile-cart-drawer__upsell[hidden] {
    display: none;
  }

  .pa-mobile-cart-drawer__upsell-kicker {
    margin: 0 0 6px;
    color: #c07010;
    font-size: 12px;
    font-weight: 900;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 0;
  }

  .pa-mobile-cart-drawer__upsell-row {
    display: grid;
    grid-template-columns: 50px minmax(0, 1fr) 58px;
    gap: 9px;
    align-items: center;
  }

  .pa-mobile-cart-drawer__upsell-image {
    display: block;
    width: 50px;
    height: 50px;
    border: 1px solid rgba(5, 13, 33, 0.1);
    border-radius: 4px;
    object-fit: cover;
    background: #ffffff;
  }

  .pa-mobile-cart-drawer__upsell-copy {
    min-width: 0;
    overflow: hidden;
  }

  .pa-mobile-cart-drawer__upsell-copy strong,
  .pa-mobile-cart-drawer__upsell-copy span {
    display: block;
    color: #111111;
    line-height: 1.18;
  }

  .pa-mobile-cart-drawer__upsell-copy strong {
    display: -webkit-box;
    overflow: hidden;
    font-size: 14px;
    font-weight: 900;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }

  .pa-mobile-cart-drawer__upsell-price {
    margin-top: 2px;
    overflow: hidden;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.1;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .pa-mobile-cart-drawer__upsell-price,
  .pa-mobile-cart-drawer__upsell-price .woocommerce-Price-amount,
  .pa-mobile-cart-drawer__upsell-price .woocommerce-Price-currencySymbol,
  .pa-mobile-cart-drawer__upsell-price .pa-price-currency-code {
    display: inline !important;
    white-space: nowrap !important;
  }

  .pa-mobile-cart-drawer__upsell-button {
    width: 58px;
    min-width: 0;
    min-height: 40px;
    padding: 8px 10px;
    border: 0;
    border-radius: 6px;
    background: #000000;
    color: #ffffff;
    font-size: 14px;
    font-weight: 900;
    line-height: 1;
    box-shadow: none;
  }

  .pa-mobile-cart-drawer__upsell-button:disabled {
    cursor: wait;
    opacity: 0.7;
  }

  @media (max-width: 390px) {
    .pa-mobile-cart-drawer__footer {
      padding-right: 14px;
      padding-left: 14px;
    }

    .pa-mobile-cart-drawer__upsell {
      padding: 9px;
    }

    .pa-mobile-cart-drawer__upsell-row {
      grid-template-columns: 44px minmax(0, 1fr) 52px;
      gap: 8px;
    }

    .pa-mobile-cart-drawer__upsell-image {
      width: 44px;
      height: 44px;
    }

    .pa-mobile-cart-drawer__upsell-copy strong {
      font-size: 13px;
      line-height: 1.12;
    }

    .pa-mobile-cart-drawer__upsell-copy span {
      font-size: 11px;
    }

    .pa-mobile-cart-drawer__upsell-button {
      width: 52px;
      min-height: 38px;
      padding-right: 8px;
      padding-left: 8px;
      font-size: 13px;
    }
  }

  .pa-mobile-cart-drawer__coupon-panel {
    margin: 0 0 12px;
    border: 1px solid rgba(5, 13, 33, 0.16);
    border-radius: 8px;
    background: #ffffff;
    color: #111111;
  }

  .pa-mobile-cart-drawer__coupon-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 42px;
    padding: 0 12px;
    color: #111111;
    font-size: 15px;
    font-weight: 900;
    line-height: 1.15;
    cursor: pointer;
    list-style: none;
  }

  .pa-mobile-cart-drawer__coupon-summary::-webkit-details-marker {
    display: none;
  }

  .pa-mobile-cart-drawer__coupon-summary::after {
    content: '+';
    color: #111111;
    font-size: 20px;
    font-weight: 900;
    line-height: 1;
  }

  .pa-mobile-cart-drawer__coupon-panel[open] .pa-mobile-cart-drawer__coupon-summary::after {
    content: '-';
  }

  .pa-mobile-cart-drawer__coupon {
    margin: 0;
    padding: 0 12px 12px;
  }

  .pa-mobile-cart-drawer__coupon-label {
    display: block;
    margin: 0 0 7px;
    color: #111111;
    font-size: 14px;
    font-weight: 900;
    line-height: 1.15;
  }

  .pa-mobile-cart-drawer__coupon-row {
    display: grid;
    grid-template-columns: minmax(0, 68%) 118px;
    gap: 8px;
    align-items: stretch;
  }

  .pa-mobile-cart-drawer__coupon-input {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
    min-height: 46px;
    margin: 0;
    padding: 10px 12px;
    border: 1px solid rgba(5, 13, 33, 0.28);
    border-radius: 7px;
    background: #ffffff;
    color: #111111;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    box-shadow: none;
  }

  .pa-mobile-cart-drawer__coupon-input:focus {
    border-color: #111111;
    outline: 2px solid rgba(192, 112, 16, 0.22);
    outline-offset: 1px;
  }

  .pa-mobile-cart-drawer__coupon-button {
    width: 118px;
    min-width: 0;
    min-height: 46px;
    margin: 0;
    padding: 10px 16px;
    border: 0;
    border-radius: 7px;
    background: #000000;
    color: #ffffff;
    font-size: 15px;
    font-weight: 900;
    line-height: 1;
    white-space: nowrap;
    box-shadow: none;
  }

  .pa-mobile-cart-drawer__coupon-button:disabled {
    cursor: wait;
    opacity: 0.7;
  }

  .pa-mobile-cart-drawer__coupon-message {
    margin-top: 8px;
    color: #c07010;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.25;
  }

  .pa-mobile-cart-drawer__coupon-message.is-error {
    color: #b00020;
  }

  .pa-mobile-cart-drawer__coupon-message[hidden],
  .pa-mobile-cart-drawer__coupon-panel[hidden],
  .pa-mobile-cart-drawer__coupon[hidden],
  .pa-mobile-cart-drawer__coupons[hidden] {
    display: none;
  }

  .pa-mobile-cart-drawer__coupons {
    margin: 0 0 10px;
  }

  .pa-mobile-cart-drawer__coupon-applied {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 10px;
    align-items: center;
    min-height: 34px;
    margin-bottom: 8px;
    color: #c07010;
    font-size: 15px;
    font-weight: 900;
    line-height: 1.2;
  }

  .pa-mobile-cart-drawer__coupon-code {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-transform: uppercase;
  }

  .pa-mobile-cart-drawer__coupon-remove {
    margin: 0;
    padding: 4px 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #111111;
    font-size: 13px;
    font-weight: 900;
    line-height: 1;
    text-decoration: underline;
    box-shadow: none;
  }

  .pa-mobile-cart-drawer__coupon-amount {
    color: #c07010;
    white-space: nowrap;
  }

  @media (max-width: 374px) {
    .pa-mobile-cart-drawer__coupon-row {
      grid-template-columns: 1fr;
    }

    .pa-mobile-cart-drawer__coupon-button {
      width: 100%;
    }
  }

  .pa-mobile-cart-drawer__discount,
  .pa-mobile-cart-drawer__subtotal {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 6px;
    color: #111111;
    font-size: 18px;
    line-height: 1.15;
  }

  .pa-mobile-cart-drawer__discount {
    color: #c07010;
    font-size: 13px;
    font-weight: 800;
  }

  .pa-mobile-cart-drawer__discount[hidden] {
    display: none;
  }

  .pa-mobile-cart-drawer__discount strong {
    color: #c07010;
    font-weight: 900;
    white-space: nowrap;
  }

  .pa-mobile-cart-drawer__subtotal {
    margin-bottom: 8px;
    font-size: 22px;
  }

  .pa-mobile-cart-drawer__subtotal strong {
    color: #111111;
    font-weight: 900;
    white-space: nowrap;
  }

  .pa-mobile-cart-drawer__checkout {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 54px;
    border-radius: 8px;
    background: #000000;
    color: #ffffff !important;
    font-size: 20px;
    font-weight: 900;
    line-height: 1.1;
    text-decoration: none !important;
    letter-spacing: 0;
  }

  .pa-mobile-cart-drawer__checkout:hover,
  .pa-mobile-cart-drawer__checkout:focus {
    background: #1a1a1a;
    color: #ffffff !important;
  }

  .pa-mobile-cart-drawer.is-busy .pa-mobile-cart-drawer__body,
  .pa-mobile-cart-drawer.is-busy .pa-mobile-cart-drawer__footer {
    opacity: 0.62;
    pointer-events: none;
  }
}
