/* =====================
   Bokai Goods Read Main
   ===================== */
.bokai_goods_read_main {
  width: 100%;
  padding-top: var(--section-padding);
}

/* =====================
   Unified Section Header Style
   ===================== */
.bokai_goods_read_section_header {
  text-align: left;
  margin-bottom: 2.5rem;
}

.bokai_goods_read_section_title {
  font-family: var(--title-font-family);
  font-size: var(--font-size-h1);
  font-weight: 700;
  line-height: 1.125;
  color: var(--title-text-color);
  white-space: normal;
  word-break: break-all;
}

.bokai_goods_read_section_subtitle {
  font-family: var(--font-family);
  font-size: var(--font-size-h4);
  font-weight: 400;
  line-height: 1.25;
  color: #9b9b9b;
  margin: 0;
  white-space: normal;
}

/* =====================
   1. Breadcrumb Navigation
   ===================== */
.bokai_goods_read_breadcrumb {
  width: 100%;
}

.bokai_goods_read_breadcrumb_nav {
  /* display: flex; */
  /* align-items: center; */
  vertical-align: middle;
  word-break: break-word;
  gap: 0.5rem;
  overflow: hidden;
  /* flex-wrap: wrap; */
}

.bokai_goods_read_breadcrumb_link {
  font-family: var(--font-family);
  font-size: var(--font-size-sm);
  font-weight: 400;
  color: var(--text-color);
  text-decoration: none;
  transition: color 0.3s ease;
  display: contents;
  flex-shrink: 0;
}

.bokai_goods_read_breadcrumb_link:hover {
  color: var(--color-primary);
}

.bokai_goods_read_breadcrumb_separator {
  font-family: var(--font-family);
  font-size: var(--font-size-sm);
  color: #9b9b9b;
  display: contents;
  flex-shrink: 0;
  color: var(--color-primary);
}

.bokai_goods_read_breadcrumb_current {
  font-family: var(--font-family);
  font-size: var(--font-size-sm);
  font-weight: 500;
  color: var(--color-primary);
  display: contents;
  flex-shrink: 0;
}

/* =====================
   2. Hero Banner (Product Gallery + Info)
   ===================== */
.bokai_goods_read_hero {
  width: 100%;
  padding: var(--section-padding) 0;
  background-color: #ffffff;
  padding-bottom: 1.25rem;
}

/* PC Layout */
.bokai_goods_read_hero_pc {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
}

/* Left: Gallery (Main Image + Thumbnail below) */
.bokai_goods_read_hero_gallery {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-shrink: 0;
}

/* Main Image Display */
.bokai_goods_read_hero_main {
  width: 36.875rem;
  height: 42.5rem;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: #f8f8f8;
}

.bokai_goods_read_hero_main_link {
  display: none;
  width: 100%;
  height: 100%;
}

.bokai_goods_read_hero_main_link[aria-index='1'] {
  display: block;
}

.bokai_goods_read_hero_main_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bokai_goods_read_hero_video_icon {
  color: #fff;
  font-size: 48px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
}

/* Thumbnail Swiper (Horizontal, below main image) */
.bokai_goods_read_hero_thumb_container {
  position: relative;
  display: flex;
  gap: 3rem;
  align-items: center;
  width: 36.875rem;
}

.bokai_goods_read_hero_thumb_swiper {
  width: 100%;
}

.bokai_goods_read_hero_thumb_wrapper {
  display: flex;
}

.bokai_goods_read_hero_thumb_slide {
  width: 110px !important;
  height: 110px !important;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.3s ease;
  flex-shrink: 0;
  margin-right: 3.125rem;
}

.bokai_goods_read_hero_thumb_slide.swiper-slide-thumb-active {
  border-color: var(--color-primary);
}

.bokai_goods_read_hero_thumb_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Thumbnail Navigation Buttons */
.bokai_goods_read_hero_thumb_prev,
.bokai_goods_read_hero_thumb_next {
  position: relative;
  z-index: 10;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background-color: rgba(242, 253, 246, 1);
}

