/* 배너 */
.visual_banner_outer {
  width: 100%;
  height: auto;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  background-color: #F1E4D4;
}

#main_banner01,
#main_banner02,
#main_banner03 {
  display: none;
}

#main_banner01:checked~.banner_slide_wrap .slide_img:nth-child(1) {
  display: block;
}

#main_banner02:checked~.banner_slide_wrap .slide_img:nth-child(2) {
  display: block;
}

#main_banner03:checked~.banner_slide_wrap .slide_img:nth-child(3) {
  display: block;
}

.visual_banner {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.05);
}

.visual_banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.visual_banner_outer .slide_img {
  display: none;
  width: 100%;
  height: 100%;
}

.btn_main_banner {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1310px;
  text-align: right;
  pointer-events: none;
}

.btn_main_banner label {
  display: inline-block;
  position: relative;
  pointer-events: all;
  width: 22px;
  height: 48px;
  margin: 0 5px;
  vertical-align: top;
  background-color: #F2EFEC;
  border: 1.5px solid #BAD4DD;
  box-sizing: border-box;
  cursor: pointer;
  transition: all 0.25s ease;
  clip-path: polygon(100% 0, 100% 100%, 50% 78%, 0 100%, 0 0);
}

.btn_main_banner label:hover {
  background-color: #e8f4f7;
  border-color: #4897A8;
}

#main_banner01:checked ~ .btn_main_banner label[for="main_banner01"],
#main_banner02:checked ~ .btn_main_banner label[for="main_banner02"],
#main_banner03:checked ~ .btn_main_banner label[for="main_banner03"] {
  width: 26px;
  height: 58px;
  background-color: #2C5C6B;
  border-color: #2C5C6B;
  box-sizing: border-box;
}

.notice_ticker {
  width: 100%;
  background-color: #F2EFEC;
  border-top: 1px solid #E4E0DA;
  border-bottom: 1px solid #E4E0DA;
  padding: 10px 0;
  overflow: hidden;
  position: relative;
  z-index: 10;
}

.notice_ticker_inner {
  width: 1310px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0;
  position: relative;
}

.notice_ticker_label {
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  background-color: #4897A8;
  padding: 3px 8px;
  border-radius: 2px;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 2;
  margin-right: 16px;
}

.notice_ticker_overflow {
  overflow: hidden;
  flex: 1;
}

.notice_ticker_track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: ticker_scroll 18s linear infinite;
}

.notice_ticker_track span {
  font-size: 13px;
  color: #555;
  flex-shrink: 0;
}

@keyframes ticker_scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/*----------------- - event - ----------------*/

.wrap_event01 {
  width: 100%;
  background-color: #EDEAE5;
  padding: 0;
  overflow: hidden;
}

#btn_recommend01,
#btn_recommend02,
#btn_recommend03 {
  display: none;
}

.event_main {
  width: 1310px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 220px 1fr 440px;
  gap: 0;
  min-height: 460px;
}

.ev_tabs {
  background-color: #EDEAE5;
  display: flex;
  flex-direction: column;
  padding: 40px 0 32px;
  border-right: 1px solid #E4E0DA;
}

.ev_tabs_header {
  padding: 0 24px 28px;
  border-bottom: 1px solid #E4E0DA;
}

.ev_tabs_eyebrow {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #4897A8;
  font-weight: 600;
  margin-bottom: 12px;
}

.ev_tabs_title {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.35;
  letter-spacing: -0.5px;
}

.ev_tabs_list {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.ev_tab_item {
  display: flex;
  flex-direction: column;
  padding: 20px 24px;
  cursor: pointer;
  border-left: 3px solid transparent;
  transition: background 0.2s ease, border-color 0.2s ease;
  gap: 4px;
  border-bottom: 1px solid #E4E0DA;
}

.ev_tab_item:last-child {
  border-bottom: none;
}

.ev_tab_item:hover {
  background: rgba(72,151,168,0.06);
  border-left-color: rgba(72,151,168,0.4);
}

.ev_tab_num {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #4897A8;
}

.ev_tab_name {
  font-size: 17px;
  font-weight: 600;
  color: #999;
  transition: color 0.2s;
}

.ev_tab_sub {
  font-size: 11px;
  color: #bbb;
  margin-top: 2px;
  font-weight: 400;
}

#btn_recommend01:checked ~ .ev_tabs .ev_tabs_list label[for="btn_recommend01"],
#btn_recommend02:checked ~ .ev_tabs .ev_tabs_list label[for="btn_recommend02"],
#btn_recommend03:checked ~ .ev_tabs .ev_tabs_list label[for="btn_recommend03"] {
  background: rgba(255,255,255,0.7);
  border-left-color: #4897A8;
}

