:root {
  --df-black: #050505;
  --df-ink: #111111;
  --df-charcoal: #222222;
  --df-muted: #737373;
  --df-line: #dedede;
  --df-soft-line: #ededed;
  --df-canvas: #f5f5f3;
  --df-white: #ffffff;
  --df-danger: #c52222;
  --df-radius: 0;
  --df-container: 1440px;
  --df-gutter: clamp(18px, 3.2vw, 48px);
  --df-section: clamp(64px, 9vw, 132px);
  --df-font: Pretendard, "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --df-display: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body.df-site {
  width: 100%;
  min-width: 0 !important;
  margin: 0;
  overflow-x: hidden;
  background: var(--df-white);
  color: var(--df-ink);
  font-family: var(--df-font);
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: -0.015em;
  word-break: keep-all;
}

body.df-site a {
  color: inherit;
  text-decoration: none;
}

body.df-site img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

body.df-site ul,
body.df-site ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

body.df-site h1,
body.df-site h2,
body.df-site h3,
body.df-site h4,
body.df-site h5,
body.df-site h6,
body.df-site p {
  margin-top: 0;
}

body.df-site .wrap,
body.df-site .df-container {
  width: min(calc(100% - (var(--df-gutter) * 2)), var(--df-container)) !important;
  max-width: var(--df-container) !important;
  margin-right: auto !important;
  margin-left: auto !important;
}

.df-skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 10000;
  padding: 10px 14px;
  transform: translateY(-160%);
  background: var(--df-white);
  color: var(--df-black);
  border: 1px solid var(--df-black);
}

.df-skip-link:focus {
  transform: translateY(0);
}

.df-announcement {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px var(--df-gutter);
  background: var(--df-black);
  color: var(--df-white);
  font-family: var(--df-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-align: center;
}

.df-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid var(--df-line);
  backdrop-filter: blur(16px);
}

.df-header__utility {
  border-bottom: 1px solid var(--df-soft-line);
}

.df-header__utility-inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  font-family: var(--df-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
}

.df-header__main {
  min-height: 88px;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto minmax(220px, 1fr);
  align-items: center;
  gap: 32px;
}

.df-wordmark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--df-black) !important;
  font-family: var(--df-display);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.055em;
}

.df-search {
  width: min(100%, 390px);
  display: flex;
  align-items: center;
  justify-self: start;
  border-bottom: 1px solid var(--df-black);
}

.df-search input[type="text"] {
  width: 100% !important;
  height: 42px !important;
  padding: 0 !important;
  border: 0 !important;
  outline: none;
  background: transparent !important;
  color: var(--df-black) !important;
  font: 500 13px/1 var(--df-font) !important;
}

.df-search button {
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--df-black);
  font: 800 16px/1 var(--df-display);
  cursor: pointer;
}

.df-header__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  font-family: var(--df-display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
}

.df-cart-count {
  min-width: 19px;
  height: 19px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 4px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--df-black);
  color: var(--df-white);
  font-size: 10px;
}

.df-menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.df-menu-toggle span,
.df-menu-toggle::before,
.df-menu-toggle::after {
  content: "";
  width: 22px;
  height: 1px;
  display: block;
  margin: 6px auto;
  background: var(--df-black);
  transition: transform .25s ease, opacity .25s ease;
}

.df-nav {
  border-top: 1px solid var(--df-soft-line);
}

.df-nav__inner {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 3.5vw, 56px);
  overflow-x: auto;
  scrollbar-width: none;
}

.df-nav__inner::-webkit-scrollbar {
  display: none;
}

.df-nav__item {
  flex: 0 0 auto;
  position: relative;
  color: var(--df-black);
  font-family: var(--df-display);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .09em;
  white-space: nowrap;
}

.df-nav__item::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  background: currentColor;
  transition: transform .25s ease;
}

.df-nav__item:hover::after,
.df-nav__item:focus-visible::after {
  transform: scaleX(1);
}

.df-drawer {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: none;
}

.df-drawer.is-open {
  display: block;
}

.df-drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .58);
}

.df-drawer__panel {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: min(88vw, 390px);
  overflow-y: auto;
  padding: 24px;
  background: var(--df-white);
}

.df-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 24px;
  border-bottom: 2px solid var(--df-black);
}

.df-drawer__close {
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  background: transparent;
  font-size: 28px;
  cursor: pointer;
}

.df-drawer__categories > li {
  border-bottom: 1px solid var(--df-soft-line);
}

.df-drawer__categories > li > a {
  display: block;
  padding: 16px 2px;
  font-size: 15px;
  font-weight: 700;
}