.bokai_goods_read_hero_thumb_prev:hover svg path,
.bokai_goods_read_hero_thumb_next:hover svg path,
.bokai_goods_read_hero_thumb_prev:active svg path,
.bokai_goods_read_hero_thumb_next:active svg path {
  fill: var(--color-primary);
}

/* Right: Product Info */
.bokai_goods_read_hero_info {
  flex: 1;
}

.bokai_goods_read_hero_title {
  font-family: var(--title-font-family);
  /* font-size: var(--font-size-h1); */
  font-size: max(3.5rem, 26px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--title-text-color);
  text-align: left;
  padding-bottom: 1.875rem;
  /* max-width: 38.4375rem; */
  margin: 0 auto;
}

.bokai_goods_read_desc {
  font-family: var(--title-font-family);
  font-size: var(--font-size-md);
  font-weight: 700;
  line-height: 1.5;
  color: var(--title-text-color);
  margin-bottom: 1.875rem;
  border-top: #9b9b9b solid 1px;
  padding-top: 1.25rem;
}

.bokai_goods_read_desc > div {
  border: 1px solid #717171;
  border-radius: 8px;
  overflow: hidden;
}

.bokai_goods_read_desc table {
}
.bokai_goods_read_desc tbody {
  /* overflow: hidden; */
  /* border-radius: 8px; */
}

.bokai_goods_read_desc tbody tr {
  border-bottom: 1px solid #717171;
}

.bokai_goods_read_desc tbody tr:nth-last-of-type(1) {
  border: none;
}

.bokai_goods_read_desc tbody tr:nth-of-type(2n + 1) {
  background: #f8f8f8;
}

.bokai_goods_read_desc tbody tr td:nth-last-of-type(1) {
  border-left: 1px solid #717171;
}

.bokai_goods_read_desc tbody tr td {
  padding: 10px;
  font-family: var(--font-family);
  /* font-weight: 400; */
  color: #9b9b9b;
  font-size: max(1.5rem, 16px);
  font-weight: 700;
}

.bokai_goods_read_desc tbody tr td * {
  font-size: max(1.5rem, 16px) !important;
  font-weight: 700 !important;
}

.bokai_goods_read_hero_btn.bokai-btn {
  padding: 1rem 7.3125rem;
  font-size: var(--font-size-md);
  font-weight: 400;
}

/* Hero Actions (Button + Share) */
.bokai_goods_read_hero_actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.bokai_goods_read_hero_share {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.bokai_goods_read_hero_share .social-media > a img {
  width: 3rem !important;
}

.bokai_goods_read_hero_share .component_social_media {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.bokai_goods_read_hero_share .component_social_media a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-color);
  transition:
    background 0.3s ease,
    transform 0.3s ease;
}

.bokai_goods_read_hero_share .component_social_media a:hover {
  background: var(--color-primary);
  transform: scale(1.1);
}

.bokai_goods_read_hero_share .component_social_media img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

/* brands  */
.bokai_goods_read_brands {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.25rem var(--root-container-spacing);
  margin-top: 2rem;
}

.bokai_goods_read_brands_list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.875rem;
}

.bokai_goods_read_brands_list_item {
  width: max(5rem, 64px);
  height: max(5rem, 64px);
}

.bokai_goods_read_brands_list_item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/*  */
.bokai_goods_read_extension_container {
  margin-top: 10px;
}

.bokai_goods_read_extension_title {
  font-family: var(--title-font-family);
  font-size: var(--font-size-h2);
  font-weight: 700;
  line-height: 1.125;
  color: var(--title-text-color);
  margin-bottom: 1.25rem;
  white-space: normal;
  word-break: break-all;
}

.bokai_goods_read_extension_container_content {
  background: rgba(242, 253, 246, 1);
  padding: 1.875rem 2.5rem;
  overflow: hidden;
}

.bokai_goods_read_extension_content {
  word-break: break-all;
}

/* =====================
   3. Featured Product Concepts
   ===================== */
.bokai_goods_read_featured {
  position: relative;
  width: 100%;
  padding: var(--section-padding) 0;
  background-color: #f2fdf6;
}

