
/* ===== template-parts/single-product/product-detail/assets/styles.css ===== */
/* ==========================================================================
   Product Detail — Main Content
   Figma node: 514:7407
   rem divisor: 16 (1vw = 16px at 1600px design width)
   ========================================================================== */

.product-detail {
  width: 100%;
  padding-bottom: 7.5rem;
}

.product-detail__wrapper {
  display: flex;
  padding: 3rem 0 0;
  max-width: 91.5rem;
  margin: 0 auto;
}

.product-detail__wrapper>*:not(:last-child) {
  margin-right: 3.5rem;
}

/* --------------------------------------------------------------------------
   Left Column — Image Gallery
   -------------------------------------------------------------------------- */

.product-detail__gallery {
  display: flex;
  flex-direction: column;
  width: 49.625rem;
  flex-shrink: 0;
}

.product-detail__gallery>*:not(:last-child) {
  margin-bottom: 0.25rem;
}

/* Gallery row: 2 images side by side */
.product-detail__gallery-row {
  display: flex;
  height: 38.1875rem;
}

.product-detail__gallery-row>*:not(:last-child) {
  margin-right: 0.25rem;
}

.product-detail__gallery-item {
  flex: 1;
  min-width: 0;
}

.product-detail__gallery-link {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  text-decoration: none;
}

.product-detail__gallery-img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  display: block;
}

.product-detail__gallery-video-wrap {
  overflow: hidden;
}

.product-detail__video-play {
  position: absolute;
  width: 3.25rem;
  height: 3.25rem;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  z-index: 2;
  transition: opacity 0.2s ease;
}

.product-detail__video-play circle {
  opacity: 0.3;
}

.product-detail__video-play:hover circle {
  opacity: 0.8;
}

.product-detail__gallery-video-wrap.is-playing .product-detail__video-play {
  display: none;
}

/* Expand icon overlay */
.product-detail__expand-icon {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 3.25rem;
  height: 3.25rem;
  background-color: #1d1d1d;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.product-detail__expand-icon:hover {
  opacity: 0.8;
}

/* Large image (full-width) */
.product-detail__large-image {
  width: 100%;
  height: auto;
}

.product-detail__large-image .product-detail__gallery-link {
  overflow: hidden;
}

.product-detail__large-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-detail__large-caption {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  font-family: "Phudu", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.1;
  color: #f7f4ec;
  pointer-events: none;
}

/* --------------------------------------------------------------------------
   Right Column — Product Info
   -------------------------------------------------------------------------- */

.product-detail__info {
  flex: 1;
  min-width: 0;
}

.product-detail__info-sticky {
  position: sticky;
  top: 9.625rem;
  display: flex;
  flex-direction: column;
  transition: top 0.3s ease-out;
}

@media screen and (min-width: 640px) {
  body.product-detail-header-hidden .product-detail__info-sticky {
    top: 2rem;
  }
}

.product-detail__info-sticky>*:not(:last-child) {
  margin-bottom: 1.625rem;
}

/* Header */
.product-detail__header {
  display: flex;
  flex-direction: column;
}

.product-detail__header>*:not(:last-child) {
  margin-bottom: 1.5rem;
}

.product-detail__category-row {
  display: flex;
  align-items: center;
}

.product-detail__category-row>*:not(:last-child) {
  margin-right: 1.25rem;
}

.product-detail__category {
  font-family: "Phudu", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.1;
  color: #680103;
}

.product-detail__stock-badge {
  font-family: "SF Pro Display", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.5;
  color: #680103;
  padding: 0 0.75rem;
  height: 1.75rem;
  border-radius: 6rem;
  background: var(--Button-Inactive, rgba(104, 1, 3, 0.04));
  display: flex;
  align-items: center;
}

.product-detail__title {
  text-box-edge: cap alphabetic;
  text-box-trim: trim-both;
  font-family: "Phudu", sans-serif;
  font-size: 2.875rem;
  font-weight: 700;
  line-height: 1.2;
  color: #680103;
  margin: 0;
}

/* --------------------------------------------------------------------------
   Price Section
   -------------------------------------------------------------------------- */

.product-detail__prices {
  display: flex;
  flex-direction: column;
}

.product-detail__prices>*:not(:last-child) {
  margin-bottom: 0.625rem;
}

.product-detail__price-card {
  display: flex;
  flex-direction: column;
  padding: 1rem;
  background-color: rgba(104, 1, 3, 0.04);
}

.product-detail__price-card>*:not(:last-child) {
  margin-bottom: 0.875rem;
}

.product-detail__price-row {
  display: flex;
  align-items: center;
}

