  .overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1000;
    display: flex;
    justify-content: flex-end;
    transform: translateX(0);
    transition: transform 0.4s ease-in-out;
  }

  .hidden {
    transform: translateX(-100%);

  }

  /* Sidebar */
  .cart-sidebar {
    width: 380px;
    background: #fff;
    display: flex;
    flex-direction: column;
  }

  /* Header */
  .cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    font-weight: bold;
    border-bottom: 1px solid #eee;
  }

  #closeCartBtn {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
  }

  /* Items (Scrollable) */
  .cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
  }

  /* Single Item */
  .cart-item {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
  }

  .cart-item img {
    width: 70px;
    height: 90px;
    object-fit: cover;
  }

  .item-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .item-remove {
    cursor: pointer;
    color: #999;
  }

  /* Footer */
  .cart-footer {
    padding: 16px;
    border-top: 1px solid #eee;
  }

  .cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 18px;
    margin-bottom: 12px;
  }

  .view-cart {
    display: block;
    text-align: center;
    padding: 10px;
    background: #f2f2f2;
    margin-bottom: 10px;
    text-decoration: none;
    color: #000;
  }

  #sendWhatsApp,
  .order-btn {
    width: 100%;
    padding: 12px;
    background: orange;
    color: #fff;
    border: none;
    font-size: 16px;
    cursor: pointer;
  }