@charset "utf-8";
/* CSS Document */

:root {
  --color-primary: #007bff;
  --color-secondary: #6c757d;
  --site-width: calc(100% - 100px);
  --site-max-width: 1360px;
  --site-min-width: 320px; /* Adjusted for mobile */
}

/* ---------------------------
   Reset & Box Sizing
--------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ---------------------------
   HTML & Body
--------------------------- */
html {
  font-size: clamp(12px, 2.5vw, 14px); /* Responsive font size */
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue',
    Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: #2e2e2e;
  background-color: #fff;
}

/* ---------------------------
   Typography
--------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
}

p {
  margin-bottom: 1em;
}

/* ---------------------------
   Lists & Links
--------------------------- */
ul, ol {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

ol, ul, dl, p {
    margin-top: 0;
    margin-bottom: 0rem !important;
    margin-left: 0rem !important;
}
ol, ul, p {
    padding-left: 0rem !important;
    padding-bottom: 0rem !important;
}
/* ---------------------------
   Media & Images
--------------------------- */
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

/* ---------------------------
   Form Elements
--------------------------- */
button, input, textarea, select {
  font: inherit;
  color: inherit;
  border: none;
  outline: none;
  background: none;
}

button {
  cursor: pointer;
}

#wrap {
  position: relative;
  width: 100%;
  height: 100%;
}

#container {
  position: relative;
  box-sizing: border-box;
}

.content-wrap {
  width: var(--site-width);
  max-width: var(--site-max-width);
  margin: 0 auto;
}

.content-area {}

.content-title {
  text-align: center;
  margin-bottom: 60px;
}

.content-title h2 {
  font-size: clamp(24px, 5vw, 40px); /* Responsive */
  font-weight: 700;
  margin-bottom: 10px;
}

.content-title p {
  font-size: clamp(14px, 2.5vw, 16px);
}

.main-content {
  padding: clamp(40px, 10vw, 100px) 0;
  width: var(--site-width);
  max-width: var(--site-max-width);
  margin: 0 auto;
}

.main-content-title {
  text-align: center;
  margin-bottom: 50px;
}

.main-content-title h2 {
  font-size: clamp(24px, 5vw, 40px);
  font-weight: 700;
  margin-bottom: 10px;
}

.main-content-title p {
  font-size: clamp(14px, 2.5vw, 16px);
}

.mb-100 {
  margin-bottom: clamp(40px, 10vw, 100px);
}

/* 헤더 */
#header {
  position: sticky;
  left: 0;
  top: 0;
  width: 100%;
  height: clamp(80px, 15vw, 150px); /* Responsive height */
  background-color: #fff;
  box-sizing: border-box;
  z-index: 51;
}

#gnb {
  border-bottom: 1px solid #ddd;
}

.header-area {
  display: flex;
  padding: 1.2rem 0;
  justify-content: space-between;
  align-items: center;
  width: var(--site-width);
  max-width: var(--site-max-width);
  margin: 0 auto;
}

.logo {
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  font-weight: bold;
}

.logo img {
  height: clamp(30px, 5vw, 60px);
}

.cs {
  line-height: clamp(30px, 5vw, 60px);
  margin-left:10px;
}

.gnb-menu {
  height: 100%;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
  gap: clamp(20px, 5vw, 90px);
}

.gnb-menu li {
  position: relative;
}

.gnb-menu li a {
  font-weight: 500;
  font-size: clamp(14px, 2.5vw, 18px);
  display: block;
  padding: 10px 0px;
}

.header-gnb-left {}

.header-gnb-right {
  display: flex;
  gap: clamp(20px, 10vw, 200px);
}

.header-gnb-util {
  display: flex;
  align-items: center;
  gap: clamp(10px, 2vw, 24px);
}

.gnb-util-menu {
  display: flex;
  gap: clamp(8px, 2vw, 16px);
}

.gnb-util-menu li a:not(:last-child)::after {
  content: '';
  width: 1px;
  height: 10px;
  background: #d6d6d6;
  margin: 0 10px 0 7px;
  display: inline-block;
}