.product-detail__price-row>*:not(:last-child) {
  margin-right: 0.5rem;
}

.product-detail__price-label {
  font-family: "SF Pro Display", sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.5;
  color: #680103;
}

.product-detail__price-value {
  font-family: "Phudu", sans-serif;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.3;
  color: #680103;
}

.product-detail__price-divider {
  border-bottom: 1px dashed rgba(29, 29, 29, 0.2);
  margin: 0;
}

.product-detail__price-desc {
  font-family: "SF Pro Display", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(29, 29, 29, 0.80);
}

/* Không chọn font trong CMS → inherit "SF Pro Display" ở trên.
   Có chọn font trong CMS → giữ inline style (xem _reset.css → .wp-block-editor). */
.product-detail__price-desc *:not([style*="font-family"]) {
  font-family: inherit;
}

.product-detail__price-desc strong {
  color: #680103;
}

.product-detail__price-desc p {
  margin: 0;
}

/* --------------------------------------------------------------------------
   CTA
   -------------------------------------------------------------------------- */

.product-detail__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0.75rem 0.5rem 0.5rem;
  border-radius: 0.5rem;
  /* background: var(--Button-Button, radial-gradient(169.61% 50% at 50% 50%, #CB5140 46.54%, #D8A061 91.01%)); */
  background: radial-gradient(50% 169.61% at 50% 50%,
      #cb5140 46.54%,
      #d8a061 91.01%);
}

.product-detail__cta-btn {
  display: flex;
  flex-direction: column;
  width: 20.1875rem;
  align-items: center;
  padding: 0.5rem 1.9375rem;
  background-color: #f6f3ea;
  border-radius: 0.375rem;
  text-decoration: none;
  transition: 0.2s ease;
}

.product-detail__cta-btn:hover {
  background: var(--Icon---mng-white, #fff);
  box-shadow: 0 0 30px 0 #f6f3ea;
}

.product-detail__cta-btn-top {
  display: flex;
  align-items: center;
}

.product-detail__cta-btn-top>*:not(:last-child) {
  margin-right: 0.5rem;
}

.product-detail__cta-btn-text {
  font-family: "SF Pro Display", sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.5;
  color: #680103;
}

.product-detail__cta-btn-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
}

.product-detail__cta-btn-arrow img {
  width: 0.875rem;
  height: 0.875rem;
}

.product-detail__cta-btn-phone {
  font-family: "SF Pro Display", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
  color: #680103;
}

/* Contact section */
.product-detail__contact {
  display: flex;
  align-items: center;
}

.product-detail__contact>*:not(:last-child) {
  margin-right: 0.8125rem;
}