.df-drawer__categories ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 16px;
  padding: 0 0 16px 14px;
}

.df-drawer__categories ul a {
  color: var(--df-muted);
  font-size: 13px;
}

.df-main {
  min-height: 52vh;
}

.df-page-main {
  padding: clamp(34px, 5vw, 74px) 0 var(--df-section);
}

.df-content-wrap {
  min-width: 0;
}

.df-account-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
}

.df-account-layout__aside {
  min-width: 0;
}

.df-account-layout__content {
  min-width: 0;
}

/* Shared legacy page modernization */
body.df-site .navi_design {
  margin: 0 0 30px !important;
  padding: 0 0 13px !important;
  border-bottom: 1px solid var(--df-line) !important;
  background: none !important;
  color: var(--df-muted) !important;
  font-size: 12px !important;
}

body.df-site input[type="text"],
body.df-site input[type="password"],
body.df-site input[type="email"],
body.df-site input[type="tel"],
body.df-site input[type="number"],
body.df-site select,
body.df-site textarea,
body.df-site .input_ {
  max-width: 100%;
  min-height: 46px;
  padding: 10px 13px;
  border: 1px solid #cfcfcf;
  border-radius: var(--df-radius);
  background: var(--df-white);
  color: var(--df-black);
  font: 500 14px/1.4 var(--df-font);
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}

body.df-site textarea {
  min-height: 130px;
  resize: vertical;
}

body.df-site input:focus,
body.df-site select:focus,
body.df-site textarea:focus {
  border-color: var(--df-black);
  box-shadow: 0 0 0 2px rgba(0, 0, 0, .08);
}

body.df-site input[type="checkbox"],
body.df-site input[type="radio"] {
  accent-color: var(--df-black);
}

body.df-site .bts,
body.df-site a.bts,
body.df-site input[type="submit"],
body.df-site input[type="button"],
body.df-site button.df-button {
  min-height: 42px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  padding: 10px 20px !important;
  border: 1px solid var(--df-black) !important;
  border-radius: var(--df-radius) !important;
  background: var(--df-black) !important;
  color: var(--df-white) !important;
  font: 800 12px/1 var(--df-font) !important;
  letter-spacing: .04em;
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}

body.df-site .bts.white,
body.df-site a.bts.white {
  background: var(--df-white) !important;
  color: var(--df-black) !important;
}

body.df-site .bts:hover,
body.df-site a.bts:hover {
  background: #333 !important;
  color: var(--df-white) !important;
}

body.df-site table {
  max-width: 100%;
  border-collapse: collapse;
}

body.df-site th {
  color: var(--df-black);
  font-weight: 700;
}

body.df-site .tb1 {
  width: 180px !important;
  padding: 18px !important;
  border-bottom: 1px solid var(--df-soft-line);
  background: var(--df-canvas) !important;
  color: var(--df-charcoal);
  font-weight: 700;
}

body.df-site .tb2 {
  padding: 18px !important;
  border-bottom: 1px solid var(--df-soft-line);
}

.df-table-scroll {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* Home */
.page-index .df-main {
  overflow: hidden;
}

.df-hero {
  position: relative;
  min-height: min(820px, calc(100svh - 175px));
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--df-black);
  color: var(--df-white);
}

.df-hero__image,
.df-hero__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.df-hero__image {
  object-fit: cover;
  object-position: center;
}

.df-hero__shade {
  background: linear-gradient(90deg, rgba(0, 0, 0, .78) 0%, rgba(0, 0, 0, .34) 38%, rgba(0, 0, 0, 0) 72%), linear-gradient(0deg, rgba(0, 0, 0, .44), transparent 45%);
}

.df-hero__content {
  position: relative;
  z-index: 1;
  padding-top: clamp(90px, 14vw, 180px);
  padding-bottom: clamp(66px, 9vw, 118px);
}

.df-hero__eyebrow {
  margin-bottom: 24px;
  font-family: var(--df-display);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .2em;
}

.df-hero h1 {
  margin: 0;
  color: var(--df-white);
  font-family: var(--df-display);
  font-size: clamp(66px, 11vw, 168px);
  font-weight: 900;
  line-height: .79;
  letter-spacing: -.075em;
}

.df-hero__copy {
  max-width: 520px;
  margin: 34px 0 0;
  color: rgba(255, 255, 255, .74);
  font-family: var(--df-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .13em;
}

.df-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 38px;
}

.df-hero__actions a {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, .55);
  color: var(--df-white) !important;
  font-family: var(--df-display);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  transition: background .2s ease, color .2s ease;
}

.df-hero__actions a:first-child,
.df-hero__actions a:hover {
  background: var(--df-white);
  color: var(--df-black) !important;
}

