.card-title {
        font-weight: bold;
        color: #333;
    }

    .card-text {
        font-size: 14px;
        color: #666;
    }

    .btn-primary {
        background-color: #fec605;
        border-color: #fec605;
        transition: all 0.3s ease;
    }

    .btn-primary:hover {
        background-color: #e6ac00;
        border-color: #e6ac00;
    }

    .card {
        border: 1px solid #fec605;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .card:hover {
        transform: translateY(-5px);
        box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.2);
    }

    .nav-tabs .nav-link.active {
        background-color: #fec605;
        color: white;
    }
	/* Top Icons */
    .top-icons {
      display: flex;
      justify-content: space-around;
      text-align: center;
      padding: 10px 0;
    }

    .top-icons div {
      font-size: 12px;
      color: #bbb;
    }

    .top-icons .active {
      color: #fff;
    }

    .circle-icon {
      width: 55px;
      height: 55px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: auto;
      background: linear-gradient(135deg, #00c6ff, #0072ff);
      color: #fff;
      font-size: 20px;
    }

    /* Toggle */
    .toggle-box {
      background: #1c2b3a;
      border-radius: 30px;
      padding: 4px;
      display: flex;
      margin: 15px 0;
    }

    .toggle-btn {
      flex: 1;
      border: none;
      padding: 8px;
      border-radius: 30px;
      background: transparent;
      color: #aaa;
    }

    .toggle-btn.active {
      background: linear-gradient(90deg, #00c6ff, #7b2ff7);
      color: #fff;
    }

    /* Category Pills */
    .category-pills {
      display: flex;
      gap: 10px;
      overflow-x: auto;
      margin-bottom: 10px;
    }

    .pill {
      background: #f2f2f2;
      color: #000;
      border-radius: 12px;
      padding: 8px 14px;
      font-size: 13px;
      white-space: nowrap;
    }

    /* Rental Companies */
    .company-tabs {
      display: flex;
      gap: 8px;
      overflow-x: auto;
      margin-bottom: 15px;
    }

    .company-tabs span {
      background: #f2f2f2;
      color: #000;
      padding: 6px 12px;
      border-radius: 20px;
      font-size: 13px;
      white-space: nowrap;
    }

    .company-tabs .active {
      background: #0d6efd;
      color: #fff;
	  padding: 3px;
    border-radius: 7px;
    }

    /* Cards */
    .rental-card {
      border-radius: 15px;
      padding: 12px;
      position: relative;
      background: #111;
      color: #fff;
      box-shadow: 0 0 10px rgba(0,255,255,0.2);
      margin-bottom: 15px;
    }

    .rental-card img {
      width: 100%;
      height: 120px;
      object-fit: contain;
    }

    .price {
      color: #00ffcc;
      font-weight: bold;
    }

    .badge-brand {
      position: absolute;
      top: 10px;
      right: 10px;
      background: #000;
      padding: 3px 8px;
      border-radius: 10px;
      font-size: 12px;
    }
.pill, .tab { cursor: pointer; }
.pill.active, .tab.active {
    background: #007bff;
    color: white;
}