body{
	font-family:'Pretendard Variable', "Noto Sans KR", sans-serif !important;
	margin: 0px;
	padding: 0px;
	overflow: hidden;
}
.ko {
	font-family: 'Pretendard Variable',"Noto Sans KR", sans-serif;
}

.nav-top {
  display: flex;
  align-items: center;
  background-color: #fff;
  padding: 30px 0px;
  justify-content: start; /* 좌우로 나눔 */
}

.nav-top .logo{
	display: flex;
	flex-grow: 1;
}

.nav-top .cart-icon {
    display: flex;
    flex-grow: 1;
    justify-content: end;
}

.nav-top .top-menu {
    display: flex;
    flex-grow: 4;
    justify-content: start;
    gap: 50px;
}

.top-menu a{
	font-weight: 600;
	font-size: 17px;	
}

.nav-bottom {
  display: flex;

  align-items: center;
  justify-content: space-between;
}

.nav-right {
  display: flex;
  align-items: center;
}

/* 추가수정 */
.navbar {
  background: #fff;
  width: 1200px;
  margin: 0 auto;
}

.navbar a {
  text-decoration: none;
  color: #666;
}

.logo a{
	color: #000;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links {
  display: flex;
  align-items: center;
  font-size: 12px;
}

.nav-top .logo {
  font-size: 32px;
  font-weight: 700;
}

.hamburger {
  color: #000;
  font-size: 20px;
}

.cart-icon {
  padding-left: 20px;
  display: flex;
  align-items: center;
}

.cart-icon {
  position: relative;
  padding-left: 20px;
}

.cart-icon img {
  padding-left: 10px;
  width: 32px;
}

.cart-icon .fi {
  padding-left: 40px;
  width: 32px;
}

.cart-badge {
  position: absolute;
  top: 0;
  right: -3px;
  background-color: red;
  color: white;
  border-radius: 50%;
  padding: 1px 4px;
  font-size: 10px;
  line-height: 1;
}

.nav-links a:not(:last-child)::after {
  content: "|";
  margin: 0 5px;
  color: #ddd;
  font-size: 9px;
  line-height: 1.2; /* 텍스트와 구분자가 동일한 높이를 갖도록 조정 */
}

/*
.nav-wrap {
  position: relative;
  display: flex;
  border-bottom: 1px solid #ddd;
}
*/

.nav-wrap {
	position: sticky;
	top: 0;
    z-index: 99;
    background: #fff;
	transition: padding 0.3s ease;
}
.nav-wrap.sticky-active {
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/*
.nav-left .nav-active {
    position: relative;
    color: #000;
}

.nav-left .nav-active::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 100%;
    height: 3px;
    background-color: #222;
    box-shadow: 0 3px 0 0 #222;
}
*/

/* 기본 링크 스타일 */
.nav-left a {
    color: #686868;
    font-weight: 500;
    font-size: 16px;
    padding: 20px 0;
    box-sizing: border-box;
    text-decoration: none;
    position: relative; /* 가상 요소를 사용하기 위한 상대적 위치 지정 */
    display: inline-block; /* 링크가 나란히 표시되도록 설정 */
}

/* 마우스 오버 시 하단바 효과 a 태그의 menu-1 클래스 */
.nav-left .menu-1::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background-color: #454545; /* 효과의 배경 색상 */
    transition: background-color 0.3s ease; /* 색상 변화에 부드러운 전환 효과 추가 */
    opacity: 0; /* 기본적으로 숨김 상태 */
}
/* 마우스 오버 시 효과 표시 */
.nav-left .menu-1:hover::after {
    opacity: 1; /* 마우스 오버 시 효과 표시 */
}

.carts{
	position: relative;
}
.all-menus {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: auto;
    background: #fff;
    z-index: 9999;
    margin: 0 auto;
    border-top: 1px solid #e1e1e1;
    border-bottom: 1px solid #e1e1e1;
    padding: 20px 0px;
}

.menus{
	width: 1200px;
	height: 100%;
	margin: 0 auto;
	padding: 0px;
	display: flex;
	gap: 150px;
	font-size:16px;
	color: #111;
	font-weight: 600;
}