.product-detail__contact-label {
  color: var(--Text-inv-100, #f7f4ec);
  /* PC/Body/16 - M - SF */
  font-family: "SF Pro Display";
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  /* 1.5rem */
}

.product-detail__contact-icons {
  display: flex;
}

.product-detail__contact-icons>*:not(:last-child) {
  margin-right: 0.5rem;
}

.product-detail__contact-icon {
  display: block;
  width: 3.5rem;
  height: 3.5rem;
  padding: 0.73rem;
  border-radius: 50%;
  overflow: hidden;
  transition: 0.2s ease;
  background: var(--Icon---mng-Trng-ng, #f6f3ea30);
}

.product-detail__contact-icon:hover {
  background: var(--Icon---mng-white, #fff);
  box-shadow: 0 0 30px 0 #f6f3ea;
}

.product-detail__contact-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.product-detail__contact-icon:hover svg path {
  fill: var(--Icon---mng-m, #680103);
}

/* --------------------------------------------------------------------------
   Separator
   -------------------------------------------------------------------------- */

.product-detail__separator {
  border-bottom: 1px dashed rgba(29, 29, 29, 0.2);
  margin: 0;
}

/* --------------------------------------------------------------------------
   Description Section
   -------------------------------------------------------------------------- */

.product-detail__description {
  display: flex;
  flex-direction: column;
}

.product-detail__description>*:not(:last-child) {
  margin-bottom: 1rem;
}

.product-detail__description-title {
  font-family: "Phudu", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.1;
  color: #680103;
  margin: 0;
}

.product-detail__description-content {
  display: flex;
  flex-direction: column;
}

/* Chuẩn mặc định của nội dung mô tả trong CMS: Georgia 12pt.
   Dùng selector ghép để không bị .wp-block-editor trong _reset.css ghi đè. */
.product-detail__description-content.wp-block-editor {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12pt;
  line-height: 1.5;
}

.product-detail__description-content ul {
  list-style-type: disc;
}

.product-detail__description-content ol {
  list-style-type: decimal;
}

/* Danh sách: khoảng cách giữa các mục 0.5rem, gọn lại (đè luật .wp-block-editor) */
.product-detail__description-content.wp-block-editor ul,
.product-detail__description-content.wp-block-editor ol {
  margin-top: 0;
  margin-left: 1.25rem;
  line-height: 1.5;
}

.product-detail__description-content.wp-block-editor li {
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.product-detail__description-content.wp-block-editor li:last-child {
  margin-bottom: 0;
}

.product-detail__description-content>*:not(:last-child) {
  margin-bottom: 0.625rem;
}

.product-detail__description-content p {
  font-family: inherit;
  font-size: inherit;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(28, 28, 28, 0.8);
  margin: 0;
}

/* --------------------------------------------------------------------------
   Mô tả: chuẩn hoá nội dung từ editor (ảnh, caption, tiêu đề)
   -------------------------------------------------------------------------- */

/* Tiêu đề trong mô tả: bỏ margin mặc định của trình duyệt (flex không collapse) */
.product-detail__description-content :is(h1, h2, h3, h4, h5, h6) {
  margin: 0;
  color: #680103;
  font-family: "Phudu", sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

.product-detail__description-content h2 {
  font-size: 1.125rem;
}

.product-detail__description-content h3 {
  font-size: 1rem;
}

.product-detail__description-content :is(h4, h5, h6) {
  font-size: 0.9375rem;
  font-weight: 600;
}

/* Ảnh: co giãn, không tràn, về khối */
.product-detail__description-content img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Ảnh bị editor nhét lồng trong tiêu đề / đoạn văn → tách khỏi chữ, canh giữa */
.product-detail__description-content :is(h1, h2, h3, h4, h5, h6, p, div) > img {
  width: 100%;
  margin: 0.625rem auto;
}

/* figure */
.product-detail__description-content figure {
  margin: 0;
}

.product-detail__description-content figure > img {
  margin: 0 auto;
}

/* Caption cũ (wp-caption): tránh width cố định tràn ngang mobile */
.product-detail__description-content .wp-caption {
  width: auto !important;
  max-width: 100%;
  margin: 0;
}

.product-detail__description-content .wp-caption > img {
  margin: 0 auto;
}

/* Chữ nhỏ (caption) dưới ảnh: cách ảnh đúng 1rem, chữ nhỏ, canh giữa */
.product-detail__description-content figcaption,
.product-detail__description-content .wp-caption-text {
  margin: 1rem 0 0;
  font-family: "SF Pro Display", sans-serif;
  font-size: 0.8125rem;
  line-height: 1.4;
  color: rgba(28, 28, 28, 0.4);
  text-align: center;
}

/* ==========================================================================
   Mobile Story Gallery, Sticky Bar, Side Icons — hidden on desktop
   ========================================================================== */

.product-detail__story,
.product-detail__sticky-bar,
.product-detail__side-icons {
  display: none;
}

/* ==========================================================================
   Mobile Responsive — max-width: 639.98px
   Figma node: 2362:10781
   rem divisor: 16 (4.267vw × 375 = 16px)
   ========================================================================== */

@media screen and (max-width: 639.98px) {
  /* --------------------------------------------------------------------------
	   Layout: single column
	   -------------------------------------------------------------------------- */

  .product-detail__wrapper {
    flex-direction: column;
    padding: 0;
  }

  .product-detail__wrapper>*:not(:last-child) {
    margin-right: 0;
  }

  /* Hide desktop gallery */
  .product-detail__gallery {
    display: none;
  }

  /* Info column: full-width */
  .product-detail__info {
    width: 100%;
  }

  .product-detail__info-sticky {
    position: static;
  }

  .product-detail__info-sticky>*:not(:last-child) {
    margin-bottom: 0;
  }

  /* --------------------------------------------------------------------------
	   Story Gallery (mobile-only)
	   -------------------------------------------------------------------------- */

  .product-detail__story {
    display: flex;
    flex-direction: column;
  }

  .product-detail__story>*:not(:last-child) {
    margin-bottom: 0.25rem;
  }

  .product-detail__story-viewer {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 154.11%;
    /* 581 / 377 × 100% */
    overflow: hidden;
    background-color: #1d1d1d;
  }

  /* Gradient overlay at top */
  .product-detail__story-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4.75rem;
    background: linear-gradient(to bottom,
        rgba(44, 0, 1, 0.8) 0%,
        rgba(44, 0, 1, 0.51) 48%,
        transparent 100%);
    z-index: 2;
    pointer-events: none;
  }

  /* Progress bars container */
  .product-detail__story-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    padding: 1rem 0.75rem 0.75rem;
    z-index: 3;
  }

  .product-detail__story-progress>*:not(:last-child) {
    margin-right: 0.1875rem;
  }

  .product-detail__story-bar {
    flex: 1;
    height: 0.125rem;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 1px;
    overflow: hidden;
  }

  .product-detail__story-bar-fill {
    width: 0;
    height: 100%;
    background-color: #ffffff;
    border-radius: 1px;
  }

  /* Completed bars: full */
  .product-detail__story-bar.is-done .product-detail__story-bar-fill {
    width: 100%;
  }

  /* Active bar: animating */
  .product-detail__story-bar.is-active .product-detail__story-bar-fill {
    width: 0;
    transition: width 5s linear;
  }

  .product-detail__story-bar.is-active.is-playing .product-detail__story-bar-fill {
    width: 100%;
  }

  /* Story slides (image + video) */
  .product-detail__story-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .product-detail__story-slide.is-active {
    opacity: 1;
    z-index: 1;
  }

  .product-detail__story-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .product-detail__story-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Thumbnail strip */
  .product-detail__story-thumbs {
    display: flex;
    flex-wrap: nowrap;
    padding-inline: 0.25rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 0.75rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .product-detail__story-thumbs::-webkit-scrollbar {
    display: none;
  }

  .product-detail__story-thumbs>*:not(:last-child) {
    margin-right: 0.25rem;
  }

  .product-detail__story-thumb {
    flex-shrink: 0;
    width: 4.41176rem;
    height: 4.41176rem;
    padding: 0;
    background: none;
    cursor: pointer;
    scroll-snap-align: start;
    overflow: hidden;
    flex: 0 0 auto;
  }

  .product-detail__story-thumb.is-active {
    border: 3px solid #f26c59;
  }

  .product-detail__story-thumb-play {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background-color: rgba(104, 1, 3, 0.08);
    font-size: 1.25rem;
    color: #680103;
  }

  .product-detail__story-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /* --------------------------------------------------------------------------
	   Header (mobile)
	   -------------------------------------------------------------------------- */

  .product-detail__header {
    padding: 2rem 0.75rem 0;
  }

  .product-detail__header>*:not(:last-child) {
    margin-bottom: 0.625rem;
  }

  .product-detail__category-row>*:not(:last-child) {
    margin-right: 0.5625rem;
  }

  .product-detail__category {
    font-size: 0.8125rem;
    font-weight: 600;
  }

  .product-detail__stock-badge {
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0 0.375rem;
    height: 1.25rem;
  }

  .product-detail__title {
    font-size: 1.75rem;
    line-height: 1.1;
    margin-bottom: 1.375rem;
    text-box-edge: unset;
    text-box-trim: unset;
  }

  /* --------------------------------------------------------------------------
	   Price Section (mobile)
	   -------------------------------------------------------------------------- */

  .product-detail__prices {
    padding: 0 0.75rem;
  }

  .product-detail__prices>*:not(:last-child) {
    margin-bottom: 0.75rem;
  }

  .product-detail__price-card {
    padding: 0.75rem;
  }

  .product-detail__price-card>*:not(:last-child) {
    margin-bottom: 0.75rem;
  }

  .product-detail__price-label {
    font-size: 1rem;
    font-weight: 700;
  }

  .product-detail__price-value {
    font-size: 1.125rem;
  }

  .product-detail__price-desc {
    font-size: 0.875rem;
  }

  /* --------------------------------------------------------------------------
	   CTA & Contact — hide on mobile (replaced by sticky bar + side icons)
	   -------------------------------------------------------------------------- */

  .product-detail__cta {
    display: none;
  }

  /* --------------------------------------------------------------------------
	   Separator & Description (mobile)
	   -------------------------------------------------------------------------- */

  .product-detail__separator {
    margin: 2rem 0.75rem 0;
  }

  .product-detail__description {
    padding: 0 0.75rem;
    margin-top: 1.5rem;
  }

  .product-detail__description>*:not(:last-child) {
    margin-bottom: 1rem;
  }

  .product-detail__description-title {
    font-size: 1.125rem;
  }

  .product-detail__description-content>*:not(:last-child) {
    margin-bottom: 0.625rem;
  }

  .product-detail__description-content p {
    font-size: inherit;
  }

  /* Bottom spacer for sticky bar */
  .product-detail {
    /* margin-top: 3.75rem; */
    padding-bottom: 0;
  }

  /* --------------------------------------------------------------------------
	   Sticky Bottom Bar (mobile-only)
	   -------------------------------------------------------------------------- */

  .product-detail__sticky-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4rem;
    z-index: 1000;
    background-color: #ffffff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.08);
  }

  .product-detail__sticky-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .product-detail__sticky-col:first-child {
    border-right: 1px solid rgba(29, 29, 29, 0.12);
  }

  .product-detail__sticky-label {
    font-family: "SF Pro Display", sans-serif;
    font-size: 0.75rem;
    font-weight: 400;
    line-height: 1.5;
    color: #1D1D1D;
  }

  .product-detail__sticky-price {
    font-family: "SF Pro Display", sans-serif;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.5;
    color: #680103;
  }

  .product-detail__sticky-cta {
    flex: 1.3;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    background: radial-gradient(circle at center, #cb5140 47%, #d8a061 91%);
    text-decoration: none;
  }

  .product-detail__sticky-cta-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.16);
  }

  .product-detail__sticky-cta-icon svg {
    width: 1rem;
    height: 1rem;
  }

  .product-detail__sticky-cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 0;
  }

  .product-detail__sticky-cta-text {
    font-family: "SF Pro Display", sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 1.5;
    color: #f7f4ec;
    white-space: nowrap;
  }

  .product-detail__sticky-cta-phone {
    font-family: "SF Pro Display", sans-serif;
    font-size: 0.75rem;
    font-weight: 400;
    line-height: 1.5;
    color: #f7f4ec;
    white-space: nowrap;
  }

  /* --------------------------------------------------------------------------
	   Floating Side Icons (mobile-only)
	   -------------------------------------------------------------------------- */

  .product-detail__side-icons {
    display: flex;
    flex-direction: column;
    position: fixed;
    right: 0.75rem;
    bottom: 5rem;
    z-index: 99;
  }

  .product-detail__side-icons>*:not(:last-child) {
    margin-bottom: 1rem;
  }

  .product-detail__side-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    background-color: rgba(246, 243, 234, 0.1);
    backdrop-filter: blur(4px);
    text-decoration: none;
  }

  .product-detail__side-icon img {
    width: 1.25rem;
    height: 1.25rem;
  }
}


/* ===== template-parts/single-product/product-faq/assets/styles.css ===== */
.product-faq__container {
  position: relative;
  max-width: 91.5rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.product-faq__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2.875rem;
}

.product-faq__subtitle {
  color: #680103;
  text-align: center;
  font-family: Phudu;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
  margin-bottom: 1.5rem;
}

.product-faq__title {
  color: #680103;
  text-align: center;
  font-family: Phudu;
  font-size: 3.625rem;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
}

.product-faq__list {
  display: flex;
  flex-direction: column;
}

.product-faq__item {
  width: 100%;
  display: flex;
  flex-direction: column;
  background: #fff;
}

.product-faq__item.is-active .product-faq__item-trigger svg {
  transform: rotate(180deg);
}

.product-faq__item:not(:last-child) {
  margin-bottom: 0.5rem;
}

.product-faq__item-trigger {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  cursor: pointer;
  text-align: left;
  padding: 1.875rem 2.5rem;
}

.product-faq__item-question {
  color: #680103;
  font-family: Phudu;
  font-size: 1.875rem;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
}

.product-faq__item-trigger svg {
  width: 2.4375rem;
  height: 2.4375rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.product-faq__item-answer {
  overflow: hidden;
  height: 0;
  transition: height 400ms ease;
}

.product-faq__item-answer-inner {
  color: rgba(29, 29, 29, 0.8);
  font-family: "SF Pro Display";
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  margin: 0 2.5rem 1.875rem;
}

.product-faq__item-answer-inner > *:first-child {
  margin-top: 0;
}

.product-faq__item-answer-inner > *:last-child {
  margin-bottom: 0;
}

.product-faq__item-answer-inner h1,
.product-faq__item-answer-inner h2,
.product-faq__item-answer-inner h3,
.product-faq__item-answer-inner h4,
.product-faq__item-answer-inner h5,
.product-faq__item-answer-inner h6 {
  color: #680103;
  font-weight: 500;
  margin-top: 1.125rem;
}

.product-faq__item-answer-inner h1 {
  font-size: 2.25rem;
  line-height: 120%;
}
.product-faq__item-answer-inner h2 {
  font-size: 1.875rem;
  line-height: 125%;
}
.product-faq__item-answer-inner h3 {
  font-size: 1.5rem;
  line-height: 128%;
}
.product-faq__item-answer-inner h4 {
  font-size: 1.25rem;
  line-height: 130%;
}
.product-faq__item-answer-inner h5 {
  font-size: 1.125rem;
  line-height: 140%;
}
.product-faq__item-answer-inner h6 {
  font-size: 1rem;
  line-height: 145%;
}

.product-faq__item-answer-inner p {
  margin-top: 0.5rem;
}

.product-faq__item-answer-inner ol {
  list-style: decimal;
  margin-left: 1.5rem;
  margin-top: 0.5rem;
}

.product-faq__item-answer-inner ul {
  list-style: disc;
  margin-left: 1.5rem;
  margin-top: 0.5rem;
}

.product-faq__item.is-hidden {
  display: none;
}

.product-faq__button {
  display: flex;
  justify-content: center;
  margin-top: 2.875rem;
}

@media (max-width: 640px) {
  .product-faq {
    padding: 3.4375rem 0.75rem 0;
  }

  .product-faq__header {
    margin-bottom: 1.25rem;
  }

  .product-faq__subtitle {
    font-size: 0.8125rem;
    margin-bottom: 0.5rem;
  }

  .product-faq__title {
    font-size: 1.75rem;
    width: 20rem;
  }

  .product-faq__item-question {
    font-size: 1.125rem;
  }
  
  .product-faq__item-trigger {
    padding: 1rem 0.9375rem;
  }

  .product-faq__item-trigger svg {
    width: 1.5rem;
    height: 1.5rem;
  }

  .product-faq__item-answer-inner {
    font-family: Phudu;
    font-size: 0.875rem;
    margin: 0.875rem 0.9375rem 1rem;
  }

  .product-faq__item-answer-inner h1,
  .product-faq__item-answer-inner h2,
  .product-faq__item-answer-inner h3,
  .product-faq__item-answer-inner h4,
  .product-faq__item-answer-inner h5,
  .product-faq__item-answer-inner h6 {
    font-family: "SF Pro Display";
  }

  .product-faq__item-answer-inner h1 {
    font-size: 1.5rem;
    line-height: 130%;
  }
  .product-faq__item-answer-inner h2 {
    font-size: 1.375rem;
    line-height: 135%;
  }
  .product-faq__item-answer-inner h3 {
    font-size: 1.25rem;
    line-height: 140%;
  }
  .product-faq__item-answer-inner h4 {
    font-size: 1rem;
    line-height: 150%;
  }
  .product-faq__item-answer-inner h5 {
    font-size: 0.9375rem;
    line-height: 150%;
  }
  .product-faq__item-answer-inner h6 {
    font-size: 0.875rem;
    line-height: 150%;
  }

  .product-faq__button {
    margin-top: 1.25rem;
  }
}


/* ===== template-parts/single-product/product-feedback/assets/styles.css ===== */
.ez-toc-debug-messages {
  display: none !important;
}

.product-fb {
  padding: 6.25rem 0 10.75rem;
  margin-bottom: 7.5rem;
  overflow: hidden;
}

.product-fb__bg {
  position: absolute;
  bottom: 3.78113rem;
  left: 50%;
  transform: translateX(-50%);
  width: 90.3125rem;
  height: 11.90638rem;
  object-fit: contain;
}

.product-fb__container {
  max-width: 77.5rem;
  margin: 0 auto;
  position: relative;
  display: flex;
  flex-direction: column;
}

.product-fb__title {
  color: #680103;
  text-align: center;
  font-family: Phudu;
  font-size: 3.625rem;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  margin-bottom: 3rem;
}

.product-fb__media-swiper {
  width: 100%;
  height: 38.75rem;
}

.product-fb__media-slide {
  position: absolute !important;
  top: 0;
  left: 0;
  width: 22.5rem;
  height: 38.75rem;
  transition: transform 0.5s ease-out;
  transform-origin: top left;
  will-change: transform;
  cursor: pointer;
  user-select: none;
}

.product-fb__media-slide.no-transition,
.product-fb__media-slide.no-transition::before {
  transition: none !important;
}

.product-fb__media-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: rgba(0, 0, 0, 0.4);
  transition:
    opacity 0.5s ease-out,
    visibility 0.5s ease-out;
  z-index: 2;
}

.product-fb__media-slide.swiper-slide-active::before {
  opacity: 0;
  visibility: hidden;
}

.product-fb__media-slide.swiper-slide-active .product-fb__media-play-button {
  pointer-events: auto;
  cursor: pointer;
}

.product-fb__media-video {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  overflow: hidden;
  background-color: #f5f5f5;
}

.product-fb__media-thumbnail {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.product-fb__media-thumbnail::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: rgba(0, 0, 0, 0.3);
  z-index: 2;
}

.product-fb__media-thumbnail-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-fb__media-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background: transparent;
  transform-origin: center;
  transform: translate3d(-50%, -50%, 0)
    scale(var(--btn-scale-x, 1), var(--btn-scale-y, 1));
  width: 3.25rem;
  height: 3.25rem;
  z-index: 5;
  pointer-events: none;
}