.page-index > .df-main_bxslider,
.page-index .main_bxslider {
  display: none !important;
}

.page-index .main_bxslider,
.page-index .main_bxslider > ul,
.page-index .main_bxslider li {
  width: 100% !important;
  max-width: none !important;
}

.page-index .main_bxslider img {
  width: 100% !important;
  min-height: 380px;
  max-height: min(76vh, 920px);
  object-fit: cover;
}

.page-index .main_bbs_wrap,
.page-index [class*="main_"][class*="wrap"] {
  width: 100% !important;
}

.page-index .main_bbs_wrap .wrap,
.page-index .main_new_wrap .wrap,
.page-index .main_hot_wrap .wrap,
.page-index .main_best_wrap .wrap,
.page-index .main_md_wrap .wrap {
  padding-top: var(--df-section);
  padding-bottom: var(--df-section);
}

.page-index h2,
.page-index [class*="title"] h2 {
  color: var(--df-black);
  font-family: var(--df-display);
  font-size: clamp(27px, 4vw, 54px) !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  letter-spacing: -.045em !important;
}

.page-index .top_notice,
.page-index .bottom_review,
.page-index [class*="item_wrap"] > ul,
.page-index [class*="list_wrap"] > ul {
  gap: clamp(18px, 3vw, 38px);
}

.page-index .main_bbs_wrap img,
.page-index [class*="banner"] img {
  object-fit: cover;
}

.df-home-categories,
.df-product-section,
.df-review-section {
  padding: var(--df-section) 0;
}

.df-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: clamp(34px, 5vw, 62px);
  padding-bottom: 20px;
  border-bottom: 2px solid currentColor;
}

.df-section-head p,
.df-editorial__content > p:first-child {
  margin: 0 0 13px;
  font-family: var(--df-display);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .17em;
}

.df-section-head h2,
.df-editorial h2 {
  margin: 0;
  font-family: var(--df-display);
  font-size: clamp(46px, 7vw, 102px);
  font-weight: 900;
  line-height: .82;
  letter-spacing: -.07em;
}

.df-section-head > a,
.df-editorial__content > a {
  flex: 0 0 auto;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  font-family: var(--df-display);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
}

.df-category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--df-line);
  border-left: 1px solid var(--df-line);
}

.df-category-card {
  position: relative;
  min-height: clamp(160px, 17vw, 260px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(22px, 3vw, 42px);
  overflow: hidden;
  border-right: 1px solid var(--df-line);
  border-bottom: 1px solid var(--df-line);
  background: var(--df-white);
  transition: background .25s ease, color .25s ease;
}

.df-category-card:hover {
  background: var(--df-black);
  color: var(--df-white) !important;
}

.df-category-card__number {
  color: var(--df-muted);
  font: 700 11px/1 var(--df-display);
}

.df-category-card strong {
  max-width: 82%;
  font-size: clamp(18px, 2vw, 30px);
  line-height: 1.2;
}

.df-category-card__arrow {
  position: absolute;
  right: 24px;
  bottom: 20px;
  font-size: 22px;
}

.df-art-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(30px, 4vw, 66px) clamp(14px, 2.2vw, 34px);
}

.df-art-card__image {
  position: relative;
  aspect-ratio: 4 / 5;
  display: block;
  overflow: hidden;
  background: var(--df-canvas);
}

.df-art-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity .35s ease, transform .55s cubic-bezier(.2,.7,.2,1);
}

.df-art-card__hover {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.df-art-card:hover .df-art-card__image > img:first-child {
  transform: scale(1.025);
}

.df-art-card:hover .df-art-card__hover {
  opacity: 1;
}

.df-art-card__meta {
  padding-top: 16px;
}

.df-art-card__meta > p {
  margin: 0 0 6px;
  color: var(--df-muted);
  font-family: var(--df-display);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.df-art-card h3 {
  min-height: 45px;
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.55;
}

.df-art-card__price {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  font-size: 14px;
}

.df-art-card__price del {
  color: #999;
  font-size: 11px;
}

.df-editorial {
  min-height: min(850px, 85vw);
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  background: var(--df-canvas);
}

.df-editorial__visual {
  min-height: 620px;
  overflow: hidden;
}

.df-editorial__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% center;
}

.df-editorial__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(44px, 7vw, 110px);
}

.df-editorial__copy {
  max-width: 520px;
  margin: 36px 0;
  color: var(--df-muted);
  line-height: 1.9;
}

.df-product-section--dark {
  background: var(--df-black);
  color: var(--df-white);
}

.df-product-section--dark .df-art-card__image {
  background: #161616;
}

