/* 전역 폰트 설정 */
* {
  font-family: "Pretendard", "Apple SD Gothic Neo", "Malgun Gothic", "맑은 고딕",
  sans-serif !important;
}

.demand-section {
  background-color: #298b6b; /* 정확한 초록색 배경 */
  padding: 10px 0px;
  text-align: center;
  color: #ffffff;
}

.demand-title {
  font-size: 23px;
  line-height: 26px;
  font-weight: bold;
  margin: 1% auto 4%;
  color: #595757;
  width: 100%;
  text-align: center;
  letter-spacing: 1px;
}

.demand-subtitle {
  font-size: 16px;
  line-height: 16px;
  margin-bottom: 10px;
}

.demand-divider {
  width: 100%;
  max-width: 600px;
  height: 1px;
  background-color: #ffffff;
  margin: 0 auto;
}

.swiper-area {
  margin-top: 20px;
  margin-bottom: 30px;
  max-width: 1320px;
}

.mySwiper .swiper-container {
  width: 100%;
  margin: 10px auto;
}

.mySwiper .swiper-wrapper {
  display: flex;
  align-items: center;
}

.swiper-wrapper-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1320px;
  margin: 10px auto;
  gap: 10px; /* 화살표와 로고 사이 간격 */
}

.mySwiper {
  width: 100%;
}

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

.mySwiper .swiper-slide img {
  display: block;
  width: auto;
  height: 50px;
  object-fit: contain;
  min-width: 120px;
}

/* 커스텀 화살표 */
.swiper-button-prev-custom,
.swiper-button-next-custom {
  width: 14px;
  height: 14px;
  border-right: 4px solid #2a8c6b;
  border-bottom: 4px solid #2a8c6b;
  transform: rotate(135deg); /* 기본 prev 방향 */
  cursor: pointer;
}

.swiper-button-next-custom {
  transform: rotate(-45deg); /* next 방향 */
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  padding: 50px 0px;
  max-width: 1400px;
  margin: 0 auto;
}

.product-item {
  text-align: center;
  cursor: pointer;
  min-height: 225px;
  background-color: #2a8c6b;
}

.product-dummy {
  height: 162px;
  width: 100%;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  display: flex;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
}

.product-item:hover .product-title {
  background-color: #2a8c6b;
  color: #ffffff;
}

.product-item img {
  width: 100%;
  height: auto;
  max-width: 240px;
  margin: 0 auto;
  display: block;
}

.product-title {
  width: 100%;
  max-width: 240px;
  background: #ebeeee;
  padding: 20px 0;
  font-size: 12px;
  color: #040000;
  margin: 0 auto;
  border-bottom: 3px solid #2a8c6b;
  text-align: center;
  box-sizing: border-box;
}

.inquiry-section {
  background-color: #298b6b;
  padding: 40px 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 50px;
}

.inquiry-text {
  color: #fff;
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  line-height: 1.4;
}

.inquiry-buttons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.inquiry-button {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  border: 2px solid #298b6b;
  color: #298b6b;
  font-size: 18px;
  font-weight: bold;
  padding: 20px;
  text-align: center;
  text-decoration: none; /* 밑줄 제거 */
  transition: all 0.3s;
  cursor: pointer;
}

.inquiry-button:hover {
  background-color: #1b5d48;
  color: #ffffff;
}

.case-section {
  background-color: #ffffff;
  padding: 80px 0px;
  text-align: center;
}

.case-title {
  font-size: 26px;
  line-height: 26px;
  font-weight: bold;
  margin-bottom: 10px;
}

.case-subtitle {
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 10px;
}
.case-divider {
  width: 100%;
  max-width: 600px;
  height: 1px;
  background-color: #222;
  margin: 0 auto;
}

.case-swiper-section {
  padding: 0px 70px 80px;
  background: #ffffff;
  text-align: center;
  position: relative;
}

.case-swiper-button-prev,
.case-swiper-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-100px);
  z-index: 10;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.case-swiper-button-prev {
  left: 0;
}

.case-swiper-button-next {
  right: 0;
}