.product-fb__media-play-button svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-fb__media-embed {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #000;
  opacity: 0;
  pointer-events: none;
  z-index: 1;
}

.product-fb__media-video--playing .product-fb__media-embed {
  opacity: 1;
  pointer-events: auto;
}

.product-fb__media-embed iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  overflow: hidden;
  width: 100%;
  height: auto;
  min-height: 100%;
  aspect-ratio: 9 / 16;
  border: 0;
  transform: translate(-50%, -50%);
}

.product-fb__media-overlay {
  position: absolute;
  top: 3.5rem;
  left: 0.5rem;
  right: 3rem;
  bottom: 4.5rem;
  z-index: 3;
  display: none;
  border-radius: inherit;
  touch-action: pan-y;
  cursor: grab;
}

.product-fb__media-video--playing .product-fb__media-overlay {
  display: block;
}

.product-fb__media-video--loading .product-fb__media-play-button {
  display: none;
}

.product-fb__media-video--loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2.5rem;
  height: 2.5rem;
  margin: -1.25rem 0 0 -1.25rem;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: product-fb-spin 0.8s linear infinite;
  z-index: 10;
}

@keyframes product-fb-spin {
  to {
    transform: rotate(360deg);
  }
}

.product-fb__media-video--playing .product-fb__media-thumbnail,
.product-fb__media-video--playing .product-fb__media-play-button {
  display: none;
}

