/* Home Collection Slider — front.css */

.hcs-section {
  padding: 50px 0 70px;
  background-color: #f6f4f2;
}

.hcs-container {
  padding-left: 15px;
  padding-right: 15px;
}

.hcs-title {
  color: #000;
  font-family: 'FP1', serif;
  font-size: 34px;
  line-height: 46px;
  letter-spacing: 1px;
  margin: 0 0 10px;
  text-align: center;
  font-weight: normal;
}

/* Slider wrapper */
.hcs-slider {
  width: 100%;
  overflow: hidden;
}

.hcs-slider .swiper-wrapper {
  padding: 20px 0;
}

/* Slide card */
.hcs-slider .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: stretch;
  background: #fff;
  border-radius: 8px;
  text-align: center;
}

.hcs-card {
  display: block;
  width: 100%;
  text-decoration: none;
  color: inherit;
  border-radius: 8px;
  transition: box-shadow 0.3s;
}

.hcs-card:hover {
  box-shadow: 0 2px 8px rgba(99, 99, 99, 0.2);
}

/* Card image */
.hcs-card__image {
  display: block;
  width: 100%;
  height: 270px;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
}

/* Card body */
.hcs-card__body {
  padding: 30px 15px 20px;
  min-height: 160px;
}

.hcs-card__title {
  font-family: 'FP1', serif;
  font-size: 18px;
  font-weight: normal;
  line-height: 24px;
  letter-spacing: 1px;
  color: #000;
  margin: 0;
}

.hcs-card__desc {
  font-family: 'FP2', sans-serif;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0.3px;
  color: gray;
  margin: 12px 0 20px;
}

.hcs-card__btn {
  display: inline-block;
  padding: 8px 16px;
  border: 1px solid #dab772;
  background: transparent;
  color: #dab772;
  font-size: 14px;
  border-radius: 4px;
  cursor: pointer;
}

/* Pagination */
.hcs-pagination {
  text-align: center;
  margin-top: 10px;
}

.hcs-pagination .swiper-pagination-bullet-active {
  background: #dab772;
}

/* Responsive */
@media (max-width: 768px) {
  .hcs-slider .swiper-slide {
    width: 70%;
  }

  .hcs-container {
    padding-left: 0;
    padding-right: 0;
  }

  .hcs-title {
    padding-left: 15px;
    padding-right: 15px;
  }
}