.case-swiper {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.case-slide {
  background: #fff;
  overflow: hidden;
}

.case-slide img {
  width: 100%;
  height: auto;
  display: block;
}

.case-slide-title {
  font-size: 20px;
  font-weight: bold;
  color: #235a7b;
  margin-top: 10px;
}

.case-slide-subtitle {
  font-size: 16px;
  color: #898989;
  margin-top: 5px;
  margin-bottom: 15px;
}

.case-more-button {
  margin-top: 40px;
  display: inline-block;
  background: #298b6b;
  color: #fff;
  padding: 10px 40px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s;
}

.case-more-button:hover {
  background: #226c56;
}

/* Swiper 버튼 커스텀 */
.swiper-button-next,
.swiper-button-prev {
  color: #298b6b;
}

.features-section {
  background: #ffffff;
  padding: 0px 0px 160px;
  text-align: center;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature-image {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 20px;
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #111;
}

.feature-description {
  font-size: 16px;
  color: #555;
  line-height: 1.5;
}

/* 반응형 */
@media (max-width: 1200px) {
  .product-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 992px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .inquiry-section {
    flex-direction: column;
    gap: 30px;
  }
  .inquiry-text {
    font-size: 28px;
  }
  .inquiry-buttons {
    grid-template-columns: 1fr;
  }

  .case-slide-title {
    font-size: 18px;
  }
  .case-slide-subtitle {
    font-size: 14px;
  }

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

@media (max-width: 600px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .demand-section {
    padding: 10px 0px;
  }
  .demand-title {
    font-size: 28px;
  }
  .demand-subtitle {
    font-size: 16px;
  }
  .demand-divider {
    width: 80px;
  }

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

  .case-title {
    font-size: 28px;
  }
  .case-subtitle {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .demand-section {
    padding: 10px 0px;
  }
  .demand-title {
    font-size: 24px;
  }
  .demand-subtitle {
    font-size: 14px;
  }
  .demand-divider {
    width: 60px;
  }

  .product-title {
    font-size: 12px;
  }
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .product-grid .product-item{
    min-height:auto;
  }
  .product-grid .product-title{
    padding:10px 0;
  }
  .case-title {
    font-size: 24px;
  }
  .case-subtitle {
    font-size: 14px;
  }
}

.header-main-nav {
  position: relative; /* 2차 메뉴가 이 기준으로 위치함 */
}

/* 2차 메뉴 숨기기 (기본) */
.gnb_2dul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%; /* 1차 메뉴 너비에 맞춤 */
  background-color: #2a8c6b;
  z-index: 1000;
  min-width: 200px;
}

/* 2차 메뉴 리스트 */
.gnb_2dul_box {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* 각 항목 간격 및 스타일 */
.gnb_2dli {
  padding: 0; /* 패딩은 a 태그 안에서 줌 */
}

.gnb_2dli a {
  display: block;
  width: 100%;
  padding: 26px 0;
  text-align: center;
  font-weight: 600;
  font-size: 1rem;
  color: #ffffff;
  text-decoration: none;
  border-bottom: 1px solid #a2bbb3;
}

/* 마우스 오버 효과 */
.gnb_2dli a:hover {
  background-color: #ffffff;
  color: #2a8c6b;
}

/* 현재 활성화된 메뉴 예시 (선택적) */
.gnb_2dli.active a,
.gnb_2dli a.current {
  background-color: #ffffff;
  color: #2a8c6b;
}

/* 마우스 오버 시 메뉴 보이기 */
.gnb_al_li_plus:hover .gnb_2dul {
  display: block;
}

._shop {
  border: 0px;
}
._shop .top-menu-wrap {
  border-bottom: solid 1px #e9ecef;
  background-color: #040000;
  color: #fff;
  font-size: 1rem;
  font-family: "Pretendard", "Apple SD Gothic Neo", "Malgun Gothic", "맑은 고딕";
  font-weight: 600;
  transition: background-color 0.5s ease;
}

._shop .top-menu-wrap a {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
}

._shop .top-menu-wrap a:hover {
  color: #2e866b !important;
}

._shop .search-wrap .goods-search {
  border: 2px solid #221815;
  margin: auto 3rem;
  border-radius: 25px;
  overflow: hidden;
}

._shop .search-wrap .goods-search input#sch_stx {
  border-left: 2px solid #221815;
}

.icon-area {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 18px;
  margin-left: auto;
}

.icon-text-menu {
  display: flex;
  justify-content: flex-end;
  font-family: "Pretendard", "Apple SD Gothic Neo", "Malgun Gothic", "맑은 고딕";
  align-items: center;
  gap: 8px;
  font-size: 16px;
  color: #666;
}

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

.divider {
  color: #999;
  margin: 0 5px;
}

.icon-icon-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 17px;
}

.container#category {
  max-width: 100%;
  padding: 0px;
}

.container {
  max-width: 1600px;
}

.container .category-wrap {
  position: relative;
}
._shop .category-wrap .header-main-nav:hover .primary-menu {
  color: #ffffff;
  background-color: #2a8c6b;
}

.header-main-nav {
  position: relative;
}

.header-main-nav:hover::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%) translateY(100%);
  width: 0;
  height: 0;
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  border-bottom: 6px solid #2e866b;
}

/* 견적문의 공통 스타일 */
.quote-input,
.quote-textarea {
  width: 100%;
  padding: 7px 10px;
  border: none;
  border-radius: 8px;
  margin-bottom: 15px;
  font-size: 16px;
  box-sizing: border-box;
}

.quote-box {
  background-color: #fff;
  padding: 10px;
  border-radius: 8px;
}

.quote-textarea {
  width: 100%;
  min-height: 150px;
  resize: none;
  border: 1px solid #f5f5f5;
}

.quote-file-upload label {
  display: inline-block;
  padding: 10px 20px;
  background-color: #eeeeef;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
}

.quote-submit-btn {
  background-color: #2c9a7f;
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  width: 100px;
}

.quote-footer {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
  font-size: 14px;
}

.quote-footer span {
  color: #1f7f64;
  font-weight: bold;
}

.quote-popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.quote-popup-content {
  background-color: #f5f5f5;
  padding: 30px;
  width: 90%;
  max-width: 700px;
  position: relative;
  box-sizing: border-box;
}

.quote-title {
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
}

.quote-close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
}

/*
.submenu-wrapper {
	display: none;
	position: absolute;
	top: 64px;
	left: 0;
	width: 100%;
	background: #2e866b;
	color: #fff;
	z-index: 1000;
	padding: 40px 60px;
}
.submenu-wrapper.active {
	display: block;
}
.submenu-title {
	font-size: 24px;
	margin-bottom: 20px;
}
.submenu-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}
.submenu-item {
	text-align: center;
}
.submenu-item img {
	max-width: 100%;
	height: auto;
}
*/

.submenu-wrapper {
  display: none;
  position: absolute;
  top: 59px;
  left: 0;
  width: 100%; /* 전체 배경 100% */
  background: #f3f6f7;
  color: #333;
  z-index: 1000;
  padding: 30px 0 60px; /* 좌우 padding은 빼고 위아래만 */
  box-sizing: border-box;
}

.submenu-wrapper.active {
  display: block;
}

.submenu-container {
  display: flex;
  gap: 20px;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 0px; /* 내부 좌우 padding */
  box-sizing: border-box;
}

