 @import url('https://fonts.googleapis.com/css2?family=Nanum+Pen+Script&family=Noto+Sans+KR:wght@100..900&display=swap');
  *{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Noto Sans KR", sans-serif;
  }
  /*---- 탑메뉴 -----*/
  #top_gnb {
      border-bottom: 1px solid #ccc; /* 얇은 하단 선 */
      background: #fff;
    }

    #top_gnb > div {
      max-width: 1280px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      padding: 8px 20px;
      font-size: 14px;
    }

    /* ul 공통 스타일 */
    #top_gnb ul {
      list-style: none;
      display: flex;
      gap: 15px; /* li 사이 간격 */
    }

    #top_gnb ul li a {
      text-decoration: none;
      color: #333;
      white-space: nowrap; /* 텍스트 줄바꿈 방지 */
    }

    /* 반응형 - 모바일에서는 중앙 정렬하고 간격 줄임 */
    @media (max-width: 600px) {
      #top_gnb > div {
        flex-direction: column;
        align-items: center;
        gap: 6px;
        padding: 10px 15px;
      }
      #top_gnb ul {
        gap: 10px;
        justify-content: center;
      }
    }
  /*---- 탑메뉴 끝 -----*/
  #nav{
    position: fixed;
    z-index: 99;
    width: 100%;
    background: #fff;
	box-shadow: 0px 1px 25px 0px rgba(0,0,0,0.3);
  }
  #nav .wrapper{
    position: relative;
    max-width: 1300px;
    padding: 0px 30px;
    height: 80px;
    line-height: 80px;
    margin: auto;
    display: flex;
    align-items: center;
  }
  .wrapper .logo {position:relative;top:16px;display:block;} /* 로고시작위치 */
  .wrapper .logo img {max-width:100%;max-height:100%;}
  .mobile_logo {
    display:none;
  } 
  .wrapper .navul{
	padding-left:30px;
    display: inline-flex;
  }
  .navul div li{
    list-style: none;
  }
  .navul div li a{
    color:#2f363c;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    padding: 9px 25px;
    transition: all 0.3s ease;
  }
  .navul div li a:hover{
    color:#2f363c;
  }
  .navul div:hover li a { color:#25b7c7; transition: all 0.3s ease;}
  .navul .mobile-item{
    display: none;
   }
  .navul div .sub-menu{
    position: absolute;
    background: #fff;
    width: 180px;
    top: 80px;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 6px 10px rgba(0,0,0,0.15);
  }
  .navul div li:hover .sub-menu{
    background:#fff;
    transition: all 0.3s ease;
    top: 80px;
    opacity: 1;
    visibility: visible;
  }
  .sub-menu li a{
    color:#2f363c !important;
	font-size: 16px !important;
    width: 100%;
    display: block;
    padding: 0 0 0 15px;
    font-weight: 400;
    border-radius: 0px;
	line-height: 35px;
  }
  .sub-menu li a:hover{
    background:#25b7c7;
    color:#fff !important;
	line-height: 35px;
  }
  
  .btn-cart{
    margin-left:auto;
  }
  .wrapper .btn{
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    display: none;
  }

  .wrapper .login_btn{
    color: #777;
    font-size: 14px;
    cursor: pointer;
	padding-right:15px;
	display: inline;
  }

  .wrapper .search_btn{
    color: #777;
    font-size: 20px;
    cursor: pointer;
	padding-right:15px;
  }
  
  .wrapper .cart{
    color: #777;
    font-size: 20px;
    cursor: pointer;
  }

  .wrapper .search_btn{
    color: #777;
    font-size: 20px;
    cursor: pointer;
  }

  .wrapper .btn.close-btn{
    position: absolute;
    right: 12px;
    top: 15px;
  }
  
  .wrapper .btn.close-btn img {max-width:100%;height:auto;float:left;margin-left:-20px !important;margin-right:130px;}
  .cart-count{background:#f05858;border-radius:15px;font-size:12px;color:#fff;padding:0 5px;border:2px solid #fff;line-height:16px}

  
  /* original 970px */
  @media screen and (max-width: 1100px) {
  .wrapper .btn {
    display: inline;
    padding-right:20px;
  }

  .wrapper .login_btn{
    display: none;
  }

  .wrapper .navul{
    position: fixed;
    height: 100vh;
    width: 100%;
    max-width: 350px;
    top: 0;
    left: -100%;
    background: #fff;
    display: block;
    padding: 50px 10px;
    line-height: 40px;
    overflow-y: auto;
    box-shadow: 0px 15px 15px rgba(0,0,0,0.18);
    transition: all 0.3s ease;
	border-bottom : 30px solid #fff;
	float:right;
  }
  .mobile_logo {
    display:block;
  }
  ::-webkit-scrollbar {
    width: 10px;
  }
  ::-webkit-scrollbar-track {
    background: #fff;
  }
  ::-webkit-scrollbar-thumb {
    background: #3A3B3C;
  }
  #menu-btn:checked ~ .navul{
    left: 0%;
  }
  #menu-btn:checked ~ .btn.menu-btn{
    display: none;
  }
  #close-btn:checked ~ .btn.menu-btn{
    display: block;
  }
  .navul div { border-bottom : 1px solid #ccc; }
  .navul div li{
    margin-top: 15px;
	margin-bottom:7px;
  }
  .navul div li a{
    padding: 0 20px;
    display: block;
    font-size: 20px;
  }
  .navul div .sub-menu{
    position: static;
    opacity: 1;
    top: 75px;
    visibility: visible;
    padding-left: 20px;
    width: 100%;
    max-height: 0px;
    overflow: hidden;
    box-shadow: none;
    transition: all 0.3s ease;
  }
  #showDrop01:checked ~ .sub-menu{
    max-height: 100%;
  }
  #showDrop02:checked ~ .sub-menu{
    max-height: 100%;
  }
  #showDrop03:checked ~ .sub-menu{
    max-height: 100%;
  }
  #showDrop04:checked ~ .sub-menu{
    max-height: 100%;
  }
  #showDrop05:checked ~ .sub-menu{
    max-height: 100%;
  }
  .navul div .desktop-item{
    display: none;
  }
  .navul div .mobile-item{
    display: block;
    color: #2f363c;
    font-size: 20px;
    font-weight: 600;
    padding-left: 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
  }
  .navul div .mobile-item:hover{
    background: #25b7c7;
	color: #fff;
  }
  .sub-menu li{
    margin: 0;
  }
  .sub-menu li a{
    border-radius: 5px;
    font-size: 18px;
  }
  }
  #nav input{
    display: none;
  }
  /* icon 추가된 부분 */
  .arrow-icon i {
  transition: transform 0.3s ease;
  font-size:14px;
  float:right;
  margin-top:14px;
  margin-right:21px;
}