.product-fb__content-swiper {
  position: absolute;
  right: 13.75rem;
  bottom: 2.12rem;
  width: 40rem;
}

.product-fb__content {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.product-fb__text {
  color: rgba(66, 66, 66, 0.8);
  text-align: justify;
  font-family: "SF Pro Display";
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  margin-bottom: 3.56rem;
  display: -webkit-box;
  line-clamp: 4;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-fb__meta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 9.75rem;
  min-height: 3.125rem;
  flex-shrink: 0;
}

.product-fb__author {
  color: #680103;
  font-family: "SF Pro Display";
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
}

.product-fb__link {
  color: #424242;
  font-family: "SF Pro Display";
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  margin-top: 0.5rem;
}

.product-fb__pagination {
  position: absolute;
  right: 48.12rem;
  bottom: 2.44rem;
  display: flex;
  align-items: center;
  z-index: 5;
}

.product-fb__pagination-button {
  position: relative;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6.25rem;
  background: #fff;
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.12);
}

.product-fb__pagination-button svg {
  width: 1.25rem;
  height: 1.25rem;
  transition: filter 400ms cubic-bezier(0.41, 0.02, 0, 1.01);
}

.product-fb__pagination-button::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(50% 169.61% at 50% 50%, #cb5140 46.54%, #d8a061 91.01%);
  opacity: 0;
  transition: opacity 400ms cubic-bezier(0.41, 0.02, 0, 1.01);
}