#btn_recommend01:checked ~ .ev_tabs .ev_tabs_list label[for="btn_recommend01"] .ev_tab_name,
#btn_recommend02:checked ~ .ev_tabs .ev_tabs_list label[for="btn_recommend02"] .ev_tab_name,
#btn_recommend03:checked ~ .ev_tabs .ev_tabs_list label[for="btn_recommend03"] .ev_tab_name {
  color: #1a1a1a;
}

#btn_recommend01:checked ~ .ev_tabs .ev_tabs_list label[for="btn_recommend01"] .ev_tab_sub,
#btn_recommend02:checked ~ .ev_tabs .ev_tabs_list label[for="btn_recommend02"] .ev_tab_sub,
#btn_recommend03:checked ~ .ev_tabs .ev_tabs_list label[for="btn_recommend03"] .ev_tab_sub {
  color: #666;
}

.ev_main_img_wrap {
  position: relative;
  overflow: hidden;
  background: #2a2a2a;
}

.ev_main_img {
  display: none;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0; left: 0;
}

.ev_main_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.ev_main_img:hover img {
  transform: scale(1.04);
}

.ev_main_img_info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 60px 28px 24px;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, transparent 100%);
}

.ev_main_cat {
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 4px;
  font-weight: 400;
}

.ev_main_name {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.5px;
  margin-bottom: 6px;
}

.ev_main_price {
  font-size: 18px;
  font-weight: 600;
  color: #BAD4DD;
}

.ev_main_actions {
  position: absolute;
  bottom: 32px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ev_main_actions .heart_btn_product,
.ev_main_actions .cart_btn_product {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
  transition: background 0.2s;
}

.ev_main_actions .heart_btn_product:hover { background: #fff; }
.ev_main_actions .cart_btn_product:hover { background: #2C5C6B; }
.ev_main_actions .cart_btn_product:hover .cart_icon { display: none; }
.ev_main_actions .cart_btn_product:hover::after {
  content: "";
  display: block;
  width: 22px; height: 22px;
  background: url('../img/shopping_cart_icon_w.png') center/contain no-repeat;
}
.ev_main_actions .heart_btn_product:hover .heart_icon { display: none; }
.ev_main_actions .heart_btn_product:hover::after {
  content: "";
  display: block;
  width: 22px; height: 22px;
  background: url('../img/like_icon_full.png') center/contain no-repeat;
}

.ev_main_actions .heart_icon,
.ev_main_actions .cart_icon {
  width: 22px; height: 22px;
  object-fit: contain;
}

#btn_recommend01:checked ~ .ev_main_img_wrap .ev_main_img_01,
#btn_recommend02:checked ~ .ev_main_img_wrap .ev_main_img_02,
#btn_recommend03:checked ~ .ev_main_img_wrap .ev_main_img_03 {
  display: block;
}

.ev_sub_wrap {
  background: #EDEAE5;
  position: relative;
  overflow: hidden;
}

.ev_sub_set {
  display: none;
  height: 100%;
  flex-direction: column;
  gap: 0;
}

#btn_recommend01:checked ~ .ev_sub_wrap .ev_sub_set_01,
#btn_recommend02:checked ~ .ev_sub_wrap .ev_sub_set_02,
#btn_recommend03:checked ~ .ev_sub_wrap .ev_sub_set_03 {
  display: flex;
}

.ev_sub_card {
  flex: 1;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #D8D4CE;
}

.ev_sub_card:last-child {
  border-bottom: none;
}

.ev_sub_img_frame {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: absolute;
  top: 0; left: 0;
}

.ev_sub_img_frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.ev_sub_card:hover .ev_sub_img_frame img {
  transform: scale(1.05);
}

.ev_sub_info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 40px 20px 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 100%);
}