.df-product-section--dark .df-art-card__meta > p,
.df-product-section--dark .df-art-card__price del {
  color: #888;
}

.df-service-strip {
  padding: clamp(60px, 8vw, 110px) 0;
  border-bottom: 1px solid var(--df-line);
}

.df-service-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.df-service-strip article {
  min-height: 180px;
  padding: 0 clamp(18px, 2vw, 32px);
  border-left: 1px solid var(--df-line);
}

.df-service-strip article:last-child {
  border-right: 1px solid var(--df-line);
}

.df-service-strip span {
  color: var(--df-muted);
  font: 700 10px/1 var(--df-display);
}

.df-service-strip h3 {
  margin: 62px 0 10px;
  font: 800 14px/1 var(--df-display);
  letter-spacing: .06em;
}

.df-service-strip p {
  margin: 0;
  color: var(--df-muted);
  font-size: 12px;
}

.df-review-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.df-review-card {
  display: grid;
  grid-template-columns: 160px 1fr;
  min-height: 160px;
  border: 1px solid var(--df-line);
}

.df-review-card > img {
  width: 160px !important;
  height: 100% !important;
  object-fit: cover;
  background: var(--df-canvas);
}

.df-review-card > div {
  padding: 24px;
}

.df-review-card__star {
  margin-bottom: 12px;
}

.df-review-card__star img {
  width: auto !important;
  height: 12px !important;
}

.df-review-card span {
  color: var(--df-muted);
  font-size: 11px;
}

.df-review-list {
  border-top: 1px solid var(--df-line);
}

.df-review-list__item {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: clamp(24px, 4vw, 58px);
  padding: clamp(24px, 4vw, 54px) 0;
  border-bottom: 1px solid var(--df-line);
}

.df-review-list__image {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--df-canvas);
}

.df-review-list__image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
}

.df-review-list__meta {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
  color: var(--df-muted);
  font: 700 10px/1 var(--df-display);
  letter-spacing: .1em;
}

.df-review-list__content h3 {
  margin: 0 0 12px;
  font-size: clamp(18px, 2vw, 28px);
}

.df-review-list__stars {
  margin-bottom: 18px;
}

.df-review-list__content > p {
  max-width: 780px;
  color: var(--df-muted);
  line-height: 1.9;
}

.df-review-list__author {
  font-size: 12px;
  font-weight: 700;
}

.df-empty-state {
  padding: 80px 20px;
  text-align: center;
}

.df-empty-state strong {
  font-family: var(--df-display);
  font-size: 22px;
}

.df-empty-state p {
  color: var(--df-muted);
}

.df-pagination {
  display: flex;
  justify-content: center;
  padding-top: 38px;
}

.page-m_estimate table,
.page-m_estimate_view table,
.page-m_order_out table,
.page-mall_include_cart table {
  max-width: 100% !important;
}

/* Product grids */
body.df-site .main_goods_wrap {
  width: 100% !important;
  display: block;
}

body.df-site .main_goods_wrap > tbody,
body.df-site .main_goods_wrap > tbody > tr {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2.3vw, 34px);
}

body.df-site .main_goods_wrap > tbody > tr + tr {
  margin-top: clamp(28px, 4vw, 56px);
}

body.df-site .main_goods_wrap td.maingoods {
  width: auto !important;
  display: block;
  padding: 0 !important;
  text-align: left !important;
  word-break: keep-all !important;
}

body.df-site .maingoods .zoomimg_wrap,
body.df-site .sub_item_wrap .zoomimg_wrap,
body.df-site .goods_list .zoomimg_wrap {
  width: 100% !important;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--df-canvas);
}

body.df-site .maingoods .zoomimg_wrap img,
body.df-site .sub_item_wrap .zoomimg_wrap img,
body.df-site .goods_list .zoomimg_wrap img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  transition: transform .5s cubic-bezier(.2,.7,.2,1);
}

body.df-site .maingoods:hover .zoomimg_wrap img,
body.df-site .sub_item_wrap li:hover .zoomimg_wrap img {
  transform: scale(1.025);
}

body.df-site .maingoods .goodsName,
body.df-site .sub_item_wrap .goodsName,
body.df-site .goods_list .goodsName {
  margin-top: 15px;
  color: var(--df-black);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
}

body.df-site .goodsMarketPrice {
  margin-top: 8px;
  color: #999;
  font-size: 12px;
}

body.df-site .goodsPrice {
  margin-top: 5px;
  color: var(--df-black);
  font-size: 15px;
  font-weight: 800;
}

body.df-site .sub_category_wrap ul {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--df-black);
}

body.df-site .sub_category_wrap li {
  width: auto !important;
}

