.used-car-page {
  background: #fff;
}

/* —— Hero —— */
.uc-hero {
  position: relative;
  height: 24.4rem;
  overflow: hidden;
  background: #feefea;
}

.uc-hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* —— Catalog / Search —— */
.uc-catalog {
  position: relative;
  padding: 2.4rem 2rem 0;
  background: linear-gradient(180deg, #feefea 0%, #fffcf8 48%, #fff5f0 100%);
}

.uc-catalog::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7.4rem;
  width: 100%;
  height: 7.4rem;
  background: url(../../assets/images/rental-bg-1.png) no-repeat center center / 100% 100%;
}

.uc-search {
  padding: 1.6rem 1.6rem 2.4rem;
  background: #fff;
  border: 0.1rem solid #333;
  border-radius: 0.8rem;
  box-shadow: 0 0.4rem 0 rgba(0, 0, 0, 0.15);
  text-align: center;
}

.uc-search h2 {
  color: #333;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 2.8rem;
}

.uc-search>p {
  margin: 1rem 0 0;
  color: #666;
  font-size: 1.2rem;
  line-height: 2.2rem;
  text-align: center;
}

.uc-filter {
  display: grid;
  gap: 0.8rem;
  margin-top: 2.4rem;
  text-align: left;
}

.uc-filter .field span {
  color: #333;
  font-size: 1.4rem;
  line-height: 2.4rem;
}

.uc-filter .field select {
  border-color: #999;
}

.uc-search-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18rem;
  height: 4.8rem;
  margin: 2rem auto 0;
  padding: 0 3.6rem;
  border: 0.2rem solid #fff;
  border-radius: 999px;
  background: linear-gradient(104deg, #f86864 0%, #ff4d47 100%);
  box-shadow: 0.2rem 0.4rem 0 rgba(0, 0, 0, 0.4);
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
}

.uc-clear-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18rem;
  height: 4.4rem;
  margin: 1.2rem auto 0;
  padding: 0 2rem;
  border: 0.1rem solid #ff4d47;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0.2rem 0.4rem 0 rgba(0, 0, 0, 0.15);
  color: #ff4d47;
  font-size: 1.3rem;
  font-weight: 700;
}

.uc-clear-btn[hidden] {
  display: none !important;
}

/* —— Car cards —— */
.uc-cars {
  display: grid;
  gap: 1.2rem;
  margin-top: 2rem;
}

.uc-cars.is-empty,
.uc-cars.is-loading {
  display: block;
  padding: 2.4rem 1rem;
  color: var(--h5-muted);
  font-size: 1.3rem;
  text-align: center;
}

.uc-car {
  display: block;
  padding: 1.2rem;
  background: #fff;
  border-radius: 0.8rem;
  color: inherit;
  text-decoration: none;
}

.uc-car .thumb {
  width: 100%;
  aspect-ratio: 360 / 260;
  overflow: hidden;
  border-radius: 0.8rem;
  background: #f4f4f4;
}

.uc-car .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.uc-car h3 {
  margin: 1.2rem 0 0.8rem;
  color: #333;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 2.4rem;
}

.uc-car .meta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.uc-car .meta>div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.2rem;
  padding-bottom: 1rem;
  border-bottom: 0.1rem solid #e8e8e8;
  color: #666;
  font-size: 1.4rem;
  line-height: 2rem;
}

.uc-car .meta>div:last-of-type {
  border-bottom: 0;
  padding-bottom: 0;
}

.uc-car .meta strong {
  color: #666;
  font-weight: 400;
  text-align: right;
}

.uc-car .meta .is-total strong {
  color: #ff4d47;
  font-size: 1.8rem;
  font-weight: 700;
}

.uc-car .more {
  display: inline-block;
  margin-top: 1rem;
  color: #ff4d47;
  font-size: 1.4rem;
  line-height: 2rem;
}

/* —— Pager —— */
.uc-pager {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  margin-top: 2rem;
}

.uc-pager button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 4.8rem;
  height: 4.8rem;
  padding: 0 1.4rem;
  border: 0.1rem solid #ff4d47;
  background: #fff;
  color: #333;
  font-size: 1.4rem;
  line-height: 2rem;
}

.uc-pager button.is-prev {
  background: #ff4d47;
  color: #fff;
}