.bokai_goods_read_featured_swiper_container {
  position: relative;
  padding: 0 6.5rem;
}

.bokai_goods_read_featured_swiper_navigation {
  position: absolute;
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
  bottom: 2.5rem;
  z-index: 2;
  padding: 0 2.5rem;
  display: flex;
  justify-content: space-between;
}
.bokai_goods_read_featured_swiper {
  width: 100%;
}

.bokai_goods_read_featured_wrapper {
  display: flex;
}

.bokai_goods_read_featured_slide {
  width: 100%;
  flex-shrink: 0;
  max-width: 20.75rem;
  margin-right: 6.6875rem;
}

.bokai_goods_read_featured_slide_image {
  width: 100%;
  /* height: 15.625rem; */
  aspect-ratio: 332 / 460;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 10px;
}

.bokai_goods_read_featured_slide_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bokai_goods_read_featured_slide_title {
  font-family: var(--title-font-family);
  font-size: var(--font-size-md);
  font-weight: 400;
  line-height: 1.5;
  color: #9b9b9b;
  margin: 0;
  text-align: center;
}

.bokai_goods_read_featured_img {
  position: absolute;
  z-index: 0;
  width: 100%;
  object-fit: contain;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

/* Featured Navigation Buttons */
.bokai_goods_read_featured_prev,
.bokai_goods_read_featured_next {
  position: relative;
  z-index: 10;
  cursor: pointer;
  width: 32px;
  height: 32px;
  /* display: flex; */
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background-color: rgba(242, 253, 246, 1);
  display: none;
}

.bokai_goods_read_featured_prev:hover svg path,
.bokai_goods_read_featured_next:hover svg path,
.bokai_goods_read_featured_prev:active svg path,
.bokai_goods_read_featured_next:active svg path {
  fill: var(--color-primary);
}

/* =====================
   4. OEM & ODM
   ===================== */
.bokai_goods_read_oem_odm {
  width: 100%;
  /* padding: var(--section-padding) 0; */
  padding-bottom: var(--section-padding);
  background: #ffffff;
}

.bokai_goods_read_oem_odm_tabs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: fit-content;
  max-width: 100%;
  margin-top: 1.25rem;
  padding: 0.5rem 2.625rem;
  border: 1.5px solid rgba(54, 190, 106, 0.5);
  border-radius: 100px;
}

.bokai_goods_read_oem_odm_tab {
  flex-shrink: 0;
  padding: 0.5rem 3.125rem;
  border: 0;
  border-radius: 100px;
  background: transparent;
  font-family: var(--font-family);
  font-size: var(--font-size-md);
  font-weight: 400;
  line-height: 1.5;
  color: var(--title-text-color);
  cursor: pointer;
}

.bokai_goods_read_oem_odm_tab.active {
  background: var(--color-primary);
  color: #ffffff;
}

.bokai_goods_read_oem_odm_body {
  position: relative;
  margin-top: 5rem;
}

.bokai_goods_read_oem_odm_panel {
  display: none;
  grid-template-columns: minmax(0, 1fr) minmax(0, 40.4375rem);
  align-items: center;
  gap: 3.9375rem;
}

.bokai_goods_read_oem_odm_panel.active {
  display: grid;
}

.bokai_goods_read_oem_odm_text {
  font-family: var(--font-family);
  font-size: var(--font-size-md);
  font-weight: 400;
  line-height: 1.5;
  color: var(--title-text-color);
  word-break: break-word;
}

.bokai_goods_read_oem_odm_image {
  width: 100%;
  aspect-ratio: 647 / 363;
  border-radius: 12px;
  overflow: hidden;
}

.bokai_goods_read_oem_odm_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bokai_goods_read_oem_odm_nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 2rem;
  height: 2rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(242, 253, 246, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
  cursor: pointer;
}

.bokai_goods_read_oem_odm_nav:hover svg path {
  fill: var(--color-primary);
}

.bokai_goods_read_oem_odm_prev {
  left: -3rem;
}

.bokai_goods_read_oem_odm_next {
  right: -3rem;
}

