/*control hide or show content*/
.festive_add_on .add_on_regular {
  display: none;
}

.festive_add_on .add_on_regular.active {
  display: block;
}

.festive_add_on .add_on_special {
  display: none;
}

.festive_add_on .add_on_special.active {
  display: block;
}

/*--------------- theme switcher---------------*/
.festive_add_on .theme_switcher_wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  height: 50px;
  overflow: hidden;
  position: sticky;
  top: 0;
  z-index: 50;
  border-radius: 8px 8px 0 0;
  /* display: none; */
}

.festive_add_on .theme_switcher_wrapper .theme_a,
.festive_add_on .theme_switcher_wrapper .theme_b {
  flex: 1;
  padding: 0 10px;
  color: #9f6a00;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  transition: none;
  background-color: #ede7d5;
  letter-spacing: 1px;
  font-size: 18px;
}

.festive_add_on .theme_switcher_wrapper .theme_a.active {
  background-color: #b48d18;
  background: linear-gradient(90deg, #e1bd54 0%, #b48d18 80%, #b48d18 100%);
  color: #ffffff;
  padding-right: 0;
  filter: drop-shadow(2px 6px 16px rgba(158, 136, 70, 1));
}

.festive_add_on .theme_switcher_wrapper .theme_a:after {
  background-color: #b48d18;
}

.festive_add_on .theme_switcher_wrapper .theme_b.active {
  background-color: #e1bd54;
  background: linear-gradient(90deg, #e1bd54 0%, #b48d18 80%, #b48d18 100%);
  color: #ffffff;
  padding-left: 0;
  filter: drop-shadow(-2px 6px 16px rgba(158, 136, 70, 1));
}

.festive_add_on .theme_switcher_wrapper .theme_a:after,
.festive_add_on .theme_switcher_wrapper .theme_b:after {
  content: "";
  position: absolute;
  top: -2px;
  width: 22px;
  height: 100px;
  border-radius: 12px;
  transition: none;
}

.festive_add_on .theme_switcher_wrapper .theme_a:after {
  background: #b48d18;
  right: -22px;
  transform: rotate(-15deg);
}

.festive_add_on .theme_switcher_wrapper .theme_b:after {
  background: #e1bd54;
  left: -22px;
  transform: rotate(15deg);
}

.festive_add_on .theme_switcher_wrapper .theme_a.active,
.festive_add_on .theme_switcher_wrapper .theme_b.active {
  z-index: 2;
  font-weight: 600;
}

.festive_add_on.add_buy .theme_switcher_wrapper {
  justify-content: flex-start;
}

.festive_add_on.add_buy .theme_switcher_wrapper .theme_a {
  max-width: 50%;
}

/**---------------content box---------------**/
.festive_add_on .content_box {
  background-color: #fff;
  border-radius: 0 0 8px 8px;
}

/*--------------- hero banner---------------*/
.festive_add_on .hero_section {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  padding: 0;
  max-width: 100%;
  margin: 0 auto;
}

.festive_add_on .hero_kv {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.festive_add_on .hero_kv img {
  width: 100%;
  max-width: 100%;
}

/*--------------- description section---------------*/
.festive_add_on .des_section {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 30px 20px;
  max-width: 768px;
  margin: 0 auto;
  font-size: 14px;
  color: inherit;
  flex-direction: column;
  font-weight: 200;
  text-align: center;
  line-height: 1.2;
}

.festive_add_on .des_section span {
  padding: 0 4px;
  text-transform: inherit;
}

/*--------------- terms & conditions button---------------*/
.festive_add_on .terms {
  display: flex;
  align-items: center;
  justify-content: center;
}

.festive_add_on .terms div {
  font-size: 11px;
  padding: 3px 4px 2px;
  display: inline-block;
  margin: auto 0;
  border-radius: 2px;
  cursor: pointer;
  line-height: 1;
  background-color: #9e9184;
  color: #ffffff;
}

/*--------------- tab list---------------*/

.festive_add_on .tab_list {
  list-style: none;
  display: flex;
  position: relative;
  max-width: 300px;
  margin: 0 auto;
  font-size: 15px;
}

.festive_add_on .tab_item {
  flex: 1;
  text-align: center;
  transition: 0.3s;
  opacity: 1;
  color: #1d1d1d;
}

.festive_add_on .tab_trigger {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 0 5px;
  font-weight: 300;
  color: #1d1d1d;
  border-radius: 8px 8px 0 0;
  /* height: 40px; */
}

.festive_add_on .tab_item.active .tab_trigger {
  color: #b48d18;
  font-weight: 400;
}

[lang="en"] .festive_add_on .tab_item .tab_trigger {
  letter-spacing: -0.3px;
}

.festive_add_on .tab_list .line {
  content: "";
  display: block;
  height: 2px;
  position: absolute;
  bottom: 0;
  background-color: #b48d18;
  transition: 0.3s;
  z-index: 99;
}

/*new tab line style allow scroll*/
.festive_add_on .tab_list_wrapper {
  text-align: center;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.festive_add_on .tab_list_wrapper::-webkit-scrollbar {
  display: none;
  background-color: transparent;
}

.festive_add_on .tab_list {
  max-width: 100%;
  display: inline-flex;
  align-items: center;
}

.festive_add_on .tab_item {
  min-width: 150px;
}

.festive_add_on .tab_item .tab_trigger {
  padding: 4px 8px;
  min-height: 40px;
}

/*--------------- tab content---------------*/
.festive_add_on .tab_content {
  padding: 20px;
  background-color: #fbfbfb;
  border-radius: 0 0 8px 8px;
  display: none;
}

.festive_add_on .tab_content.active {
  display: inline-block;
}

/*--------------- addon product list---------------*/
.festive_add_on .addon_product_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.festive_add_on .add_on_regular .addon_product_list {
  padding: 20px;
  background-color: #fbfbfb;
  border-radius: 0 0 8px 8px;
}

.festive_add_on .brand {
  font-weight: bold;
  font-size: 13px;
  color: inherit;
  margin: 0;
  text-transform: uppercase;
}

.festive_add_on .name {
  font-weight: 400;
  font-size: 13px;
  overflow: hidden;
  color: inherit;
  margin: 0;
  padding-bottom: 0;
  text-transform: uppercase;
}

.festive_add_on .thum_info {
  display: flex;
}

.festive_add_on .thumb {
  width: 100px;
  cursor: pointer;
}

.festive_add_on .thum_info img {
  width: 100%;
}

.festive_add_on .profile {
  text-align: left;
  padding: 10px;
  flex: 1;
}

.festive_add_on .basic {
  cursor: pointer;
}

.festive_add_on .addon_product_list .addon_product_card {
  background-color: #fff;
  padding: 16px;
  border-radius: 8px;
  border-width: 0.5px solid #dddddd;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.04);
}

.festive_add_on .addon_product_list .option_box {
  margin: auto;
  padding: 0;
  color: #666666;
  margin: 10px 0 20px 0;
  font-size: 12px;
  font-weight: 400;
}

.festive_add_on .price_info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.festive_add_on .wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.festive_add_on .btn_action {
  /*
  width: 40px;
  height: 40px;
*/
  width: 32px;
  height: 32px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 4px;
  cursor: pointer;
}

.festive_add_on .btn_action.btn_add_cart {
  background: #b48c18;
}

.festive_add_on .btn_action.btn_lock {
  background: #999999;
}

.festive_add_on .btn_action.btn_add_cart:hover {
  background: #83640b;
}

.festive_add_on .btn_action.btn_add_cart .icon {
  /*
  width: 22px;
  height: 22px;
*/
  width: 18px;
  height: 18px;
  background: url(/library/images/tc/icon/shopbag/shopbag_button_add_to_bag.svg) no-repeat center;
  background-size: contain;
}

.festive_add_on .btn_action.btn_lock .icon {
  width: 22px;
  height: 22px;
  background: url(/library/images/tc/icon/shopbag/shopbag_button_lock.svg) no-repeat center;
  background-size: contain;
}

.festive_add_on .btn_action.btn_add_cart .count_badge {
  width: 16px;
  height: 16px;
  font-size: 10px;
  background-color: #bd0808;
  color: #fff;
  padding: 3px 0;
  position: absolute;
  border-radius: 8px;
  top: -8px;
  right: -8px;
  text-align: center;
}

.festive_add_on .btn_action.btn_add_cart.disabled {
  opacity: 1 !important;
}

.festive_add_on .btn_action.btn_add_cart.disabled {
  background: #b48c184d;
}

.btn_action.btn_add_cart_restricted {
  width: auto;
  height: auto;
  color: #666666;
  font-size: 13px;
}

.festive_add_on .buy_price {
  font-size: 14px;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.festive_add_on .buy_price:not(:has(.buy_pricetag)) {
  padding: 0;
}

.festive_add_on .buy_price .buy_price_crossed {
  position: static;
  /* margin-left: 5px; */
  order: -1;
}

.festive_add_on .buy_price .local_price {
  font-size: 11px;
  color: #8f8f8f;
  padding: 5px 0 0;
}

[lang="en"] .festive_add_on .info_tc {
  display: none;
}

/*--------------- responsive ---------------*/
@media screen and (min-width: 1024px) and (max-width: 1280px) {
  .festive_add_on .buy_price {
    font-size: 14px;
  }
}

@media screen and (max-width: 1024px) {

  .festive_add_on .add_on_regular .addon_product_list,
  .festive_add_on .tab_content {
    padding: 16px;
  }
}

@media screen and (max-width: 768px) {
  .festive_add_on .addon_product_list {
    grid-template-columns: 1fr;
  }

  .festive_add_on .buy_price {
    font-size: 14px;
  }

  .festive_add_on .tab_list {
    max-width: 100%;
  }
}

@media screen and (max-width: 500px) {
  .festive_add_on .addon_product_list {
    grid-template-columns: 1fr;
  }

  .festive_add_on .theme_switcher_wrapper .theme_a,
  .festive_add_on .theme_switcher_wrapper .theme_b {
    font-size: 14px;
    padding: 0 5px;
  }

  .festive_add_on .theme_switcher_wrapper .theme_a.active,
  .festive_add_on .theme_switcher_wrapper .theme_b.active {
    padding: 0 5px;
  }

  [lang="en"].festive_add_on .theme_switcher_wrapper .theme_a,
  [lang="en"].festive_add_on .theme_switcher_wrapper .theme_b {
    letter-spacing: -0.05px;
  }

  .festive_add_on.add_buy .theme_switcher_wrapper .theme_a.active {
    max-width: calc(100% - 23px);
  }
}

/* .action_tab .but_general.but_badge {
  background-image: url(/library/images/tc/single_page/19th_anniversary/19th_addon_mobilebadge_tc.png);
} */

/*19th anniversary ends*/

/*golden week oct2025 starts*/
/* .festive_add_on.campaign_special_add_buy .theme_switcher_wrapper .theme_a,
.festive_add_on.campaign_special_add_buy .theme_switcher_wrapper .theme_a:after,
.festive_add_on.campaign_special_add_buy .add_on_event {
  background-color: #cb9161;
  background-image: none;
  color: #ffffff;
} */

/* .festive_add_on.campaign_special_add_buy .add_on_golden {
  background-color: #fbf1dd;
} */