.submenu-title {
  font-size: 16px;
  margin: 0 auto;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid #219072;
  color: #219072;
  display: block;
  max-width: 1320px;
  font-weight: bold;
}

.submenu-layout {
  display: flex; /* 핵심 */
  gap: 40px;
  align-items: flex-start; /* stretch 아님, flex-start */
  width: 100%;
}

.submenu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  flex: 1 1 auto; /* 남는 영역 채움 */
  min-width: 0;
}

.submenu-item {
  background-color: #fff;

  transition: background-color 0.3s ease;
  height: 100px; /* 고정 높이 */
  box-sizing: border-box;
  cursor: pointer;
}

.submenu-item a {
  display: flex;
  align-items: center; /* 세로 중앙 정렬 */
  justify-content: flex-start;
  padding: 10px 15px;
  height: 100%;
  width: 100%;
  text-decoration: none;
  color: inherit;
  box-sizing: border-box;
}

.submenu-item img {
  width: 100px;
  height: auto;
  flex-shrink: 0;
  margin-right: 15px;
}

.submenu-item-inner {
  display: flex; /* 반드시 필요 */
  align-items: center;
  justify-content: flex-start;
  width: 100%;
}

.submenu-item-title {
  display: flex;
  flex-direction: column;
  justify-content: center; /* 수직 중앙 */
  align-items: center; /* 가로 중앙 */
  font-size: 16px;
  font-weight: bold;
  line-height: normal;
  color: #2e866b;
  text-align: center; /* 텍스트 자체 가운데 */
  word-break: keep-all;
  flex-grow: 1;
}

/* 롤오버 효과 */
.submenu-item:hover {
  background-color: #2e866b;
}

.submenu-item:hover .submenu-item-title {
  color: #fff;
}

.submenu-item:hover img {
  filter: none;
}

/* 사이드 이미지 영역 */
.submenu-side-images {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 295px; /* 고정 폭 */
  flex-shrink: 0;
}

.submenu-side-image img {
  width: 100%;
  height: auto;
  display: block;
}

.main-company {
  width: 100%;
  background-color: #2e866b; /* 원본과 동일 배경색 */
  padding: 20px 0;
  box-sizing: border-box;
}

.main-company-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between; /* ★ 이게 핵심 → 양쪽 끝 딱 붙게 */
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  padding: 0; /* padding은 0으로 해야 정확히 space-between 적용됨 */
}

.main-company-inner img {
  max-width: 100%;
  height: 25px;
  display: block;
  max-height: 40px; /* 원본과 유사한 높이 맞춤 (원하시면 조정 가능) */
}

.container .category-wrap {
  background-color: #040000;
  color: #fff;
  border-bottom: 2px solid #298c6b;
}
.container .category-wrap div.con {
  max-width: 1400px;
  margin: 0 auto;
}
._shop .category-wrap .primary-menu {
  font-size: 15px;
  color: #ffffff;
  font-weight: 500;
  padding: 18px 0;
  width: 100%;
  text-align: center;
}
._shop .category-wrap .header-main-nav {
  border: 0px;
  border-bottom: none;
}

.category-container {
  display: flex;
  flex-wrap: nowrap;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0px 20px;
}

.category-sidebar {
  width: 250px;
  margin-top: 50px;
  margin-right: 20px;
}

.category-sidebar h3 {
  margin-top: 30px;
  font-size: 18px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 5px;
  text-align: center;
}

.category-filter {
  margin-bottom: 150px;
}

.category-filter-item {
  border-bottom: 1px solid #2a8c6b;
}

.category-filter .filter-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px;
  cursor: pointer;
  font-size: 15px;
}

.category-filter .arrow {
  transition: transform 0.3s ease;
}

.category-filter .filter-content {
  display: none;
  padding: 0 12px 12px;
  font-size: 14px;
  color: #333;
}

.category-filter .filter-content label {
  display: block;
  margin-top: 5px;
}

.category-filter-item.active .filter-content {
  display: block;
}

.category-filter-item.active .arrow {
  transform: rotate(180deg);
}

.category-sidebar h2 {
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 5px;
}

.category-sidebar h2 span {
  display: block;
  font-size: 24px;
  color: #2a8c6b;
  margin-top: 4px;
}

.faq-item {
  border-bottom: 1px solid #ccc;
  padding: 14px 8px;
  font-size: 15px;
  cursor: pointer;
  position: relative; /* 여기로 이동 */
}

.faq-question {
  padding-right: 20px; /* 화살표 공간 확보 */
  font-size: 15px;
}

.faq-question p {
  margin: 0px;
  font-size: 11px;
}

.faq-arrow {
  position: absolute;
  top: 24px;
  right: 8px; /* 약간 안쪽으로 */
  transform: translateY(-50%);
  font-size: 12px;
  color: #333;
  transition: transform 0.3s ease;
}

.faq-answer {
  display: none;
  font-size: 14px;
  padding: 10px 0 15px;
  color: #555;
  line-height: 1.5;
  background: #f9f9f9;
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-item.open .faq-arrow {
  transform: translateY(-8px) rotate(180deg);
}

.bestseller-title {
  text-align: center;
  font-size: 26px;
  font-weight: 700;
  margin: 120px 0 20px;
}

.bestseller-item {
  margin-bottom: 20px;
}

.bestseller-item img {
  width: 100%;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
}

.category-main {
  flex: 1;
  border-left: 1px solid #2a8c6b;
}

.category-title {
  padding: 40px 0px 20px 0px;
  margin-bottom: 10px;
}

.category-title h1 {
  font-size: 34px;
  margin: 0;
  color: #2a8c6b;
  border-bottom: 1px solid #2a8c6b;
  font-weight: 600;
  padding-left: 30px;
  padding-bottom: 20px;
}

.category-title p {
  font-size: 18px;
  color: #555;
  margin: 0px;
  padding-left: 30px;
  letter-spacing: -0.5px;
}

.category-grid {
  width: 100%;
  max-width: 1270px;
  display: grid;
  flex-wrap: wrap;
  grid-template-columns: repeat(auto-fit, minmax(405px, 1fr));
  gap: 10px;
  padding-left: 10px;
  justify-content: center;
  margin: 0 auto;
}

.category-card {
  padding: 10px;
  margin: 0 auto;
  text-align: center;
  /*border: 1px solid #eee;
	border-radius: 5px;
	background: #fafafa;
	*/
  margin-bottom: 80px;
}

.category-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border: 1px solid #eee;
}