.product-fb__pagination-button:hover::before {
    opacity: 1;
}

.product-fb__pagination-button:hover svg {
  filter: brightness(0) invert(1);
}

.product-fb__pagination-button--prev {
  margin-right: 0.625rem;
}

@media (max-width: 640px) {
  .product-fb {
    padding: 3.4375rem 0 0;
    margin-bottom: 0;
  }

  .product-fb__bg {
    bottom: 13.79rem;
    width: 25.5625rem;
    height: 3.37006rem;
    object-fit: contain;
  }

  .product-fb__title {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
  }

  .product-fb__media-swiper {
    height: 37.78125rem;
    padding: 0 0.75rem;
  }

  .product-fb__media-slide {
    width: 21.9375rem;
    height: 37.78125rem;
  }

  .product-fb__media-play-button {
    width: 2rem;
    height: 2rem;
  }

  .product-fb__media-overlay {
    position: absolute;
    top: 5rem;
    left: 0;
    right: auto;
    width: 34%;
    bottom: 7rem;
    z-index: 4;
    touch-action: pan-y;
  }

  .product-fb__media-video--playing .product-fb__media-overlay {
    display: block;
  }

  .product-fb__content-swiper {
    position: static;
    right: 0;
    bottom: 0;
    width: 100%;
    padding: 0 0.75rem;
    margin-top: 2.89rem;
  }

  .product-fb__content {
    flex-direction: column-reverse;
    align-items: flex-start;
  }

  .product-fb__text {
    margin-top: 1rem;
    margin-bottom: 0;
    line-clamp: 7;
    -webkit-line-clamp: 7;
  }

  .product-fb__meta {
    min-height: 2.625rem;
  }

  .product-fb__author {
    font-size: 0.75rem;
  }

  .product-fb__link {
    font-size: 0.75rem;
    margin-top: 0.375rem;
  }

  .product-fb__pagination {
    position: absolute;
    right: 0.75rem;
    bottom: 10.19rem;
  }
}