.gnb-icon-menu {
  display: flex;
  align-items: center;
  gap: clamp(8px, 2vw, 16px);
}

.hamburger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 52;
}

.hamburger-menu span {
  display: block;
  width: 100%;
  height: 3px;
  background: #2e2e2e;
  transition: all 0.3s ease;
}

.hamburger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-menu.active span:nth-child(2) {
  opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* path */
.path-area {
  margin: 0 0 60px;
}

.path {
  overflow: hidden;
  margin: 10px 0 0;
  height: 30px;
  line-height: 30px;
}

.path span {
  overflow: hidden;
  position: absolute;
  width: 0;
  height: 0;
  white-space: nowrap;
  text-indent: 100%;
}

.path ol {
  float: right;
}

.path li {
  display: inline-block;
}

.path li:not(:first-child):before {
  content: "/";
  display: inline-block;
  margin: 0 4px 0 2px;
  color: #7d7d7d;
  font-size: 11px;
  vertical-align: middle;
}

.path li:first-child {
  background: none;
}

.path li:first-child a {
  font-size: 0;
}

.path li:first-child a::before {
  content: 'Home';
  font-family: inherit;
  color: currentColor;
  font-size: 13px;
}

.path li a {
  font-size: 13px;
  color: #7d7d7d;
  text-decoration: none;
}

.path li.current a,
.path li:last-child a,
.path li strong,
.path li strong a {
  color: #000;
  font-size: 13px;
  font-weight: 500;
}

.path li.current:first-child a {
  font-size: 0;
}

/* 메인슬라이드배너 */
.mainslide-wide-wrap {
  width: 100%;
  overflow: hidden;
}

.mainslide-wide {
  position: relative;
  z-index: 1;
}

.mainslide-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

.mainslide-box {
  display: flex;
  position: relative;
  width: 100%;
  z-index: 1;
  transition-property: transform;
  box-sizing: content-box;
  transform: translate3d(0px, 0, 0);
}

.mainslide {
  width: 100%;
  flex: 1;
}

.mainslide img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  margin: 0;
}

.mainslide-text-contain {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  color: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  transition-delay: 0.3s;
  z-index: 999;
}

.mainslide-text-contain.show {
  opacity: 1;
  transform: translateY(0);
}

.mainslide-text-big {
  font-weight: 700;
  font-size: clamp(1.8rem, 5vw, 3.5rem);
  margin-bottom: 20px;
  text-shadow: 0 0px 5px rgba(0, 0, 0, 0.5);
}

.mainslide-text-small {
  text-shadow: 0 0px 5px rgba(0, 0, 0, 0.5);
  font-size: clamp(14px, 2.5vw, 20px);
}

.mainslide-bg {
  background: rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* 메인 배너 */
.main-banner-wrap {}

.main-banner-box {
  width: 100%;
  display: flex;
  justify-content: flex-start;
}

.banner-box {
  display: flex;
  justify-content: space-evenly;
  width: 100%;
}

.banner-item {
  position: relative;
  overflow: hidden;
  flex: 1;
}

.banner-item img {
  width: 100%;
  height: clamp(200px, 50vw, 500px); /* Responsive height */
  object-fit: cover;
}

.banner-text-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  text-align: center;
  background: rgba(0, 0, 0, 0.2);
  text-shadow: 0 0px 5px rgba(0, 0, 0, 0.5);
}

.banner-title {
  font-size: clamp(18px, 4vw, 30px);
  font-weight: bold;
}

.banner-sub-text {
  font-size: clamp(14px, 3vw, 20px);
  font-weight: 600;
}

/* 메인상품리스트 */
.main-list-wrap {}

.main-list-box {
  width: 100%;
}

.list-item-box {
  display: grid;
}
/* 메인상품리스트 */
.main-list-wrap {}

.main-list-box {
  width: 100%;
}

.list-item-box {
  display: grid;
}

.list-item {}

.thumbnail {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  margin: 0 0 20px 0;
  overflow: hidden;
  padding: 2vw;
}

.thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  box-sizing: border-box;
}

.description {}

.name-box {}

.name {
  font-size: clamp(14px, 2.5vw, 18px);
  font-weight: 600;
  margin-bottom: 4px;
}