.product-code {
  font-weight: bold;
  margin-top: 8px;
}

.product-id,
.product-size {
  font-size: 12px;
  color: #888;
}

.product-id {
  color: #2a8c6b;
}

.category-pagination {
  text-align: center;
  margin: 30px 0;
}

.category-pagination button {
  margin: 0 4px;
  padding: 6px 12px;
  border: 1px solid #ccc;
  background: #fff;
  cursor: pointer;
  border-radius: 4px;
}

.category-pagination button.active {
  background: #2a8c6b;
  color: #fff;
  border-color: #2a8c6b;
}

.sort-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-left: 20px;
}

.sort-label {
  font-size: 16px;
  color: #000;
  margin-bottom: 0;
  white-space: nowrap;
}

#sort-select {
  width: 180px;
  padding: 6px 12px;
  font-size: 16px;
  color: #000;
  border: 1px solid #ccc;
  border-radius: 4px;
  background: #fff
  url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="gray" class="bi bi-caret-down-fill" viewBox="0 0 16 16"><path d="M7.247 11.14 2.451 5.658A.5.5 0 0 1 2.825 5h10.35a.5.5 0 0 1 .374.658l-4.796 5.482a.5.5 0 0 1-.756 0z"/></svg>')
  no-repeat right 12px center;
  background-size: 16px 16px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  margin-bottom: 20px;
}

#sort-select:focus {
  border-color: #666;
  outline: none;
}
.main-menu-wrap .container {
  max-width: 1400px;
}
.main-menu-wrap .container,
.container.view-location {
  width: 100%;
}
.container.view-location {
  max-width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.container.view-location.sub .section-hero {
}
#sct .container.view-location {
  max-width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
#sct .container {
  max-width: 1600px !important;
}

#sit .container.view-location {
  max-width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
#sit .container {
  max-width: 1600px !important;
}

.greetings h1 {
  line-height: 1.4;
  font-weight: 600;
}
.greetings h1 span {
  color: #2a8c6b;
}
.greetings .desc {
  line-height: 2.4;
  letter-spacing: -0.5px;
  margin: 3rem 0;
}
.gline {
  width: 100%;
  display: block;
  height: 1px;
  background-color: #2a8c6b;
  margin: 2rem 0;
}
.greetings-sign {
  display: block;
  text-align: right;
  font-size: 1.6rem;
}
.greetings-sign img {
  width: 300px;
  vertical-align: bottom;
}
.container.history,
.container.business {
  margin: 5rem auto;
  font-size: 1.4rem;
}

.timeline-outer {
  max-width: 1200px;
  margin: 0 auto;
  color: #111;
}

.timeline-row {
  display: flex;
}

.timeline-label {
  width: 200px;
  background-color: #e5e5e4;
  text-align: center;
  padding: 2rem 1rem;
  font-weight: 500;
  color: #333;
  line-height: 1.4;
  display: flex;
  align-items: center;
  justify-content: center;
}

.timeline-label.s2 {
  background-color: #cbcbcb;
}

.timeline-label.s3 {
  background-color: #b2b2b2;
}

.timeline-list {
  flex: 1;
  padding: 2rem 2rem;
  list-style: none;
  margin: 0;
}

.timeline-list li {
  margin-bottom: 0.7rem;
  line-height: 2.4;
}

.date {
  display: inline-block;
  width: 140px;
  color: #000;
}

.sep {
  margin: 0 20px 0 10px;
  color: #888;
}

.business-facility {
  padding: 2rem 1rem;
  background-color: #fff;
}

.business-inner {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.business-image img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}

.business-image {
  flex: 1 1 30%;
  min-width: 300px;
}

.business-text {
  flex: 1 1 50%;
  min-width: 280px;
  padding-top: 3rem;
  width: 100%;
}

.business-text h2 {
  font-size: 2rem;
  font-weight: bold;
  color: #222;
  margin-bottom: 0.8rem;
  border-bottom: 1px solid #2a8c6b;
  padding-bottom: 1rem;
  padding-left: 1rem;
}

.business-text ul {
  list-style: disc;
  padding-left: 2.5rem;
  margin-top: 1.2rem;
}

.business-text li {
  font-size: 1.2rem;
  color: #2a8c6b;
  margin-bottom: 0.6rem;
}

@media (max-width: 767px) {
  .main-company {
    flex-direction: column;
  }

  .timeline-row {
    flex-direction: column;
  }

  .container.history {
    margin: 5rem auto;
    font-size: 1rem;
  }

  .timeline-label {
    width: 100%;
    text-align: left;
    padding: 1rem 1.2rem;

    background-color: #f0f0f0;
    border-bottom: 1px solid #ddd;
  }

  .timeline-list {
    padding: 1rem 1.2rem;
  }

  .date {
    width: auto;
    display: block;
    margin-bottom: 0.3rem;
  }

  .sep {
    display: none;
  }

  .business-inner {
    flex-direction: column;
  }

  .business-text {
    text-align: left;
    padding-top: 0;
  }
}

