@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Material+Symbols+Rounded:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200");
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.min.css");
:root {
  --e_prime: #4286F4;
  --e_prime_rgb: 66, 134, 244;
  --e_blue: #146cf9;
  --e_blue_rgb: 20, 108, 249;
  --e_white: #ffffff;
  --e_white_rgb: 255, 255, 255;
  --e_black: #000000;
  --e_black_rgb: 0, 0, 0;
  --e_red: #FF4141;
  --e_red_rgb: 255, 65, 65;
  --e_yellow: #FF9800;
  --e_yellow_rgb: 255, 152, 0;
  --e_green: #43A047;
  --e_green_rgb: 67, 160, 71;
  --e_cyan: #00C2A8;
  --e_cyan_rgb: 0, 194, 168;
  --e_purple: #AF52DE;
  --e_purple_rgb: 175, 82, 222;
  --e_line: #dfdfdf;
  --e_line_rgb: 223, 223, 223;
  --e_gray_33: #333333;
  --e_gray_33_rgb: 51, 51, 51;
  --e_gray_66: #666666;
  --e_gray_66_rgb: 102, 102, 102;
  --e_gray_99: #999999;
  --e_gray_99_rgb: 153, 153, 153;
  --e_gray_cc: #CCCCCC;
  --e_gray_cc_rgb: 204, 204, 204;
  --e_gray_ef: #f9f9f9;
  --e_gray_ef_rgb: 249, 249, 249;
  --e_gray_f5: #f5f5f5;
  --e_gray_f5_rgb: 245, 245, 245;
}

*::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
*::-webkit-scrollbar-track {
  background: var(--e_gray_ef);
  border-radius: 3px;
}
*::-webkit-scrollbar-thumb {
  background: var(--e_gray_cc);
  border-radius: 3px;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  text-decoration: none;
  border: none;
  word-break: keep-all;
  transition: 0.3s;
  font-family: "Pretendard", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  width: 100%;
  height: 100%;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  background: #fff; /* FOUC 방지 */
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s, opacity 0.5s ease-in-out;
  font-size: clamp(14px, 1vw, 16px);
  font-weight: 400;
  vertical-align: middle;
  color: #000;
  line-height: 160%;
  letter-spacing: -0.5px;
}

/* body에 'loaded' 클래스가 추가되었을 때 화면을 표시 */
body.loaded {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}

html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, a, button, address, em, img, small, strong, sub, sup, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, hr {
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
  line-height: 120%;
  font-family: "Pretendard", sans-serif;
}

ol, ul, li {
  list-style: none;
}

table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  line-height: 120%;
}

form, iframe {
  display: block;
  border: 0;
}

fieldset {
  display: inline-block;
  border: 0;
}

img, button {
  border: 0 none;
  vertical-align: middle;
  line-height: 100%;
}

hr {
  height: 0;
  display: none;
}

i, em, address {
  font-style: normal;
}

label, button {
  cursor: pointer;
}

caption, legend {
  width: 0;
  height: 0;
  margin: 0;
  padding: 0;
  text-indent: -9999em;
  overflow: hidden;
  font-size: 0;
}

header, footer, section, article, aside, nav, hgroup, details, menu, figure, figcaption {
  display: block;
}

input, textarea, select {
  margin: 0;
  padding: 0;
  font-size: clamp(14px, 1vw, 16px);
  font-weight: 400;
  vertical-align: middle;
  line-height: 120%;
  background: none;
}

textarea {
  padding: 20px;
  border: 1px solid var(--e_line);
  resize: none;
  overflow-y: auto;
  min-height: 200px;
}

a {
  text-decoration: none;
  word-break: break-all;
}
a :link, a:visited, a:hover, a:active, a:focus {
  text-decoration: none;
}

*:focus {
  outline: none;
}

/* =========================================================
  Button Styles
  ========================================================= */
.em_none {
  display: none !important;
}

button {
  padding: 0 20px;
  border-radius: 10px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  gap: 10px;
  font-size: 16px;
}
button .material-symbols-rounded {
  font-size: 20px;
}
button.btn_gray {
  background-color: var(--e_gray_ef);
  color: #000;
}
button.btn_gray:hover {
  background-color: color-mix(in srgb, var(--e_gray_ef), black 10%);
  box-shadow: 0 0 5px rgba(var(--e_gray_ef_rgb), 0.5);
}
button.btn_gray99 {
  background-color: var(--e_gray_99);
  color: #fff;
}
button.btn_gray99:hover {
  background-color: color-mix(in srgb, var(--e_gray_99), black 10%);
  box-shadow: 0 0 5px rgba(var(--e_gray_99_rgb), 0.5);
}
button.btn_black {
  background-color: var(--e_gray_33);
  color: #fff;
}
button.btn_black span {
  color: #fff;
}
button.btn_black:hover {
  background-color: color-mix(in srgb, var(--e_gray_33), white 10%);
  box-shadow: 0 0 5px rgba(var(--e_gray_33_rgb), 0.5);
}
button.btn_blue {
  background-color: var(--e_prime);
  color: #fff;
}
button.btn_blue:hover {
  background-color: color-mix(in srgb, var(--e_prime), black 10%);
  box-shadow: 0 0 5px rgba(var(--e_prime_rgb), 0.5);
}
button.btn_line {
  color: var(--e_prime);
  border: 1px solid var(--e_prime);
  background: #fff;
}
button.btn_line:hover {
  background-color: var(--e_prime);
  color: #fff;
  box-shadow: 0 0 5px rgba(var(--e_prime_rgb), 0.5);
}
button.btn_grayline {
  color: #000;
  border: 1px solid var(--e_line);
  background: #fff;
}
button.btn_grayline:hover {
  border-color: var(--e_prime);
  color: var(--e_prime);
  box-shadow: 0 0 5px rgba(var(--e_prime_rgb), 0.5);
}
button.btn_txt {
  background: none;
  color: var(--e_prime);
  height: auto;
  text-decoration: underline;
}
button.btn_txt:hover {
  color: color-mix(in srgb, var(--e_prime), black 10%);
}
button.btn_lg {
  width: 100%;
  height: 60px;
  font-size: 20px;
}
@media (max-width: 1199px) {
  button.btn_lg {
    min-width: 200px;
  }
}
@media (max-width: 767px) {
  button.btn_lg {
    height: 50px;
    font-size: 18px;
  }
}
button.disabled {
  background-color: var(--e_gray_ef);
  color: var(--e_gray_cc);
  cursor: not-allowed;
  border: none;
}
button.disabled:hover {
  background-color: var(--e_gray_ef);
  box-shadow: none;
  color: var(--e_gray_cc);
  cursor: not-allowed;
  border: none;
}
button.s_btn {
  height: 30px;
  font-size: 12px;
}
button.search-button {
  background: none;
  padding: 0;
  width: auto;
  height: auto;
}
button.search-button:hover span {
  color: color-mix(in srgb, var(--e_prime), black 10%);
}

/* =========================================================
  Input Styles
  ========================================================= */
.input_group {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.input_group span {
  font-size: 12px;
  padding-left: 10px;
}
.input_group .input-error {
  color: var(--e_red);
  display: none;
}
.input_group .input-subtext {
  color: var(--e_gray_99);
}
.input_group.insert-auth {
  display: none;
}
.input_group.error input {
  border-color: var(--e_red);
  box-shadow: 0 0 5px rgba(var(--e_red_rgb), 0.5);
}
.input_group.error .input-error {
  display: block;
}
.input_group .btninput {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  border: 1px solid var(--e_line);
  border-radius: 10px;
  background: #fff;
  gap: 10px;
  padding-right: 5px;
  height: 50px;
}
.input_group .btninput.readonly {
  background: var(--e_gray_ef);
}
.input_group .btninput.readonly:focus-within, .input_group .btninput.readonly:hover {
  border-color: var(--e_line);
  box-shadow: none;
}
.input_group .btninput:focus-within {
  border-color: var(--e_prime);
  box-shadow: 0 0 5px rgba(var(--e_prime_rgb), 0.5);
}
.input_group .btninput:hover {
  border-color: var(--e_prime);
}
.input_group .btninput p {
  padding-right: 10px;
  color: var(--e_gray_cc);
}
.input_group .btninput input {
  border: none;
  background: none;
}
.input_group .btninput input:focus {
  border: none;
  box-shadow: none;
}
.input_group .btninput .s_btn {
  background: var(--e_gray_33);
  color: #fff;
  border-radius: 10px;
  height: calc(100% - 10px);
  padding: 0 15px;
  font-size: 12px;
  font-weight: 500;
  width: auto;
}
.input_group .btninput .s_btn span {
  padding: 0;
}
.input_group .btninput .s_btn:hover {
  background-color: color-mix(in srgb, var(--e_gray_33), white 10%);
}
.input_group .btninput .resend-auth {
  display: none;
}

input[type=text], input[type=date], input[type=password], input[type=email], input[type=tel], input[type=number], textarea {
  width: 100%;
  padding: 0 15px;
  border: 1px solid var(--e_line);
  border-radius: 10px;
  background: #fff;
  font-size: 16px;
  color: #000;
  height: 50px;
  display: flex;
  align-items: center;
}
input[type=text].min_input, input[type=date].min_input, input[type=password].min_input, input[type=email].min_input, input[type=tel].min_input, input[type=number].min_input, textarea.min_input {
  width: fit-content;
}
input[type=text]::placeholder, input[type=date]::placeholder, input[type=password]::placeholder, input[type=email]::placeholder, input[type=tel]::placeholder, input[type=number]::placeholder, textarea::placeholder {
  color: var(--e_gray_99);
  font-size: 14px;
}
input[type=text]:focus, input[type=date]:focus, input[type=password]:focus, input[type=email]:focus, input[type=tel]:focus, input[type=number]:focus, textarea:focus {
  border-color: var(--e_prime);
  box-shadow: 0 0 5px rgba(var(--e_prime_rgb), 0.5);
}
input[type=text]:hover, input[type=date]:hover, input[type=password]:hover, input[type=email]:hover, input[type=tel]:hover, input[type=number]:hover, textarea:hover {
  border-color: var(--e_prime);
}

textarea {
  padding: 20px;
  min-height: 100px;
  height: auto;
  line-height: 160%;
}

input[readonly] {
  background: var(--e_gray_ef);
  color: var(--e_gray_66);
  font-size: 14px;
}
input[readonly].add_read {
  cursor: pointer;
}
input[readonly]:focus, input[readonly]:hover {
  border-color: var(--e_line);
  box-shadow: none;
}
input[readonly].no-bg {
  background: none;
  cursor: default;
  color: #000;
  font-size: 16px;
  border: none;
}
input[readonly].no-bg:focus, input[readonly].no-bg:hover {
  border-color: var(--e_line);
  box-shadow: none;
}

/* =========================================================
  Checkbox Styles
  ========================================================= */
.check-container {
  display: flex;
  position: relative;
}
.check-container input[type=checkbox] {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  border: 0;
  overflow: hidden;
  display: none;
}
.check-container label {
  position: relative;
  cursor: pointer;
  position: relative;
  height: 20px;
  display: flex;
  align-items: center;
  font-size: 14px;
  gap: 10px;
}
.check-container:hover {
  color: var(--e_prime);
}
.check-container:hover .check-icon {
  background: color-mix(in srgb, #fff, black 5%);
}
.check-container .check-icon {
  width: 20px;
  height: 20px;
  border-radius: 5px;
  background-color: #fff;
  border: 1px solid var(--e_gray_cc);
  position: relative;
}
.check-container .check-icon::before {
  content: "";
  position: absolute;
  box-sizing: border-box;
  width: 30%;
  height: 55%;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-70%) rotateZ(40deg);
  border-right: 2px solid var(--e_line);
  border-bottom: 2px solid var(--e_line);
}
.check-container [type=checkbox]:checked + label .check-icon {
  border-color: var(--e_prime);
  background-color: var(--e_prime);
}
.check-container [type=checkbox]:checked + label .check-icon::before {
  border-color: #fff;
}
.check-container.allcheck {
  width: 100%;
}
.check-container.allcheck label {
  font-size: 14px;
  height: 24px;
}
.check-container.allcheck .check-icon {
  width: 24px;
  height: 24px;
}
.check-container.non-checked input[type=checkbox] + label {
  pointer-events: none;
}
.check-container.non-checked input[type=checkbox] + label .check-icon {
  border: none;
  background: none;
}
.check-container.non-checked input[type=checkbox] + label .check-icon:hover {
  border: none;
  background: none;
}
.check-container.non-checked [type=checkbox]:checked + label .check-icon {
  background: none;
}
.check-container.non-checked [type=checkbox]:checked + label .check-icon::before {
  border-color: var(--e_prime);
}
.check-container.big label {
  font-size: 16px;
}
@media (max-width: 767px) {
  .check-container.big label {
    font-size: 14px;
  }
}
.check-container.error {
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
}
.check-container.error input[type=checkbox] + label .check-icon {
  border-color: var(--e_red);
}
.check-container.error .agree_error {
  text-align: left;
  color: var(--e_red);
  font-size: 12px;
  font-weight: 400;
  margin: 0;
  width: 100%;
  display: block;
  padding-left: 30px;
}
.check-container .agree_error {
  display: none;
}
.check-container.fulltype {
  justify-content: space-between;
  background: var(--e_gray_ef);
  padding: 0 20px;
  border-radius: 10px;
  box-sizing: border-box;
  height: 50px;
  align-items: center;
  flex: 1;
  font-size: 14px;
}
.check-container.fulltype label {
  height: 50px;
  align-items: center;
  flex: 1;
  font-size: 14px;
}
.check-container.fulltype label:hover .check-icon {
  background: none;
}
.check-container.fulltype .check-icon {
  border: none;
  background: none;
}
.check-container.fulltype .check-icon::before {
  border-width: 3px;
}
.check-container.fulltype [type=checkbox]:checked + label .check-icon {
  background: none;
}
.check-container.fulltype [type=checkbox]:checked + label .check-icon::before {
  border-color: var(--e_prime);
}
.check-container.fulltype .btn_terms {
  font-size: 12px;
  color: var(--e_gray_66);
  text-decoration: underline;
}
.check-container.fulltype .btn_terms:hover {
  color: var(--e_prime);
}

/* =========================================================
  Radio Styles 
  ========================================================= */
.check-type {
  display: flex;
  gap: 20px;
  justify-content: flex-start;
  min-height: 50px;
  align-items: center;
}
.check-type .radio-label {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: var(--e_gray_66);
  position: relative;
  gap: 5px;
  user-select: none;
  transition: color 0.2s;
}
.check-type input[type=radio] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.check-type .custom-radio {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--e_gray_cc);
  background: #fff;
  display: inline-block;
  position: relative;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}
