 @import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
 @import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');


    .sidebar-panel {
      width: 578px;
      height: auto;
      background: #fff;
      border-radius: 8px;
      display: flex;
      flex-direction: column;
      position: relative;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
      overflow: hidden;
    }

    .pane-box {
        padding: 30px 30px 0px 30px;
    }

    .sidebar-panel-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-family: "Inter", sans-serif;
      font-size: 24px;
      font-weight: 600;
    }

    .sidebar-panel-header button {
      border: none;
      background: none;
      font-size: 30px;
      cursor: pointer;
    }

    .notice {
      background: rgba(79, 31, 255, 0.1);
      color: #6d1fff;
      text-align: center;
      padding: 24px 30px 24px 30px;
      font-family: "Inter", sans-serif;
      font-size: 14px;
      font-weight: 400;
      border-radius: 10px;
      margin: 40px 0px 40px 0px;
    }

    .cart-item {
      display: flex;
      align-items: anchor-center;
      padding: 0px;
      gap: 50px;
      margin: 0px 0px 40px 0px;
    }

    .cart-item img {
      width: 100px;
      border-radius: 6px;
    }

    .cart-info {
      flex: 1;
    }

    .cart-btn {
      border: 1px solid #2222;
      padding: 5px 10px 5px 10px;
      border-radius: 8px;
    }

    .cart-info h4 {
      margin: 0 0 15px;
      font-size: 14px;
      font-weight: 400;
      color: #071b31;
      line-height: 160%;
    }

    .cart-info p {
      margin: 0 !important;
      color: #444;
      font-size: 14px;
      margin: 15px 0px 15px 0px;
    }

    .cart-actions {
      display: flex;
      align-items: center;
      gap: 15px;
      margin-top: 10px;
    }

    .qty-btn {
      width: 28px;
      height: 28px;
      border: none;
      border-radius: 4px;
      background: transparent;
      cursor: pointer;
      font-size: 16px;
      line-height: 26px;
      text-align: center;
    }

    .qty-display {
      min-width: 24px;
      text-align: center;
      font-size: 14px;
    }

    .delete-btn {
      border: none;
      background: none;
      font-size: 18px;
      cursor: pointer;
    }

    .delete-btn img {
      width: 20px;
      padding: 0px;
    }

    .checkout {
      margin-top: auto;
      padding: 20px;
    }

    .checkout button {
      width: 100%;
      padding: 30px 0px 30px 0px;
      font-family: "Lato", sans-serif;
      font-size: 15px;
      font-weight: 500;
      line-height: 19spx;
      border: none;
      border-radius: 10px;
      background: rgba(35, 35, 35, 0.5);
      color: #fff;
      cursor: not-allowed;
    }

    @media (max-width: 390px)  {
      .cart-item {
        gap: 20px;
      }
    }