.uc-pager button.is-next {
  background: #fff;
  color: #333;
}

.uc-pager button:disabled {
  opacity: 0.35;
}

.uc-pager .page-num {
  color: #ff4d47;
  font-size: 1.4rem;
  font-weight: 700;
}

.uc-pager .page-total {
  color: #333;
  font-size: 1.4rem;
}

/* —— Section heads —— */
.uc-head {
  max-width: 30rem;
  margin: 0 auto 1.6rem;
  text-align: center;
}

.uc-head h2 {
  color: #333;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 2.8rem;
}

.uc-title-bar {
  display: block;
  width: 24rem;
  height: 0.9rem;
  margin: 0.8rem auto 0;
  object-fit: contain;
}

.uc-head p {
  margin-top: 0.8rem;
  color: #666;
  font-size: 1.2rem;
  line-height: 2.2rem;
}

/* —— Flow —— */
.uc-flow {
  padding: 6rem 2rem 0;
  /* background: linear-gradient(180deg, #fffcef 0%, #fffae3 100%); */
}


.uc-slider {
  position: relative;
  padding: 0 0.4rem;
}

.uc-slide {
  display: none;
  text-align: center;
}

.uc-slide.is-on {
  display: block;
}

.uc-slide img {
  display: block;
  width: 22rem;
  height: 22rem;
  margin: 0 auto;
  object-fit: contain;
}

.uc-slide .uc-no {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  margin: 0.8rem auto 0;
  border-radius: 999px;
  background: #ff4d47;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 2rem;
}

.uc-slide h3 {
  margin-top: 0.8rem;
  color: #333;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 2.8rem;
}

.uc-slide p {
  max-width: 28rem;
  margin: 0.8rem auto 0;
  color: #666;
  font-size: 1.2rem;
  line-height: 2.2rem;
}

.uc-nav {
  display: flex;
  justify-content: space-between;
  position: absolute;
  left: 0;
  right: 0;
  top: 10rem;
  pointer-events: none;
}

.uc-nav button {
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  width: 2rem;
  height: 2rem;
  padding: 0;
  color: #333;
}

.uc-nav .iconfont {
  font-size: 2rem;
  line-height: 1;
}

.uc-nav button:active {
  color: #ff4d47;
}

/* —— Points —— */
.uc-points-sec {
  padding: 2rem 1.6rem 2rem;
  background: linear-gradient(180deg, #FFFCEF 0%, #FFFAE3 50%, #FFFCEF 100%);
  position: relative;
  margin-top: 7.4rem;
  margin-bottom: 7.4rem;
}

.uc-points-sec::before {
  content: "";
  position: absolute;
  left: 0;
  top: -7.4rem;
  width: 100%;
  height: 7.4rem;
  background: url(../../assets/images/base-yellow-top-bg.png) no-repeat center center / 100% 100%;
}

.uc-points-sec::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7.4rem;
  width: 100%;
  height: 7.4rem;
  background: url(../../assets/images/bg-yellow-bottom.png) no-repeat center center / 100% 100%;

}

.uc-points {
  display: grid;
  gap: 1rem;
}

.uc-point {
  display: grid;
  grid-template-columns: 12.8rem 1fr;
  align-items: center;
  gap: 0.8rem;
  min-height: 16rem;
  padding: 1.6rem 2.6rem 1.6rem 3.4rem;
  background: #fff;
  border-radius: 10rem;
}

.uc-point img {
  width: 10rem;
  height: 10rem;
  margin-left: -0.8rem;
  object-fit: contain;
}

.uc-point h3 {
  color: #333;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 2.4rem;
}

.uc-point p {
  margin-top: 0.8rem;
  color: #666;
  font-size: 1.2rem;
  line-height: 2.2rem;
}

/* —— CTA —— */
.used-car-page .bottom-cta {
  margin-top: 3.2rem;
}

.used-car-page .bottom-cta .btn-blue {
  background: linear-gradient(105deg, #78b1ff 0%, #1562ff 100%);
  color: #fff;
}

.used-car-page .bottom-cta .btn-blue .btn-arrow {
  background: #fff;
  color: #1562ff;
}

.used-car-page .bottom-cta .btn-green>img {
  width: 2.2rem;
  height: 2.2rem;
  flex-shrink: 0;
  object-fit: contain;
}