body.df-site .sub_category_wrap a {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px !important;
  border-right: 1px solid var(--df-soft-line);
  border-bottom: 1px solid var(--df-soft-line);
  font-size: 13px;
}

body.df-site .cate_name,
body.df-site .sub_besttitle_wrap {
  margin: 0 0 28px;
  padding: 0 0 18px;
  border-bottom: 2px solid var(--df-black);
  font-family: var(--df-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  letter-spacing: -.04em;
}

/* Product detail */
.page-m_mall_detail .df-product-top {
  width: 100% !important;
}

.page-m_mall_detail .df-product-top > tbody > tr > td {
  vertical-align: top;
}

.page-m_mall_detail .df-product-top > tbody > tr > td:first-child {
  width: 52% !important;
  padding-right: clamp(28px, 5vw, 80px) !important;
}

.page-m_mall_detail .df-product-top > tbody > tr > td:last-child {
  width: 48% !important;
}

.page-m_mall_detail form[name="goods"] > table:first-of-type td:first-child {
  font-family: var(--df-display);
  font-size: clamp(28px, 4vw, 52px) !important;
  font-weight: 900 !important;
  line-height: 1.05;
  letter-spacing: -.04em;
}

.page-m_mall_detail #zoom_img,
.page-m_mall_detail .goods_big_image,
.page-m_mall_detail .df-product-top > tbody > tr > td:first-child > img,
.page-m_mall_detail img[name="mainImage"] {
  width: 100% !important;
  height: auto !important;
  background: var(--df-canvas);
  object-fit: contain;
}

.page-m_mall_detail .thumbnail {
  display: flex;
  gap: 8px;
  overflow-x: auto;
}

.page-m_mall_detail .thumbnail li,
.page-m_mall_detail .thumbnail img {
  width: 76px !important;
  height: 76px !important;
  object-fit: cover;
}

.page-m_mall_detail #gc {
  border-top: 2px solid var(--df-black);
}

.page-m_mall_detail #gc .tb_1 {
  width: 120px !important;
  padding: 15px 8px !important;
  color: var(--df-muted);
  font-size: 13px;
}

.page-m_mall_detail #gc .tb_2 {
  padding: 15px 8px !important;
  color: var(--df-black);
}

.page-m_mall_detail select {
  width: 100% !important;
}

.page-m_mall_detail a[href*="sendcart"] {
  min-width: 210px;
  min-height: 56px;
  margin: 0 8px 8px 0 !important;
}

.page-m_mall_detail #op_show,
.page-m_mall_detail #total_price_show {
  margin-top: 12px;
  padding: 18px !important;
  background: var(--df-canvas);
  border: 0 !important;
}

.page-m_mall_detail [id^="detail"],
.page-m_mall_detail .goods_body {
  max-width: 1080px;
  margin-right: auto;
  margin-left: auto;
}

.page-m_mall_detail .goods_body img {
  width: auto !important;
  max-width: 100% !important;
}

/* Login and membership */
.page-m_login .df-content-wrap,
.page-m_member .df-content-wrap,
.page-m_member_form .df-content-wrap,
.page-m_member_loss .df-content-wrap {
  max-width: 720px !important;
}

.page-m_login .df-content-wrap > div[style*="width:490px"] {
  width: 100% !important;
  padding: clamp(24px, 5vw, 56px) !important;
  border: 1px solid var(--df-line);
  background: var(--df-white);
}

.page-m_login .tap_login {
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--df-line);
}

.page-m_login .tap_login li {
  width: auto !important;
  text-align: center;
}

.page-m_login .tap_login a {
  display: block;
  padding: 15px 8px;
  background: none !important;
}

.page-m_login .login_box input[type="text"],
.page-m_login .login_box input[type="password"] {
  width: 100% !important;
}

.page-m_member table,
.page-m_member_form table {
  width: 100% !important;
}

.page-m_member_form #tb_main {
  border-top: 2px solid var(--df-black);
}

/* Cart, order and checkout */
.page-m_cart #ct_main,
.page-m_userinfo #ct_main,
.page-m_order_detail table,
.page-m_order_list table {
  width: 100% !important;
}

.page-m_cart #ct_main > tbody > tr,
.page-m_userinfo #ct_main > tbody > tr {
  border-bottom: 1px solid var(--df-line);
}

.page-m_cart #ct_main th,
.page-m_userinfo #ct_main th {
  padding: 15px 10px !important;
  border-top: 2px solid var(--df-black);
  border-bottom: 1px solid var(--df-line);
  background: var(--df-canvas) !important;
  font-size: 12px;
}