@media (max-width: 1600px) {
  .category-sidebar {
    display: none;
  }
}

@media (max-width: 768px) {
  .category-container {
    flex-direction: column;
    padding: 10px;
  }

  .category-main {
    flex: 1;
    border-left: 0px;
  }
  .category-grid {
    padding: 0px;
  }

  .main-company-inner img {
    max-height: 20px;
  }

  .main-company-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start; /* 중요: 왼쪽부터 채우기 */
    gap: 16px 16px; /* 위아래 간격 8px, 좌우 간격 16px */
    align-items: center;
    padding: 10px 0;
  }
}

@media (min-width: 1600px) {
  #sct .container {
    width: 1600px !important;
    max-width: 1600px !important;
  }
  #sct .container.view-location {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .container.greetings {
    width: 100%;
    max-width: 1600px;
  }

  #sit .container {
    width: 1600px !important;
    max-width: 1600px !important;
  }
  #sit .container.view-location {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .container.greetings {
    width: 100%;
    max-width: 1600px;
  }
}

@media ((min-width: 1400px) and (max-width:1599.98px)) {
#sct .container {
  width: 1400px !important;
  max-width: 1400px !important;
}
#sct .container.view-location {
  width: 100% !important;
  max-width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

#sit .container {
  width: 1400px !important;
  max-width: 1400px !important;
}
#sit .container.view-location {
  width: 100% !important;
  max-width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
}

@media (max-width: 1399px) {
  ._shop .category-wrap .header-main-nav {
    border: 0px;
    border-bottom: none;
  }
  ._shop .category-wrap .primary-menu {
    font-size: 15px;
  }
}

@media (max-width: 767px) {
  #category {
    display: none;
  }
  .logo img {
    width: 120px;
  }
}

@media (max-width: 480px) {
  .header-main-nav:hover::after {
    display: none;
  }

  .quote-footer {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}
.gnb_2dul {
  display: none;
}

.section-hero {
  position: relative;
  width: 100%;
  height: 300px;
  background: url("/img/greetings_bg.png") center center / cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
}

.greetings-bg {
  position: relative;
  width: 100%;
  height: 1200px;
  background: url("/img/greetings_bottom.jpg") center center / cover no-repeat;
  display: block;
}

.section-hero h1 {
  font-size: 6rem;
  font-weight: bold;
  margin-bottom: 10px;
}
.section-hero .breadcrumb {
  color: #7fc1b2;
  font-size: 2rem;
  position: absolute;
  bottom: 0.5em;
}
@media (max-width: 1399px) {
  .section-hero {
    height: 200px;
    padding: 0 20px;
  }
  .section-hero h1 {
    font-size: 2rem;
  }
  .section-hero .breadcrumb {
    font-size: 0.9rem;
  }
}
@media (max-width: 480px) {
  .section-hero {
    height: 150px;
  }
  .section-hero h1 {
    font-size: 1.5rem;
  }
  .section-hero .breadcrumb {
    font-size: 0.8rem;
  }
}

/* 회사소개 영역 스타일 */
.company-intro {
  width: 100%;
  background-color: #248b6e;
  text-align: center;
  margin: auto;
  color: #fff;
  padding: 33px 0px 38px 0px;
}

.company-intro h2 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 27px;
  color: #fff;
  display: block;
}

.company-intro p {
  font-size: 17px;
  line-height: 1.5;
  margin: 0;
  font-weight: 200;
}

.company-intro p .highlight {
  color: #2e866b;
}

.company-intro .read-more:hover {
  color: #1c5f4b;
  border-bottom-color: #1c5f4b;
}

.project-section {
  background: #eaeeef;
  padding: 60px 20px;
}

.project-inner {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}

.project-title {
  font-size: 25px;
  color: #333;
  font-weight: bold;
  margin-bottom: 26px;
}

.project-desc {
  color: #666;
  font-size: 15px;
  margin-bottom: 40px;
  line-height: 1.6;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* gap: 30px; */
}

.project-item {
  overflow: hidden;
  transition: transform 0.3s ease;
}

.project-item:hover {
  transform: translateY(-5px);
}

.project-item img {
  width: 100%;
  height: auto;
  display: block;
}

.project-info {
  padding: 15px;
  text-align: left;
  padding-left: 0;
  margin: 10px 0;
}

.project-name {
  font-weight: bold;
  font-size: 17px;
  color: #2e866b;
  margin-bottom: 5px;
}

.project-type {
  color: #999;
  font-size: 15px;
}

.project-button-wrap {
  margin-top: 40px;
}

.project-button {
  display: inline-block;
  padding: 12px 30px;
  background-color: #2e866b;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.3s ease;
  font-size: 17px;
}

.project-button:hover {
  background-color: #256d55;
}

/* 반응형 */
@media (max-width: 1024px) {
  .project-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .project-grid {
    grid-template-columns: 1fr;
  }

  .project-title {
    font-size: 24px;
  }

  .project-desc {
    font-size: 15px;
  }
}

.license-wrap {
  max-width: 1320px;
  margin: 4% auto;
  padding: 20px;
  box-sizing: border-box;
}

.license-title {
  text-align: center;
  font-size: 23px;
  font-weight: bold;
  margin-bottom: 5%;
}

.license-inner {
  display: flex;
  align-items: center;
  justify-content: space-between; /* 화살표 + swiper가 한 라인 */
  position: relative;
}

.licenseSwiper {
  width: calc(100% - 50px); /* 양쪽 화살표 공간 제외 */
  overflow: hidden;
}

.licenseSwiper .swiper-wrapper {
  display: flex;
}

.licenseSwiper .swiper-slide {
  width: auto; /* 이미지 크기에 맞추기 */
  text-align: center;
  font-size: 14px;
}

