@charset "utf-8";

body {
  margin-top: 0;
}

/* ============================
   HERO / SWIPER
============================ */
.swiper-pagination {
  position: relative !important;
  max-width: 1200px;
  margin: 0 auto !important;
  text-align: left !important;
  bottom: 30px !important;
}

.swiper-pagination-bullet {
  width: 100px !important;
  height: 3px !important;
  border-radius: 0 !important;
  border: 1px solid #fff;
}

.swiper-pagination-bullet-active {
  background: #222 !important;
  mix-blend-mode: difference !important;
}

.swiper-slide {
  overflow: hidden !important;
  height: 400px !important;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================
   SECTION / GIFT
============================ */
section {
  margin-top: 4rem !important;
}

section h2 {
  font-size: 2.2rem;
  text-align: center;
  /* margin-bottom: 40px;  */
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.gift-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  gap: 4rem;
}

.gift-card {
  cursor: pointer;
  width: 22%;
}

.gift-card img {
  width: 100%;
  margin-bottom: 15px;
  transition: 0.3s ease;
}

.gift-card .title-condition {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 30px;
}

.gift-card h3 {
  font-size: 1.8rem;
  font-family: 'SA-B', sans-serif;
  text-align: center;
}
.gift-card p {
  text-align: center;
}
.gift-card button {
  border: none;
  width: 100%;
  padding: 12px 20px;
  border-radius: 6px;
  font-family: 'SA-M', sans-serif;
  font-size: 1.6rem;
  transition: 0.3s ease;
}

.gift-card button:enabled {
  background: #fff;
  border: 2px solid #222;
  color: #222;
}

.gift-card:hover button:enabled {
  background: #111;
  color: #fff;
}

.gift-card button:disabled {
  background: #eee;
  color: #aaa;
}

.gift-card.disabled {
  cursor: default;
}

/* ============================
   FAQ / NOTICE Divider
============================ */
.customer-line {
  height: 1px;
  background: #eee;
  margin-top: 7rem;
}

/* ============================
   FAQ / NOTICE Base Layout
============================ */
.faq-section,
.notice-section {
  margin-top: 7rem !important;
}

section.customer {
  display: flex;
  justify-content: space-between;
}

section.customer .title {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

section.customer .title p {
  font-size: 2rem;
  /* color: var(--font-sub); */
  line-height: 2;
}

/* ============================
   ⭐ Bootstrap Accordion + 너의 UI
============================ */

/* Bootstrap 기본 화살표 제거 */
.accordion-button::after {
  display: none !important;
}

/* Bootstrap 기본 배경 제거 */
.accordion-button,
.accordion-button:not(.collapsed) {
  background: none !important;
  box-shadow: none !important;
  border: none !important;
  color: var(--font-black) !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* 너의 디자인 적용 */
.custom-acc-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  font-family: 'SA-B', sans-serif;
  font-size: 1.8rem;
  cursor: pointer;
  width: 100%;
}

/* 화살표 애니메이션 */
.acc-icon {
  transition: 0.3s ease;
}

.accordion-button:not(.collapsed) .acc-icon {
  transform: rotate(180deg);
}

/* 내용 부분 */
.custom-acc-body {
  background: #fafafa !important;
  padding: 20px;
}

.custom-acc-body p {
  font-size: 1.5rem;
  margin-bottom: 10px;
  font-family: 'SA-B', sans-serif;
}

.custom-acc-body span {
  font-size: 1.6rem;
  line-height: 1.4;
  color: #444;
}

.custom-acc-body strong {
  font-family: 'SA-B';
  color: #222;
}

/* ============================
   RESPONSIVE
============================ */
@media screen and (max-width:768px) {

  .swiper-slide,
  .campaign_banner {
    height: 18vh !important;
  }

  .gift-card {
    width: 45%;
  }

  section.customer {
    flex-direction: column;
    gap: 2rem;
  }

  .accordion {
    width: 100%;
  }
}

@media screen and (max-width:500px) {

  .gift-card button:enabled {
    background: #222;
    color: #fff;
  }

  section {
    margin-top: 2.5rem !important;
  }

  section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
  }

  section.customer .title {
    gap: 6px;
  }
}

@media screen and (max-width:400px) {

  .gift-list {
    gap: 30px 1rem;
  }

  .gift-card {
    width: 47%;
  }

  .gift-card h3 {
    font-size: 1.6rem;
  }

  .gift-card button {
    padding: 8px 20px;
  }
}