   /* html,
    body {
      height: 100%
    } */
    
  /* body {
      min-height: 100vh;
      display: flex;
      flex-direction: column
    } */

    /* .page-content {
      flex: 1 0 auto
    } */


    /* Miktar kontrolü */
    .cart-qty {
      display: inline-flex;
      align-items: center;
      border: 1px solid #e5e7eb;
      border-radius: 10px;
    }

    .qty-btn {
      width: 36px;
      height: 36px;
      border: 0;
      background: #f8fafc;
      font-size: 20px;
      line-height: 1;
      cursor: pointer
    }

    .qty-input {
      width: 44px;
      height: 36px;
      border: 0;
      text-align: center;
      outline: 0
    }

    /* Mobil: tablo -> kart */
    @media (max-width:576px) {
      .cart-table thead {
        display: none
      }

      .cart-table,
      .cart-table tbody,
      .cart-table tr,
      .cart-table td {
        display: block;
        width: 100%;
      }

      .cart-table tr {
        background: #fff;
        border: 1px solid #eef0f2;
        border-radius: 14px;
        padding: 12px 14px;
        margin-bottom: 14px;
        box-shadow: 0 6px 16px rgba(0, 0, 0, .06);
      }

      .cart-table td {
        border: 0;
        padding: 8px 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
      }

      /* Hücre başlığı */
      .cart-table td::before {
        content: attr(data-th);
        font-weight: 600;
        color: #111;
      }

      /* Ürün blok */
      .cart-table td.product {
        display: block;
        padding-top: 0
      }

      .cart-table td.product::before {
        content: none
      }

      /* Adet hizalama */
      .cart-table .qty-td {
        justify-content: flex-start
      }

      .cart-table .qty-td::before {
        margin-inline-end: 8px
      }

      /* Fiyat hücreleri: ₺ + sayı tek parça */
    

      .cart-table td.price-td .unit,
      .cart-table td.price-td .line {
        font-size: 16px;
        display: inline-flex;
        align-items: center;
        white-space: nowrap;
      }

      /* .cart-table td.price-td .unit::before,
      .cart-table td.price-td .line::before {
        content: "₺";
        margin-inline-end: 4px;
        font-size: 16px;
      } */

      /* Sil butonu sağda */
      .cart-table .actions-td {
        justify-content: flex-end
      }

      .cart-table .actions-td::before {
        content: none
      }

      /* Daha kompakt butonlar */
      .qty-btn {
        width: 32px;
        height: 32px
      }

      .qty-input {
        width: 38px;
        height: 32px
      }
    }