.rotate-up {
  transform: rotate(180deg);
}
  /* icon 추가된 부분 끝 */
  /* 쇼핑몰 상품나열 */
  ul.sct_wrap {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 10px;
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      list-style: none;
      justify-content: flex-start;
    }

    li.sct_li {
      width: calc(25% - 15px);
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
      display: flex;
      flex-direction: column;
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      cursor: pointer;
    }

    li.sct_li:hover {
      transform: translateY(-6px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
    }

    .sct_img {
      position: relative;
      overflow: hidden;
      border-radius: 12px 12px 0 0;
    }

    .sct_img img {
      width: 100%;
      height: auto;
      display: block;
      transition: transform 0.4s ease;
    }

    li.sct_li:hover .sct_img img {
      transform: scale(1.05);
    }

    .icon_wrap {
      position: absolute;
      top: 12px;
      left: 12px;
      display: flex;
      gap: 8px;
      flex-wrap: wrap;   /* 줄바꿈 허용 */
      max-width: calc(100% - 24px);  /* 좌우 12px씩 패딩 고려 */
      z-index: 10;
    }

    .icon_new {
      color: #fff;
      font-size: 12px;
      font-weight: 700;
      padding: 4px 10px;
      border-radius: 12px;
      letter-spacing: 0.5px;
      user-select: none;
      box-shadow: 0 2px 6px rgba(0,0,0,0.15);
      white-space: nowrap;
    }

    .icon_new.new {
      background-color: #e91e63; /* 핑크 */
    }

    .icon_new.best {
      background-color: #3498db; /* 파랑 */
    }

    .icon_new.hit {
      background-color: #e67e22; /* 주황 */
    }

    .icon_new.sale {
      background-color: #27ae60; /* 초록 */
    }

    .sct_txt {
      padding: 20px 20px 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .sct_txt a {
      color: #2c3e50;
      font-size: 16px;
      font-weight: 600;
      text-decoration: none;
      transition: color 0.3s ease;
      margin-bottom: 8px;
      word-break: break-word;
    }

    .sct_txt a:hover {
      color: #3498db;
    }

    .sct_cost {
      font-weight: 700;
      color: #e74c3c;
      font-size: 15px;
    }

    .btn_cart {
      align-self: flex-start;
      background: #333;
      color: #fff;
      border: none;
      padding: 10px 16px;
      border-radius: 6px;
      font-size: 14px;
      cursor: pointer;
      transition: background-color 0.3s ease;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .btn_cart:hover {
      background-color: #555;
    }

    /* 폰트 아이콘 대신 간단한 svg 장바구니 아이콘 */
    .btn_cart svg {
      width: 16px;
      height: 16px;
      fill: #fff;
    }

    /* 반응형 */
    @media (max-width: 1024px) {
      li.sct_li {
        width: calc(33.333% - 13.333px);
      }
    }

    @media (max-width: 768px) {
      li.sct_li {
        width: calc(50% - 10px);
      }
    }

    @media (max-width: 480px) {
      li.sct_li {
        width: calc(50% - 10px); /* 2개씩 보여주기 */
      }
      .btn_cart {
        width: 100%;
        justify-content: center;
      }
      .icon_new {
        padding: 3px 6px;
        font-size: 10px;
      }
    }
  /* 쇼핑몰 상품나열 끝 */

  /* 공통 검색창 스타일 */
  .search-box {
    position: absolute;
    top: 54px;
    left: 50%;
    transform: translateX(-50%);
    display: none;
    background: #fff;
    border: 1px solid #ccc;
    padding: 6px 10px;
    border-radius: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 999;
    align-items: center;
    gap: 6px;
  }

  .search-box input {
    border: none;
    outline: none;
    font-size: 16px;
    padding: 6px;
    width: 220px;
  }

  .search-box button {
    background: none;
    border: none;
    font-size: 18px;
    color: #555;
    cursor: pointer;
    padding: 0 6px;
  }

  .search-box button.close-btn {
    display: none; /* 기본은 숨김 */
    font-size: 20px;
    color: #888;
  }

  /* 모바일에서만 닫기 버튼 보이도록 */
  @media screen and (max-width: 768px) {
    .search-box {
      top: 85px;
      left: auto;
      right: 15px;
      transform: none;
    }
    .search-box input {
      width: 140px;
      font-size: 14px;
    }
    .search-box button.close-btn {
      display: inline-block;
    }
  }

  /* ---- search box end ----*/
    
  /*------- 고객센터 시작 -------*/
    .con-wrap {
      width: 100%;
      max-width: 1280px;
      margin: 30px auto;
	  margin-bottom:60px;
      display: flex;
      flex-wrap: wrap;
      background-image: url('../ace_img/conwrap.png'); /* 배경 이미지 URL */
      background-size: cover; /* 화면 크기에 맞게 이미지를 커버 */
      background-position: center; /* 이미지 중앙에 배치 */
      background-attachment: fixed; /* 스크롤 시 이미지가 고정되도록 */
      overflow: hidden;
      border-radius: 16px;
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    }

    .cont-wrap-left, .cont-wrap-right {
      padding: 40px;
      box-sizing: border-box;
      background-color: transparent; /* 완전 투명 설정 */
    }

    .cont-wrap-left {
      flex: 1 1 300px;
      color: white;
      border-radius: 16px 0 0 16px;
    }

    .cont-wrap-left h3 {
      font-size: 26px;
      margin-bottom: 16px;
      font-weight: 600;
	  color: #fff;
    }

    .cont-wrap-left p {
      font-size: 18px;
      line-height: 1.8;
	  color: #eee;
    }

    .cont-wrap-right {
      flex: 2 1 500px;
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
      padding: 32px;
      border-radius: 0 16px 16px 0;
    }

    .cont-wrap-right ul {
      list-style: none;
      padding: 0;
      margin: 0;
      flex: 1 1 280px;
    }

    .cont-wrap-right li {
      border: 1px solid #e0e0e0;
      padding: 20px;
      margin-bottom: 16px;
      border-radius: 12px;
      color: #333;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      transition: all 0.3s ease;
    }

    .cont-wrap-right li:hover {
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
      transform: translateY(-4px);
    }

    .cont-wrap-right li p span {
      font-weight: 600;
      margin-bottom: 8px;
      font-size: 16px;
      color: #70c3cc;
    }

    .cont-wrap-right li p {
      margin: 6px 0;
      font-size: 15px;
      line-height: 1.6;
      color: #fff;
    }

    @media (max-width: 768px) {
      .cont-wrap-left, .cont-wrap-right {
        padding: 20px;
      }

      .cont-wrap {
        flex-direction: column;
        margin: 20px;
      }

      .cont-wrap-left h3 {
        font-size: 22px;
      }

      .cont-wrap-left p {
        font-size: 16px;
      }
    }
  /*------ 고객센터 끝 -------*/
  /*---- footer 시작 ------*/
  .footer {
    background-color: #232323;
    color: white;
    
  }

  .footer-container {
    display: flex;
    justify-content: space-between;
    align-items: top;
    flex-wrap: wrap;
    padding:50px 0 50px 10px;
    max-width: 1280px;
    margin: auto;
  }

  .footer-section {
    flex: 1;
    min-width: 250px;
    padding: 10px;
  }

  .company-info p {
    line-height:30px;
    font-size:15px;
  }

 .company-info > .company-name {
    color:#fff;
 }

 .footer-section h3 {
    margin-bottom: 10px;
 }

 .footer-section a {
    color: white;
    text-decoration: none;
    display: block;
    margin: 5px 0;
 }

 .footer-section a:hover {
    text-decoration: underline;
 }

 /* 하단 카피라이트 */
 .footer-bottom {
    background-color: #000;
    text-align: center;
    padding: 10px;
    font-size: 14px;
 }

 /* 반응형 스타일 */
 @media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
	.company-info p {
        font-size:14px;
    }

    
  }
   /*---- footer 끝 ------*/

  /* 게시판 바로가기 바 */
.board-bar {
  background-color: #2e2e2e; /* footer와 비슷한 짙은 회색 계열 */
  display: flex;
  justify-content: center;
  gap: 16px;
  padding: 3px 0;  /* 좀 얇게 */
  flex-wrap: wrap;
  border-top: 1px solid #444;  /* 살짝 경계선 추가 */
  border-bottom: 1px solid #444;
}

.board-bar a {
  color: #ccc;  /* 연한 회색 */
  font-weight: 600;
  text-decoration: none;
  background-color: transparent; /* 배경 없애서 심플하게 */
  padding: 4px 16px; /* 좀 작게 */
  border-radius: 10px;
  transition: color 0.3s ease, background-color 0.3s ease;
  white-space: nowrap;
  box-shadow: none; /* 그림자 제거 */
  border: 1px solid transparent; /* 기본은 투명 */
}

.board-bar a:hover {
  color: white;
  background-color: #444; /* 살짝 밝은 회색 배경 */
  border-color: #666;
}

@media (max-width: 600px) {
  .board-bar {
    gap: 12px;
    padding: 6px 5px;
  }
  .board-bar a {
    padding: 5px 12px;
    font-size: 14px;
  }
}

/* 게시판 바로 가기 바 끝 */
  .member_link {
    text-decoration:none;
	color:#2f363c !important;
  }


/* 상단 최신상품 시작 */
 .psli_wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 10px;
  list-style: none;
  justify-content: flex-start; /* 왼쪽 정렬 명확히 */
}

.psli_li {
  flex: 0 0 calc((100% - 60px) / 4); /* 고정 너비: 4개씩 한 줄 */
  box-sizing: border-box;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.psli_li:hover {
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.psli_img img {
  width: 100%;
  height: auto;
  display: block;
  border-bottom: 1px solid #eee;
}

.psli_txt {
  padding: 12px 15px;
  /* text-align: center; → 제거 */
}

.psli_a {
  display: block;
  font-weight: 600;
  color: #333;
  font-size: 1rem;
  margin-bottom: 6px;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: left;        /* 추가 */
  padding-left: 2px;       /* 자연스럽게 여백 */
}

.psli_cost {
  font-weight: 700;
  color: #d9534f;
  font-size: 1.1rem;
  text-align: left;        /* 추가 */
  padding-left: 2px;       /* 자연스럽게 여백 */
}

.pslicon_wrap {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 2;
}

.psli_img {
  position: relative;
}

.pslicon_new {
  display: inline-block;
  font-size: 12px;
  font-weight: bold;
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  text-align: center;
  width: fit-content;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  animation: fadeInDown 0.5s ease;
}

/* 각 태그별 색상 */
.pslicon_new.new {
  background-color: #ff4d4f; /* 밝은 레드 */
}
.pslicon_new.best {
  background-color: #1890ff; /* 밝은 블루 */
}
.pslicon_new.hit {
  background-color: #fa8c16; /* 그린 */
}
.pslicon_new.sale {
  background-color: #52c41a; /* 오렌지 */
}

/* 살짝 내려오는 애니메이션 */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 상단 최신상품 끝 */

/* 검색 상품이 없을때 시작 */
.no-results {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 20px;  /* 패딩 더 크게 */
  width: 100%;
}

.no-results-box {
  border: 3px solid #ff6b6b;
  background-color: #fff5f5;
  color: #ff4c4c;
  font-size: 28px;       /* 글씨 크게 */
  font-weight: 700;
  padding: 50px 60px;   /* 박스 내부 여백 크게 */
  border-radius: 16px;
  max-width: 600px;
  width: 100%;
  text-align: center;
  box-shadow: 0 6px 16px rgba(255, 75, 75, 0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.no-results-box i.fas {
  font-size: 50px;      /* 아이콘 크게 */
}

/* 반응형 - 모바일에서 글씨랑 박스 크기 조정 */
@media (max-width: 480px) {
  .no-results {
    padding: 60px 10px;
  }

  .no-results-box {
    font-size: 20px;
    padding: 30px 20px;
    max-width: 90%;
  }

  .no-results-box i.fas {
    font-size: 36px;
  }
}
/* 검색 상품이 없을때 끝 */
