 /* ----- SPECIFIC PAGE CSS (overrides or adds to global styles) ----- */
 .models-hero {
   text-align: center;
   padding: 4rem 2rem 3rem;
   background: radial-gradient(ellipse 80% 60% at 50% 20%, rgba(57, 255, 106, 0.08), transparent);
   margin-bottom: 1rem;
 }

 .models-hero-title {
   font-family: var(--font-display, 'Bebas Neue', cursive);
   font-size: clamp(3rem, 8vw, 5.5rem);
   line-height: 1;
   letter-spacing: 2px;
   color: var(--white, #f0fff4);
   text-shadow: 0 0 30px rgba(57, 255, 106, 0.3);
 }

 .models-hero-title span {
   color: var(--green-neon, #39ff6a);
   -webkit-text-stroke: 1.5px var(--green-neon);
   -webkit-text-fill-color: transparent;
 }

 .models-hero-sub {
   font-size: 1.2rem;
   color: var(--text-dim, #97c3a5);
   max-width: 650px;
   margin: 1rem auto 0;
   font-family: var(--font-body, 'DM Sans', sans-serif);
 }

 .filter-bar {
   display: flex;
   flex-wrap: wrap;
   justify-content: center;
   gap: 0.8rem;
   margin: 3rem 2rem 2rem;
   padding: 1rem 0;
   border-bottom: 1px solid rgba(57, 255, 106, 0.2);
 }

 .filter-chip {
   background: rgba(57, 255, 106, 0.08);
   border: 1px solid rgba(57, 255, 106, 0.2);
   border-radius: 60px;
   padding: 0.5rem 1.4rem;
   font-family: var(--font-head, 'Syne', sans-serif);
   font-size: 0.8rem;
   font-weight: 600;
   letter-spacing: 1px;
   text-transform: uppercase;
   color: var(--text-dim);
   cursor: pointer;
   transition: all 0.25s ease;
   backdrop-filter: blur(4px);
   text-decoration: none;
 }

 .filter-chip.active {
   background: var(--green-neon);
   border-color: var(--green-neon);
   color: var(--green-deep);
   box-shadow: 0 0 16px rgba(57, 255, 106, 0.5);
 }

 .filter-chip:hover:not(.active) {
   background: rgba(57, 255, 106, 0.2);
   color: var(--white);
   transform: translateY(-2px);
 }

 .models-grid {
   display: grid;
   grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
   gap: 2rem;
   max-width: 1400px;
   margin: 0 auto;
   padding: 1.5rem 2rem 4rem;
 }

 .model-card {
   background: var(--card-bg, #0c2a1a);
   border-radius: 28px;
   border: 1px solid rgba(57, 255, 106, 0.15);
   overflow: hidden;
   transition: all 0.35s cubic-bezier(0.2, 0.9, 0.4, 1.1);
   backdrop-filter: blur(2px);
   box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.4);
   text-decoration: none;
 }

 .model-card:hover {
   transform: translateY(-12px);
   border-color: var(--green-neon);
   box-shadow: 0 25px 40px -12px rgba(57, 255, 106, 0.25);
 }

 .model-img {
   position: relative;
   height: 300px;
   overflow: hidden;
   background: linear-gradient(145deg, #0a2e1a, #051a0e);
   text-align: center;
 }

 .model-img img {
   height: 100%;
   object-fit: cover;
   transition: transform 0.5s ease;
   opacity: 0.92;
 }

 .model-card:hover .model-img img {
   transform: scale(1.05);
 }

 .model-badge {
   position: absolute;
   top: 1rem;
   right: 1rem;
   background: var(--green-neon);
   color: var(--green-deep);
   font-family: var(--font-head);
   font-size: 0.65rem;
   font-weight: 800;
   letter-spacing: 1px;
   padding: 0.3rem 0.9rem;
   border-radius: 30px;
   backdrop-filter: blur(4px);
   box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
 }

 .model-badge.hot {
   background: var(--accent-gold);
   color: #071f12;
 }

 .model-badge.eco {
   background: #2b7a4b;
   color: #eafff0;
 }

 .model-info {
   padding: 1.5rem 1.4rem 1.6rem;
 }

 .model-name {
   font-family: var(--font-display, 'Bebas Neue');
   font-size: 1.9rem;
   letter-spacing: 1px;
   color: var(--white);
   display: flex;
   justify-content: space-between;
   align-items: baseline;
   flex-wrap: wrap;
   margin-bottom: 0.2rem;
 }

 .model-year {
   font-size: 0.7rem;
   font-family: var(--font-body);
   background: rgba(57, 255, 106, 0.15);
   padding: 0.2rem 0.6rem;
   border-radius: 20px;
   color: var(--green-neon);
 }

 .model-tagline {
   font-size: 0.85rem;
   color: var(--text-dim);
   margin-bottom: 1rem;
   border-left: 2px solid var(--green-neon);
   padding-left: 0.6rem;
 }

 .spec-grid {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 0.8rem;
   background: rgba(0, 0, 0, 0.3);
   padding: 0.8rem 0.6rem;
   border-radius: 20px;
   margin: 1rem 0;
 }

 .spec-item {
   text-align: center;
 }

 .spec-value {
   font-family: var(--font-display);
   font-size: 1.3rem;
   color: var(--green-neon);
   line-height: 1.2;
 }

 .spec-label {
   font-size: 0.65rem;
   text-transform: uppercase;
   letter-spacing: 1px;
   color: var(--text-dim);
 }

 .model-price {
   display: flex;
   justify-content: space-between;
   align-items: center;
   margin-top: 1.2rem;
   padding-top: 0.8rem;
   border-top: 1px dashed rgba(57, 255, 106, 0.25);
 }

 .price {
   font-family: var(--font-display);
   font-size: 1.7rem;
   color: var(--accent-gold);
 }

 .price small {
   font-size: 0.75rem;
   font-family: var(--font-body);
   color: var(--text-dim);
 }

 .btn-card {
   background: transparent;
   border: 1.5px solid var(--green-neon);
   padding: 0.5rem 1.2rem;
   border-radius: 40px;
   font-family: var(--font-head);
   font-weight: 700;
   font-size: 0.75rem;
   letter-spacing: 1px;
   color: var(--green-neon);
   transition: all 0.2s;
   cursor: pointer;
   text-decoration: none;
   display: inline-flex;
   align-items: center;
   gap: 6px;
 }

 .btn-card:hover {
   background: var(--green-neon);
   color: var(--green-deep);
   box-shadow: 0 0 12px var(--green-neon);
 }

 .no-results {
   text-align: center;
   padding: 4rem;
   font-size: 1.3rem;
   color: var(--text-dim);
   grid-column: 1 / -1;
 }

 @keyframes fadeInUp {
   from {
     opacity: 0;
     transform: translateY(30px);
   }

   to {
     opacity: 1;
     transform: translateY(0);
   }
 }

 .model-card {
   animation: fadeInUp 0.5s ease forwards;
   opacity: 0;
 }

 .model-card:nth-child(1) {
   animation-delay: 0.02s;
 }

 .model-card:nth-child(2) {
   animation-delay: 0.06s;
 }

 .model-card:nth-child(3) {
   animation-delay: 0.1s;
 }

 .model-card:nth-child(4) {
   animation-delay: 0.14s;
 }

 .model-card:nth-child(5) {
   animation-delay: 0.18s;
 }

 .model-card:nth-child(6) {
   animation-delay: 0.22s;
 }

 .model-card:nth-child(7) {
   animation-delay: 0.26s;
 }

 .model-card:nth-child(8) {
   animation-delay: 0.3s;
 }

 .model-card:nth-child(9) {
   animation-delay: 0.34s;
 }

 .model-card:nth-child(10) {
   animation-delay: 0.38s;
 }

 @media (max-width: 680px) {
   .models-grid {
     grid-template-columns: 1fr;
     padding: 1rem;
     gap: 1.5rem;
   }

   .filter-bar {
     gap: 0.5rem;
     margin: 1rem 0.5rem;
   }

   .filter-chip {
     padding: 0.4rem 1rem;
     font-size: 0.7rem;
   }

   .model-name {
     font-size: 1.6rem;
   }
 }