/* ROOT */
#cart-drawer {
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
  }
  
  #cart-drawer.active {
    pointer-events: auto;
  }
  
  /* OVERLAY */
  #cart-drawer .kh-drawer__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.45);
    opacity: 0;
    transition: opacity .3s ease;
  }
  
  #cart-drawer.active .kh-drawer__overlay {
    opacity: 1;
  }
  
  /* DRAWER */
  #cart-drawer .kh-drawer__inner {
    position: absolute;
    top: 0;
    right: 0;
    width: 35%;
    max-width: 100%;
    height: 100%;
    background: #fff;
    transform: translateX(100%);
    transition: transform .35s ease;
    display: flex;
    flex-direction: column;
  }
  
  #cart-drawer.active .kh-drawer__inner {
    transform: translateX(0);
  }
  
  /* HEADER */
  #cart-drawer .kh-drawer__header {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0px;
}

    #cart-drawer .kh-drawer__title {
    padding: 1.5rem;
    font-size: 28px;
    font-weight: 600;
    
  }
  #cart-drawer .kh-drawer__close {
    border: none;
    background: none;
    font-size: 60px;
    padding: 10px 20px;
    font-weight: 100;
  }

  /* CONTENT */
  #cart-drawer .kh-drawer__contents {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
  }
  
  /* CART ITEMS */
  #cart-drawer .kh-cart-item {
    display: grid;
    grid-template-columns: 80px 1fr auto;
    gap: 22px;
    margin-bottom: 40px;
  }
  
  #cart-drawer .kh-cart-item__media img {
    width: 80px;
    border-radius: 8px;
  }
  
  #cart-drawer .kh-cart-item__name {
    font-weight: 500;
    font-size: 20px;
    color: var(--accets-color);
    text-decoration: none;
    text-align: left;
    line-height: 1.2;
    font-family: "Poppins", sans-serif;
  }
  
  #cart-drawer .kh-cart-item__price {
    margin: 10px 0;
  }

  #cart-drawer .kh-cart-item__total {
    color: var(--accets-color);
    font-size: 20px;
    margin-bottom: 0;
    font-weight: 400;
  }

  #cart-drawer .kh-cart-item__quantity {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  
  #cart-drawer input.qty,
  #cart-drawer input[type="number"] {
    width: 60px;
    padding: 6px;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-align: center;
  }
  
  /* REMOVE */
  #cart-drawer .kh-drawer-remove {
    color: #c0392b;
    font-size: 13px;
    text-decoration: none;
  }
  
  /* FOOTER */
  #cart-drawer .kh-drawer__footer {
    border-top: 1px solid #eee;
    padding: 20px;
  }
  
  #cart-drawer .kh-totals__value {
    color: var(--accets-color);
    font-size: 22px;
    margin-bottom: 0;
    font-weight: 600;
  }

  #cart-drawer .kh-drawer-checkout {
    display: block;
    width: 100%;
    padding: 14px;
    text-align: center;
    background-color: var(--accets-color);
    color: var(--white);
    padding: 14px 30px;
    border-radius: 40px;
    text-transform: capitalize;
    font-size: 20px;
  }
  
  /* EMPTY */
  #cart-drawer .kh-empty-cart {
    text-align: center;
    padding: 40px 0;
  }
  

  /* QTY WRAPPER */
#cart-drawer .kh-qty {
    display: inline-flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 6px;
    overflow: hidden;
    width: max-content;
  }
  
  /* BUTTONS */
  #cart-drawer .kh-qty__btn {
    width: 32px;
    height: 32px;
    background: #f5f5f5;
    border: none;
    font-size: 18px;
    cursor: pointer;
    line-height: 1;
  }
  
  #cart-drawer .kh-qty__btn:hover {
    background: #eaeaea;
  }
  
  /* INPUT */
  #cart-drawer .kh-qty__input {
    width: 42px;
    height: 32px;
    border: none;
    text-align: center;
    font-size: 14px;
    outline: none;
  }
  
  /* REMOVE SPINNERS */
  #cart-drawer .kh-qty__input::-webkit-outer-spin-button,
  #cart-drawer .kh-qty__input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }
  
  #cart-drawer .kh-qty__input {
    -moz-appearance: textfield;
  }
  

  /* head WRAPPER */
#cart-drawer .kh-drawer__head {
    border-bottom: 1px solid #eee;
    padding: 0px 50px;
    background: #fff;
font-weight: bold;
  }
  
  /* head ROW */
  #cart-drawer .kh-drawer__head-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
  }
  

  /* FOOTER WRAPPER */
#cart-drawer .kh-drawer__footer {
    border-top: 1px solid #eee;
    padding: 20px;
    background: #fff;
  }
  
  /* FOOTER ROW */
  #cart-drawer .kh-drawer__footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
  }
  
  
  /* TAX NOTE */
  #cart-drawer .kh-tax-note {
    display: block;
    font-size: 12px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 14px;
  }
  
  #cart-drawer .kh-tax-note a {
    color: inherit;
    text-decoration: underline;
  }
  
  .woocommerce a.added_to_cart {
    display: none !important
  }