.special-offers {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  position: relative;
  background: #fff;
}

.special-offers__title {
  text-align: center;
  font-size: 32px;
  font-weight: 400;
  letter-spacing: 2px;
  margin-bottom: 30px;
  color: #222;
}

/* Tabs */
.special-offers__tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  border-bottom: 1px solid #e0e0e0;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.tab {
  padding: 15px 25px;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: #666;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.tab:hover {
  color: #30363a;
}

.tab.active {
  color: #30363a;
  border-bottom-color: #30363a;
}

/* Cards list */
.special-offers__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Car Card */
.car-card {
  display: grid;
  grid-template-columns: 280px 1fr 250px;
  align-items: center;
  gap: 30px;
  padding: 25px 30px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  position: relative;
  background: #fff;
  transition: box-shadow 0.3s ease;
}

.car-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.car-card__badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #30363a;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 5px 12px;
  letter-spacing: 0.5px;
}

.car-card__image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.car-card__image img {
  max-width: 100%;
  height: auto;
  max-height: 200px;
  object-fit: contain;
}

/* Info section */
.car-card__info {
  padding: 10px 0;
}

.car-card__name {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #222;
}

.car-card__promo {
  font-size: 12px;
  color: #666;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.car-card__specs {
  display: flex;
  gap: 40px;
}

.spec {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.spec__label {
  font-size: 12px;
  color: #999;
}

.spec__value {
  font-size: 14px;
  color: #333;
  font-weight: 500;
}

/* Price section */
.car-card__price {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding-left: 30px;
  border-left: 1px solid #e0e0e0;
}

.price__label {
  font-size: 12px;
  color: #999;
  letter-spacing: 0.5px;
}

.price__value {
  font-size: 20px;
  color: #30363a;
  font-weight: 600;
}

.price__value s {
  text-decoration: line-through;
}

/* Button */
.btn {
  padding: 12px 24px;
  border: none;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.btn--primary {
  background: #30363a;
  color: #fff;
}

.btn--primary:hover {
  background: #1a1f22;
  color: #fff;
}

/* Floating button */
.floating-btn {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background: #ff4757;
  color: #fff;
  padding: 15px 12px;
  text-align: center;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
  border-radius: 8px 0 0 8px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  transition: background 0.3s ease;
}

.floating-btn:hover {
  background: #e84152;
}

/* Responsive */
@media (max-width: 900px) {
  .car-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .car-card__specs {
    justify-content: center;
  }

  .car-card__price {
    border-left: none;
    border-top: 1px solid #e0e0e0;
    padding-left: 0;
    padding-top: 20px;
    align-items: center;
  }

  .car-card__badge {
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 600px) {
  .special-offers__title {
    font-size: 24px;
  }

  .tab {
    padding: 10px 15px;
    font-size: 12px;
  }

  .car-card__specs {
    flex-direction: column;
    gap: 15px;
  }

  .car-card__name {
    font-size: 20px;
  }
}