/* =====================
   5. Customization Options
   ===================== */
.bokai_goods_read_custom_options {
  width: 100%;
  padding: var(--section-padding) 0;
  background: #ffffff;
}

.bokai_goods_read_custom_options_grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.5rem;
}

.bokai_goods_read_custom_options_card {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  min-height: 13.5rem;
  padding: 2.5rem;
  border-radius: 16px;
  background: #f8f8f8;
  overflow: hidden;
}

.bokai_goods_read_custom_options_card_icon {
  width: 6.25rem;
  height: 6.25rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: var(--color-primary);
  overflow: hidden;
}

.bokai_goods_read_custom_options_card_icon_img {
  width: 3rem;
  height: 3rem;
  object-fit: contain;
}

.bokai_goods_read_custom_options_card_body {
  min-width: 0;
  flex: 1;
}

.bokai_goods_read_custom_options_card_title {
  font-family: var(--title-font-family);
  font-size: var(--font-size-h3);
  font-weight: 700;
  line-height: 1.22;
  color: var(--title-text-color);
  margin: 0 0 1.25rem 0;
  word-break: break-word;
}

.bokai_goods_read_custom_options_card_desc {
  font-family: var(--font-family);
  font-size: var(--font-size-md);
  font-weight: 400;
  line-height: 1.5;
  color: #9b9b9b;
  margin: 0;
  word-break: break-word;
}

/* =====================
   6. FAQ Section
   ===================== */
.bokai_goods_read_custom_faq {
  width: 100%;
  /* padding: var(--section-padding) 0; */
  padding-bottom: var(--section-padding);
  background-color: #ffffff;
}

.bokai_goods_read_custom_faq_title {
  font-family: var(--title-font-family);
  font-size: var(--font-size-h1);
  font-weight: 700;
  line-height: 1.125;
  color: var(--title-text-color);
  margin: 0 0 1.25rem 0;
  white-space: normal;
  word-break: break-word;
}

.bokai_goods_read_custom_faq_subtitle {
  font-family: var(--font-family);
  font-size: var(--font-size-h4);
  font-weight: 400;
  line-height: 1.25;
  color: #9b9b9b;
  margin: 0;
  white-space: normal;
  word-break: break-word;
}

.bokai_goods_read_custom_faq_list {
  display: flex;
  flex-direction: column;
}

/* .bokai_goods_read_custom_faq_item.active .bokai_goods_read_custom_faq_question {
  padding: 1.25rem 0;
} */