.check-type input[type=radio]:checked + .custom-radio {
  border-color: var(--e_prime);
  box-shadow: 0 0 0 2px rgba(var(--e_prime_rgb), 0.15);
}
.check-type input[type=radio]:checked + .custom-radio::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--e_prime);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.check-type .radio-label input[type=radio]:checked ~ span, .check-type .radio-label input[type=radio]:checked ~ .custom-radio + span {
  color: var(--e_prime);
}

/* =========================================================
  select Styles 
  ========================================================= */
.custom_select_wrap {
  position: relative;
  min-width: 100px;
  font-size: 14px;
  flex: 1;
}
.custom_select_wrap span {
  font-size: 14px;
  padding: 0;
}
.custom_select_wrap .selected_text {
  color: var(--e_gray_99);
}
.custom_select_wrap .selected_option, .custom_select_wrap .option_item {
  padding: 0px 15px;
  height: 50px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 10px;
}
.custom_select_wrap .selected_option {
  border: 1px solid var(--e_line);
  background-color: #fff;
}
.custom_select_wrap .selected_option .arrow_icon {
  font-size: 16px;
}
.custom_select_wrap .selected_option .selected_content {
  flex: 1;
  display: flex;
  align-items: center;
}
.custom_select_wrap.open .selected_option {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-color: var(--e_prime);
}
.custom_select_wrap.open .selected_option .arrow_icon {
  transform: rotate(180deg);
}
.custom_select_wrap .option_list {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  border: 1px solid var(--e_prime);
  border-top: none;
  background-color: #fff;
  box-shadow: 0 4px 6px rgba(var(--e_black_rgb), 0.1);
  z-index: 1;
  list-style: none;
  padding: 0;
  margin: 0;
  border-radius: 0 0 10px 10px;
  max-height: 200px;
  overflow-y: auto;
}
.custom_select_wrap .option_item {
  color: #000;
  border-radius: 0;
}
.custom_select_wrap .option_item:hover {
  background-color: rgba(var(--e_prime_rgb), 0.05);
}
.custom_select_wrap .option_item.active {
  background-color: rgba(var(--e_prime_rgb), 0.1);
  color: var(--e_prime);
}
.custom_select_wrap .option_content {
  display: flex;
  align-items: center;
  white-space: nowrap;
  max-width: 100%;
  overflow: hidden;
}
.custom_select_wrap.type-color .option_content, .custom_select_wrap.type-color .selected_content {
  justify-content: space-between;
  width: 100%;
  padding-right: 10px;
  gap: 5px;
}
.custom_select_wrap.type-color .option_content dl, .custom_select_wrap.type-color .selected_content dl {
  display: flex;
  align-items: center;
  gap: 10px;
}
.custom_select_wrap.type-color .option_content dd, .custom_select_wrap.type-color .selected_content dd {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid #fff;
}

/* =========================================================
  Utility & Base Styles
  ========================================================= */
section {
  position: relative;
  display: block;
}

.material-symbols-rounded {
  font-variation-settings: "FILL" 0, "wght" 300, "GRAD" 50, "opsz" 40;
  font-size: 30px;
}

.typeA .type_B_con {
  display: none !important;
}

.typeB .type_A_con {
  display: none !important;
}

/*list icon*/
.ico_hot::before {
  content: "HOT";
  background-color: var(--e_red);
}

.ico_best::before {
  content: "BEST";
  background-color: var(--e_yellow);
}

.ico_trend::before {
  content: "TREND";
  background-color: var(--e_blue);
}

.ico_new::before {
  content: "NEW";
  background-color: var(--e_cyan);
}

.ico_pick::before {
  content: "PICK";
  background-color: var(--e_purple);
}

/* Navigation Badges (Speech Bubble) */
.has-badge {
  position: relative;
}

.n-badge {
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--e_prime);
  color: #fff;
  font-size: 10px;
  padding: 7px 8px 5px;
  border-radius: 10px;
  white-space: nowrap;
  font-weight: 700;
  line-height: 1;
  pointer-events: none;
  z-index: 5;
}
.n-badge::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid var(--e_prime);
}
.n-badge.b-red {
  background: var(--e_red);
}
.n-badge.b-red::after {
  border-top-color: var(--e_red);
}
.n-badge.b-blue {
  background: var(--e_blue);
}
.n-badge.b-blue::after {
  border-top-color: var(--e_blue);
}
.n-badge.b-green {
  background: var(--e_green);
}
.n-badge.b-green::after {
  border-top-color: var(--e_green);
}
.n-badge.b-yellow {
  background: var(--e_yellow);
}
.n-badge.b-yellow::after {
  border-top-color: var(--e_yellow);
}
.n-badge.b-cyan {
  background: var(--e_cyan);
}
.n-badge.b-cyan::after {
  border-top-color: var(--e_cyan);
}
.n-badge.b-purple {
  background: var(--e_purple);
}
.n-badge.b-purple::after {
  border-top-color: var(--e_purple);
}
@media (max-width: 1199px) {
  .n-badge {
    display: none;
  }
}

.loading {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
}
.loading .spinner {
  width: 35px;
  aspect-ratio: 1;
  background: no-repeat radial-gradient(farthest-side, var(--e_prime) 94%, rgba(0, 0, 0, 0)) 0 0, no-repeat radial-gradient(farthest-side, var(--e_prime) 94%, rgba(0, 0, 0, 0)) 100% 0, no-repeat radial-gradient(farthest-side, var(--e_prime) 94%, rgba(0, 0, 0, 0)) 100% 100%, no-repeat radial-gradient(farthest-side, var(--e_prime) 94%, rgba(0, 0, 0, 0)) 0 100%;
  background-size: 40% 40%;
  animation: spinner-l38 0.5s infinite;
}

@keyframes spinner-l38 {
  100% {
    background-position: 100% 0, 100% 100%, 0 100%, 0 0;
  }
}
.arrow-btn {
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0px 4px 10px rgba(var(--e_black_rgb), 0.05);
  outline: 1px solid var(--e_line);
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 2;
  padding: 0;
}
.arrow-btn::before {
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--e_gray_33);
  border-right: 2px solid var(--e_gray_33);
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
}
.arrow-btn:hover {
  background: var(--e_prime);
}
.arrow-btn:hover::before {
  border-color: #fff;
}
.arrow-btn.left {
  left: -10px;
}
.arrow-btn.left::before {
  transform: translate(-30%, -50%) rotate(-135deg);
}
.arrow-btn.right {
  right: -10px;
}
.arrow-btn.right::before {
  transform: translate(-60%, -50%) rotate(45deg);
}
@media (max-width: 1199px) {
  .arrow-btn {
    width: clamp(30px, 3.2vw, 40px);
    height: clamp(30px, 3.2vw, 40px);
  }
  .arrow-btn::before {
    width: clamp(6px, 1vw, 10px);
    height: clamp(6px, 1vw, 10px);
    border-width: clamp(1px, 0.32vw, 2px);
  }
}

/* ========================================================= */
/* 공통 유틸리티 클래스 (Common Utility Classes) */
/* ========================================================= */
.maxwidth {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}
@media (max-width: 1480px) {
  .maxwidth {
    padding: 0 40px;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .maxwidth {
    padding: 0 20px;
    width: 100%;
  }
}

.upperbtn {
  width: 40px;
  height: 40px;
  padding-top: 7px;
  background: var(--e_prime);
  border-radius: 26px;
  text-align: center;
  display: none;
  cursor: pointer;
  position: fixed;
  right: 40px;
  bottom: 40px;
  z-index: 9;
}
.upperbtn:hover {
  background: color-mix(in srgb, var(--e_prime), black 10%);
}
@media (max-width: 767px) {
  .upperbtn {
    bottom: 90px;
    right: 20px;
  }
}

.upperbtn-ico {
  width: 9px;
  height: 15px;
}

@media (max-width: 767px) {
  .detail-img {
    display: none;
  }
}

/* ========================================================= */
/* 검색 바 스타일 (Search Bar Styles) */
/* ========================================================= */
.search-bar-section {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
}

.search-bar-container {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 80px;
  width: 100%;
  padding-top: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--e_line);
}
@media (max-width: 1199px) {
  .search-bar-container {
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .search-bar-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
}
.search-bar-container .search-box-wrap {
  border-radius: 50px;
  border: 1px solid var(--e_prime);
}

.search-links {
  display: flex;
  gap: 21px;
}
@media (max-width: 767px) {
  .search-links {
    justify-content: space-around;
    width: 100%;
  }
  .search-links .sep {
    display: block;
  }
}

.search-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #000;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s ease-in-out;
}
.search-link:hover {
  color: var(--e_prime);
}
.search-link .material-symbols-rounded {
  font-size: 24px;
}
@media (max-width: 767px) {
  .search-link g {
    display: none;
  }
}

.search-box-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 50px;
  padding: 12px 16px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid var(--e_gray_cc);
}
.search-box-wrap span {
  font-size: 24px;
}
.search-box-wrap:focus-within {
  border: 1px solid var(--e_prime);
  box-shadow: 0px 4px 10px rgba(var(--e_black_rgb), 0.05);
}
@media (max-width: 767px) {
  .search-box-wrap {
    display: none;
    animation: fadeOut 0.5s ease-in-out forwards;
  }
  .search-box-wrap.act {
    display: flex;
    animation: fadeIn 0.5s ease-in-out forwards;
    width: 100%;
    border: 2px solid var(--e_prime);
  }
}

input[type=text].search-input {
  flex: 1;
  font-size: 14px;
  font-weight: 500;
  color: #000;
  border: none;
  outline: none;
  background: transparent;
  height: 100%;
  padding: 0;
}
input[type=text].search-input::placeholder {
  color: var(--e_gray_99);
}
input[type=text].search-input:hover, input[type=text].search-input:focus {
  box-shadow: none;
}

/* =========================================================
  Popup Styles
  ========================================================= */
.stop-scroll {
  overflow: hidden;
  height: 100%;
}

.popup_wrap {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .popup_wrap.full-popup {
    align-items: stretch;
    justify-content: stretch;
  }
  .popup_wrap.full-popup .popup_container {
    border-radius: 0;
  }
  .popup_wrap.full-popup .popup_container .popup_layout {
    height: 100vh;
    overflow-y: auto;
  }
}
@media (max-width: 767px) {
  .popup_wrap.login-popup {
    align-items: stretch;
    justify-content: stretch;
    display: block;
  }
  .popup_wrap .search-button {
    padding: 0;
  }
}

.popup_dim {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(var(--e_black_rgb), 0.5);
}
@media (max-width: 767px) {
  .login-popup .popup_dim {
    display: none;
  }
}