.ul-sub {
	padding-left: 0px;
	font-size: 14px;
	color: #666;
	font-weight: 400;
	line-height: 2.2;
	list-style: none;
}

.ul-sub-3rd{
	padding-left: 13px;
	list-style: none;
}

	@media (max-width: 760px) {
	  .nav-wrap, .navbar {
		flex-direction: column;
		align-items: center;
		display: flex;
		width: 100%;
	  }

	.nav-top .top-menu {
		display: grid; 
		grid-template-columns: repeat(3, 1fr);
		gap: 10px;
		justify-items: center;
	}

	.nav-top .logo {
		margin-right: 55px;
		margin-left: 10px;
	}

	.dropdown-menu li a {
		display: none !important;

	}
}
	
	@media (min-width: 761px) and (max-width: 1220px) { 
	
	.navbar {
		background: #fff;
		width: 100%;
		margin: 0 auto;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	  .nav-top .top-menu {
		display: flex;
		gap: 20px;
	  }

	  .nav-top .logo {
		margin-right: 40px;

	  }

	  .dropdown-menu li a {
		display: none !important;
	  }
	}

/*
 * -------------------------------
 *  swiper 슬라이드
 * -------------------------------
*/

swiper-container {
  width: 100%;
  max-height: 65vh;         /* 화면 최대 높이 제한 */
  overflow: hidden;
}

swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}	


/*
 * -------------------------------
 *  아이콘박스
 * -------------------------------
*/



.shop-box {
	margin: 0 auto;
	width: 100%;
	max-width: 1200px;
}

/*
.shop-box {
  width: 100%;
  display: flex;
  justify-content: center;
}
*/


.shop-box__inner {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto;
	width: 100%;
	max-width: 1200px;
}

.shop-box__item {
	padding: 20px 20px;
	margin: 20px 10px;
	text-align: center;
	background: #e1e1e1;
	border-radius: 10px;
}

.shop-box__item img {
	width: 30px;
	height: 30px;
}



.title {
	margin-bottom: 24px;
	font-weight: 700;
	font-size: 20px;
	line-height: 28px;
}

/*
 * -------------------------------
 *  slick 슬라이드
 * -------------------------------
*/

.slick-next,
.slick-prev {
	font-size: 0;
	line-height: 0;
	position: absolute;
	top: 50%;
	display: block;
	width: 30px;
	height: 30px;
	padding: 0;
	-webkit-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	transform: translate(0, -50%);
	cursor: pointer;
	color: transparent;
	border: none;
	outline: 0;
	background: 0 0;
}

.main-class .slick-slide {
	margin: 0 10px;
	/* 원하는 간격으로 조정 */
}
.class-banner .slick-slide {
	margin: 0 10px;
	/* 원하는 간격으로 조정 */		
}
.class-banner .item{
	width: 595px;
}


/*
 * -------------------------------
 *  2,3차 드롭다운메뉴
 * -------------------------------
*/


.menu-container {
    position: relative;
    display: inline-block;
}

.dropdown-menu {
    display: none;
    position: absolute;
	top: 170%;
    left: 0;
    background: white;
    border: 1px solid #ccc;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    list-style: none;
    padding: 0;
    margin: 0;
}
.menu-container::after {
    content: '';
    position: absolute;
    top: 100%; /* 1차 메뉴 바로 아래 */
    left: 0;
    right: 0;
    height: 160%; /* 메뉴 간격 만큼의 높이 추가 top 260% - 160% = 100% */
    background: transparent;
    z-index: 999; /* 드롭다운 메뉴 위에 위치 */
}

.dropdown-menu li a {
    display: block;
    padding: 10px;
    text-decoration: none;
    color: black;
    background: #f9f9f9;
    width: 200px;
    font-size: 14px;
    position: relative;
}