.bokai_goods_read_custom_faq_question {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 2.5rem 0;
  border-top: 1px solid #9b9b9b;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.bokai_goods_read_custom_faq_item:nth-of-type(1)
  .bokai_goods_read_custom_faq_question {
  border-bottom: none;
  border-top: none;
}

.bokai_goods_read_custom_faq_item:last-of-type
  .bokai_goods_read_custom_faq_question {
  border-bottom: 1px solid #9b9b9b;
}

.bokai_goods_read_custom_faq_item.active .bokai_goods_read_custom_faq_question {
  border-bottom: 1px solid #9b9b9b;
}

.bokai_goods_read_custom_faq_q_label {
  font-family: var(--title-font-family);
  font-size: var(--font-size-md);
  font-weight: 700;
  line-height: 1.5;
  color: var(--title-text-color);
}

.bokai_goods_read_custom_faq_question_text {
  flex: 1;
  font-family: var(--title-font-family);
  font-size: var(--font-size-md);
  font-weight: 700;
  line-height: 1.5;
  color: var(--title-text-color);
}

.bokai_goods_read_custom_faq_icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: var(--title-text-color);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.bokai_goods_read_custom_faq_item.active .bokai_goods_read_custom_faq_icon {
  transform: rotate(180deg);
}

.bokai_goods_read_custom_faq_answer {
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease;
}

.bokai_goods_read_custom_faq_item.active
  .bokai_goods_read_custom_faq_answer
  p
  b {
  color: var(--color-primary);
}

.bokai_goods_read_custom_faq_answer p {
  font-family: var(--font-family);
  font-size: var(--font-size-md);
  font-weight: 400;
  line-height: 1.5;
  color: var(--text-color);
  margin: 0;
  padding: 2.5rem;
}

/* =====================
   Responsive Styles
   ===================== */
@media screen and (max-width: 1024px) {
  .bokai_goods_read_hero_pc {
    flex-direction: column;
    gap: 2rem;
  }

  .bokai_goods_read_hero_title {
    max-width: 100%;
    margin: 0px;
  }

  .bokai_goods_read_hero_gallery {
    width: 100%;
    max-width: 100%;
  }

  .bokai_goods_read_hero_main {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .bokai_goods_read_hero_thumb_container {
    width: 100%;
    gap: 1rem;
  }

  .bokai_goods_read_hero_info {
    width: 100%;
  }

  .bokai_goods_read_hero_thumb_slide {
    width: 88px !important;
    height: 88px !important;
    margin-right: 1rem;
  }

  .bokai_goods_read_hero_btn.bokai-btn {
    width: 100%;
    padding: 1rem 2rem;
  }

  .bokai_goods_read_hero_actions {
    align-items: flex-start;
  }

  .bokai_goods_read_featured_swiper_container {
    padding: 0;
  }
  .bokai_goods_read_featured_slide {
    max-width: min(18rem, 72vw);
    margin-right: 1.5rem;
  }

  .bokai_goods_read_section_header {
    margin-bottom: 3rem;
  }

  .bokai_goods_read_extension_container_content {
    padding: 1.5rem;
  }

  .bokai_goods_read_featured_slide_image {
    margin-bottom: 0px;
  }

  .bokai_goods_read_featured_swiper_navigation {
    display: none;
  }

  .bokai_goods_read_oem_odm_tabs {
    width: 100%;
    overflow-x: auto;
    padding: 0.5rem;
    scrollbar-width: none;
  }

  .bokai_goods_read_oem_odm_tabs::-webkit-scrollbar {
    display: none;
  }

  .bokai_goods_read_oem_odm_tab {
    padding: 0.5rem 1.5rem;
    font-size: var(--font-size-md);
  }

  .bokai_goods_read_oem_odm_body {
    margin-top: 2.5rem;
  }

  .bokai_goods_read_oem_odm_panel,
  .bokai_goods_read_oem_odm_panel.active {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .bokai_goods_read_oem_odm_text {
    font-size: var(--font-size-md);
  }

  .bokai_goods_read_oem_odm_nav {
    display: none;
  }

  .bokai_goods_read_custom_options_grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .bokai_goods_read_custom_options_card {
    gap: 1.5rem;
    min-height: auto;
    padding: 1.5rem;
  }

  .bokai_goods_read_custom_options_card_icon {
    width: 5rem;
    height: 5rem;
  }

  .bokai_goods_read_custom_options_card_icon_img {
    width: 2.5rem;
    height: 2.5rem;
  }

  .bokai_goods_read_custom_options_card_title {
    margin-bottom: 0.75rem;
  }

  .bokai_goods_read_custom_faq_answer p {
    padding: 1.5rem;
  }

  .bokai_goods_read_custom_faq_question {
    padding: 1.25rem 0;
  }
}

@media screen and (max-width: 576px) {
  .bokai_goods_read_section_header {
    margin-bottom: 2rem;
  }

  .bokai_goods_read_hero_thumb_prev,
  .bokai_goods_read_hero_thumb_next {
    width: 28px;
    height: 28px;
  }

  .bokai_goods_read_hero_thumb_slide {
    width: 72px !important;
    height: 72px !important;
  }

  .bokai_goods_read_custom_options_card {
    align-items: flex-start;
  }

  .bokai_goods_read_custom_options_card_icon {
    width: 4rem;
    height: 4rem;
    border-radius: 12px;
  }

  .bokai_goods_read_custom_options_card_icon_img {
    width: 2rem;
    height: 2rem;
  }

  .bokai_goods_read_custom_faq_question {
    gap: 0.75rem;
  }

  .bokai_goods_read_custom_faq_answer p {
    padding: 1rem 0;
  }
}