.popup_container {
  position: relative;
  background-color: #fff;
  border-radius: 30px;
  box-shadow: 0 5px 15px rgba(var(--e_black_rgb), 0.3);
  overflow: auto;
  display: inline-block;
}
.popup_container .popup_close_btn {
  position: absolute;
  top: -20px;
  right: -20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--e_gray_99);
  cursor: pointer;
}
.popup_container .popup_close_btn span:nth-child(2) {
  display: none;
}
.popup_container .popup_close_btn:hover {
  color: #000;
  transform: rotate(90deg);
}
@media (max-width: 767px) {
  .popup_container .popup_close_btn {
    top: -15px;
    right: -15px;
  }
  .login-popup .popup_container .popup_close_btn {
    left: 0;
    right: auto;
    top: -60px;
    z-index: 10;
  }
  .login-popup .popup_container .popup_close_btn:hover {
    transform: none;
  }
  .login-popup .popup_container .popup_close_btn span:nth-child(1) {
    display: none;
  }
  .login-popup .popup_container .popup_close_btn span:nth-child(2) {
    display: block;
  }
}

.popup_header {
  display: flex;
  position: relative;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  gap: 10px;
}
.popup_header h1 {
  font-size: 24px;
  font-weight: 700;
  line-height: 140%;
}
@media (max-width: 767px) {
  .popup_header h1 {
    font-size: 20px;
  }
}
.popup_header p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--e_gray_66);
}
@media (max-width: 767px) {
  .popup_header p {
    font-size: 12px;
  }
}
.popup_header h2 {
  font-size: 20px;
  font-weight: 700;
  line-height: 140%;
  text-align: center;
  width: 100%;
  padding: 20px 0 0;
}
@media (max-width: 767px) {
  .popup_header h2 {
    font-size: 18px;
  }
}

.popup_body {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--e_gray_66);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}

.popup_bottom_btn {
  display: flex;
  gap: 10px;
  padding: 10px 0 0;
  font-size: 12px;
  justify-content: space-between;
  border-top: 1px solid var(--e_line);
}
.popup_bottom_btn button {
  font-size: 14px;
  padding: 0;
}

.popup_footer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 400;
}
.popup_footer.col-2 {
  justify-content: space-between;
  gap: 10px;
}
@media (max-width: 767px) {
  .popup_footer.col-2 {
    gap: 20px;
    flex-direction: column;
    align-items: stretch;
  }
}
.popup_footer.col-2 li:first-child {
  text-align: left;
  flex: 1;
}
.popup_footer.col-2 li:last-child {
  flex: none;
  display: flex;
  gap: 10px;
}
@media (max-width: 767px) {
  .popup_footer.col-2 li:last-child {
    display: flex;
    justify-content: flex-end;
  }
  .popup_footer.col-2 li:last-child button {
    width: 100%;
  }
}

.popup_layout {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  padding: 40px;
  align-items: stretch;
  flex: 0 0 100%;
  width: 100%;
  min-width: 300px;
  max-width: 500px;
}
@media (max-width: 767px) {
  .popup_layout {
    padding: 30px;
    max-width: 320px;
  }
  .popup_layout.wide {
    width: 80vw;
    max-width: 100%;
  }
}

#noti-pop .popup_layout {
  max-width: 100%;
  height: 600px;
  max-height: 70vh;
  justify-content: flex-start;
}
@media (max-width: 767px) {
  #noti-pop .popup_layout {
    height: 100vh;
    max-height: 100vh;
  }
}

.popup_tab {
  display: flex;
  background-color: var(--e_gray_ef);
  border-radius: 10px;
}

.popup_tab .tab_btn {
  flex: 0 0 50%;
  text-align: center;
  padding: 10px 0;
  border-radius: 10px;
  color: #000;
  cursor: pointer;
  position: relative;
  font-size: 14px;
  font-weight: 500;
  background: none;
}
.popup_tab .tab_btn.current-tab {
  background-color: var(--e_prime);
  color: #fff;
}

/* =========================================================
  Login Popup
  ========================================================= */
.login-popup .popup_container {
  width: 380px;
}
.login-popup .popup_container > div {
  width: 100%;
}
@media (max-width: 767px) {
  .login-popup .popup_container {
    width: 100vw;
    height: 100vh;
    max-width: 100vw;
    max-height: 100vh;
    min-width: 0;
    min-height: 0;
    border-radius: 0;
    box-shadow: none;
    position: fixed;
    left: 0;
    top: 0;
    overflow-y: auto;
    background: #fff;
    display: flex;
    flex-direction: column;
    padding-bottom: 0;
  }
}
.login-popup button {
  width: 100%;
}
.login-popup .popup_layout {
  height: 670px;
  gap: 30px;
}
@media (max-width: 767px) {
  .login-popup .popup_layout {
    min-width: 0;
    max-width: 100vw;
    width: 100vw;
    height: auto;
    padding-top: 80px;
  }
}
.login-popup .popup_layout .popup_body {
  flex: 1;
}
.login-popup .popup_layout .popup_footer {
  border: none;
  flex-direction: column;
  gap: 20px;
}
.login-popup .popup_layout .login_item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
}
.login-popup .popup_layout .login_item a {
  color: var(--e_gray_66);
  font-size: 12px;
}
.login-popup .popup_layout .login_item a:hover {
  color: var(--e_prime);
}
.login-popup .popup_layout .login-sns {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
}
.login-popup .popup_layout .login-sns .login-sns-title {
  text-align: center;
  color: #232527;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}
.login-popup .popup_layout .login-sns-btn-row {
  display: flex;
  gap: 30px;
  justify-content: center;
  align-items: center;
}
.login-popup .popup_layout .login-sns-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.login-popup .popup_layout .login-sns-btn.naver {
  background: #00C73C;
}
.login-popup .popup_layout .login-sns-btn.naver:hover {
  background-color: color-mix(in srgb, #00C73C, black 10%);
}
.login-popup .popup_layout .login-sns-btn.kakao {
  background: #FFE800;
}
.login-popup .popup_layout .login-sns-btn.kakao:hover {
  background-color: color-mix(in srgb, #FFE800, black 10%);
}
.login-popup .popup_layout .login-sns-btn.google {
  background: #F4F4F4;
}
.login-popup .popup_layout .login-sns-btn.google:hover {
  background-color: color-mix(in srgb, #F4F4F4, black 10%);
}
.login-popup .popup_layout#join_01 .login-sns-btn-row {
  flex-direction: column;
  width: 100%;
  gap: 10px;
}
.login-popup .popup_layout#join_01 .login-sns-btn {
  width: 100%;
  height: 50px;
  border-radius: 10px;
  gap: 10px;
}
.login-popup .popup_layout#join_01 .login-sns-btn.naver {
  color: #fff;
}
.login-popup .popup_layout .login_box {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}
.login-popup .popup_layout .popup_layout.hide {
  opacity: 0;
}
.login-popup .popup_layout.join-slide {
  width: 100%;
}
.login-popup .popup_layout.join-slide:not(.current-slide) {
  display: none;
}
.login-popup .popup_layout .popup_slides_wrapper {
  display: block;
  width: 100%;
  position: relative;
}
.login-popup .popup_layout .popup_footer_sub {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
.login-popup .popup_layout .popup_footer_sub p {
  font-size: 14px;
  color: var(--e_gray_66);
}
.login-popup .popup_header_step {
  justify-content: space-between;
  align-items: flex-end;
  flex-direction: row;
}
.login-popup .step-indicator {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 2;
}
.login-popup .step-indicator .step-line {
  width: 33px;
  height: 0;
  border-top: 1px solid var(--e_line);
  position: absolute;
  left: 7px;
  top: 10px;
  z-index: -1;
}
.login-popup .step-indicator .step-circle {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--e_line);
  display: flex;
  align-items: center;
  justify-content: center;
}
.login-popup .step-indicator .step-circle .step-number {
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.login-popup .step-indicator .step-circle.step-active {
  background: var(--e_prime);
}

.pop_input_box {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.biz-upload-box {
  align-self: stretch;
  padding: 20px 0;
  background: var(--e_gray_ef);
  overflow: hidden;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  border: 3px dashed var(--e_line);
}
.biz-upload-box .biz-upload-title {
  width: 100%;
  text-align: center;
  color: #000;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
}
.biz-upload-box .biz-upload-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.biz-upload-box .biz-upload-icon .material-symbols-rounded {
  font-size: 70px;
  color: var(--e_line);
}
.biz-upload-box .biz-upload-desc {
  text-align: center;
  color: var(--e_gray_99);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
}
.biz-upload-box .biz-upload-btn {
  height: 40px;
  padding: 0 20px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.biz-upload-box .biz-upload-btn .biz-upload-btn-text {
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  text-align: center;
  line-height: 1.2;
}
.biz-upload-box button {
  width: auto;
  height: 40px;
  font-size: 12px;
}
.biz-upload-box.dragover {
  border-color: var(--e_prime);
  background: color-mix(in srgb, var(--e_prime), white 90%);
}
.biz-upload-box .m-biz-upload-desc {
  display: none;
}
@media (max-width: 767px) {
  .biz-upload-box .m-biz-upload-desc {
    display: block;
    text-align: center;
  }
}

.upicon {
  text-align: center;
  margin: 0 auto 10px;
}
.upicon .material-symbols-rounded {
  font-size: 48px;
  color: var(--e_gray_66);
}

@media (max-width: 767px) {
  .biz-script {
    display: none;
  }
}

.find-popup {
  width: 100%;
}
.find-popup .check-type {
  justify-content: center;
}
.find-popup .find-result-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 0;
}
.find-popup .find-result-box .find-result {
  font-size: 16px;
  color: var(--e_gray_66);
  margin: 0;
  line-height: 1.6;
  font-weight: 400;
  text-align: center;
}
.find-popup .find-result-box .find-result-id {
  font-size: 20px;
  color: var(--e_prime);
  font-weight: 700;
  margin: 10px 0 8px 0;
  letter-spacing: 0.5px;
  word-break: break-all;
  text-align: center;
}
.find-popup .find-info {
  background: var(--e_gray_ef);
  color: var(--e_gray_66);
  font-size: 12px;
  border-radius: 10px;
  padding: 16px 18px 14px 18px;
  margin: 10px 0 0 0;
  text-align: left;
  font-weight: 400;
  box-shadow: 0 1px 4px rgba(var(--e_black_rgb), 0.03);
  letter-spacing: -0.2px;
}
.find-popup .find-info .info-icon {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 5px;
  margin-bottom: 8px;
}
.find-popup .find-info .info-icon .material-symbols-rounded {
  font-size: 16px;
  color: var(--e_gray_99);
}
.find-popup .find-info li {
  margin-bottom: 6px;
  padding-left: 10px;
  position: relative;
}
.find-popup .find-info li::before {
  content: "";
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--e_gray_99);
  border-radius: 50%;
  left: 0;
  top: 8px;
  transform: translateY(-50%);
}

/* ========================================================= */
/* 공통 애니메이션 키프레임 (Common Animation Keyframes) */
/* ========================================================= */
@keyframes slideInFromRight {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}
@keyframes slideOutToRight {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(100%);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-10px);
  }
}
@keyframes fill-progress {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}
/* ========================================================= */
/* 전체 메뉴 드롭다운 */
/* ========================================================= */
body.menu-is-open .content_body::before {
  content: "";
  pointer-events: none;
  user-select: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(var(--e_white_rgb), 0.8);
  z-index: 9;
  display: block;
}
body.menu-is-open .allmenu .ico_menu {
  opacity: 0;
}
body.menu-is-open .allmenu .ico_close {
  opacity: 1;
}
body.menu-is-open .ettum_menu {
  visibility: visible;
}
@media (max-width: 767px) {
  body.menu-is-open .ettum_menu {
    animation: slideInFromRight 0.7s ease-in-out forwards;
    z-index: 1050;
  }
}
@media (min-width: 768px) {
  body.menu-is-open .ettum_menu {
    animation: fadeIn 0.5s ease-in-out forwards;
  }
}
body.menu-is-open .top_banner_wrap {
  z-index: 1;
}
body.menu-is-open .content_body.active {
  overflow: hidden;
}

.content_body {
  position: relative;
  width: 100%;
}

.nav_bar {
  width: 100%;
  transition: none;
  padding: 15px 0 0;
}
.nav_bar .maxwidth {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  width: 100%;
}
.nav_bar a {
  width: 100%;
  color: #000;
  position: relative;
  font-size: 18px;
  font-weight: 600;
}
.nav_bar a:hover {
  color: var(--e_prime);
}
.nav_bar a:hover .ico_close {
  transform: rotate(90deg);
  transition: 0.5s;
}
.nav_bar a .ico_close {
  transform: rotate(-90deg);
  transition: 0.5s;
}
.nav_bar .allmenu {
  font-weight: 700;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  width: 250px;
}
@media (max-width: 1199px) {
  .nav_bar {
    display: none;
  }
}
.nav_bar.fixed {
  position: fixed;
  top: 0;
  left: 0;
  padding: 20px 0;
  z-index: 11;
}
.nav_bar.fixed::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: #fff;
  box-shadow: 0px 4px 10px rgba(var(--e_black_rgb), 0.05);
  z-index: -1;
  width: 100vw;
  border-bottom: 1px solid var(--e_line);
}
.nav_bar.fixed *, .nav_bar.fixed *::before, .nav_bar.fixed *::after {
  transition: none !important;
  animation: none !important;
}
.nav_bar.fixed .n-badge {
  display: none !important;
}