.dropdown-menu li.has-submenu > a::after {
    content: '▶';
    font-size: 8px;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.dropdown-menu li.has-submenu > a {
    padding-right: 30px;
}

.dropdown-menu li a:hover {
    background: #eee;
}

.menu-container:hover .dropdown-menu {
    display: block;
}

.submenu-2rd {
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
    background: white;
    border: 1px solid #ccc;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    list-style: none;
    padding: 0;
    margin: 0;
    min-width: 200px;
    z-index: 1001;
}

.submenu-2rd li a {
    padding: 10px;
    text-decoration: none;
    color: black;
    background: #f9f9f9;
    font-size: 14px;
    position: relative;
}

.submenu-2rd li.has-submenu > a::after {
    content: '▶';
    font-size: 8px;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.submenu-2rd li a {
    padding-right: 30px;
}

.submenu-2rd li a:hover {
    background: #eee;
}

.has-submenu{
	position: relative;
}

.has-submenu:hover .submenu-2rd {
    display: block;
}

.submenu-3rd {
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
    background: white;
    border: 1px solid #ccc;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    list-style: none;
    padding: 0;
    margin: 0;
    min-width: 200px;
    z-index: 1002;
}

.submenu-3rd li a {
    padding: 10px;
    text-decoration: none;
    color: black;
    background: #f9f9f9;
    font-size: 14px;
}

.submenu-3rd li a {
    padding-right: 30px;
}

.submenu-3rd li a:hover {
    background: #eee;
}

.submenu-2rd li.has-submenu:hover .submenu-3rd {
    display: block;
    top: 0;
    left: 100%;
}


/*
footer
*/


.footer {
  width: 100%; /* 브라우저 전체 너비로 */
  /*margin-left: calc(-50vw + 50%);  가운데 정렬된 레이아웃 기준 확장 */
  background: #000;
  color: #fff;
  font-size: 14px;
}


.footer-bottom {
  width: 100%;
  box-sizing: border-box;
  background: #111;
  padding: 20px 60px;
  text-align: center;
  font-size: 14px;
  color: #ccc;
  border-top: 1px solid #fff;
}

.footer p {
  font-size: 14px; /* ✅ 이걸 추가해야 <p>도 제대로 적용됨 */
}


.footer-top {
  width: 1300px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-top: 30px;
  box-sizing: border-box;
}

.footer-box {
  flex: 1 1 22%;
  margin-bottom: 30px;
  padding: 0 15px;
  min-width: 240px;
  box-sizing: border-box;
}

.footer-box h4 {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 10px;
  padding-bottom: 5px;
  border-bottom: 2px solid #f0ad4e;
  display: inline-block;
  color: #fff
}

.footer-box a {
  color: #fff;
  text-decoration: none;
}

.footer-box p {
  line-height: 1.6;
}

.order-list p {
  display: flex;
  justify-content: space-between;
  margin: 2px 0px;
}

.order-list span {
  color: #999;
}




.footer-icons {
  margin-top: 10px;
}

.footer-icons a {
  margin: 0 10px;
  color: #00c6ff; /* 파란 포인트 컬러 유지 또는 변경 가능 */
  text-decoration: none;
  font-weight: 500;
}

/* 반응형 */
@media (max-width: 768px) {
  .footer-top {
	padding: 30px 20px;
  }

  .footer-box {
	flex: 1 1 100%;
	padding: 10px 0;
  }

  .order-list p {
	flex-direction: column;
	gap: 2px;
  }

  .footer-bottom {
	padding: 20px;
  }
}


/*
추가 작업 네비게이션
*/

.fi{
    font-size: 20px;
    font-weight: 600;
	color: #000;
    margin-right: 20px;
}
/*
 * -------------------------------
 *  sticky
 * -------------------------------
*/
.nav-top {
    transition: padding 0.3s ease; /* 애니메이션 추가 */
}

.nav-left a {
    transition: padding 0.3s ease; /* 애니메이션 추가 */
}

.dropdown-menu li a {
    transition: padding 0.3s ease; /* 애니메이션 추가 */
}
.sticky-active .nav-top{
	padding: 5px 0px;
}

.sticky-active .nav-left a {
    padding-top: 5px;
    padding-bottom: 20px;
}

.sticky-active .dropdown-menu li a {
    padding: 10px;
}