/* ===== template-parts/single-product/related-product/assets/styles.css ===== */
.related-products {
    padding-bottom: 7.5rem;
}

.related-products__header {
    max-width: 91.5rem;
    margin: 0 auto;
    margin-bottom: 3rem;
}

.related-products__title {
    font-family: 'Phudu', sans-serif;
    font-size: 3.625rem;
    font-weight: 700;
    line-height: 1.1;
    text-transform: uppercase;
    color: #680103;
}

.related-products__slider-wrap {
    position: relative;
    max-width: 91.5rem;
    margin: 0 auto;
}

.related-products__swiper {
    overflow: hidden;
}

.related-products__swiper .swiper-slide {
    width: 21rem;
}

/* Navigation arrows */
.related-products__nav {
    position: absolute;
    top: 15.31rem;
    z-index: 2;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: #ffffff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 1.875rem rgba(0, 0, 0, 0.12);
    padding: 0;
}

.related-products__nav::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(
        50% 169.61% at 50% 50%,
        #cb5140 46.54%,
        #d8a061 91.01%
    );
    opacity: 0;
    transition: opacity 400ms cubic-bezier(0.4, -0.01, 0, 1);
    z-index: -1;
}

.related-products__nav:hover::before {
    opacity: 1;
}

.related-products__nav:hover svg {
    filter: brightness(0) invert(1);
}