.ettum_menu {
  position: absolute;
  top: 0;
  z-index: 10;
  width: 100%;
  box-shadow: 0px 10px 10px rgba(var(--e_black_rgb), 0.05);
  visibility: hidden;
}
.ettum_menu.fixed {
  position: fixed;
  top: 60px;
  z-index: 10;
  transition: none;
  left: 0;
}
@media (max-width: 1199px) {
  .ettum_menu.fixed {
    top: 60px;
  }
}
@media (max-width: 767px) {
  .ettum_menu.fixed {
    top: 0;
  }
}
@media (max-width: 767px) {
  .ettum_menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    animation: slideOutToRight 0.7s ease-in-out forwards;
    z-index: 1050;
  }
}
@media (min-width: 768px) {
  .ettum_menu {
    animation: fadeOut 0.5s ease-in-out forwards;
  }
}

.category-menu-section {
  align-self: stretch;
  background: #fff;
  box-shadow: 0px 4px 10px rgba(var(--e_black_rgb), 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 0;
  max-height: 70vh;
  overflow-y: auto;
}
@media (max-width: 1199px) {
  .category-menu-section {
    height: calc(100vh - 170px);
    max-height: 100vh;
  }
}
@media (max-width: 767px) {
  .category-menu-section {
    overflow: auto;
    height: calc(100vh - 190px);
    max-height: 100vh;
  }
}

.category-menu-container {
  display: grid;
  grid-template-columns: 0.13fr 0.87fr;
  gap: 10px;
  width: 100%;
  max-width: 1480px;
  padding: 0 40px;
}
@media (max-width: 1480px) {
  .category-menu-container {
    grid-template-columns: 0.16fr 0.84fr;
  }
}
@media (max-width: 767px) {
  .category-menu-container {
    padding: 0 20px;
  }
}
.category-menu-container a:hover {
  color: var(--e_prime);
}
@media (max-width: 1199px) {
  .category-menu-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    height: auto;
  }
}

.category-menu-list {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 20px;
}
@media (max-width: 1480px) {
  .category-menu-list {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media (max-width: 1199px) {
  .category-menu-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    height: auto;
  }
}
@media (max-width: 767px) {
  .category-menu-list {
    overflow: unset;
  }
}

.category-group-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 1199px) {
  .category-group-col {
    display: flex;
    flex-direction: column;
    gap: 30px;
    height: auto;
  }
}

