@charset "utf-8";
/* CSS Document */
.car-rental-section {
  padding: 70px 20px;
  background: #f7f8fa;
}
.car-container {
  max-width: 1200px;
  margin: auto;
}
.section-title {
  text-align: center;
  margin-bottom: 35px;
}
.section-title span {
  font-size: 15px;
  color: #d29b38;
  font-weight: 600;
}
.section-title h2 {
  font-size: 32px;
  margin: 8px 0;
  color: #222;
}
.section-title p {
  color: #777;
  margin: 0;
}
/* 分類按鈕 */
.car-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 35px;
}
.car-tab {
  border: 1px solid #ddd;
  background: #fff;
  padding: 12px 35px;
  border-radius: 30px;
  cursor: pointer;
  font-size: 16px;
  transition: .3s;
}
.car-tab:hover,
.car-tab.active {
  background: #222;
  color: #fff;
  border-color: #222;
}
/* 車款排列 */
.car-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
/* 車款卡片 */
.car-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,.07);
  transition: .3s;
}
.car-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,.12);
}
/* 車輛圖片 */
.car-image {
  position: relative;
  background: #f2f2f2;
  height: 210px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.car-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.car-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #222;
  color: #fff;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 13px;
}
/* 車款資訊 */
.car-info {
  padding: 20px;
}
.car-info h3 {
  font-size: 19px;
  margin: 0 0 8px;
  color: #222;
}
.car-feature {
  font-size: 14px;
  color: #888;
  margin-bottom: 18px;
}
/* 價格 */
.price-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  padding: 15px 0;
  margin-bottom: 18px;
}
.price-box div:first-child {
  border-right: 1px solid #eee;
}
.price-box div {
  padding-left: 10px;
}
.price-box small {
  display: block;
  color: #888;
  margin-bottom: 4px;
}
.price-box strong {
  font-size: 20px;
  color: #d18b24;
}
.price-box strong span {
  font-size: 12px;
  font-weight: normal;
  color: #777;
}
/* 預約按鈕 */
.car-btn {
  display: block;
  text-align: center;
  background: #222;
  color: #fff;
  text-decoration: none;
  padding: 12px;
  border-radius: 7px;
  transition: .3s;
}
.car-btn:hover {
  background: #d18b24;
}
/* 手機版 */

@media (max-width: 768px) {

  .car-rental-section {
    padding: 45px 15px;
  }

  .section-title h2 {
    font-size: 25px;
  }

  .car-tabs {
    gap: 6px;
  }

  .car-tab {
    padding: 10px 22px;
    font-size: 15px;
  }

  .car-list {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .car-image {
    height: 190px;
  }
}
