#CartDrawer {
  .drawer__header {
    .drawer__heading {
      font-size: 44px;
      line-height: 1.2;
      color: #312706;
    }
    .drawer__close {
      .svg-wrapper {
        width: unset;
        height: unset;
      }
    }
  }
  .drawer__inner {
    width: 50rem;
    background: #f1ecdc;
    .drawer__cart-items-wrapper {
      .cart-items {
        .cart-item {
          padding: 10px 0;
          border-top: 1px solid #31270633;
          border-bottom: 1px solid #31270633;
          &:not(:first-child) {
            margin-top: -1px;
          }
        }
      }
    }

    .cart-item__details {
      .cart-item__name {
        font-family: "NectoMono";
        font-size: 16px;
        line-height: 1.4;
        color: #312706;
      }
      .product-option {
        font-family: "NectoMono";
        font-size: 13px;
        line-height: 1.4;
        color: #312706;
      }
    }
    .cart-item__quantity {
      .cart-item__quantity-wrapper {
        justify-content: space-between;
        align-items: center;
        .cart-item__price-wrapper {
          .price {
            font-family: "NectoMono";
            font-size: 16px;
            line-height: 1.4;
            color: #312706;
          }
        }
      }
      quantity-input.cart-quantity {
        background: transparent;
        &:before,
        &:after {
          content: none;
        }
      }
      .quantity__input {
        font-family: "NectoMono";
        font-size: 14px;
        line-height: 1.5;
        color: #312706;
        &:focus,
        &:focus-visible {
          background: transparent;
        }
      }
      .svg-wrapper {
        width: unset;
        height: unset;
      }
    }
    .cart-item__remove {
      cart-remove-button {
        justify-content: flex-end;
        button {
          color: #312706;
          &:hover {
            color: #312706;
          }
        }
      }
    }
    .drawer__footer {
      border: none;
      .cart-drawer__footer {
        .totals {
          justify-content: flex-end;
          .totals__total,
          .totals__total-value {
            font-family: "NectoMono";
            font-size: 18px;
            line-height: 150%;
            color: #312706;
          }
        }
        .tax-note {
          text-align: right;
          font-size: 16px;
          line-height: 160%;
          color: #312706;
          opacity: 0.5;
        }
      }
      .cart__ctas {
        flex-direction: column;
        a {
          display: block;
          text-decoration: none;
          font-size: 14px;
          line-height: 150%;
          text-align: center;
          border: 1px solid #e43d25;
          font-family: "NectoMono";
          padding: 25px 0;
        }
        .to__cart {
          background: #e43d25;
          color: #fff;
        }
        .to__all {
          background: #f1ecdc;
          color: #312706;
        }
      }
    }
  }
}