.category-group, .elinkgroup, .esublink, .esubgroup {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (max-width: 1199px) {
  .category-group.category-group, .category-group.elinkgroup, .category-group.esublink, .elinkgroup.category-group, .elinkgroup.elinkgroup, .elinkgroup.esublink, .esublink.category-group, .esublink.elinkgroup, .esublink.esublink, .esubgroup.category-group, .esubgroup.elinkgroup, .esubgroup.esublink {
    flex-direction: row;
  }
  .category-group.elinkgroup, .category-group.esublink, .elinkgroup.elinkgroup, .elinkgroup.esublink, .esublink.elinkgroup, .esublink.esublink, .esubgroup.elinkgroup, .esubgroup.esublink {
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .category-group.category-group, .category-group.esublink, .category-group .esubgroup, .elinkgroup.category-group, .elinkgroup.esublink, .elinkgroup .esubgroup, .esublink.category-group, .esublink.esublink, .esublink .esubgroup, .esubgroup.category-group, .esubgroup.esublink, .esubgroup .esubgroup {
    flex-direction: column;
    gap: 20px;
  }
  .category-group.elinkgroup, .elinkgroup.elinkgroup, .esublink.elinkgroup, .esubgroup.elinkgroup {
    flex-wrap: wrap;
    gap: 20px;
    flex: 1 1;
  }
}

.category-title {
  color: #000;
  font-size: 16px;
  font-weight: 500;
  line-height: 160%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  white-space: nowrap;
}
.category-title::after {
  content: "chevron_right";
  font-family: "Material Symbols Rounded";
  font-size: 24px;
  font-weight: normal;
  font-variation-settings: "FILL" 0, "wght" 300, "GRAD" 0, "opsz" 24;
}
@media (max-width: 1199px) {
  .category-title {
    width: clamp(140px, 15vw, 200px);
  }
}
@media (max-width: 767px) {
  .category-title {
    width: auto;
  }
}

.category-subtitle {
  color: var(--e_gray_66);
  font-size: 14px;
  font-weight: 500;
  line-height: 140%;
}

/* ========================================================= */
/* 공통 카테고리 메뉴 클래스 (Common Category Menu Classes) */
/* ========================================================= */
.category-link {
  color: var(--e_gray_99);
  font-size: 14px;
  font-weight: 400;
  transition: color 0.2s ease-in-out;
  line-height: 140%;
}

.primary-link {
  color: var(--e_prime);
}

/* ========================================================= */
/* 공통 모바일 메뉴 클래스 (Common Mobile Menu Classes) */
/* ========================================================= */
@media (max-width: 767px) {
  .menu-top {
    align-self: stretch;
    display: inline-flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
  }
}

@media (max-width: 767px) {
  .menu-user-actions {
    flex: 1 1 0;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .menu-user-actions a {
    font-size: 16px;
    font-weight: 500;
    line-height: 19.2px;
    word-wrap: break-word;
  }
}

@media (max-width: 767px) {
  .menu-link-login {
    color: var(--e_prime);
  }
}

@media (max-width: 767px) {
  .menu-link-signup {
    color: #000;
  }
}

@media (max-width: 767px) {
  .menu-bottom {
    align-self: stretch;
    display: inline-flex;
    border-radius: 10px;
    outline: 1px var(--e_line) solid;
    outline-offset: -1px;
  }
  .menu-bottom a {
    flex: 1 1 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    padding: 10px 0;
    color: #000;
    font-size: 12px;
    font-weight: 400;
    line-height: 19.2px;
    word-wrap: break-word;
  }
}

@media (max-width: 767px) {
  .menu-button-bordered + .menu-button-bordered {
    border-left: 1px var(--e_line) solid;
  }
}

.m_menu-container {
  display: none;
}
@media (max-width: 767px) {
  .m_menu-container {
    width: 100%;
    padding: 35px 20px 0px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
    background: #fff;
  }
}

@media (min-width: 768px) {
  .bt-menu {
    display: none;
  }
}
@media (max-width: 767px) {
  .bt-menu {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: #fff;
    box-shadow: 0px -10px 10px rgba(var(--e_black_rgb), 0.1);
    border-top: 1px var(--e_line) solid;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 8;
  }
  .bt-menu__item {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    height: 100%;
  }
  .bt-menu__item svg {
    width: 24px;
    height: 24px;
  }
  .bt-menu__icon path {
    fill: #000;
    stroke-width: 0px;
  }
  .bt-menu__icon .prime-color {
    fill: var(--e_prime);
  }
  .bt-menu__text {
    color: var(--e_gray_99);
    font-size: 12px;
    font-weight: 400;
    line-height: 19.2px;
  }
}

.mid_bar .sub-tit {
  display: none;
}

.e_mobile {
  display: none !important;
}
.e_mobile .homebtn {
  display: none;
}
@media (max-width: 1199px) {
  .e_mobile {
    display: flex !important;
    padding: 0 40px;
  }
  .e_mobile dd {
    flex: 0 0 auto;
    width: auto !important;
  }
  .e_mobile.fixed {
    position: fixed !important;
    top: 0;
    left: 0;
    z-index: 10;
    background: #fff !important;
    height: 60px;
    width: 100%;
    box-shadow: 0px 4px 10px rgba(var(--e_black_rgb), 0.05);
  }
  .e_mobile.fixed dt {
    padding: 0;
  }
  .e_mobile.fixed dt img {
    height: 30px;
    width: auto;
  }
  .e_mobile.fixed .material-symbols-rounded {
    color: #000 !important;
  }
}
@media (max-width: 767px) {
  .e_mobile {
    padding: 0 20px;
  }
  .e_mobile.fixed {
    height: 60px;
  }
  .e_mobile.fixed dt img {
    height: 25px;
  }
  .e_mobile dd.e_guide {
    display: none;
  }
}

/* 로그인 후 사용자 이름 스타일 */
.login_status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 767px) {
  .login_status {
    align-items: flex-end;
  }
}
.login_status::before {
  content: "|";
  color: var(--e_gray_99);
  font-size: 12px;
  font-weight: 400;
  margin-right: 10px;
}
@media (max-width: 767px) {
  .login_status::before {
    display: none;
  }
}
.login_status a.logout_btn {
  font-size: 10px;
  color: var(--e_gray_66);
  background: #fff;
  padding: 5px 8px;
  border-radius: 5px;
  transition: all 0.2s ease;
  display: inline-block;
  border: 1px solid var(--e_line);
  line-height: 1;
}
.login_status a.logout_btn:hover {
  color: #fff;
  background: var(--e_prime);
  border-color: var(--e_prime);
}
.login_status .user_name {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--e_prime);
  font-size: 14px;
  font-weight: 500;
}
.login_status .user_name::after {
  content: "님";
  color: var(--e_gray_99);
}
@media (max-width: 767px) {
  .login_status .user_name {
    font-size: 18px;
  }
}

/* ========================================================= */
/* 푸터 (Footer) */
/* ========================================================= */
footer {
  background: #F4F7FA;
  color: #454545;
  margin-top: 60px;
}

.footer-top {
  padding: 60px 0;
}
.footer-top .maxwidth {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 40px;
}
@media (max-width: 1199px) {
  .footer-top .maxwidth {
    flex-direction: column;
    padding: 0 40px;
  }
}
@media (max-width: 767px) {
  .footer-top .maxwidth {
    padding: 0 20px;
  }
}

.footer-top-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: space-between;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-menu-links {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}
.footer-menu-links .footer-link {
  font-size: 16px;
  color: #454545;
  font-weight: 400;
  text-decoration: none;
}
.footer-menu-links .footer-link:hover {
  color: var(--e_prime);
}
.footer-menu-links .footer-link.footer-link-bold {
  font-weight: 700;
}
.footer-menu-links .sep {
  color: #828282;
  font-size: 14px;
  opacity: 0.5;
}

.footer-social-icons {
  display: flex;
  gap: 15px;
}
.footer-social-icons .social-icon {
  width: 30px;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.footer-social-icons .social-icon img {
  width: 100%;
  height: 100%;
  transition: filter 0.2s;
}
.footer-social-icons .social-icon:hover img {
  filter: brightness(0.8);
}

.footer-company-info {
  font-size: 15px;
  color: #828282;
  line-height: 1.8;
}
.footer-company-info span {
  white-space: nowrap;
}
.footer-company-info .sep {
  margin: 0 5px;
  opacity: 0.5;
}
.footer-company-info a {
  color: inherit;
  text-decoration: none;
}
.footer-company-info a:hover {
  text-decoration: underline;
}

.footer-top-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 30px;
}
@media (max-width: 1199px) {
  .footer-top-right {
    align-items: flex-start;
    width: 100%;
  }
}

.footer-cs-wrap {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
@media (max-width: 1199px) {
  .footer-cs-wrap {
    text-align: left;
  }
}
.footer-cs-wrap .cs-title {
  font-size: 16px;
  color: #454545;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 5px;
}
@media (max-width: 1199px) {
  .footer-cs-wrap .cs-title {
    justify-content: flex-start;
  }
}
.footer-cs-wrap .cs-title .material-symbols-rounded {
  font-size: 20px;
}
.footer-cs-wrap .cs-phone {
  font-size: 30px;
  color: #454545;
  font-weight: 700;
  margin: 5px 0;
}
.footer-cs-wrap .cs-hours, .footer-cs-wrap .cs-holiday {
  font-size: 18px;
  color: #454545;
  opacity: 0.8;
}

.footer-action-buttons {
  display: flex;
  gap: 10px;
}
.footer-action-buttons .btn-footer-action {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 30px;
  border: 1px solid #828282;
  border-radius: 5px;
  font-size: 14px;
  color: #828282;
  text-decoration: none;
  transition: all 0.2s;
}
.footer-action-buttons .btn-footer-action:hover {
  background: #828282;
  color: #fff;
}

.footer-bottom {
  background: #454545;
  padding: 25px 0;
  color: var(--e_gray_ef);
}
.footer-bottom .maxwidth {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 1199px) {
  .footer-bottom .maxwidth {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 0 40px;
  }
}
@media (max-width: 767px) {
  .footer-bottom .maxwidth {
    padding: 0 20px;
  }
}
.footer-bottom .footer-bottom-left .disclaimer {
  font-size: 12px;
  color: #DFDFDF;
  opacity: 0.7;
  line-height: 1.6;
  max-width: 1000px;
}
.footer-bottom .footer-bottom-left .copyright {
  font-size: 12px;
  color: #DFDFDF;
  font-weight: 400;
}

.ftC_family_site {
  width: 208px;
  height: 32px;
  background: #fff;
  border-radius: 0;
}
.ftC_family_site select {
  width: 100%;
  height: 100%;
  padding: 0 10px;
  border: none;
  background: transparent;
  color: #454545;
  font-size: 12px;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='24' viewBox='0 -960 960 960' width='24'%3E%3Cpath d='M480-345 240-585l56-56 184 184 184-184 56 56-240 240Z'/%3E%3C/svg%3E") no-repeat right 10px center;
  background-size: 20px;
}
.ftC_family_site select:focus {
  outline: none;
}

/* ========================================================= */
/* 아이템 리스트 (Item List) */
/* ========================================================= */
.e_itemlist {
  width: 100%;
  display: flex;
  justify-content: center;
}

.item-container {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}
@media (max-width: 767px) {
  .item-container {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

.item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}
.item:hover img {
  transform: scale(1.05);
}
.item:hover .item-title {
  color: var(--e_prime);
}
.item:hover .item-img-wrap {
  box-shadow: 0px 4px 10px rgba(var(--e_black_rgb), 0.05);
}
@media (max-width: 767px) {
  .item:hover .item-title {
    color: #000;
  }
}
.item::before {
  position: absolute;
  top: 10px;
  left: 10px;
  color: #fff;
  line-height: 100%;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 5px;
  z-index: 2;
}
.item.picked .item-fav-icon, .item.picked .item-price-info {
  display: none;
}
.item-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 10px;
}
.item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.item-fav {
  position: absolute;
  top: 0;
  right: 0;
  width: 64px;
  height: 63px;
}
.item-desc {
  width: 100%;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (max-width: 767px) {
  .item-desc {
    margin-top: 10px;
    gap: 5px;
  }
}
.item-title-wrap {
  display: flex;
  justify-content: space-between;
  align-items: start;
  width: 100%;
  position: relative;
}
.item-title {
  font-size: 18px;
  font-weight: 600;
  color: #000;
}
@media (max-width: 1199px) {
  .item-title {
    font-size: 16px;
    width: calc(100% - 25px);
  }
}
@media (max-width: 767px) {
  .item-title {
    font-size: 14px;
  }
}
.item-fav-icon input[type=checkbox] {
  display: none;
}
.item-fav-icon input[type=checkbox]:checked + label svg path {
  fill: var(--e_red);
  stroke: var(--e_red);
}
.item-fav-icon label {
  cursor: pointer;
  display: inline-flex;
  transition: all 0.3s ease;
}
.item-fav-icon label:hover svg path {
  fill: var(--e_red);
  stroke: var(--e_red);
}
.item-fav-icon label svg {
  width: 20px;
  height: 20px;
}
@media (max-width: 1199px) {
  .item-fav-icon label {
    position: absolute;
    top: 0px;
    right: 0px;
  }
}
.item-text {
  color: var(--e_gray_99);
  font-size: 16px;
  line-height: 1.6;
}
@media (max-width: 1199px) {
  .item-text {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .item-text {
    font-size: 12px;
  }
}
.item-price-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}
.item-price-info {
  display: flex;
  gap: 0;
  flex-direction: column;
  align-items: flex-end;
}
.item-price-pre {
  color: var(--e_gray_99);
  font-size: 14px;
  font-weight: 500;
  text-decoration: line-through;
}
.item-price-pre::after {
  content: "원";
}
@media (max-width: 767px) {
  .item-price-pre {
    font-size: 12px;
  }
}
.item-price {
  color: var(--e_prime);
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: flex-end;
  gap: 5px;
}
.item-price::after {
  content: "원 ~";
  font-size: 14px;
  font-weight: 500;
  color: var(--e_gray_99);
  line-height: 1.4;
}
@media (max-width: 767px) {
  .item-price::after {
    font-size: 12px;
  }
}
@media (max-width: 1199px) {
  .item-price {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .item-price {
    font-size: 16px;
  }
}
.item-discount {
  color: var(--e_red);
  font-size: 20px;
  font-weight: 500;
}
@media (max-width: 1199px) {
  .item-discount {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .item-discount {
    font-size: 16px;
  }
}

/* ========================================================= */
/* 기획전 리스트 (Event List) */
/* ========================================================= */
.event_top_banner {
  width: 100%;
  height: 188px;
  background-color: #EFEFEF;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 40px;
}
.event_top_banner .maxwidth {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.event_top_banner .event_main_title {
  font-size: 32px;
  font-weight: 700;
  color: #333;
  letter-spacing: -1.6px;
  line-height: 1.2;
}
.event_top_banner .event_sub_title {
  font-size: 18px;
  font-weight: 500;
  color: #666;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .event_top_banner {
    height: 120px;
    margin-bottom: 20px;
  }
  .event_top_banner .event_main_title {
    font-size: 24px;
  }
  .event_top_banner .event_sub_title {
    font-size: 14px;
  }
}

@media (min-width: 1200px) {
  .event-list {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
.event-list .item:hover .event-title {
  color: var(--e_prime);
}
.event-list .item:hover .event-item-bg {
  box-shadow: 0px 4px 10px rgba(var(--e_black_rgb), 0.05);
}
@media (max-width: 767px) {
  .event-list .item:hover .event-title {
    color: #333;
  }
}
.event-list .item.is-ended {
  opacity: 0.6;
  filter: grayscale(100%);
}
.event-list .event-item-bg {
  position: relative;
  width: 100%;
  aspect-ratio: 2/1;
  overflow: hidden;
  border-radius: 10px;
  background: #EFF2F6;
}
.event-list .event-item-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.event-list .event-desc-wrap {
  width: 100%;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (max-width: 767px) {
  .event-list .event-desc-wrap {
    margin-top: 10px;
    gap: 5px;
  }
}
.event-list .event-info-top {
  display: flex;
  align-items: center;
  gap: 10px;
}
.event-list .event-info-top .event-date {
  font-size: 14px;
  color: var(--e_gray_66);
  font-weight: 500;
}
.event-list .event-info-top .e-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 700;
  border-radius: 4px;
  line-height: 1;
}
.event-list .event-info-top .e-badge.ongoing {
  background: rgba(var(--e_prime_rgb), 0.1);
  color: var(--e_prime);
}
.event-list .event-info-top .e-badge.upcoming {
  background: var(--e_gray_ef);
  color: #000;
}
.event-list .event-info-top .e-badge.ended {
  background: var(--e_gray_cc);
  color: #fff;
}
@media (max-width: 1199px) {
  .event-list .event-info-top .event-date {
    font-size: 12px;
  }
  .event-list .event-info-top .e-badge {
    padding: 3px 6px;
    font-size: 11px;
  }
}
.event-list .event-title {
  font-size: 20px;
  font-weight: 700;
  color: #333;
  transition: color 0.3s ease;
}
@media (max-width: 1199px) {
  .event-list .event-title {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .event-list .event-title {
    font-size: 16px;
  }
}
.event-list .event-text {
  font-size: 14px;
  font-weight: 500;
  color: #828282;
  line-height: 1.4;
}
@media (max-width: 1199px) {
  .event-list .event-text {
    font-size: 13px;
  }
}
@media (max-width: 767px) {
  .event-list .event-text {
    font-size: 12px;
  }
}

/* ========================================================= */
/* 테이블 스타일 (Table Styles) */
/* ========================================================= */
.nor_table {
  width: 100%;
  overflow-x: auto;
}
@media (max-width: 767px) {
  .nor_table {
    overflow-x: visible;
  }
  .nor_table.m_boxtype table tbody tr {
    display: flex;
    flex-wrap: wrap;
    padding: 20px 16px;
  }
  .nor_table.m_boxtype table tbody tr td {
    display: flex;
    padding: 0;
    border: none !important;
    width: auto;
    justify-content: flex-start;
    align-items: center;
    border-bottom: none !important;
  }
  .nor_table.m_boxtype table tbody tr td::before {
    display: inline-block;
    width: auto;
    padding-right: 5px;
    font-weight: 400;
    color: var(--e_gray_99);
  }
  .nor_table.m_boxtype table tbody tr td:nth-child(1) {
    width: 30px;
    flex-shrink: 0;
  }
  .nor_table.m_boxtype table tbody tr td:nth-child(1)::before {
    display: none;
  }
  .nor_table.m_boxtype table tbody tr td:nth-child(2) {
    width: calc(100% - 30px);
    flex-shrink: 0;
    font-size: 16px;
    font-weight: 500;
  }
  .nor_table.m_boxtype table tbody tr td:nth-child(2)::before {
    display: none;
  }
  .nor_table.m_boxtype table tbody tr td:nth-child(3) {
    width: auto;
    font-size: 12px;
    color: var(--e_gray_99);
    margin-top: 8px;
    margin-left: 30px;
  }
  .nor_table.m_boxtype table tbody tr td:nth-child(4) {
    width: auto;
    font-size: 12px;
    color: var(--e_gray_99);
    margin-top: 8px;
  }
  .nor_table.m_boxtype table tbody tr td:nth-child(4)::before {
    padding: 0 5px;
  }
}
.nor_table table {
  width: 100%;
  border-collapse: collapse;
  border-top: 2px solid #000;
}
@media (max-width: 767px) {
  .nor_table table {
    border: none;
  }
  .nor_table table colgroup {
    display: none;
  }
}
@media (max-width: 767px) {
  .nor_table table thead {
    display: none;
  }
}
.nor_table table thead tr {
  background: var(--e_gray_ef);
}
.nor_table table thead tr th {
  padding: 16px 12px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: #000;
  border-bottom: 1px solid var(--e_line);
  white-space: nowrap;
  background: var(--e_gray_ef);
}
@media (max-width: 767px) {
  .nor_table table thead tr th {
    padding: 12px 8px;
    font-size: 12px;
  }
}
.nor_table table tbody tr {
  border-bottom: 1px solid var(--e_line);
  transition: background 0.2s;
}
.nor_table table tbody tr:hover {
  background: var(--e_gray_ef);
}
@media (max-width: 767px) {
  .nor_table table tbody tr:hover {
    background: #fff;
    box-shadow: 0 4px 8px rgba(var(--e_black_rgb), 0.1);
  }
}
@media (max-width: 767px) {
  .nor_table table tbody tr {
    display: block;
    margin-bottom: 15px;
    border: 1px solid var(--e_line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 2px 4px rgba(var(--e_black_rgb), 0.05);
    overflow: hidden;
  }
}
.nor_table table tbody tr td {
  padding: 14px 12px;
  text-align: center;
  font-size: 14px;
  color: var(--e_gray_66);
  white-space: nowrap;
}
.nor_table table tbody tr td.left {
  text-align: left;
}
.nor_table table tbody tr td.right {
  text-align: right;
}
.nor_table table tbody tr td a {
  color: #000;
}
.nor_table table tbody tr td a:hover {
  color: var(--e_prime);
}
@media (max-width: 767px) {
  .nor_table table tbody tr td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    border: none;
    border-bottom: 1px solid var(--e_line);
    text-align: left;
    white-space: normal;
  }
}
@media (max-width: 767px) {
  .nor_table table tbody tr td::before {
    content: attr(data-label);
    font-weight: 700;
    color: #000;
    font-size: 12px;
    flex-shrink: 0;
    width: 80px;
  }
}
.nor_table table tbody tr td.btn_area {
  background: var(--e_gray_ef);
}
@media (max-width: 767px) {
  .nor_table table tbody tr td.btn_area {
    border-bottom: none;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .nor_table table tbody tr td.btn_area::before {
    display: none;
  }
}
.nor_table table tbody tr td button {
  display: inline-flex;
  height: 35px;
}
@media (max-width: 767px) {
  .nor_table table tbody tr td button {
    width: 100%;
  }
}

/* 소형 태그 */
.tag_s {
  display: inline-block;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
  line-height: normal;
  vertical-align: middle;
  margin-right: 5px;
}
.tag_s.refund {
  background: rgba(255, 77, 79, 0.1);
  color: rgb(255, 77, 79);
}
.tag_s.exchange {
  background: rgba(var(--e_prime_rgb), 0.1);
  color: var(--e_prime);
}
.tag_s.design {
  background: rgba(var(--e_prime_rgb), 0.1);
  color: var(--e_prime);
  margin-left: 5px;
}
.tag_s.cancel {
  background: var(--e_gray_ef);
  color: var(--e_gray_66);
}
.tag_s.important {
  background: var(--e_prime);
  color: #fff;
}
.tag_s.new {
  background: var(--e_red);
  color: #fff;
  font-size: 8px;
}
@media (max-width: 767px) {
  .tag_s {
    font-size: 11px;
    padding: 1px 4px;
  }
}

/* ========================================================= */
/* 알림 팝업 (Notification Popup) */
/* ========================================================= */
.noti-list {
  max-height: 60vh;
  overflow-y: auto;
  overflow-x: hidden;
}
@media (max-width: 767px) {
  .noti-list {
    max-height: 100%;
  }
}

.noti-list > ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 500px;
  padding: 0;
  margin: 0;
  list-style: none;
  overflow-x: hidden;
  flex: none;
}
@media (max-width: 767px) {
  .noti-list > ul {
    width: 100%;
  }
}
.noti-list > ul li.swipe-delete-item {
  position: relative;
  width: 100%;
  background: #fff;
  border: 1px solid var(--e_line);
  border-radius: 10px;
  overflow: hidden;
  touch-action: pan-y;
  user-select: none;
  transition: transform 0.2s ease-out, opacity 0.2s ease-out, height 0.2s ease-out, background-color 0.2s;
  cursor: grab;
}
.noti-list > ul li.swipe-delete-item:hover {
  box-shadow: 0 5px 10px rgba(var(--e_black_rgb), 0.05);
  border: 1px solid var(--e_prime);
}
.noti-list > ul li.swipe-delete-item:active {
  cursor: grabbing;
  border: 2px solid var(--e_prime);
}
.noti-list > ul li.swipe-delete-item .noti-content {
  padding: 20px;
  text-decoration: none;
  display: block;
  height: 100%;
}
.noti-list > ul li.swipe-delete-item .noti-content a {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
  justify-content: space-between;
  gap: 15px;
}
.noti-list > ul li.swipe-delete-item .noti-content .noti-text {
  font-size: 14px;
  color: #000;
  font-weight: 500;
  margin-bottom: 0;
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-clamp: 2;
}
.noti-list > ul li.swipe-delete-item .noti-content .noti-text .noti-cate {
  color: var(--e_prime);
  margin-right: 5px;
  font-weight: 200;
  font-size: 14px;
}
.noti-list > ul li.swipe-delete-item .noti-content .noti-text .noti-cate::after {
  content: "|";
  margin-left: 5px;
  color: var(--e_gray_cc);
  font-size: 12px;
}
.noti-list > ul li.swipe-delete-item .noti-content .noti-date {
  font-size: 12px;
  color: var(--e_gray_99);
  flex-shrink: 0;
  white-space: nowrap;
  align-self: flex-start;
  margin-top: 2px;
}
.noti-list > ul li.swipe-delete-item .btn_delete {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  z-index: 10;
}
.noti-list > ul li.swipe-delete-item .btn_delete .material-symbols-rounded {
  font-size: 20px;
  color: var(--e_gray_99);
}
.noti-list > ul li.swipe-delete-item .btn_delete:hover .material-symbols-rounded {
  color: var(--e_red);
}

.noti-empty {
  display: none;
  min-height: 200px;
  width: 100%;
  justify-content: center;
  align-items: center;
  color: var(--e_gray_99);
  font-size: 14px;
}

.noti-cnt {
  color: var(--e_prime);
  margin-left: 5px;
  font-size: inherit;
}

/* 전화 아이콘 애니메이션 */
@keyframes phone-ring {
  0%, 100% {
    transform: rotate(0deg);
  }
  10%, 30% {
    transform: rotate(-10deg);
  }
  20%, 40% {
    transform: rotate(10deg);
  }
  50% {
    transform: rotate(0deg);
  }
}
.open_popup_btn[data-popup-selector="#noti-pop"] {
  position: relative;
}
.open_popup_btn[data-popup-selector="#noti-pop"].has-noti .material-symbols-rounded {
  animation: phone-ring 1s infinite ease-in-out;
  display: inline-block;
}
.open_popup_btn[data-popup-selector="#noti-pop"].has-noti::after {
  content: "";
  position: absolute;
  top: 0;
  left: 20px;
  width: 8px;
  height: 8px;
  background-color: var(--e_red);
  border-radius: 50%;
  border: 1.5px solid #fff;
}

/* ========================================================= */
/* 상단 띠배너 (Top Banner) */
/* ========================================================= */
.top_banner_wrap {
  width: 100%;
  background-color: var(--e_prime);
  height: 50px;
  overflow: hidden;
  position: relative;
  z-index: 1001;
}
.top_banner_wrap .banner_container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  position: relative;
}
.top_banner_wrap .topBannerSwiper {
  width: 100%;
  max-width: 1400px;
  height: 24px;
  margin: 0 auto;
}
.top_banner_wrap .topBannerSwiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.top_banner_wrap .topBannerSwiper .swiper-slide a {
  display: block;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  text-decoration: none;
}
@media (max-width: 767px) {
  .top_banner_wrap .topBannerSwiper .swiper-slide a {
    font-size: 14px;
  }
}
.top_banner_wrap .banner_controls {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  z-index: 2;
}
@media (max-width: 767px) {
  .top_banner_wrap .banner_controls {
    display: none;
  }
}
.top_banner_wrap .banner_controls .banner_prev, .top_banner_wrap .banner_controls .banner_next {
  position: static;
  width: 24px;
  height: 24px;
  margin: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.top_banner_wrap .banner_controls .banner_prev::after, .top_banner_wrap .banner_controls .banner_next::after {
  display: none;
}
.top_banner_wrap .banner_controls .banner_prev .material-symbols-rounded, .top_banner_wrap .banner_controls .banner_next .material-symbols-rounded {
  font-size: 24px;
  color: #fff;
}
.top_banner_wrap .banner_controls .banner_pagination {
  font-size: 10px;
  font-weight: 700;
  width: auto;
  color: #fff;
  position: static;
}
.top_banner_wrap .btn_banner_close {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.top_banner_wrap .btn_banner_close .material-symbols-rounded {
  font-size: 24px;
  color: #fff;
}
@media (max-width: 767px) {
  .top_banner_wrap .btn_banner_close {
    right: 10px;
  }
}

/* ========================================================= */
/* 리뷰 슬라이더 (Review Slider) */
/* ========================================================= */
.e-review {
  width: 100%;
  padding: 80px 0;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  position: relative;
}
.e-review::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  max-width: 1400px;
  transform: translateX(-50%);
  height: 100%;
  background: var(--e_gray_ef);
  border-radius: 20px;
  z-index: -1;
}
@media (max-width: 1480px) {
  .e-review::before {
    width: 70%;
  }
}
@media (max-width: 767px) {
  .e-review {
    padding: 40px 0;
    gap: 0;
  }
}

.e-review-header {
  text-align: center;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.e-review-slider-wrapper {
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
}

.e-review-slider {
  display: flex;
  --item-width: 340px;
  --item-count: 4;
  --animation-duration: 32s;
  --total-width: calc(var(--item-width) * var(--item-count) * 2);
  --slide-distance: calc(var(--item-width) * var(--item-count) * -1);
  width: var(--total-width);
  animation: rinfiniteSlide var(--animation-duration) linear infinite;
}
.e-review-slider:hover {
  animation-play-state: paused;
}
@media (max-width: 1199px) {
  .e-review-slider {
    --item-width: clamp(280px, 33vw, 340px);
  }
}

.e-review-item {
  flex: 0 0 300px;
  margin-right: 40px;
  background: white;
  border-radius: 20px;
  box-shadow: 0px 4px 10px rgba(var(--e_black_rgb), 0.05);
  overflow: hidden;
  transition: transform 0.3s ease;
}
.e-review-item:hover {
  transform: translateY(-8px);
}
@media (max-width: 1199px) {
  .e-review-item {
    flex: 0 0 clamp(260px, 30vw, 300px);
    margin-right: clamp(20px, 3vw, 40px);
  }
  .e-review-item:hover {
    pointer-events: none;
  }
}

.review-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  aspect-ratio: 1/1;
}

.review-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.review-content .review-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.review-content .review-badge .material-symbols-rounded {
  font-variation-settings: "FILL" 1, "wght" 700, "GRAD" 0, "opsz" 24;
  font-size: 16px;
  color: var(--e_yellow);
}

.review-text {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--e_gray_33);
}

.related-product {
  border-top: 1px solid var(--e_line);
  padding-top: 15px;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  position: relative;
}
.related-product:hover .product-name {
  color: var(--e_prime);
}
.related-product:hover::after {
  border-color: var(--e_prime);
}
.related-product::after {
  content: "";
  width: 12px;
  height: 12px;
  border: solid #000;
  border-width: 0 2px 2px 0;
  transform: rotate(-45deg);
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 0;
}

.related-label {
  font-size: 14px;
  font-weight: 400;
  color: var(--e_gray_33);
}

.product-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--e_gray_33);
  line-height: 140%;
}

/* ========================================================= */
/* 베스트 & 초이스 슬라이더 (Best & Choice Slider) */
/* ========================================================= */
.e-bt {
  width: 100%;
}

.e-bt-container {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (max-width: 767px) {
  .e-bt-container {
    padding: 0 0 0 20px;
  }
}

.e-bt-controls {
  display: flex;
  gap: 10px;
  width: 100%;
  justify-content: space-between;
  opacity: 0;
}
.e-bt-controls .arrow-btn {
  left: 2px;
  z-index: 2;
  opacity: 1;
}
.e-bt-controls .arrow-btn.right {
  left: auto;
  right: 2px;
}

.e_bt_swiper {
  width: 100%;
}
.e_bt_swiper:hover .e-bt-controls {
  opacity: 1;
}
.e_bt_swiper .swiper-wrapper {
  display: flex;
  padding-bottom: 5px;
}
@media (max-width: 1199px) {
  .e_bt_swiper .e-bt-controls {
    opacity: 1;
  }
}

.e_bt_item {
  height: auto;
  flex-shrink: 0;
  position: relative;
  width: 100%;
  padding: 0 20px;
}
.e_bt_item .banner-con {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 10px;
  overflow: hidden;
}
.e_bt_item:hover img {
  transform: scale(1.05);
}
.e_bt_item:hover .banner-description {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.e_bt_item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.e_bt_item .banner-description {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 40px 20px;
  background: rgba(var(--e_white_rgb), 0.8);
  text-align: center;
  border-radius: 10px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.4s ease;
  pointer-events: none;
  color: #000;
}
.e_bt_item .banner-description .banner-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}
.e_bt_item .banner-description .banner-subtitle {
  font-size: 14px;
  font-weight: 400;
}
@media (max-width: 1199px) {
  .e_bt_item {
    padding: 0 10px;
  }
  .e_bt_item .banner-description {
    padding: 20px 10px;
  }
  .e_bt_item .banner-description .banner-title {
    font-size: clamp(18px, 2vw, 20px);
  }
}
@media (max-width: 767px) {
  .e_bt_item {
    padding: 0 10px;
    width: clamp(200px, 80vw, 400px);
  }
}

.e-pin {
  position: relative;
}

.e-pin-con {
  gap: 40px;
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  align-items: flex-start;
}
@media (max-width: 767px) {
  .e-pin-con {
    flex-direction: column;
    gap: 40px;
  }
}

.e-pin-header {
  position: sticky;
  top: 100px;
  flex: 0 0 220px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.e-pin-header h1 {
  flex-direction: column;
}
.e-pin-header .scroll-gauge {
  width: 8px;
  height: 150px;
  background: var(--e_gray_ef);
  border-radius: 10px;
  overflow: hidden;
}
.e-pin-header .scroll-gauge span {
  display: block;
  border-radius: 10px;
  width: 100%;
  height: 0%;
  background: linear-gradient(to bottom, color-mix(in srgb, var(--e_prime), black 20%), var(--e_prime));
  transition: height 0.1s linear;
}

.e-content-wrapper {
  width: 70%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.e-content-wrapper .e_bt_item {
  padding: 0;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4/5;
}
.e-content-wrapper .e_bt_item::before {
  position: absolute;
  top: 10px;
  left: 10px;
  color: #fff;
  line-height: 100%;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 5px;
  z-index: 2;
}
@media (max-width: 1199px) {
  .e-content-wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(20px, 3vw, 40px);
    width: 60%;
  }
}
@media (max-width: 767px) {
  .e-content-wrapper {
    gap: 40px;
    width: 100%;
  }
  .e-content-wrapper .e_bt_item {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .e-pin-header {
    flex: auto;
    top: 0;
    width: 100%;
    padding: 80px 0 20px;
    background: #fff;
    z-index: 5;
    flex-direction: column-reverse;
  }
  .e-pin-header br {
    display: none;
  }
  .e-pin-header .scroll-gauge {
    width: 100%;
    height: 8px;
  }
  .e-pin-header .scroll-gauge span {
    height: 100%;
    width: 0;
    background: linear-gradient(to left, color-mix(in srgb, var(--e_prime), black 20%), var(--e_prime));
    transition: width 0.1s linear;
  }
}
/* ========================================================= */
/* 메인 그리드 배너 (Main Grid Banner) - Design Type */
/* ========================================================= */
body.design h1 {
  font-size: 24px;
  font-weight: 500;
}
body.design h1 span {
  color: var(--e_prime);
  font-weight: 900;
}
@media (max-width: 1199px) {
  body.design h1 {
    font-size: clamp(20px, 2.5vw, 24px);
  }
}
@media (max-width: 767px) {
  body.design h1 {
    font-size: clamp(16px, 3vw, 20px);
  }
}
body.design .mainwrap {
  overflow-x: visible;
}
body.design .e-bt-container {
  transform: none;
  left: 0;
}
body.design .e-bt-controls .arrow-btn {
  position: absolute;
  transform: translateY(-50%);
}
body.design .e-content-wrapper .e_bt_item {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
}
body.design .main_banner {
  width: 100%;
  padding: 40px 0;
  background: #fdfdfd;
}
body.design .main_banner .swiper-slide {
  height: 100%;
  width: 100%;
  opacity: 1;
  transform: none;
  max-width: 100%;
}
body.design .main_banner .swiper-slide img {
  left: 0;
  transform: none;
  aspect-ratio: auto;
}
body.design .main_banner .mb_grid_container {
  display: flex;
  gap: 20px;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  height: 480px;
}
@media (max-width: 1199px) {
  body.design .main_banner .mb_grid_container {
    height: auto;
    flex-direction: column;
  }
}
body.design .main_banner .big_slider {
  flex: 1.5;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  padding: 0;
}
@media (max-width: 1199px) {
  body.design .main_banner .big_slider {
    width: 100%;
    height: 400px;
  }
}
body.design .main_banner .small_items {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 1199px) {
  body.design .main_banner .small_items {
    width: 100%;
  }
}
body.design .main_banner .mb_item {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}
body.design .main_banner .mb_item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}
body.design .main_banner .mb_item:hover .img_box img {
  transform: scale(1.05) translate(-3%, -3%);
}
body.design .main_banner .mb_item .txt_box {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
body.design .main_banner .mb_item .img_box {
  position: absolute;
  bottom: -20px;
  right: -20px;
  height: 70%;
  z-index: 1;
  pointer-events: none;
  aspect-ratio: 1/1;
}
@media (max-width: 1199px) {
  body.design .main_banner .mb_item .img_box {
    height: 100%;
  }
}
@media (max-width: 767px) {
  body.design .main_banner .mb_item .img_box {
    height: 70%;
  }
}
body.design .main_banner .mb_item .img_box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom right;
  transition: transform 0.4s ease;
}
body.design .main_banner .big_item {
  width: 100%;
  height: 100%;
  padding: 40px;
  color: #fff;
}
body.design .main_banner .big_item.bg_blue {
  background: #005ce6;
}
body.design .main_banner .big_item.bg_orange {
  background: #ff6b00;
}
body.design .main_banner .big_item.bg_cyan {
  background: var(--e_cyan);
}
body.design .main_banner .big_item.bg_purple {
  background: var(--e_purple);
}
body.design .main_banner .big_item .badge {
  display: inline-block;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
body.design .main_banner .big_item h2 {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
@media (max-width: 767px) {
  body.design .main_banner .big_item h2 {
    font-size: 28px;
  }
}
body.design .main_banner .big_item p {
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.9;
  font-weight: 400;
  text-align: left;
}
body.design .main_banner .big_item .price {
  margin-top: auto;
  font-size: 18px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.9);
  color: #004ecc;
  padding: 8px 16px;
  border-radius: 12px;
  display: inline-block;
}
body.design .main_banner .big_item .price::after {
  content: " →";
  font-weight: normal;
}
@media (max-width: 767px) {
  body.design .main_banner .big_item {
    padding: 30px;
    height: 320px;
  }
}
body.design .main_banner .big_item .txt_box {
  opacity: 0;
  transform: translateX(50px);
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.8s ease;
}
body.design .main_banner .big_item .img_box {
  opacity: 0;
  transform: translateX(80px) translateY(0);
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.15s, opacity 0.8s ease 0.15s;
}
body.design .main_banner .swiper-slide-active .txt_box {
  opacity: 1 !important;
  transform: translateX(0) !important;
}
body.design .main_banner .swiper-slide-active .img_box {
  opacity: 1 !important;
  transform: translateX(0) translateY(0) !important;
}
body.design .main_banner .small_items .mb_item {
  padding: 24px;
  color: var(--e_gray_33);
}
body.design .main_banner .small_items .mb_item.bg_purple {
  background: #E6DFF1;
}
body.design .main_banner .small_items .mb_item.bg_pink {
  background: #FDEDEB;
}
body.design .main_banner .small_items .mb_item.bg_cyan {
  background: #E1F2F7;
}
body.design .main_banner .small_items .mb_item.bg_yellow {
  background: #FFF4D1;
}
body.design .main_banner .small_items .mb_item.bg_green_light {
  background: #EBF7E9;
}
body.design .main_banner .small_items .mb_item.bg_blue_light {
  background: #E3F2FD;
}
body.design .main_banner .small_items .mb_item.bg_purple_light {
  background: #F3E5F5;
}
body.design .main_banner .small_items .mb_item.bg_peach {
  background: #FFF0E6;
}
body.design .main_banner .small_items .mb_item .category {
  font-size: 12px;
  font-weight: 600;
  opacity: 0.6;
  margin-bottom: 8px;
}
body.design .main_banner .small_items .mb_item h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: -0.3px;
  color: #000;
}
body.design .main_banner .small_items .mb_item p {
  font-size: 13px;
  line-height: 1.4;
  opacity: 0.8;
}
body.design .main_banner .small_items .mb_item .img_box {
  height: 50%;
  aspect-ratio: 1/1;
}
@media (max-width: 1199px) {
  body.design .main_banner .small_items .mb_item .img_box {
    height: 100%;
  }
}
@media (max-width: 768px) {
  body.design .main_banner .small_items .mb_item .img_box img {
    display: none;
  }
}
body.design .main_banner .small_items .mb_item .txt_box {
  gap: 5px;
}
body.design .main_banner .banner-controls.type_A_con {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(6px);
  padding: 8px 16px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}
body.design .main_banner .banner-controls.type_A_con .separator {
  width: 40px;
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
  position: relative;
}
body.design .main_banner .banner-controls.type_A_con .separator.animate-separator::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: #fff;
  animation: bannerLineAnimate 3s linear forwards;
}
body.design .main_banner .banner-controls.type_A_con .total-slides {
  color: var(--e_gray_ef);
}
body.design .main_banner .banner-controls.type_A_con .current-slide {
  color: #fff;
}
body.design .main_banner .banner-controls.type_A_con .control-button {
  cursor: pointer;
  display: flex;
  align-items: center;
}
body.design .main_banner .banner-controls.type_A_con .control-button .material-symbols-rounded {
  font-size: 18px;
  color: #000;
}

@keyframes bannerLineAnimate {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
h1 {
  font-size: 24px;
  display: flex;
  gap: 10px;
}
h1 span {
  font-size: 18px;
  color: var(--e_gray_99);
}
@media (max-width: 1199px) {
  h1 {
    font-size: clamp(20px, 2.2vw, 24px);
  }
  h1 span {
    font-size: clamp(16px, 1.8vw, 18px);
  }
}
@media (max-width: 767px) {
  h1 {
    font-size: clamp(16px, 2.2vw, 20px);
  }
  h1 span {
    font-size: clamp(14px, 1.8vw, 16px);
  }
}

/* ========================================================= */
/* 헤더 (Header) */
/* ========================================================= */
header {
  display: block;
  width: 100%;
  padding-bottom: 10px;
}
@media (max-width: 1199px) {
  header {
    padding-bottom: 0;
  }
}

.mid_bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
}
.mid_bar dt {
  width: 30%;
  padding: 40px 0;
  text-align: left;
}
.mid_bar dt img {
  width: auto;
  height: 40px;
}
.mid_bar dd {
  width: 70%;
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 20px;
}
.mid_bar dd .inmobile {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 20px;
}
.mid_bar dd a {
  font-size: 14px;
  color: #000;
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}
.mid_bar dd a:hover .material-symbols-rounded {
  color: var(--e_prime);
}
.mid_bar dd a:hover .count {
  background: var(--e_prime);
}
.mid_bar .count {
  background: #000;
  color: #fff;
  font-size: 10px;
  padding: 0px 5px;
  border-radius: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-width: 10px;
  font-weight: 900;
  margin-left: -18px;
}
@media (max-width: 1199px) {
  .mid_bar {
    display: none;
  }
  .mid_bar dd, .mid_bar .inmobile {
    gap: 10px;
  }
  .mid_bar dt {
    padding: 30px 0;
  }
  .mid_bar dt img {
    height: clamp(28px, 3.2vw, 40px);
  }
}
@media (max-width: 767px) {
  .mid_bar dd .inmobile {
    display: none;
  }
  .mid_bar dt {
    text-align: left;
    padding: 30px 0;
  }
  .mid_bar dt img {
    height: 25px;
  }
}

.allmenu.type_B_con span {
  font-size: 18px;
  color: var(--e_prime);
  font-variation-settings: "FILL" 100;
}

.mnavi {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  width: 100%;
}
.mnavi li {
  text-align: left;
  position: relative;
}

.topbox {
  background: var(--e_gray_ef);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px 10px;
  border-radius: 30px;
  gap: 5px;
  font-weight: 400;
}

.mid_bar dd .topbox a:hover {
  color: var(--e_prime);
}

/* ========================================================= */
/* 아이콘 교체 & 메뉴 컨테이너 스타일 */
/* ========================================================= */
.allmenu .ico_menu {
  opacity: 1;
}
.allmenu .ico_close {
  opacity: 0;
  position: absolute;
}
.allmenu .ico_drop {
  transform: rotate(-360deg);
}

body.menu-is-open .allmenu .ico_drop {
  transform: rotate(180deg);
  color: color-mix(in srgb, var(--e_prime), black 20%);
}
body.menu-is-open .allmenu .ico_menu {
  opacity: 0;
}
body.menu-is-open .allmenu .ico_close {
  opacity: 1;
}
body.menu-is-open .ettum_menu {
  visibility: visible;
}
@media (max-width: 767px) {
  body.menu-is-open .ettum_menu {
    animation: slideInFromRight 0.7s ease-in-out forwards;
  }
}
@media (min-width: 768px) {
  body.menu-is-open .ettum_menu {
    animation: fadeIn 0.5s ease-in-out forwards;
  }
}
body.menu-is-open .content_body.active {
  overflow: hidden;
}
body.menu-is-open .content_body::before {
  content: "";
  pointer-events: none;
  user-select: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(var(--e_white_rgb), 0.8);
  z-index: 9;
  display: block;
}

/* ========================================================= */
/* 전체 메뉴 드롭다운 & 검색 바 스타일 */
/* ========================================================= */
.content_body {
  position: relative;
  width: 100%;
}

/* ========================================================= */
/* TypeB 전용 모바일 메뉴 스타일 */
/* ========================================================= */
@media (max-width: 767px) {
  .menu-top {
    gap: 20px;
  }
  .menu-top img {
    width: 24px;
    height: 24px;
    cursor: pointer;
  }
}

@media (max-width: 767px) {
  .menu-user-actions a {
    font-weight: 500;
  }
}

.mainwrap {
  display: flex;
  flex-direction: column;
  gap: 100px;
}
@media (max-width: 1199px) {
  .mainwrap {
    gap: 60px;
  }
}

/* ========================================================= */
/* 메인 배너 (Main Banner) */
/* ========================================================= */
.main_banner .slider {
  width: 2200px;
  padding: 40px 0 0;
  max-width: 2400px;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
}
.main_banner .swiper-slide {
  width: 20%;
  text-align: center;
  transition: transform 0.3s, opacity 0.3s;
  padding: 0 10px;
  aspect-ratio: 4/5;
  position: relative;
  pointer-events: none;
}
.main_banner .swiper-slide .mb_con {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  border-radius: 20px;
}
.main_banner .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(100%);
}
.main_banner .swiper-slide-active, .main_banner .swiper-slide-next, .main_banner .swiper-slide-prev {
  pointer-events: all;
}
.main_banner .swiper-slide-active img, .main_banner .swiper-slide-next img, .main_banner .swiper-slide-prev img {
  filter: grayscale(0%);
}
.main_banner .swiper-slide-active:hover img, .main_banner .swiper-slide-next:hover img, .main_banner .swiper-slide-prev:hover img {
  transform: scale(1.05);
}
.main_banner .swiper-slide-active .contxt, .main_banner .swiper-slide-next .contxt, .main_banner .swiper-slide-prev .contxt {
  display: flex;
}
.main_banner .contxt {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 40px;
  z-index: 2;
  background: linear-gradient(transparent 0%, rgba(var(--e_black_rgb), 0.4) 100%);
  color: #fff;
  text-align: left;
  gap: 10px;
}
.main_banner .contxt dt {
  font-size: 20px;
  font-weight: 700;
}
.main_banner .contxt dd {
  font-size: 16px;
}
.main_banner .control-button {
  cursor: pointer;
  line-height: 100%;
  height: 24px;
}
.main_banner .control-button span {
  font-size: 24px;
}
.main_banner .control-button:hover span {
  color: var(--e_prime);
}
.main_banner {
  /* 컨트롤 영역 */
}
.main_banner .banner-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 40px auto 0;
  max-width: 1400px;
}
.main_banner .swiper-pagination {
  position: static;
  width: 100%;
}
.main_banner .swiper-pagination-progressbar {
  background: var(--e_gray_ef);
  height: 5px;
  border-radius: 10px;
}
.main_banner .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--e_gray_33);
  border-radius: 10px;
  transition: transform 0.3s ease;
}
.main_banner .swiper-button-prev, .main_banner .swiper-button-next {
  color: #000;
  position: static;
  margin: 0;
  height: 24px;
}
.main_banner .swiper-button-prev:after, .main_banner .swiper-button-next:after {
  font-size: 16px;
  font-weight: 900;
}
.main_banner .swiper-button-prev:hover:after, .main_banner .swiper-button-next:hover:after {
  color: var(--e_prime);
}
@media (max-width: 1480px) {
  .main_banner .slider {
    width: clamp(1900px, 150vw, 2200px);
  }
  .main_banner .banner-controls {
    max-width: calc(100vw - 80px);
  }
}
@media (max-width: 1199px) {
  .main_banner .slider {
    width: clamp(1200px, 150vw, 1900px);
    padding-top: 10px;
  }
  .main_banner .contxt {
    padding: 20px;
  }
  .main_banner .contxt dt {
    font-size: clamp(18px, 2vw, 20px);
  }
  .main_banner .swiper-slide {
    width: 90vw;
    max-width: 820px;
    padding: 0 10px;
  }
}
@media (max-width: 767px) {
  .main_banner .slider {
    width: 100vw;
    padding-top: 0;
  }
  .main_banner .swiper-slide {
    aspect-ratio: 1/1;
    width: 100vw;
    padding: 0 5px;
  }
  .main_banner .swiper-slide .mb_con {
    border-radius: 0px;
  }
  .main_banner .banner-controls {
    display: none;
    bottom: 30px;
  }
}

/* ========================================================= */
/* 카테고리 섹션 (Category Section) */
/* ========================================================= */
.categorycon {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (max-width: 767px) {
  .categorycon {
    padding: 0 0 0 20px;
  }
}

.icon-row {
  display: flex;
  align-items: center;
  gap: 50px;
  justify-content: center;
  border-bottom: 1px solid var(--e_line);
  padding-bottom: 30px;
}
@media (max-width: 1480px) {
  .icon-row {
    gap: 20px;
    width: 100%;
  }
}
@media (max-width: 1199px) {
  .icon-row {
    gap: 10px;
  }
}
@media (max-width: 767px) {
  .icon-row {
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    width: 100%;
    justify-content: flex-start;
  }
  .icon-row::-webkit-scrollbar {
    display: none;
  }
}

.icon-box {
  max-width: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}
.icon-box.active .icon {
  border: 1px solid var(--e_prime);
  box-sizing: border-box;
}
.icon-box:hover .icon {
  background: var(--e_gray_ef);
  border: 1px solid var(--e_gray_99);
}
@media (max-width: 1480px) {
  .icon-box {
    flex: 1 1 80px;
    max-width: 100px;
  }
}
@media (max-width: 1199px) {
  .icon-box {
    flex: 1 1 50px;
    max-width: 130px;
    min-width: 50px;
  }
  .icon-box .label {
    font-size: 14px;
    white-space: nowrap;
  }
}
@media (max-width: 767px) {
  .icon-box {
    flex: 0 0 auto;
    min-width: 70px;
  }
  .icon-box:hover .icon, .icon-box.active .icon {
    border: 2px solid var(--e_prime);
    background: var(--e_gray_ef);
  }
  .icon-box .icon img {
    pointer-events: none;
  }
}

.icon {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  padding: 16px;
  background: var(--e_gray_ef);
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.icon img {
  width: 100%;
  height: auto;
  max-width: 40px;
  max-height: 40px;
}

.label {
  text-align: center;
  color: var(--e_gray_99);
  font-size: 16px;
  font-weight: 400;
  line-height: 25.6px;
}

/* ========================================================= */
/* 카테고리 상세 (Category Detail) */
/* ========================================================= */
.detail-card {
  display: flex;
  background: var(--e_gray_ef);
  border-radius: 20px;
  overflow: hidden;
  justify-content: baseline;
}
.detail-card .detail-img-wrapper {
  position: relative;
  width: 650px;
}
.detail-card .detail-img {
  object-fit: cover;
  width: 100%;
  aspect-ratio: 5/4;
  display: block;
  background: var(--e_gray_cc);
  border-radius: 20px;
}
.detail-card .detail-content {
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}
.detail-card .detail-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.detail-card .detail-header {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--e_line);
  gap: 20px;
  display: flex;
  justify-content: space-between;
  align-items: end;
}
.detail-card .title {
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
}
.detail-card .subtitle {
  font-size: 14px;
  font-weight: 700;
  line-height: 22.4px;
  color: #000;
}
.detail-card .subtitle::before, .detail-card .subtitle::after {
  content: '"';
}
.detail-card .detail-body {
  display: flex;
  flex-direction: column;
}
.detail-card .text-box {
  flex: 1;
  padding-right: 40px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.detail-card .section-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--e_gray_33);
}
.detail-card .section-text {
  font-size: 14px;
  font-weight: 400;
  color: var(--e_gray_33);
  line-height: 22.4px;
}
.detail-card .btn {
  width: 200px;
  padding: 10px;
  background: #000;
  border-radius: 10px;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.detail-card .btn:hover {
  background: var(--e_prime);
}
.detail-card .btn.mbtn {
  display: none;
}
@media (max-width: 1480px) {
  .detail-card .btn {
    font-size: clamp(16px, 2vw, 20px);
    width: auto;
    padding: 10px 20px;
  }
  .detail-card .detail-img-wrapper {
    width: 50%;
  }
}
@media (max-width: 1199px) {
  .detail-card .detail-img-wrapper {
    width: 45%;
  }
  .detail-card .detail-img {
    width: 100%;
  }
  .detail-card .detail-content {
    padding: 20px;
    gap: 20px;
  }
  .detail-card .detail-info {
    gap: 20px;
  }
  .detail-card .detail-header {
    padding-bottom: 20px;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  .detail-card .title {
    font-size: clamp(18px, 2vw, 20px);
  }
}
@media (max-width: 767px) {
  .detail-card {
    overflow: visible;
  }
  .detail-card .detail-content {
    padding-top: clamp(200px, 80vw, 400px);
    flex-direction: column-reverse;
  }
  .detail-card .detail-img-wrapper {
    display: none;
  }
  .detail-card .detail-header {
    padding-bottom: 10px;
    gap: 10px;
  }
  .detail-card .btn {
    width: 100%;
    text-align: center;
    display: none;
  }
  .detail-card .btn.mbtn {
    display: block;
  }
  .detail-card .detail-info {
    width: 100%;
  }
  .detail-card .detail-body {
    gap: 20px;
  }
}

/* ========================================================= */
/* 썸네일 슬라이더 (Thumbnail Slider) */
/* ========================================================= */
.thumbnail-slider-wrapper {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}
.thumbnail-slider-wrapper:hover .arrow-btn {
  opacity: 1;
}
@media (max-width: 1199px) {
  .thumbnail-slider-wrapper .arrow-btn {
    opacity: 1;
  }
}
@media (max-width: 767px) {
  .thumbnail-slider-wrapper {
    position: absolute;
    top: 0;
    left: 0;
  }
  .thumbnail-slider-wrapper .arrow-btn.left, .thumbnail-slider-wrapper .arrow-btn.right {
    display: none !important;
  }
}

.thumbnail-row-wrapper {
  overflow: hidden;
  flex: 1;
}

.thumbnail-row {
  display: flex;
  transition: transform 0.4s ease;
  will-change: transform;
  gap: 0px;
  position: relative;
  left: 2px;
}

.thumbnail {
  flex: 0 0 auto;
  width: 25%;
  position: relative;
  text-align: center;
  box-sizing: border-box;
  cursor: pointer;
  padding-right: 20px;
}
.thumbnail span {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4/5;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.thumbnail span:hover img {
  filter: grayscale(0%);
  transform: scale(1.05);
}
.thumbnail span:hover .thumbnail-label {
  opacity: 1;
}
.thumbnail img {
  width: 100%;
  height: 100%;
  display: block;
  filter: grayscale(100%);
  object-fit: cover;
}
.thumbnail.active span {
  border: 3px solid var(--e_prime);
  background: rgba(var(--e_black_rgb), 0.2);
}
.thumbnail.active span img {
  filter: grayscale(0%);
  transform: scale(1.05);
}
@media (max-width: 1199px) {
  .thumbnail {
    padding-right: 10px;
  }
}
@media (max-width: 767px) {
  .thumbnail {
    width: clamp(200px, 80vw, 400px);
    height: clamp(200px, 80vw, 400px);
    padding-right: 3vw;
  }
  .thumbnail span {
    aspect-ratio: 1/1;
  }
  .thumbnail span:hover img {
    transform: translateX(-50%);
  }
  .thumbnail img {
    object-fit: cover;
    aspect-ratio: 1/1;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
  }
  .thumbnail.active span {
    border: none;
  }
  .thumbnail.active span img {
    transform: translateX(-50%);
  }
}

.thumbnail-label {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  background: rgba(var(--e_black_rgb), 0.3);
  z-index: 9;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}
@media (max-width: 767px) {
  .thumbnail-label {
    display: none;
  }
}

.arrow-btn {
  width: 50px;
  height: 50px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0px 4px 10px rgba(var(--e_black_rgb), 0.05);
  outline: 1px solid var(--e_line);
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.arrow-btn:hover {
  background: var(--e_prime);
}
.arrow-btn:hover .arrow-shape {
  border-color: #fff;
}
.arrow-btn.left {
  left: 1px;
  padding-left: 5px;
}
.arrow-btn.left .arrow-shape {
  transform: rotate(135deg);
}
.arrow-btn.right {
  right: -5px;
  padding-right: 5px;
}
.arrow-btn.right .arrow-shape {
  transform: rotate(-45deg);
}

.arrow-shape {
  width: 12px;
  height: 12px;
  border: solid #000;
  border-width: 0 2px 2px 0;
}

.fade-out {
  opacity: 0;
  transition: opacity 0.2s ease;
}

/* ========================================================= */
/* 이벤트 섹션 (Event Section) */
/* ========================================================= */
.event-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 40px;
}

.event-item {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20px;
}
.event-item h1 {
  flex-direction: column;
}

.event-img {
  align-self: stretch;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
}

@media (max-width: 1199px) {
  .event-container {
    flex-wrap: wrap;
    justify-content: center;
  }
  .event-container .event-item {
    min-width: 400px;
    flex: 1 1;
    max-width: 700px;
  }
}
@media (max-width: 767px) {
  .event-container {
    flex-direction: column;
  }
  .event-container .event-item {
    width: 100%;
    min-width: 200px;
  }
}
/* ========================================================= */
/* 아이템 리스트 (Item List) */
/* ========================================================= */
.e_itemlist {
  width: 70%;
  display: flex;
  justify-content: center;
}
.e_itemlist.e-content-wrapper .item-container {
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  width: 100%;
  display: grid;
  gap: 40px;
}
@media (max-width: 1199px) {
  .e_itemlist.e-content-wrapper .item-container {
    gap: clamp(20px, 3vw, 40px);
  }
}
@media (max-width: 767px) {
  .e_itemlist.e-content-wrapper .item-container {
    grid-template-columns: 1fr;
  }
  .e_itemlist {
    gap: 20px;
    width: 100%;
  }
}

.printlist .e-pin-header {
  text-align: right;
  align-items: flex-end;
}

@media (max-width: 767px) {
  .printlist .e-pin-con {
    flex-direction: column-reverse;
    gap: 40px;
  }
  .printlist .e-pin-header {
    text-align: right;
  }
}

.item-container .item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 500px;
}

/* Additional responsive rules reorganized into component blocks */
@media (max-width: 1199px) {
  .thumbnail-slider-wrapper .arrow-btn, .e_bt_swiper .e-bt-controls {
    opacity: 1;
  }
}
@media (max-width: 767px) {
  .thumbnail-slider-wrapper .arrow-btn, .e_bt_swiper .e-bt-controls {
    opacity: 0;
  }
}
/* Standalone responsive adjustments for elements appearing only in media blocks */
@media (max-width: 767px) {
  #detail-card-placeholder {
    position: relative;
    padding-right: 20px;
  }
}

@media (max-width: 767px) {
  .content_body {
    position: static;
  }
}

/*# sourceMappingURL=mainB.css.map */