.ev_sub_cat {
  font-size: 11px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 3px;
}

.ev_sub_name {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
  letter-spacing: -0.2px;
}

.ev_sub_price {
  font-size: 14px;
  font-weight: 600;
  color: #BAD4DD;
}

.ev_sub_actions {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  gap: 6px;
  z-index: 5;
}

.ev_sub_actions .heart_btn_product,
.ev_sub_actions .cart_btn_product {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.88);
  box-shadow: 0 1px 6px rgba(0,0,0,0.2);
  transition: background 0.2s;
}

.ev_sub_actions .cart_btn_product:hover { background: #2C5C6B; }
.ev_sub_actions .cart_btn_product:hover .cart_icon { display: none; }
.ev_sub_actions .cart_btn_product:hover::after {
  content: "";
  display: block;
  width: 18px; height: 18px;
  background: url('../img/shopping_cart_icon_w.png') center/contain no-repeat;
}
.ev_sub_actions .heart_btn_product:hover .heart_icon { display: none; }
.ev_sub_actions .heart_btn_product:hover::after {
  content: "";
  display: block;
  width: 18px; height: 18px;
  background: url('../img/like_icon_full.png') center/contain no-repeat;
}

.ev_sub_actions .heart_icon,
.ev_sub_actions .cart_icon {
  width: 18px; height: 18px;
  object-fit: contain;
}

/* Time_Sale(Event02) */

.wrap_event02 {
  background-color: #f5f5f5;
  margin-top: 0;
  position: relative;
}

.wrap_content_event02 {
  position: relative;
  width: 100%;
  margin-bottom: 20px;
}

.img_banner_timesale {
  width: 100%;
  height: 120px;
  object-fit: cover;
  display: block;
}

.titlebar_container {
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 1310px;
  height: 64px;

  background-color: white;
  border: 1px solid #2C5C6B;
  border-radius: 10px;
  padding: 0 20px;
  box-sizing: border-box;

  display: flex;
  align-items: center;
  z-index: 10;
}

.title_event02 {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
}

.title_event02 h1 {
  font-size: 28px;
  color: #333;
  font-weight: 700;
  flex-grow: 1;
}

.wrap_countdown {
  margin-right: 15px;
  display: flex;
  align-items: center;
  color: #2C5C6B;
  font-weight: bold;
}

.icon_alarm {
  width: 18px;
  height: 18px;
  margin-right: 12px;
}

.icon_plus {
  width: 14px;
  height: 14px;
}

.timer {
  font-size: 18px;
}

.more_link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
}

.event_time_sale {
  position: relative;
  width: 1310px;
  margin: 0 auto;
  margin-top: 32px;
  padding: 0;
}

.slider_viewport {
  overflow: hidden;
  width: 1310px;
  margin: 0 auto;
}

.product_track {
  display: flex;

  transform: translateX(0px);

}

/* @keyframes slide_event02 {
  0% {
    transform: translateX(0);
  }

  20% {
    transform: translateX(-650px);
  }

  40% {
    transform: translateX(-1330px);
  }

  60% {
    transform: translateX(-1970px);
  }

  100% {
    transform: translateX(-2650px);
  }
} */

.product_evnent02 {

  height: 480px;
  color: #333;
  background-color: #fff;
  padding: 10px;
  margin-right: 10px;
  flex-shrink: 0;
  margin-bottom: 24px;
  box-sizing: border-box;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  position: relative;
}

.product_track .product_evnent02:last-child {
  margin-right: 0;
}

.frame_event02 {
  overflow: hidden;
  width: 100%;
  height: 360px;
}

.event02_img {
  width: 100%;
  height: 100%;
  position: relative;
  transition: transform 0.3s ease;
}

.product_evnent02:hover .event02_img {
  transform: scale(1.1);
}