.name-sub {
  color: #6b6b6b;
  margin-bottom: 4px;
}

.price {
  font-size: clamp(13px, 2.5vw, 17px);
  font-weight: 600;
}

.item-grid_3 {
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}

.item-grid_3 .thumbnail {
  height: 20vw;
}

.item-grid_4 {
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px;
}

.item-grid_4 .thumbnail {
  height: 16vw;
}

.item-grid_5 {
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: 20px;
}

.function {
  overflow: hidden;
  text-align: right;
}

.prdCount {
  float: left;
  color: #7d7d7d;
}

.result-area fieldset {
  margin: 20px 0 0;
  padding: 10px 16px;
  text-align: right;
  background: #fbf9fa;
}

/*탭*/
.tab-wrap {
  margin-bottom: 40px;
}

.tab {
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
}

.tab-item {
  margin: 0 9px;
  width: auto !important;
  height: auto !important;
}

.tab-item a {
  margin: 0;
  padding: 14px 20px;
  font-size: clamp(12px, 2.5vw, 14px);
  font-weight: 600;
  line-height: 1.3;
  position: relative;
  background: #f8f8f8;
  border-radius: 40px;
  line-height: 1;
  display: block;
  color: #777;
}

.tab-item.current a {
  color: #fff;
  background: #222;
  font-weight: bold;
}

/* 메인 중간 서브 배너 */
.main-sub-banner {
  background: #ddd;
  height: clamp(150px, 40vw, 300px); /* Responsive height */
  overflow: hidden;
  position: relative;
}

.main-sub-banner img {
  object-fit: cover;
}

.main-sub-banner-text-contain {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  color: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.2);
}

.main-sub-banner-text-big {
  font-weight: 700;
  font-size: clamp(20px, 4vw, 34px);
  margin-bottom: 0px;
}

.main-sub-banner-text-small {}

.banner-btn {
  display: block;
  width: clamp(120px, 20vw, 155px);
  height: clamp(40px, 8vw, 55px);
  line-height: clamp(35px, 8vw, 50px);
  color: #000;
  font-size: clamp(12px, 2.5vw, 15px);
  font-weight: bold;
  text-align: center;
  cursor: pointer;
  position: relative;
  border-radius: 50px;
  background: #fff;
}

/*gallery*/
.gallery-wrap {}

.gallery-box {}

.gallery-item-box {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.gallery-item {
  overflow: hidden;
  border-radius: 4px;
}

.gallery-item img {
  width: 100%;
  height: clamp(150px, 30vw, 300px); /* Responsive height */
  object-fit: cover;
}

.btn-more-box {
  margin-top: 45px;
  display: flex;
  justify-content: center;
}

.btn-more {
  width: clamp(200px, 50vw, 300px);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 52px;
  font-weight: 500;
  line-height: 1;
  box-sizing: border-box;
  border-radius: 6px;
  background: #fff;
  color: #1d1d1f;
  border: 1px solid #ddd;
}

/*paginate*/
.paginate {
  margin: 60px 0 0 0;
  text-align: center;
  font-size: 0;
  line-height: 0;
  display: flex;
  justify-content: center;
}

.paginate > a {
  display: flex;
  width: 40px;
  line-height: 40px;
  text-align: center;
  background: #fff;
  box-sizing: border-box;
  align-items: center;
  justify-content: center;
  position: relative;
}

.paginate > a::after,
.paginate > a:first-child::before,
.paginate > a:last-child::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  border-width: 1px 1px 0 0;
  border-style: solid;
  border-color: #000;
  vertical-align: middle;
  transform: rotate(45deg);
}

.paginate > a:first-child::before,
.paginate > a:last-child::before {
  margin: 0 -3px;
  position: absolute;
  left: calc(50% - 2px) !important;
}

.paginate > a:first-child::after,
.paginate > a:first-child::before,
.paginate > a:first-child + a::after {
  transform: rotate(-135deg);
  position: absolute;
  left: calc(50% - 0px);
}

.paginate > a:last-child::after {
  left: calc(50% - 0px);
  position: absolute;
}

