/* Engagement Ring Page */

/* KV Section - height */
body#category div.kv {
  height: 400px !important;
  padding: 0 !important;
}

@media only screen and (min-width: 768px) {
  body#category div.kv {
    height: 400px !important;
    padding: 0 !important;
    background-size: cover !important;
    background-position: center 60% !important;
  }
}

@media only screen and (max-width: 767px) {
  body#category div.kv {
    height: 300px !important;
    padding: 0 !important;
    background-size: 118% !important;
    background-position: -20% center !important;
  }
}

/* Product List - Hide all items initially */
#productList li {
  display: none !important;
}

#productList li.js-show {
  display: inline-block !important;
}

/* Order Flow Section */
.order-flow {
  padding: 60px 0;
  background: transparent;
  text-align: center;
}

.order-flow-title {
  font-size: 3rem;
  font-weight: normal;
  color: #333;
  margin-bottom: 60px;
  text-align: center;
}

.order-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 20px;
}

.order-step {
  flex: 1;
  text-align: center;
}

.step-number {
  font-size: 2.4rem;
  color: #b8884a;
  font-weight: bold;
  margin-bottom: 20px;
}

.step-text {
  font-size: 1.7rem;
  color: #333;
  line-height: 1.8;
}

.arrow {
  font-size: 2.5rem;
  color: #333;
  padding: 0 10px;
}

/* After Service Section */
.after-service {
  padding: 80px 30px;
  background-color: #f9f9f9;
  text-align: center;
}

.after-service-title {
  font-size: 2.5rem;
  font-weight: normal;
  color: #b8884a;
  margin-bottom: 30px;
  font-style: italic;
}

.after-service-text {
  font-size: 1.6rem;
  line-height: 2;
  color: #555;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.after-service-btn a {
  display: inline-block;
  padding: 15px 50px;
  background-color: #b8884a;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1.6rem;
  transition: background-color 0.3s;
}

.after-service-btn a:hover {
  background-color: #a07840;
}

/* FAQ Section */
.p-hawaiianFaq {
  background-color: #fff;
  padding: 90px 30px;
}

.p-hawaiianFaq__inner {
  max-width: 720px;
  margin: 0 auto;
}

.p-hawaiianFaq__title {
  font-size: 3.8rem;
  font-weight: 400;
  text-align: center;
  margin-bottom: 55px;
  color: #000;
  letter-spacing: 0.15em;
}

.p-hawaiianFaq__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid #d5d5d5;
  border-bottom: 1px solid #d5d5d5;
}

.p-hawaiianFaq__item {
  border: none;
  border-bottom: 1px solid #d5d5d5;
  border-radius: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.p-hawaiianFaq__item:last-child {
  border-bottom: none;
}

.p-hawaiianFaq__question {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 25px 20px;
  background-color: transparent;
  cursor: pointer;
  transition: opacity 0.3s;
  position: relative;
}

.p-hawaiianFaq__question:hover {
  opacity: 0.7;
}

.p-hawaiianFaq__icon {
  font-size: 1.7rem;
  font-weight: 500;
  color: #c8a165;
  flex-shrink: 0;
  width: 30px;
}

.p-hawaiianFaq__questionText {
  font-size: 1.7rem;
  font-weight: 500;
  color: #333;
  flex: 1;
  line-height: 2;
}

.p-hawaiianFaq__arrow {
  width: 10px;
  height: 10px;
  border-right: 2px solid #c8a165;
  border-bottom: 2px solid #c8a165;
  transform: rotate(45deg);
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: auto;
  display: block;
}

.p-hawaiianFaq__item.is-open .p-hawaiianFaq__arrow {
  transform: rotate(-135deg);
}

.p-hawaiianFaq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background-color: transparent;
}

.p-hawaiianFaq__item.is-open .p-hawaiianFaq__answer {
  max-height: 500px;
  padding: 0 20px 25px 60px;
}

.p-hawaiianFaq__answerIcon {
  display: none;
}

.p-hawaiianFaq__answerText {
  font-size: 1.5rem;
  line-height: 2;
  color: #666;
}

/* Contact Section */
.p-hawaiianContact {
  background-color: #fff;
  padding: 80px 30px;
}

.p-hawaiianContact__inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.p-hawaiianContact__title {
  font-size: 4rem;
  font-weight: 300;
  margin-bottom: 20px;
  color: #c9a961;
  letter-spacing: 0.15em;
}

.p-hawaiianContact__subtitle {
  font-size: 1.6rem;
  font-weight: 400;
  color: #333;
  margin-bottom: 30px;
  letter-spacing: 0.05em;
}

.p-hawaiianContact__text {
  font-size: 1.3rem;
  line-height: 2;
  color: #333;
  margin-bottom: 50px;
}

.p-hawaiianContact__buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.p-hawaiianContact__btn {
  display: inline-block;
  padding: 15px 35px;
  background-color: #b8884a;
  color: #fff;
  text-decoration: none;
  border-radius: 3px;
  font-size: 1.3rem;
  font-weight: 400;
  transition: all 0.3s;
  min-width: 150px;
}

.p-hawaiianContact__btn:hover {
  opacity: 0.85;
}