.page-m_cart #ct_main td,
.page-m_userinfo #ct_main td {
  padding: 18px 10px !important;
}

.page-m_cart #ct_main .tb_1 img,
.page-m_userinfo #ct_main .tb_1 img {
  width: 92px !important;
  height: 92px !important;
  object-fit: cover;
}

.page-m_userinfo form[name="morning"] > table,
.page-m_userinfo_confirm table,
.page-m_order table {
  width: 100% !important;
}

.page-m_order table[style*="width:600px"] {
  max-width: 600px;
  padding: clamp(20px, 4vw, 42px) !important;
  border: 1px solid var(--df-line) !important;
}

.page-m_cart a[onclick*="check_cmd"],
.page-m_userinfo a[onclick*="check_userinfo"],
.page-m_userinfo a[href="m_cart.php"],
.page-m_member_form a[onclick*="check_member_form"] {
  min-width: 220px;
  min-height: 54px;
}

/* Boards, customer center and general content */
.page-m_board .df-content-wrap,
.page-m_view .df-content-wrap,
.page-m_write .df-content-wrap,
.page-m_customer .df-content-wrap {
  max-width: 1180px !important;
}

body.df-site .board_list,
body.df-site #tb_board,
body.df-site #tb_board_list,
body.df-site #tb_board_view,
body.df-site #tb_board_comment,
body.df-site [id*="board"] table,
body.df-site form[name*="board"] table {
  width: 100% !important;
}

body.df-site #tb_board {
  border: 0 !important;
}

body.df-site #tb_board_list {
  border-top: 2px solid var(--df-black);
}

body.df-site #tb_board_list th {
  padding: 15px 10px !important;
  border-bottom: 1px solid var(--df-line);
  background: var(--df-canvas) !important;
  color: var(--df-black);
  font-size: 12px;
}

body.df-site #tb_board_list td {
  padding: 17px 10px !important;
  border-bottom: 1px solid var(--df-soft-line);
  background: var(--df-white) !important;
}

body.df-site #tb_board_list .tb_subject {
  text-align: left;
}

body.df-site #tb_board_view {
  border-top: 2px solid var(--df-black) !important;
}

body.df-site #tb_board_view .tb_subject {
  width: 150px;
  padding: 15px !important;
  background: var(--df-canvas) !important;
  font-weight: 700;
}

body.df-site #tb_board_view .tb_content {
  padding: 15px !important;
  border-bottom: 1px solid var(--df-soft-line);
}

body.df-site #tb_board_view .tb_body {
  min-height: 260px;
  padding: clamp(28px, 5vw, 64px) !important;
  border-bottom: 1px solid var(--df-line);
  font-size: 15px;
  line-height: 1.9;
}

body.df-site #morning_board table[width="650"],
body.df-site #morning_board table[width="95%"] {
  width: 100% !important;
}

body.df-site #morning_board input[name="board_subject"],
body.df-site #morning_board input[name="board_email"],
body.df-site #morning_board textarea {
  width: 100% !important;
}

body.df-site .tb_button,
body.df-site .tb_bt {
  display: flex !important;
  justify-content: flex-end;
  gap: 8px;
  padding: 20px 0;
}

body.df-site .faq_menu {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 22px 0;
}

body.df-site .faq_menu a {
  display: block;
  padding: 9px 15px;
  border: 1px solid var(--df-line);
  background: var(--df-white);
}

body.df-site [id*="board"] th,
body.df-site .board_list th {
  padding: 14px 10px;
  border-top: 2px solid var(--df-black);
  border-bottom: 1px solid var(--df-line);
  background: var(--df-canvas);
}

body.df-site [id*="board"] td,
body.df-site .board_list td {
  padding: 15px 10px;
  border-bottom: 1px solid var(--df-soft-line);
}

/* Footer */
.df-footer {
  background: var(--df-black);
  color: var(--df-white);
}

.df-footer__top {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: clamp(30px, 6vw, 88px);
  padding: clamp(58px, 8vw, 112px) 0;
}