.paginate ol {
  display: inline-block;
  font-size: 0;
  line-height: 0;
  vertical-align: middle;
  margin: 0 2px 0 6px;
}

.paginate li {
  display: inline-block;
  margin: 0 2px;
  vertical-align: top;
}

.paginate li:first-child {
  margin-left: 0;
}

.paginate img {
  vertical-align: top;
}

.paginate li a {
  display: block;
  width: 40px;
  padding: 12px 0;
  font-size: 12px;
  color: #6d6d6d;
  border: 1px solid #e5e5e5;
  line-height: 14px;
  background: #fff;
  box-sizing: border-box;
  border-radius: 4px;
}

.paginate a:hover {
  text-decoration: none;
}

.paginate a.this {
  position: relative;
  z-index: 1;
  color: #000;
  border-color: #000;
}

.paginate a.nolink {
  cursor: default;
}

.scroll-animate {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-animate.active {
  opacity: 1;
  transform: translateY(0);
}

.about-section {
  width: 100%;
  display: flex;
  align-items: center;
  margin-bottom: 6vw;
  justify-content: space-between;
}

.about-box {
  width: calc(50% - 50px);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.about-text-area {
  padding: 0 4vw;
}

.about-text-title {
  font-size: clamp(20px, 4vw, 30px);
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.5;
}

.about-text {
  font-size: clamp(14px, 2.5vw, 18px);
  line-height: 1.9;
  color: #666;
  word-break: keep-all;
}

.about-img img {
  width: 100%;
  height: clamp(200px, 50vw, 500px); /* Responsive height */
  object-fit: cover;
}

/*푸터*/
.footer {
  --footer-font-color-base: #8d8d8f;
  --footer-font-color-heading: #1d1d1f;
  --footer-font-color-primary: #5d5d5f;
  --footer-border-color-base: #eeeef0;
  font-size: clamp(12px, 2.5vw, 13.5px);
  line-height: 1.6;
}

.footer {
  color: var(--footer-font-color-base);
  border-top: 1px solid #ddd;
}

/* 회사정보 */
.footer__section1 {}

.footer__section1-inner {
  display: flex;
  flex-wrap: wrap;
  column-gap: 90px;
  padding-top: 54px;
  padding-bottom: 54px;
}

.footer__logo {
  margin-bottom: 20px;
}

.footer__logo a {
  font-size: clamp(20px, 4vw, 26.5px);
  line-height: 1;
  font-weight: 760;
  letter-spacing: -0.6px;
  color: var(--footer-font-color-heading) !important;
}

.footer__corp {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer__corp-toggle {
  display: none;
}

.footer__corp a {
  color: var(--footer-font-color-base);
}

.footer__corp-para {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 12px;
}

.footer__corp-item-bizno:not(:lang(ko)) a {
  display: none;
}

.footer__title {
  margin-bottom: 10px;
  font-size: clamp(12px, 2.5vw, 14.5px);
  color: var(--footer-font-color-heading);
}

.footer__cs {
  width: 220px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__cs-tel {
  margin-bottom: 4px;
  pointer-events: none;
  cursor: default;
  font-size: clamp(18px, 4vw, 22px);
  font-weight: bold;
  line-height: 1;
  color: var(--footer-font-color-heading);
}

.footer__cs-time {
  line-height: 1.8;
}

.footer__cs-time:empty {
  display: none;
}

.footer__cs .snsicon {
  margin-top: 7px;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.footer__cs-payment {
  position: relative;
  font-weight: 500;
  cursor: pointer;
}

.footer__cs-payment-toggle {
  color: var(--footer-font-color-primary);
}

.footer__cs-payment-content {
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  bottom: -5px;
  left: -20px;
  display: flex;
  flex-direction: column;
  border: 1px solid #eeeef0;
  border-radius: 8px;
  padding: 20px;
  background: #fff;
  box-sizing: border-box;
  text-align: left;
  font-size: 13.5px;
  line-height: 1.8;
  letter-spacing: -0.25px;
}

.footer__cs-payment--active .footer__cs-payment-content {
  opacity: 1;
  visibility: visible;
  cursor: default;
}

.footer__cs-payment-title {
  margin-bottom: 10px;
  position: relative;
  display: flex;
  align-items: center;
  font-size: 14.5px;
  font-weight: bold;
  color: var(--footer-font-color-heading);
}

.footer__cs-payment-close {
  position: absolute;
  right: -10px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 34px;
  height: 34px;
  color: transparent;
}

.footer__cs-payment-close::before,
.footer__cs-payment-close::after {
  position: absolute;
  width: 1px;
  height: 16px;
  transform: rotate(-45deg);
  background: #0d0d0f;
  content: "";
}

.footer__cs-payment-close::after {
  transform: rotate(45deg);
}

.footer__legal {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 180px;
  font-weight: 500;
}

.footer__legal-link {
  color: var(--footer-font-color-base);
}

.footer__legal-link--privacy {
  color: var(--footer-font-color-primary);
}

/* 서비스 정보 */
.footer__section2 {
  border-top: 1px solid var(--footer-border-color-base);
}

.footer__section2-inner {
  display: flex;
  padding-top: 25px;
  padding-bottom: 25px;
  align-items: center;
  justify-content: space-between;
}

.footer__section2 .snsicon {
  display: none;
}

.footer__copyright {
  font-size: clamp(12px, 2.5vw, 13.5px);
  color: var(--footer-font-color-base);
}

.footer__copyright-name {
  font-weight: 600;
  color: var(--footer-font-color-primary);
}

.footer__copyright-link {
  font-size: 13px;
  color: var(--footer-font-color-base);
}

.footer__support {
  display: flex;
  gap: 10px;
  letter-spacing: -0.4px;
}

.footer__support-hosting {
  display: flex;
  align-items: center;
  height: 36px;
  font-size: 11.5px;
  line-height: 1;
  font-weight: normal;
  color: #8d8d8f;
  background: #fafafd;
  padding-left: 14px;
  padding-right: 14px;
  border-radius: 9px;
}

[class^="escrow-"] {
  display: flex;
  align-items: center;
  height: 36px;
  font-size: 11.5px;
  line-height: 1;
  color: #8d8d8f;
  background: #fafafd;
  padding-left: 14px;
  padding-right: 14px;
  border-radius: 9px;
  cursor: pointer;
}

/*-----------------------------------------------------------------
  퀵 버튼
-----------------------------------------------------------------*/
.quickbutton {
  display: none;
  position: fixed;
  z-index: 99;
  right: clamp(10px, 2vw, 32px);
  bottom: clamp(20px, 5vw, 42px);
}

.quickbutton_active {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.quickbutton-item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: clamp(40px, 10vw, 50px);
  height: clamp(40px, 10vw, 50px);
  border-radius: 50%;
  box-sizing: border-box;
  cursor: pointer;
}

.quickbutton-item > img {
  width: 100%;
  height: 100%;
}

.quickbutton-item,
.quickbutton-item:before {
  transition: all 0.35s ease;
}

/* 포지션에 따른 영역 활성화 */
.quickbutton_top > .quickbutton-item_top {
  opacity: 0;
  visibility: hidden;
  margin-bottom: -56px;
}

.quickbutton_top > .quickbutton-item_bottom {
  opacity: 1;
  visibility: visible;
}

.quickbutton_middle > .quickbutton-item_top {
  opacity: 1;
  visibility: visible;
}

.quickbutton_middle > .quickbutton-item_bottom {
  opacity: 1;
  visibility: visible;
}

.quickbutton_bottom > .quickbutton-item_top {
  opacity: 1;
  visibility: visible;
  margin-bottom: -56px;
}

.quickbutton_bottom > .quickbutton-item_bottom {
  opacity: 0;
  visibility: hidden;
}

/* 아이템-상단·하단·최근 본 상품 버튼 */
.quickbutton-item_top,
.quickbutton-item_bottom {
  border: 1px solid #e7e7ea;
  background: rgba(255, 255, 255, 0.9);
}

.quickbutton-item_top:after {
  margin-bottom: -5px;
  transform: rotate(135deg);
  width: 10px;
  height: 10px;
  border-left: 1px solid #5d5d5f;
  border-bottom: 1px solid #5d5d5f;
  content: "";
}

.quickbutton-item_bottom:after {
  margin-top: -5px;
  transform: rotate(-45deg);
  width: 10px;
  height: 10px;
  border-left: 1px solid #5d5d5f;
  border-bottom: 1px solid #5d5d5f;
  content: "";
}

/* 아이템-네이버 */
.quickbutton-item_naver {
  background: #03c75a;
}

.quickbutton-item_naver svg {
  width: 22px;
  height: 22px;
  fill: #ffffff;
}

/* 아이템-카카오 */
.quickbutton-item_kakao {
  background: #fee500;
}

.quickbutton-item_kakao svg {
  width: 30px;
  height: 30px;
  fill: #000000;
}

/* 아이템-최근본상품 */
.quickbutton-item_recent {
  border: 1px solid #e7e7ea;
  background: rgba(255, 255, 255, 0.9);
}

.quickbutton-item_recent svg {
  width: 24px;
  height: 24px;
  stroke: #7d7d7f;
}

.description .name, .description .name-sub {
    width: 300px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

@media (max-width: 768px) {
  :root {
    --site-width: calc(100% - 1rem);
  }

  #header {
    height: 80px;
  }

  .header-area {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: relative;
  }

  .header-gnb-left {
    display: flex;
    justify-content: center;
    flex: 1;
  }

  .header-gnb-right {
    width: 100%;
  }

  .gnb-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    height: auto;
    min-height: 200px;
    overflow-y: visible;
  }

  .gnb-menu.active {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
  }

  .gnb-menu li {
    margin: 0;
    width: 100%;
    text-align: center;
    display: block;
    visibility: visible;
  }

  .gnb-menu li a {
    font-size: 0.85rem;
    padding: 4px;
    color: #2e2e2e;
    display: block;
    width: 100%;
    text-decoration: none;
  }

  .hamburger-menu {
    display: flex;
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
  }

  .item-grid_3,
  .item-grid_4,
  .item-grid_5 {
    grid-template-columns: 1fr;
  }

  .item-grid_3 .list-item,
  .item-grid_4 .thumbnail {
    width: 240px;
    height: 240px;
  }

  .item-grid_3 .list-item img,
  .item-grid_4 .thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .list-item {
    width: 100%;
    display:flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /*
    width: 240px;
    height: 240px;
    */
  }

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

  .gallery-item-box {
    grid-template-columns: 1fr;
  }

  .about-section {
    flex-direction: column;
    gap: 20px;
  }

  .about-box {
    width: 100%;
  }

  .slider-container {
    padding: 0 60px;
    max-width: 770px; 
  }

  .list-item-box {
    gap: 5px;
  }

  .slider-prev,
  .slider-next {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .slider-prev {
    left: 10px;
  }

  .slider-next {
    right: 10px;
  }

  .mainslide {
    /*height: clamp(150px, 40vw, 300px);*/
  }
  .btn-area {
    gap: 5px; 
    flex-wrap: wrap;
  }
  .banner-btn {
    width: clamp(80px, 15vw, 100px); 
    height: clamp(30px, 6vw, 40px);
    line-height: clamp(25px, 6vw, 35px);
    font-size: clamp(10px, 2vw, 12px);
  }

  .mainslide-text-big {
    font-size: clamp(1rem, 3vw, 1.5rem);
    margin-bottom: 10px;
  }

  .mainslide-text-small {
    font-size: clamp(10px, 2vw, 14px);
  }

  .mainslide-text-contain {
    padding: 5px;
  }
  .description .name, .description .name-sub {
    width: 240px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .item-grid_3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .item-grid_4,
  .item-grid_5 {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-item-box {
    grid-template-columns: repeat(2, 1fr);
  }

  .list-item-box {
    gap: 5px;
  }

  .slider-prev,
  .slider-next {
    width: 45px;
    height: 45px;
    font-size: 22px;
  }

  .list-item {
    width: 270px;
    /*height: 270px;*/
  }

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

  .slider-container {
    max-width: 865px; 
  }

  .description .name, .description .name-sub {
    width: 270px;
  }
}