.p-hawaiianContact__btn.is-instagram {
  background: linear-gradient(90deg, rgb(247, 227, 194) 0%, rgb(238, 187, 103) 100%);
}

.p-hawaiianContact__btn.is-instagram:hover {
  background: linear-gradient(90deg, rgb(247, 227, 194) 0%, rgb(238, 187, 103) 100%);
}

.p-hawaiianContact__btn.is-line {
  background: linear-gradient(90deg, rgb(247, 227, 194) 0%, rgb(238, 187, 103) 100%);
}

.p-hawaiianContact__btn.is-line:hover {
  background: linear-gradient(90deg, rgb(247, 227, 194) 0%, rgb(238, 187, 103) 100%);
}

.p-hawaiianContact__btn.is-email {
  background: linear-gradient(90deg, rgb(247, 227, 194) 0%, rgb(238, 187, 103) 100%);
}

.p-hawaiianContact__btn.is-email:hover {
  background: linear-gradient(90deg, rgb(247, 227, 194) 0%, rgb(238, 187, 103) 100%);
}

.p-hawaiianContact__note {
  font-size: 1.2rem;
  color: #666;
  margin-top: 25px;
  line-height: 1.8;
}

/* Pagination */
.pagination-wrapper {
  margin-top: 60px;
  text-align: center;
  padding: 20px 0;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.pagination-btn {
  padding: 10px 16px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1.6rem;
  color: #333;
  transition: all 0.3s;
  min-width: 44px;
}

.pagination-btn:hover {
  background: #f0f0f0;
  border-color: #b8884a;
}

.pagination-btn.active {
  background: #b8884a;
  color: #fff;
  border-color: #b8884a;
}

.pagination-number {
  font-weight: bold;
}

/* Responsive */
@media screen and (max-width: 768px) {
  /* KV Mobile Styles */
  body#category div.kv {
    background-size: 118% !important;
    background-position: -20% center !important;
  }

  body#category .kv div.ttl {
    text-align: left !important;
    padding-left: 0 !important;
  }

  body#category .kv div.ttl h2 {
    font-size: 3.12rem !important;
  }

  body#category .kv div.ttl h1 {
    font-size: 1.4rem !important;
    word-break: keep-all;
    line-height: 1.6 !important;
  }

  body#category .kv div.ttl p {
    font-size: 1.0rem !important;
  }

  .order-flow-title {
    font-size: 2.4rem !important;
  }

  .order-steps {
    flex-direction: column;
    gap: 30px;
  }

  .arrow {
    transform: rotate(90deg);
    font-size: 2rem;
  }

  .step-number {
    font-size: 1.8rem !important;
  }

  .step-text {
    font-size: 1.4rem !important;
  }

  .after-service-title {
    font-size: 2.4rem !important;
  }

  .after-service-text {
    font-size: 1.2rem !important;
  }

  .after-service-text br {
    display: none !important;
  }

  .after-service-btn a {
    font-size: 1.2rem !important;
    padding: 15px 20px !important;
    white-space: nowrap !important;
    width: auto !important;
    min-width: fit-content !important;
    background: linear-gradient(90deg, rgb(247, 227, 194) 0%, rgb(238, 187, 103) 100%) !important;
    border-radius: 5px !important;
  }

  .p-hawaiianFaq__title {
    font-size: 2.4rem !important;
  }

  .p-hawaiianFaq__icon {
    font-size: 1.4rem;
  }

  .p-hawaiianFaq__questionText {
    font-size: 1.4rem;
    line-height: 1.8;
  }

  .p-hawaiianFaq__answerText {
    font-size: 1.4rem;
    line-height: 1.8;
  }

  .p-hawaiianContact__title {
    font-size: 2.4rem !important;
  }

  .p-hawaiianContact__text,
  .p-hawaiianContact__subtitle {
    font-size: 1.4rem !important;
  }

  .p-hawaiianContact__text {
    max-width: none !important;
    width: 105% !important;
    margin-left: -2.5% !important;
    margin-right: auto !important;
  }

  .p-hawaiianContact__text br {
    display: none !important;
  }

  .p-hawaiianContact__note {
    font-size: 1.4rem !important;
  }

  .p-hawaiianContact__buttons {
    flex-direction: column;
    align-items: center;
  }

  .p-hawaiianContact__btn {
    width: 100%;
    max-width: 300px;
  }
}

/* Hide order flow arrows */
.order-flow .arrow {
  display: none !important;
}

/* Reform button - match after-service button style */
.btn a.min {
  font-size: 1.2rem !important;
  padding: 15px 20px !important;
  white-space: nowrap !important;
  width: auto !important;
  min-width: fit-content !important;
  background: linear-gradient(90deg, rgb(247, 227, 194) 0%, rgb(238, 187, 103) 100%) !important;
  border-radius: 5px !important;
  display: inline-block !important;
  text-decoration: none !important;
  color: #fff !important;
}

/* Mobile line break control for contact note */
@media screen and (min-width: 769px) {
  .p-hawaiianContact__note .br-mobile {
    display: none !important;
  }
}

@media screen and (max-width: 768px) {
  .p-hawaiianContact__note .br-mobile {
    display: inline !important;
  }
}
