  .package-card {
    background: #fff;
    border: 1px solid #e7e7e7;
    border-radius: 18px;
    overflow: hidden;
    transition: .25s;
    box-shadow: 0 3px 10px rgba(0, 0, 0, .04);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.package-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.package-title {
    font-size: 18px;
    font-weight: 600;
    color: #5c6670;
    margin-bottom: 25px;
    line-height: 1.4;
}

.package-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}

.package-availability {
    margin-bottom: 0;
}

.package-content > *:last-child {
    margin-top: auto;
}
  
  .cart-toolbar {
      display: flex;
      justify-content: flex-end;
      align-items: center;
      margin-bottom: 25px;
  }

  .cart-link {
      position: relative;
      text-decoration: none;
      color: #6c757d;
      font-size: 32px;
      display: inline-block;
  }

  .cart-badge {
      position: absolute;
      top: -8px;
      right: -12px;
      min-width: 22px;
      height: 22px;
      padding: 0 4px;
      border-radius: 50%;
      background: #dc3545;
      color: #fff;
      font-size: 11px;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
  }

  .package-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
      gap: 30px;
      margin-top: 30px;
      align-items: start;
  }

  .package-card {
      background: #fff;
      border: 1px solid #e7e7e7;
      border-radius: 18px;
      overflow: hidden;
      transition: .25s;
      box-shadow: 0 3px 10px rgba(0, 0, 0, .04);
  }

  .package-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 12px 30px rgba(0, 0, 0, .12);
  }

  .package-image-wrap {
      padding: 30px 20px 10px;
      background: #fff;
      text-align: center;
      height: auto;
  }

  .package-card img {
      max-height: 240px;
      width: auto;
      max-width: 100%;
      object-fit: contain;
  }

  .package-content {
      padding: 20px;
  }

  .package-title {
      font-size: 18px;
      font-weight: 600;
      color: #5c6670;
      margin-bottom: 25px;
      line-height: 1.4;
  }

  .package-meta {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 18px;
  }

  .package-price {
      color: #216BEA;
      font-size: 22px;
      font-weight: 700;
  }

  .package-qty {
      color: #666;
      font-size: 14px;
  }

  .add-cart-btn {
      width: 100%;
      border: 0;
      border-radius: 10px;
      background: #216BEA;
      color: white;
      padding: 13px;
      font-size: 15px;
      font-weight: 600;
      cursor: pointer;
      transition: .2s;
  }

  .add-cart-btn:hover {
      background: #1257cf;
  }

  body {
      background: #f7f7f7;
  }

  .package-pagination {
      margin-top: 35px;
      text-align: center;
  }

  .package-pagination a {
      display: inline-block;
      padding: 8px 14px;
      margin: 0 4px;
      text-decoration: none;
      border: 1px solid #ddd;
      border-radius: 6px;
      background: #fff;
      color: #333;
      transition: .2s;
  }

  .package-pagination a:hover {
      background: #f5f5f5;
  }

  .package-pagination a.active {
      background: #216BEA;
      border-color: #216BEA;
      color: #fff;
      font-weight: 600;
  }