.cart_event02 {
  position: absolute;
  width: 32px;
  height: 32px;
  z-index: 5;
  bottom: 120px;
  right: 16px;
}

.cart_event02 .cart_icon {
  width: 20px;
  height: 24px;
  object-fit: contain;
}

.add_to_cart_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
  transition: background-color 0.1s ease;
}

.add_to_cart_btn:hover {
  background-color: #44667A;
  transition: background-color 0s;
}

.add_to_cart_btn:hover .cart_icon {
  display: none;
}

.add_to_cart_btn:hover::after {
  content: "";
  display: block;
  width: 20px;
  height: 24px;
  background-image: url('../img/shopping_cart_icon_w.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.event02_txt {
  padding: 10px 15px;
}

.event02_txt p {
  margin: 0;
  line-height: 1.4;
  color: #2C5C6B;
  font-weight: 460;
}

.event02_txt p:nth-child(1) {
  font-size: 12px;
}

.event02_txt p:nth-child(2) {
  font-size: 20px;
  color: #333;
  margin-top: 2px;
  margin-bottom: 6px;
}

.event02_txt p:nth-child(3) {
  font-weight: bold;
  font-size: 18px;
  float: left;
}

.event02_txt p:nth-child(4) {
  color: #000;
  float: right;
  font-size: 20px;
  font-weight: 500;
}

.prev_btn,
.next_btn {
  position: absolute;
  top: calc(120px + 32px + (480px / 2));
  
  transform: translateY(-50%);
  z-index: 9;

  background-color: rgba(255, 255, 255, 0.9);
  border: 1px solid #ddd;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  align-items: center;
  justify-content: center;
  color: #333;
  font-size: 20px;
  font-weight: bold;
  opacity: 0.8;
}

.prev_btn {
  display: flex;
  left: 200px;
}

.prev_btn img,
.next_btn img {
  width: 28px;
  height: 28px;
}

.next_btn {
  display: flex;
  right: 200px;
}

/* mini_banner */

.event_banner_mini {
  width: 1310px;
  margin: 0 auto;
  margin-top: 100px;
  margin-bottom: 72px;
  display: flex;
  justify-content: space-between;
}

.mini_banner {
  width: 650px;
}

/* Best_product */

.best_title {
  width: 1310px;
  margin: 24px auto;
  overflow: hidden;
  margin-top: 60px;
}

.best_title>h1 {
  text-align: center;
  font-weight: 600;
}

.best_title>p {
  text-align: right;
}

.best_product,
.new_product {
  width: 320px;
  position: relative;
}

.hide_item {
  display: none !important;
}

.best_item {
  width: 1310px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 50px;
}

.product_img {
  width: 100%;
  height: 100%;
  transition: all 0.3s;
}

.product_img img {
  object-fit: cover;
}

.frame_product_img {
  height: 380px;
  overflow: hidden;
  position: relative;
}

.best_product:hover .product_img,
.new_product:hover .product_img {
  transform: scale(1.05);
}

.heart_product {
  position: absolute;
  bottom: 182px;
  right: 12px;

  width: 36px;
  height: 36px;
  z-index: 5;
}

.heart_btn_product {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
  transition: background-color 0.1s ease;
}

.heart_product .heart_icon {
  width: 24px;
  height: 28px;
  object-fit: contain;
}

.heart_btn_product:hover {
  background-color: #fff;
  transition: background-color 0s;
}

.heart_btn_product:hover .heart_icon {
  display: none;
}

.heart_btn_product:hover::after {
  content: "";
  display: block;
  width: 24px;
  height: 28px;
  background-image: url('../img/like_icon_full.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.cart_product {
  position: absolute;
  width: 36px;
  height: 36px;
  z-index: 5;
  bottom: 136px;
  right: 12px;
}

.cart_product .cart_icon {
  width: 24px;
  height: 28px;
  object-fit: contain;
}

.cart_btn_product {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
  transition: background-color 0.1s ease;
}

.cart_btn_product:hover {
  background-color: #44667A;
  transition: background-color 0s;
}

.cart_btn_product:hover .cart_icon {
  display: none;
}

.cart_btn_product:hover::after {
  content: "";
  display: block;
  width: 24px;
  height: 28px;
  background-image: url('../img/shopping_cart_icon_w.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.product_txt {
  padding: 10px 15px;
  height: 120px;
}

.product_txt p {
  margin: 0;
  line-height: 1.4;
  color: #2C5C6B;
  font-weight: 460;
}

.product_txt .Category_product a {
  color: #2C5C6B;
  font-size: 12px;
}

.product_txt p:nth-child(2) {
  font-size: 20px;
  color: #333;
  margin-top: 2px;
  margin-bottom: 6px;
}

.product_txt p:nth-child(3) {
  font-weight: bold;
  font-size: 18px;
  float: left;
}

.product_txt p:last-child {
  color: #000;
  float: right;
  font-size: 20px;
  font-weight: 500;
}

.list_bottom_controls {
  width: 400px;
  height: 40px;
  background-color: #fff;
  border: 1px solid #2C5C6B;
  box-sizing: border-box;
  border-radius: 8px;
  margin: 0px auto;
  margin-bottom: 40px;
  text-align: center;
  line-height: 40px;
}

.fold_btn {
  display: block;
  width: 100%;
  height: 100%;
  color: #2C5C6B;
}

/* Wide_Banner */
.wide_banner {
  width: 1310px;
  margin: 0 auto;
  margin-bottom: 12px;
}

/* New_Arrival */

/* New_Review */

.title_review {
  width: 1310px;
  margin: 50px auto 30px auto;
  font-size: 32px;
  font-weight: 700;
  color: #333;
}

.wrap_review {
  width: 1310px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.review {

  width: 100%;
  height: 240px;

  display: flex;
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
  overflow: hidden;
}

.text_review {
  width: 430px;
  padding: 25px 25px 12px 25px;
  display: flex;
  flex-direction: column;
  position: relative;
  color: #333;
}

.text_review_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.text_review .text_review_header p {
  font-size: 20px;
  font-weight: 700;
  color: #333;
  margin: 0;
}

.text_review span {
  display: block;
  color: #4897A8;
  font-size: 18px;
  margin: 0;
}

.text_review>p {
  flex-grow: 1;

  font-size: 16px;
  line-height: 1.6;
  color: #333;
  overflow: hidden;
  margin-bottom: 12px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
}

.text_review_footer {}

.text_review_footer p:first-child a {
  font-size: 14px;
  font-weight: 600;
  color: #2C5C6B;
  margin-bottom: 5px;
}

.text_review_footer p:last-child {
  font-size: 14px;
  color: #333;
  font-weight: 500;
  text-align: right;

  position: absolute;
  bottom: 12px;
  right: 25px;
}

.img_review {
  width: 200px;
  height: 100%;
  overflow: hidden;
}

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

.reviewSwiper {
  width: 100%;
  height: 210px;
}

.review.swiper-slide {
  display: flex;
  justify-content: space-between;
  width: auto;
  height: 100%;
  box-sizing: border-box;
}

/* 1. 페이지네이션 (인디케이터 점) 스타일*/
.reviewSwiper .swiper-scrollbar {
  height: 10px;
  background: #ffffff;
  opacity: 0.6;
}

.reviewSwiper .swiper-scrollbar-drag {
  background: #BAD4DD;
  border-radius: 3px;
  cursor: grab;
}

.reviewSwiper .swiper-scrollbar-drag:hover {
  background: #1a4452;
}

.reviewSwiper {
  padding-bottom: 30px;

}

/* 2. 네비게이션 (좌우 화살표) 스타일*/
.reviewSwiper .swiper-button-next,
.reviewSwiper .swiper-button-prev {
  color: #2C5C6B;
  width: 30px;
  height: 30px;
  top: 50%;
  transform: translateY(-50%);
  margin-top: -30px;
  transition: opacity 0.3s;
}

.reviewSwiper .swiper-button-next:hover,
.reviewSwiper .swiper-button-prev:hover {
  opacity: 0.7;
}

.reviewSwiper .swiper-button-prev {
  left: -40px;
}

.reviewSwiper .swiper-button-next {
  right: -40px;
}