:root {
      --bg: white;
      --card-bg: linear-gradient(#17C9ED, rgba(0,0,0,0.6));
      --fg: #ffffff;         
      --muted: #e2f8fb;      
      --primary: #ffffff;    
      --chip-bg: rgba(255,255,255,0.2);
      --card-border: #e5e7eb;
      --brand: #0ea5e9;
      --brand-hover: #0284c7;
      --ring: rgba(14, 165, 233, 0.25);
       --shadow: 0 10px 30px rgba(2, 6, 23, 0.08);
      --radius: 20px;
    }

   .container h2{
    font-family: 'Outfit';
    font-weight: 600;
    color: gray;
    font-size: 3rem;
    }
    .our-cars{
      font-size: 1.2rem;
      color: #555;
      margin-bottom: 40px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
      text-align: center;
    }

    .car-card {
      color: var(--fg);
      display: flex;
      flex-direction: column;
      gap: 14px;
      background: var(--card-bg);
      border-radius: 20px;
      padding: 18px;
      box-shadow: 0 12px 30px rgba(0,0,0,.25);
      transition: transform .25s ease, box-shadow .25s ease;
      position: relative;
      overflow: hidden;
      height: 100%;
    }

    .car-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 20px 50px rgba(0,0,0,.3);
    }

    .car-media {
      border-radius: 14px;
      overflow: hidden;
      background: #fff;
    }

    .car-media img {
      width: 100%; 
      height: 200px; 
      object-fit: cover; 
      display: block;
    }

    .car-body {
      flex: 1; display: flex; flex-direction: column; gap: 14px;
    }

    .title h3 {
      margin: 0; font-size: 1.4rem; font-weight: 700; 
    }

    .chips {
      display: flex; gap: 8px; flex-wrap: wrap;
    }

    .chip {
      background: var(--chip-bg);
      color: #fff;
      padding: 4px 10px; border-radius: 999px; font-size: .85rem;
    }

  
    .meta {
      display: flex; gap: 12px; flex-wrap: wrap;
    }

    .meta-item {
      padding: 6px 10px; border-radius: 10px;
      background: rgba(255,255,255,0.15);
      min-width: 110px;
    }

    .label { color: var(--muted); font-size: .75rem; }
    .value { font-weight: 600; }
    .cta {
      margin-top: auto; display: flex; gap: 12px; flex-wrap: wrap;
    }

    .btn {
      border: none; cursor: pointer;
      padding: 10px 16px; border-radius: 12px;
      font-weight: 600;
      transition: .2s;
    }
    
    .btn.primary {
      background: #fff; color: #17C9ED;
    }
    .btn.primary:hover { transform: translateY(-2px);}