.licenseSwiper .swiper-slide img {
  display: block;
  width: 130px;
  height: auto;
  margin: 0 auto;
}

.license-caption {
  margin-top: 19px;
  color: #333;
  font-size: 17px;
  line-height: 1.4;
}

/* 커스텀 화살표 */
.swiper-button-prev-custom2,
.swiper-button-next-custom2 {
  width: 14px;
  height: 14px;
  border-right: 4px solid #2a8c6b;
  border-bottom: 4px solid #2a8c6b;
  cursor: pointer;
  position: relative;
  z-index: 10;
  flex-shrink: 0;
}

.swiper-button-prev-custom2 {
  transform: rotate(135deg);
}

.swiper-button-next-custom2 {
  transform: rotate(-45deg);
}

/* 반응형 */
@media (max-width: 1024px) {
  .licenseSwiper .swiper-slide img {
    height: 180px;
  }

  .swiper-button-prev-custom,
  .swiper-button-next-custom {
    left: -20px;
    right: -20px;
  }
}

@media (max-width: 768px) {
  .licenseSwiper .swiper-slide img {
    height: 150px;
  }
}

.catalog-production-wrap {
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  overflow: hidden;
  margin-bottom: 20px;
}

.production-area {
  width: 50%; /* 나머지 영역 */
  background-color: #f5f8f9;
  padding: 0; /* swiper는 내부 padding으로 충분함 */
  box-sizing: border-box;
  overflow: hidden; /* Swiper 깨짐 방지 */
  display: flex;
  align-items: center;
  justify-content: center;
}

.production-area .swiper {
  width: 100%;
  height: 100%;
  overflow: hidden; /* swiper 강제 clip */
}

.production-area .swiper-wrapper {
  display: flex;
  width: 100% !important; /* 터지는 현상 방지 */
  box-sizing: border-box;
}

.production-area .swiper-slide {
  display: flex;
  flex-direction: row; /* row 유지 */
  align-items: start; /* 이미지와 텍스트 위 정렬 */
  gap: 40px;
  padding: 43px 30px;
  box-sizing: border-box;
}

/* 이미지 영역 */
.production-slide-img {
  flex: 0 0 300px; /* 원하는 고정폭 */
}

.production-slide-img img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* 텍스트 영역 (타이틀 + 본문 포함) → 묶어서 block으로 보여주기 */
.production-slide-title,
.production-slide-text {
  display: block;
  text-align: left;
}

.production-slide-title {
  font-size: 28px;
  font-weight: bold;
  margin-top: 10px;
  margin-bottom: 33px;
}

.production-slide-text {
  font-size: 17px;
  line-height: 1.1;
  color: #333;
  letter-spacing: -0.8px;
}

/* 텍스트 전체 묶는 래퍼 추가하면 더 깔끔 */
.production-slide-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.catalog-production-wrap p {
  font-size: 14px;
  line-height: 1.1;
  margin-bottom: 10px;
  letter-spacing: -0.8px;
}

.catalog-production-wrap h3 {
  font-weight: bold;
  font-size: 24px;
  margin-bottom: 15px;
}

.catalog-area {
  width: 50%;
  background-color: #333;
  color: #fff;
  padding: 29px 30px;
  box-sizing: border-box;

  display: flex;
  align-items: center; /* 수직 중앙정렬 */
  justify-content: space-between; /* 좌우 정렬 */
  gap: 20px;
}

.catalog-area .catalog-text {
  flex: 0 1 60%;
}

.catalog-area .catalog-text h3 {
  font-weight: bold;
  font-size: 28px;
  margin-bottom: 10px;
}

.catalog-area .catalog-text p {
  font-size: 17px;
  margin: 13px 0px 26px 0px;
  display: block;
}

.catalog-area .catalog-text .download-btn {
  display: inline-block;
  background-color: #2a8c6b;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  font-size: 16px;
}

.catalog-area .catalog-image {
  flex: 0 1 40%; /* 이미지 영역을 40% 정도로 넓힘 */
  display: flex;
  justify-content: center;
  align-items: center;
}

.catalog-area .catalog-image img {
  max-width: 148px;
  height: auto;
  display: block;
}

/* 반응형 대응 */
@media (max-width: 1024px) {
  .catalog-production-wrap {
    flex-direction: column;
  }
  .catalog-area,
  .production-area {
    width: 100%;
    padding: 20px;
  }
  .production-area .swiper-slide {
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .catalog-area .catalog-image img {
    max-width: 120px;
  }
}

@media (max-width: 768px) {
  .production-area .swiper-slide {
    flex-direction: column; /* 모바일에서 이미지 위로, 텍스트 아래로 */
    text-align: center; /* 중앙 정렬하면 보기 좋음 */
  }

  .production-slide-img {
    width: 100%;
  }

  .production-slide-content {
    width: 100%;
  }

  .production-slide-text {
    font-size: 14px;
    margin-top: 10px;
  }
}

.footer {
  background: #fff;
  color: #878381;
  padding: 60px 0px 0;
  font-size: 14px;
  display: flex;
  flex-direction: column;
  min-height: 300px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px;
  max-width: 1320px;
  margin: 0 auto 40px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  padding: 0 10px;
}

.footer-title {
  font-size: 20px;
  font-weight: 900;
  color: #595757;
  margin-bottom: 20px;
}

.footer-text {
  color: #878381;
  line-height: 1.6;
  margin-bottom: 10px;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list li {
  margin-bottom: 5px;
  word-break: break-word;
}

.footer-list a {
  color: #878381;
}

.footer-list a:hover {
  color: #fff;
}

.footer-column a {
  word-break: break-all;
}

.footer-bottom {
  margin-top: auto;
  text-align: center;
  padding: 20px 0;
  font-size: 13px;
  color: #878381;
  background-color: #1c1d1d;
}

/* 반응형 */
@media (max-width: 1024px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr); /* 태블릿은 2열 */
    gap: 40px;
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr; /* 모바일은 1열 */
    gap: 20px;
  }
  .footer-column {
    width: 320px;
  }
  .footer-title {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .footer-text {
    font-size: 13px;
  }
  .footer-list li {
    margin-bottom: 6px;
  }
  .footer-bottom {
    font-size: 12px;
    padding: 15px 0;
  }
}

.contact-banner {
  width: 100%;
  background-color: #000; /* 검정 배경 */
  color: #fff;
  padding: 3.5% 20px; /* 여백 */
  box-sizing: border-box;
}

.contact-inner {
  max-width: 1320px;
  margin: 0 auto; /* 중앙 정렬 */
  text-align: center;
}

.contact-phone {
  font-size: 45px;
  font-weight: bold;
  color: #2a8c6b; /* 포인트 컬러 */
  margin-bottom: 10px;
}

.contact-text {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
  letter-spacing: -0.34px;
}

.contact-company {
  font-size: 40px;
  display: block;
  margin: 3% 0 0;
  font-weight: 600;
  letter-spacing: 3px;
}

.footer-icons {
  margin-top: 15px;
  display: flex;
  gap: 10px;
  align-items: center;
}

.footer-icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: #2a8c6b; /* 녹색 배경 */

  transition: background-color 0.3s, opacity 0.3s;
}