.related-products__nav svg {
    width: 1.25rem;
    height: 1.25rem;
    transition: filter 400ms cubic-bezier(0.4, -0.01, 0, 1);
}

.related-products__nav.swiper-button-disabled {
    opacity: 0.3;
    cursor: default;
    pointer-events: none;
}

.related-products__nav--prev {
    left: -1.87rem;
}

.related-products__nav--next {
    right: -1.87rem;
}

.related-products__slider-wrap .related-products__pagination {
    display: none;
    justify-content: center;
    align-items: center;
    margin-top: 1.5rem;
}

.related-products__slider-wrap .related-products__pagination .swiper-pagination-bullet {
    width: 1.96875rem;
    height: 0.125rem;
    background: #1D1D1D;
    opacity: 0.32;
    margin: 0;
    border-radius: 0rem;
    transition: opacity 0.3s ease;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.related-products__slider-wrap .swiper-pagination-bullet:not(:last-child) {
    margin-right: 0.1875rem;
     border-radius:0;
}

.related-products__slider-wrap .related-products__pagination .swiper-pagination-bullet-active {
    opacity: 1;
    border-radius:0 !important;
}

/* Mobile */
@media screen and (max-width: 639.98px) {
    .related-products {
        padding-top: 3.4375rem;
        padding-bottom: 3.4375rem;
    }

    .related-products__header {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
        margin-bottom: 1.5rem;
    }

    .related-products__title {
        font-size: 1.75rem;
        text-align: center;
    }

    .related-products__slider-wrap {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }

    .related-products__swiper {
        overflow: hidden;
    }

    .related-products__swiper .swiper-slide {
        width: calc((100% - 0.375rem) / 2);
    }

    .related-products__nav {
        display: none;
    }

    .related-products__slider-wrap .related-products__pagination {
        display: flex;
    }

    .related-products__divider {
        width: 8.4375rem;
        height: 0.125rem;
        margin-left: auto;
        margin-right: auto;
        background-image: repeating-linear-gradient(
            to right,
            #1c1c1c 0,
            #1c1c1c 2rem,
            transparent 2rem,
            transparent 2.1875rem
        );
    }
}


/* ===== template-parts/single-product/assets/styles.css ===== */

main {
  padding-top: 6.625rem;
  position: relative;
  background-image: var(--wpr-bg-4bfa975a-1e37-44f4-99e3-497e5124b8af);
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  background-attachment: fixed;
}


@media (max-width: 638.98px) {
  main {
    padding-top: 3.75rem;
    background-image: var(--wpr-bg-a16e7b1e-23da-4f0a-8ab4-ca1e923d0959);
  }
}