.df-footer__brand {
  margin-bottom: 28px;
  font-family: var(--df-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  line-height: .9;
  letter-spacing: -.06em;
}

.df-footer__eyebrow {
  margin-bottom: 18px;
  color: #888;
  font-family: var(--df-display);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
}

.df-footer__phone {
  margin-bottom: 10px;
  font-family: var(--df-display);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 800;
}

.df-footer__text,
.df-footer__links a {
  color: #aaa !important;
  font-size: 12px;
  line-height: 1.9;
}

.df-footer__links li + li {
  margin-top: 8px;
}

.df-footer__bottom {
  padding: 24px 0 38px;
  border-top: 1px solid #252525;
  color: #777;
  font-size: 11px;
  line-height: 1.9;
}

.df-mobile-bar {
  display: none;
}

@media (max-width: 1023px) {
  .df-header__utility,
  .df-header__actions .df-action-login,
  .df-header__actions .df-action-join,
  .df-nav {
    display: none;
  }

  .df-header__main {
    min-height: 72px;
    grid-template-columns: 44px 1fr auto;
    gap: 12px;
  }

  .df-menu-toggle {
    display: block;
  }

  .df-search {
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
    max-width: none;
    margin: -3px 0 15px;
  }

  .df-wordmark {
    justify-self: center;
    font-size: 30px;
  }

  .df-header__actions {
    gap: 0;
  }

  .df-header__actions .df-action-cart {
    font-size: 0;
  }

  .df-header__actions .df-action-cart::before {
    content: "BAG";
    font-size: 10px;
  }

  .df-account-layout {
    grid-template-columns: 1fr;
  }

  .df-account-layout__aside {
    overflow-x: auto;
  }

  body.df-site .main_goods_wrap > tbody > tr {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .page-index .top_notice,
  .page-index .bottom_review {
    flex-wrap: wrap;
  }

  .page-index .top_notice > *,
  .page-index .bottom_review > * {
    width: 100% !important;
  }

  .df-footer__top {
    grid-template-columns: 1fr 1fr;
  }

  .df-footer__top > :first-child {
    grid-column: 1 / -1;
  }

  .df-art-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .df-category-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .df-editorial {
    grid-template-columns: 1fr;
  }

  .df-editorial__visual {
    min-height: 58vw;
  }

  .df-service-strip__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 0;
  }
}

@media (max-width: 767px) {
  :root {
    --df-gutter: 18px;
    --df-section: 66px;
  }

  body.df-site {
    padding-bottom: 62px;
    font-size: 14px;
  }

  .df-announcement {
    min-height: 30px;
    font-size: 9px;
  }

  .df-header__main {
    min-height: 62px;
  }

  .df-wordmark {
    font-size: 26px;
  }

  .df-page-main {
    padding-top: 28px;
  }

  .page-index .main_bxslider img {
    min-height: 62vh;
  }

  .df-hero {
    min-height: 73svh;
    align-items: flex-end;
  }

  .df-hero__image {
    object-position: 60% center;
  }

  .df-hero__shade {
    background: linear-gradient(0deg, rgba(0, 0, 0, .88) 0%, rgba(0, 0, 0, .16) 72%);
  }

  .df-hero h1 {
    font-size: clamp(58px, 20vw, 88px);
  }

  .df-hero__copy {
    max-width: 310px;
    margin-top: 24px;
    line-height: 1.7;
  }

  .df-hero__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .df-hero__actions a {
    width: 100%;
  }

  .df-section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .df-section-head h2,
  .df-editorial h2 {
    font-size: clamp(45px, 16vw, 70px);
  }

  .df-category-card {
    min-height: 150px;
    padding: 18px;
  }

  .df-category-card__arrow {
    right: 16px;
    bottom: 14px;
  }

  .df-art-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 12px;
  }

  .df-art-card h3 {
    min-height: 42px;
    font-size: 13px;
  }

  .df-editorial__visual {
    min-height: 78vw;
  }

  .df-editorial__content {
    padding: 54px 18px 64px;
  }

  .df-service-strip__grid {
    grid-template-columns: 1fr;
  }

  .df-service-strip article,
  .df-service-strip article:last-child {
    min-height: 0;
    padding: 24px 0;
    border-right: 0;
    border-bottom: 1px solid var(--df-line);
    border-left: 0;
  }

  .df-service-strip h3 {
    margin-top: 28px;
  }

  .df-review-grid {
    grid-template-columns: 1fr;
  }

  .df-review-card {
    grid-template-columns: 118px 1fr;
  }

  .df-review-card > img {
    width: 118px !important;
  }

  .df-review-list__item {
    grid-template-columns: 108px minmax(0, 1fr);
    gap: 16px;
  }

  .df-review-list__meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 12px;
  }

  .df-review-list__content h3 {
    font-size: 15px;
  }

  .df-review-list__content > p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  body.df-site .main_goods_wrap > tbody > tr {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px 12px;
  }

  body.df-site .sub_category_wrap ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.df-site .sub_item_wrap > ul {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 12px;
  }

  body.df-site .sub_item_wrap > ul > li {
    width: auto !important;
    margin: 0 !important;
  }

  .page-m_mall_detail .df-product-top,
  .page-m_mall_detail .df-product-top > tbody,
  .page-m_mall_detail .df-product-top > tbody > tr,
  .page-m_mall_detail .df-product-top > tbody > tr > td {
    width: 100% !important;
    display: block !important;
  }

  .page-m_mall_detail .df-product-top > tbody > tr > td:first-child {
    padding: 0 0 28px !important;
  }

  .page-m_mall_detail .df-product-top > tbody > tr > td:last-child {
    padding: 0 !important;
  }

  .page-m_mall_detail .thumbnail li,
  .page-m_mall_detail .thumbnail img {
    width: 62px !important;
    height: 62px !important;
  }

  .page-m_mall_detail a[href*="sendcart"] {
    width: 100% !important;
    margin-right: 0 !important;
  }

  body.df-site .tb1,
  body.df-site .tb2 {
    width: 100% !important;
    display: block;
  }

  body.df-site .tb1 {
    padding: 12px 14px 4px !important;
    border-bottom: 0;
    background: var(--df-white) !important;
  }

  body.df-site .tb2 {
    padding: 6px 14px 14px !important;
  }

  .page-m_cart #ct_main > tbody,
  .page-m_cart #ct_main > tbody > tr,
  .page-m_userinfo #ct_main > tbody,
  .page-m_userinfo #ct_main > tbody > tr {
    display: block;
    width: 100%;
  }

  .page-m_cart #ct_main > tbody > tr:first-child,
  .page-m_userinfo #ct_main > tbody > tr:first-child {
    display: none;
  }

  .page-m_cart #ct_main td,
  .page-m_userinfo #ct_main td {
    width: 100% !important;
    display: block;
    padding: 8px 0 !important;
    text-align: left !important;
  }

  .page-m_cart #ct_main > tbody > tr,
  .page-m_userinfo #ct_main > tbody > tr {
    position: relative;
    margin-bottom: 18px;
    padding: 18px;
    border: 1px solid var(--df-line);
  }

  .page-m_cart a[onclick*="check_cmd"],
  .page-m_userinfo a[onclick*="check_userinfo"],
  .page-m_userinfo a[href="m_cart.php"],
  .page-m_member_form a[onclick*="check_member_form"] {
    width: 100% !important;
    min-width: 0;
    margin: 4px 0 !important;
  }

  .page-m_cart #ct_main .tb_0,
  .page-m_userinfo #ct_main .tb_0 {
    position: absolute;
    top: 10px;
    left: 10px;
    width: auto !important;
    z-index: 1;
  }

  .page-m_cart #ct_main .tb_1 img,
  .page-m_userinfo #ct_main .tb_1 img {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 1 / 1;
  }

  .page-m_login .df-content-wrap > div[style*="width:490px"] {
    padding: 26px 18px !important;
  }

  body.df-site #tb_board_list .tb_num,
  body.df-site #tb_board_list .tb_name,
  body.df-site #tb_board_list .tb_data,
  body.df-site #tb_board_list .tb_count,
  body.df-site #tb_board_list .tb_goods {
    display: none;
  }

  body.df-site #tb_board_list .tb_subject {
    width: 100% !important;
    display: table-cell;
    padding: 15px 8px !important;
  }

  body.df-site #tb_board_view .tb_subject,
  body.df-site #tb_board_view .tb_content,
  body.df-site #morning_board .tb_subject,
  body.df-site #morning_board .tb_content {
    width: 100% !important;
    display: block;
  }

  body.df-site #tb_board_view .tb_subject,
  body.df-site #morning_board .tb_subject {
    padding: 12px 12px 4px !important;
    background: var(--df-white) !important;
  }

  body.df-site #tb_board_view .tb_content,
  body.df-site #morning_board .tb_content {
    padding: 4px 12px 14px !important;
  }

  body.df-site .tb_button,
  body.df-site .tb_bt {
    flex-wrap: wrap;
  }

  .page-m_member table,
  .page-m_member tbody,
  .page-m_member tr,
  .page-m_member td {
    width: 100% !important;
    display: block;
  }

  .df-footer__top {
    grid-template-columns: 1fr;
  }

  .df-footer__top > :first-child {
    grid-column: auto;
  }

  .df-mobile-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1000;
    height: 62px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--df-white);
    border-top: 1px solid var(--df-line);
  }

  .df-mobile-bar a,
  .df-mobile-bar button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--df-black);
    font: 800 9px/1 var(--df-display);
    letter-spacing: .08em;
  }

  .df-mobile-bar strong {
    font-size: 17px;
    line-height: 1;
  }
}

@media (max-width: 390px) {
  body.df-site .main_goods_wrap > tbody > tr {
    column-gap: 10px;
  }

  .df-wordmark {
    font-size: 23px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}