.footer-icon-box img {
  width: 36px; /* 아이콘 크기 적당히 */
  height: 36px;
  object-fit: contain;
}

.footer-icon-box:hover {
  opacity: 0.8;
  cursor: pointer;
}

.productionSwiper .swiper-pagination-bullet {
  width: 18px;
  height: 18px;
  background-color: white;
  border: 2px solid #555; /* 어두운 회색 테두리 */
  border-radius: 50%;
  opacity: 1;
  box-sizing: border-box;
  position: relative;
  margin: 0 6px;
}

/* 활성 bullet 스타일 (안에 작은 초록 원) */
.productionSwiper .swiper-pagination-bullet-active::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background-color: #2a8c6b; /* 내부 초록색 원 */
  border-radius: 50%;
}


@media (max-width:1024px) {
  ._shop{padding-bottom:70px;}
  ._shop .main-menu-wrap{position:relative;}
  ._shop .search-wrap{position:absolute;top:calc(100% - 1px);left:0;width:100%;display:flex !important;z-index:111;background:#ffffff;padding:10px;}
  ._shop .search-wrap .logo{display:none !important;}
  ._shop .search-wrap form{display:block !important;height:50px}
  ._shop .search-wrap .goods-search{width:100% !important;margin:0 !important;height:50px;}
  ._shop .search-wrap .goods-search select{display:none;}
  ._shop .search-wrap .goods-search input#sch_stx{border:0;padding:0.7rem 0.7rem !important;}

  .mobile-top-menu{flex-direction:column;font-size:14px;align-items:center;text-align:center;line-height:1.2;}
  .mobile-top-menu a{font-size:14px;}
  .mobile-top-menu > div{display:flex;align-items:center;}

  #scroll-category{}
  #scroll-category .con{overflow-x:auto;justify-content:flex-start;gap:10px;padding:0 20px;}
  #scroll-category .con .header-main-nav{flex: 0 0 auto;}
  #scroll-category .con .header-main-nav a{white-space:nowrap;}

  #scroll-header{}
  #scroll-header .mobile-top-menu{flex-direction:column;font-size:12px;line-height:1;padding:0 10px;align-items:flex-start;text-align:left;}
  #scroll-header .mobile-top-menu div{display:flex;align-items:center;}
  #scroll-header .icon-icon-menu{gap:2px;}
  #scroll-header .icon-icon-menu .icon-item{}
  #scroll-header .icon-icon-menu .icon-item a{display:flex;align-items:center;justify-content:center;width:25px !important;height:25px !important;}
  #scroll-header .icon-icon-menu .icon-item img{width:100% !important;height:auto !important;}

  .shop-index-owl-wrap{}
  .shop-index-owl-wrap .owl-stage-outer{height:auto !important;}
  .shop-index-owl-wrap .owl-item{}
  .shop-index-owl-wrap .owl-item .item{}
  .shop-index-owl-wrap .owl-item .item img{width:100%;height:auto;aspect-ratio:1/1;object-fit:cover;}
  .shop-index-owl-wrap .owl-item .main-caption{left:0 !important;bottom:50px !important;border-color:#00f !important;}

  .swiper-area{}
  .swiper-area .swiper-slide{padding:10px;display:flex;align-items:center;width:30dvw !important;}
  .swiper-area .swiper-slide img{min-width:auto;max-width:100%;height:auto;}

  .company-intro{}
  .company-intro h2{margin-bottom:10px;}
  .company-intro h2 img{height:28px;}
  .company-intro p{}
  .company-intro p br{display:none;}
  .company-intro p br.mo{display:block;}

  .project-title{margin-bottom:15px;}
  .project-desc{margin-bottom:10px;}
  .project-grid{width:100% !important;display:grid !important;grid-template-columns:repeat(2,1fr) !important;gap:10px !important;}
  .project-grid a{width:100% !important;}
  .project-item{width:100% !important;}
  .project-item img{width:100% !important;height:auto !important;aspect-ratio:1/1 !important}
  .project-info{padding:5px 0 !important;margin:0 !important;}
  .project-name{line-height:1.5}
  .project-name p{margin:0 !important;}
  .project-button-wrap{margin-top:10px !important;}

  .license-wrap{padding:20px 5px !important;}
  .licenseSwiper{}
  .licenseSwiper .swiper-slide{width:26vw !important}
  .licenseSwiper .swiper-slide img{width:100%;height:auto;aspect-ratio:3/4;object-fit:contain;}
  .license-caption{font-size:10px;}

  .catalog-area{position:relative;flex-direction:column;padding:20px 20px;}
  .catalog-text{width:100%;}
  .catalog-text p{font-size:14px !important;line-height:1.5;min-height:170px;}
  .catalog-image{position:absolute;bottom:20px;right:20px;width:120px;height:170px;}

  .contact-banner{padding:50px 0;}

  .production-area{padding:20px 20px;}
  .production-area .swiper-slide{padding:0 !important;}

  .footer{padding:60px 0;}
  .footer-container{margin:0 20px !important;}
  .footer-column{padding:0;}
  .footer-title{font-size:15px;font-weight:600;}

  #sct{}
  #sct .view-location{}
  #sct .view-location .tw-bg-gray-100{height:3rem;}
  #sct aside{display:none !important;}
  #sct main{width:100%;}
  #sct main h1{margin-bottom:0;}
  #sct main div:nth-child(1).tw-flex{position:relative;align-items:flex-start;}
  #sct main div:nth-child(1).tw-flex .tw-ml-6{position:absolute;top:-75px;right:0;}
  #sct main div:nth-child(2).tw-bg-gray-100{display:none;}
  #sct main .tw-grid{grid-template-columns:repeat(2,1fr) !important;gap:10px;}
  #sct main .tw-grid > .tw-bg-white{}
  #sct main .tw-grid > .tw-bg-white > .tw-bg-primary{font-size:13px;width:auto !important;height:20px !important;padding:0 10px;right:5px;top:5px;margin:0 !important;}
  #sct main .tw-mb-\[60px\]{margin-bottom:20px;}
  #sct main .product-price{}
  #sct main .product-price .tw-text-lg{font-size:14px;}

  #sit{}
  #sit > .tw-bg-gray-100{height:3rem;}
  #sit > .tw-max-w-\[1400px\]{width:100%;padding:0;margin:0;}
  #sit > .tw-max-w-\[1400px\] > .tw-grid{}
  #sit > .tw-max-w-\[1400px\] > .tw-grid .tw-space-y-4{}
  #sit > .tw-max-w-\[1400px\] > .tw-grid .tw-space-y-6{border-top:1px solid #000;padding:20px;}
  #sit > .tw-max-w-\[1400px\] > .tw-grid .tw-space-y-6 .tw-grid-cols-\[120px_1fr\]{    grid-template-columns: 70px 1fr;}
  #sit > .tw-max-w-\[1400px\] > .tw-grid .tw-space-y-6 .tw-border-gray-300{padding:0;}
  #sit > .tw-max-w-\[1400px\] > .tw-grid .tw-space-y-6 .tw-border-gray-300 input{max-width:100%;width:100%;padding:10px 15px;height:50px;font-size:14px;}
  #sit > .tw-max-w-\[1400px\] > .tw-grid .tw-space-y-6 .tw-max-w-\[447px\]{flex-direction:column;gap:10px;}
  #sit > .tw-max-w-\[1400px\] > .tw-grid .tw-space-y-6 .tw-max-w-\[447px\] button{height:60px;display:flex;align-items:center;justify-content:center;}
  #sit > .tw-max-w-\[1400px\] .popup_item_image img{width:100%;height:auto;}
  #sit .thumbnail-gallery{padding:0;margin:0;}

  body .gallery-container{}
  body .gallery-container .gallery-title{display:none;}
  body .gallery-container .tw-bg-gray-100{height:3rem;}
  body .gallery-container .filter-grid{grid-template-columns: repeat(1, 1fr) !important;gap:5px !important;}
  body .gallery-container .filter-grid input{height:50px;box-shadow:none;border:1px solid #e0e0e0;}
  body .gallery-container .filter-grid select{height:50px;border:1px solid #e0e0e0;}
  body .gallery-container .filter-grid button{height:50px;border-width:1px !important;}

  body .gallery-container .tw-grid{grid-template-columns: repeat(2, 1fr) !important;gap:10px !important;}
  body .gallery-container .tw-grid .tw-pb-\[18px\]{padding:10px;}
  body .gallery-container .tw-grid .tw-pb-\[18px\] h3{margin:0;font-size:16px;}

  body .breadcrumb-box{height:3rem;}

  body .quote-title{display:none}
  body .quote-box{padding:20px;}
  body .quote-scroll{height:300px;overflow-y:auto;}

  #quoteForm{border-top:2px solid #000;margin:0 -20px;}
  #quoteForm .tw-mb-8{padding:20px;}
  #quoteForm .tw-space-y-0{}
  #quoteForm .tw-space-y-0 .tw-w-full{padding:20px;align-items:center;}
  #quoteForm  .quote-form-tit{flex:0 0 auto;width:100px;min-width:unset;}
  #quoteForm .quote-form-tit .tw-text-\[17px\]{font-size:16px;}
  #quoteForm  .quote-button{padding:20px;}
  #quoteForm  .quote-button button{width:100%;height:50px;}

  #selected-products{}
  #selected-products .selected-item{display:flex;flex-wrap:wrap;}

  #product-head{display:none;}
  #product-list{}
  #product-list .item{position:relative;grid-template-columns:100px 1fr;}
  #product-list .item > div:nth-child(1){position:absolute;top:0;left:0;}
  #product-list .item > div:nth-child(2){grid-row:1/3;grid-column:1/2;}
  #product-list .item > div:nth-child(3){grid-row:1/3;grid-column:2/3;}
  #product-list .item > div:nth-child(4){grid-row:2/3;grid-column:2/3;}
}