* {
  margin: 0;
  padding: 0;
  box-sizing: border-box; }

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #667eea;
  min-height: 100vh;
  color: #333; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  margin-bottom: 10px; }

header {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2); }

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap; }

.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3); }

.search-container {
  display: flex;
  gap: 10px;
  margin-top: 10px;
  flex-wrap: wrap; }

.search-input {
  padding: 10px 15px;
  border: none;
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.9);
  min-width: 200px;
  font-size: 14px; }

.search-btn {
  padding: 10px 20px;
  background: #4169E1;
  color: white;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s ease; }

		/*
        .search-btn:hover {
            background: $color-3;
            transform: translateY(-2px);
        } */
.filters {
  background: rgba(255, 255, 255, 0.95);
  padding: 20px;
  border-radius: 15px;
  margin-bottom: 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1); }

.filter-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 15px; }

.filter-group select {
  width: 100%;
  padding: 10px;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 14px;
  background: white; }

.filter-group select:focus {
  outline: none;
  border-color: #4169E1; }

.cars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-bottom: 3rem; }

.car-page {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease; }

.car-page-buttons {
  text-align: center; }

.car-page-image {
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #3B82F6, #1E40AF);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 3rem;
  position: relative;
  overflow: hidden; }

.car-page-image > img {
  width: 100%; }

.car-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  cursor: pointer;
  max-width: 25rem; }

/*
        .car-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.25);
        }
*/
.car-image {
  width: 100%;
  height: 200px;
  background: linear-gradient(45deg, #3B82F6, #1E40AF);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 3rem;
  position: relative;
  overflow: hidden; }

.car-image > img {
  position: absolute;
  width: 100%; }

.car-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0; }

.car-details {
  padding: 20px; }

.car-title {
  font-size: 1.3rem;
  font-weight: bold;
  color: #1E40AF;
  margin-bottom: 8px;
  text-align: center; }

.car-title-page {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 8px; }

.car-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 15px 0;
  font-size: 0.9rem;
  color: #64748b; }

.car-specs-page {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  margin: 15px 0;
  font-size: 0.9rem;
  color: #64748b; }

.spec-item-page {
  display: flex;
  align-items: center;
  gap: 5px;
  margin: auto; }

.spec-item {
  display: flex;
  align-items: center;
  gap: 5px; }

.car-price {
  font-size: 1.5rem;
  font-weight: bold;
  color: #059669;
  margin: 15px 0; }

.car-price-table {
  font-size: 1.5rem;
  font-weight: bold;
  color: #059669; }

.contact-btn {
  width: 100%;
  padding: 12px;
  background: linear-gradient(45deg, #4169E1, #1E40AF);
  color: white;
  border: none;
  border-radius: 10px;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease; }

.info-btn {
  width: 75%;
  padding: 12px;
  margin: 15px;
  background: linear-gradient(45deg, #4169E1, #1E40AF);
  color: white;
  border: none;
  border-radius: 10px;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center; }

/*
        .contact-btn:hover {
            background: linear-gradient(45deg, $color-grad-end, $color-3);
            transform: translateY(-2px);
        } */
.status-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 5px 10px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: bold;
  text-transform: uppercase; }

.available {
  background: #10B981;
  color: white; }

.sold {
  background: #EF4444;
  color: white; }

.pending {
  background: #F59E0B;
  color: white; }

.certified-pre-owned, .used {
  background: linear-gradient(45deg, #1E40AF, #1E3A8A);
  color: white; }

.new {
  background: #10B981;
  color: white; }

@media (max-width: 768px) {
  .container {
    padding: 0 15px; }

  .header-content {
    flex-direction: column;
    gap: 15px; }

  .search-container {
    width: 100%;
    justify-content: center; }

  .search-input {
    min-width: 250px; }

  .cars-grid {
    grid-template-columns: 1fr;
    gap: 20px; }

  .filter-grid {
    grid-template-columns: 1fr 1fr; } }
.page-gallery {
  padding: 10px;
  text-align: center; }

@media (max-width: 480px) {
  .logo {
    font-size: 1.5rem; }

  .search-input {
    min-width: 200px; }

  .filter-grid {
    grid-template-columns: 1fr; }

  .car-specs {
    grid-template-columns: 1fr; } }
.specs-table {
  width: 100%;
  border-collapse: collapse; }

.specs-table th,
.specs-table td {
  text-align: left;
  padding: 0.75rem;
  border-bottom: 1px solid #ccc; }

.specs-table th {
  background-color: #f4f4f4;
  width: 40%; }

@media (max-width: 600px) {
  .specs-table, .specs-table thead, .specs-table tbody, .specs-table th, .specs-table td, .specs-table tr {
    display: block;
    width: 100%; }

  .specs-table th {
    background-color: transparent;
    font-weight: bold; }

  .specs-table td {
    padding-left: 0;
    border: none; }

  .specs-table tr {
    margin-bottom: 1rem;
    border-bottom: 1px solid #ddd; } }
.pswp img {
  max-width: none;
  object-fit: contain; }

.click_coa {
  font-size: 1em;
  text-align: center;
  color: #64748b; }

.buy-coa {
  font-size: 2em;
  font-weight: bold;
  text-align: center;
  color: white;
  margin: 5px; }
