body {
	background-color: #fefefe; 
	font-family: 'Noto Sans', 'Roboto', 'Nanum Gothic', 'Arial', sans-serif;
}
a {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
.maincontainer {
  position: relative;
  width: 1078px;
  margin: 0 auto;
  background: #fff;
}

.navbar {
  background-color: #ffffff;
}
.nav-link,
.navbar-text {
  color: #000 !important;
}
.product-card {
  border: 0px solid #ddd;
  border-radius: 10px;
  padding: 10px;
  background-color: #fff;
  height: 100%;
}
.product-card:hover {
  box-shadow: none;
}
.product-title {
  font-size: 13px;
  line-height: 18.2px;             
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  word-break: break-word;
  text-overflow: ellipsis;
  color:#5c5b5b;
}
.product-price {
  color: #000;         
  font-size: 17px;
  font-weight: bold;
  margin-top: 0x;
  margin-bottom: 0px;
}
.product-pv {
  color: #0068b7; 
  font-size: 11px;
  font-weight: bold;
  margin-bottom: 4px;
}
.product-tipbig {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 0px;
}
.product-tipsmall {
  font-size: 12px;
  font-weight: bold;
  margin-bottom: 0px;
}
.product-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.product-card:hover .product-img {
  transform: scale(1.05);
}
#imgKakao,
#imgNaver,
#imgHeart,
#imgLink,
#imgCopy {
	width: 23px; 
	height: 23px;
}
.line-space {
  height: 2px;
}
.line-space1 {
  height: 1px;
}
.blink {
  animation: blink-animation 1s infinite steps(5, start);
}
@keyframes blink-animation {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}









#logoimage {
  width: auto;
  height: auto;
}

.search-container {
  flex-grow: 1;
  min-width: 0;
}

.navbar-inner {
  width: 100%;
  max-width: 1078px;
  height: 100px;
  margin: 0 auto;
}

.category-scroll-wrapper {
  overflow-x: visible; /* 기본은 visible 유지 */
  overflow-y: visible;
}

/* 모바일에서만 좌우 스크롤 허용 */

.interest-product-list {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 10px;
}
.interest-product-item {
  flex: 0 0 auto;
  text-align: center;
}
.interest-product-img {
  width: 130px;
  height: 130px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #ddd;
  transition: transform 0.3s;
}
.interest-product-img:hover {
  transform: scale(1.1);
}

#productList {
  width: 100%;
  margin: 0 auto;
}

#loadingSpinner {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;
  display: block; /* 기본은 숨김 */
}

.rotating-icon {
  width: 60px; /* 크기 조정 가능 */
  height: 60px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


.category-btn {
  display: inline-block;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 400;
  border-radius: 10px;
  border: 1px solid #eeeeee;
  background: linear-gradient(135deg, #ffffff, #f1f1f1);
  white-space: nowrap;
  line-height: 1.5;
  vertical-align: middle;
  transition: all 0.3s ease;
}

.category-btn:hover {
  background: linear-gradient(135deg, #d0eaff, #a4d0ff);
  color: #0056b3;
}


.icon-btn {
  width: 80px;
  height: 100px;
  border: none;
  border-radius: 12px;
  background-color: #fff;
  padding: 8px 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  text-decoration: none;
  color: #333;
  font-weight: bold;
  font-size: 12px;
}
.icon-btn img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 10px;
}
.icon-btn span {
  display: block;
  margin-top: 5px;
  font-size: 12px;
  text-align: center;
  white-space: nowrap;
}

#viewCate {
  display: block;
}



.myBannerWrapper {
  position: relative;
  width: 100%;
  padding-top: 28.7%; /* 300 / 1044 * 100 = 약 28.7% */
  overflow: hidden;
}

.myBanner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.myBanner:hover {
  transform: scale(1.03); /* 약간 확대 */
}

#mainProducts {
  border: 0px solid #ddd;
  border-radius: 10px;
  padding: 0px;
  background-color: #fff;
}

#interestProducts {
  position: fixed;
  top: 170px;
  width: 80px;
  background: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 10px 5px;
  z-index: 1000;
  display:none;
  right: calc((100% - 1078px) / 2 - 82px);
}

.interest-products-wrapper {
  height: 350px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#interestProductList {
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

#interestProductList img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  margin-bottom: 10px;
  border-radius: 6px;
}

.interest-nav.horizontal {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 8px;
  gap: 10px;
}

.interest-arrow {
  background: #fff;
  border: 1px solid #ccc;
  padding: 4px 5px;
  font-size: 14px;
  cursor: pointer;
  border-radius: 4px;
  user-select: none;
}
.interest-arrow:hover {
  background: #eee;
}

.myKnowhow {
  width: 50vw;
  max-width: 250px;
  height: auto;
  border: 0;
  border-radius: 10px;
  flex: 0 0 auto;

  transition: transform 0.3s ease; /* 부드럽게 확대/축소 */
}

.myKnowhow:hover {
  transform: scale(1.05); /* 5% 확대 */
}


  .knowhow-scroll-wrapper {
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
  }

  #showCategoryBtn2 {
	  display:none;
  }
@media (max-width: 767px) {
  h5 {
    font-size: 14px;
    font-weight: bold;
  }
  h3 {
    font-size: 13px;
    font-weight: bold;
  }

  #customCategoryBtn {
	  display:none;
  }

  .maincontainer {
    width: 100%;
  }

  #logoimage {
    width: auto;
    height: 35px;
  }

  #logosubimage {
    width: auto;
    height: 35px;
  }

.product-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

  body {
    padding-bottom: 60px;
  }

  #inlineCategoryOutside,
  #interestProducts {
    display: none;
  }

  .mobile-small-text {
    font-size: 10px;
  }
  
	.scroll-box {
	  height: 180px !important;
	}
}

@media (min-width: 768px) {
  .navbar-inner {
    width: 85%;
  }
}
.user-banner-section {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  overflow: hidden;
  padding-bottom: 20px;
}

.left-section {
  flex: 0 0 60%;
  padding: 20px;
  box-sizing: border-box;
}

.right-section {
  flex: 0 0 40%;
  padding: 10px;
  box-sizing: border-box;
  border: 1px solid #ccc; /* 오른쪽 영역에만 border */
  border-radius: 4px;
  background-color: #fefefe;
}
 
.scroll-title {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #333;
}

.scroll-box {
  height: 420px;
  overflow: hidden;
  position: relative;
}

.scroll-content {
  display: flex;
  flex-direction: column;
  animation: scrollUp 25s linear infinite;
} 

.scroll-content:hover {
  animation-play-state: paused;
}

.scroll-content li {
  display: flex;
  align-items: center;
  height: 50px;
  padding-left: 5px;
  white-space: nowrap;
}

.scroll-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 8px;
  flex-shrink: 0;
}

.blog-icon {
  width: 20px;
  height: 20px;
  margin-left: 8px;
}

.message {
  font-size: 14px;
}

@keyframes scrollUp {
  0% { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}
.joinBanner {
  width: auto;
  height: auto;
  max-width: 100%;
  display: block;
  margin: 0 auto;
}
/* 반응형 모바일 */
@media (max-width: 768px) {
  .joinBanner {
    width: 100%; 
    height: auto;   
  }
  .user-banner-section {
    flex-direction: column;
    border-radius: 20px;
  }

  .left-section,
  .right-section {
    flex: 0 0 100%;
  }

  .right-section {
    margin-top: 20px;
	width:100%;
	padding: 2px;
  }
  
	.scroll-avatar {
	  width: 30px;
	  height: 30px;
	  border-radius: 50%;
	}

	.blog-icon {
	  width: 12px;
	  height: 12px;
	  margin-left: 4px;
	}

	.message {
	  font-size: 12px;
	}
  
  .inline-category-outside {
	display:none;
  }
	.bottom-nav {
		display: flex !important;
	}
	
    .hot-title {
      font-size: 12px;
    }
    .hot-desc {
      font-size: 10px;
    }
	
	.small-text-12 {
		font-size:12px !important;
	}
	.small-text-13 {
		font-size:13px !important;
	}
	.small-text-14 {
		font-size:14px !important;
	}
	.small-text-11 {
		font-size:11px !important;
	}
	.small-text-10 {
		font-size:10px !important;
	}
	.small-text-9 {
		font-size:9px !important;
	}
	.small-text-8 {
		font-size:8px !important;
	}
	.small-text-15 {
		font-size:15px !important;
	}
	.small-text-16 {
		font-size:16px !important;
	}
    .table {
      font-size: 12px !important;
    }
}

.inline-category-outside {
  position: fixed;
  top: 170px;
  width: 80px;
  left: calc(50% - 539px - 82px);
  background: #f9f9f9;
  border: 1px solid #ddd;
  padding: 10px 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 1000;
  border-radius: 8px;
}


.inline-icon-btn {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	background: transparent;
	border: none;
	box-shadow: none;    
	cursor: pointer;
	transition: all 0.3s ease;
	font-family: 'Segoe UI', sans-serif;
	text-align: center;
}


.inline-icon-btn:hover {
	transform: translateY(-4px);
}

.inline-icon-btn:active {
	transform: scale(0.96);
}

.inline-icon-btn .icon {
	font-size: 30px;
	margin-bottom: 6px;
}

.inline-icon-btn span {
	font-size: 12px;
	color: #333;
	font-weight: 500;
}

.bottom-nav {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background: #fff;
	display: none;
	justify-content: space-around;
	align-items: center;
	padding: 10px 0;
	border-top: 1px solid #ddd;
	box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.05);
	z-index: 1000;
	transition: transform 0.3s ease;
}

.bottom-nav.hidden {
	transform: translateY(100%);
}

.nav-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 45px;
	height: 45px;
	text-align: center;
	font-size: 10px;
	color: #333;
	text-decoration: none;
}

.nav-item .icon {
	font-size: 1px;
	margin-bottom: 2px;
}

.avatar-space {
	width: 60px;
	height: 60px;
}





.menu-overlay {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50vh;
  background-color: #fff;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
  z-index: 1000;
  display: none;
  flex-direction: column;
  padding-top: 20px;
}

.menu-grid {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  padding: 10px 20px;
}

.menu-item {
  text-align: center;
  width: 60px;
  text-decoration: none;
  color: #333;
}

.icon-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.menu-item i {
  font-size: 24px;
  color: #444;
  padding: 10px;
  background: #f8f8f8;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
}

.menu-item i:hover {
  transform: scale(1.1);
}

.menu-title {
  margin-top: 6px;
  font-size: 10px;
  font-weight: 500;
  color: #555;
}

.close-btn {
  position: absolute;
  top: 5px;
  right: 15px;
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
  color: #666;
}






.custom-category-overlay {
  position: absolute;
  width: 600px;
  height: 370px;
  display: none;
  flex-direction: row;
  background: #fff;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  z-index: 9999;
  border: 1px solid #000; 
}


.custom-category-main {
  width: 160px;
  background: #2d2d2d;
  color: #fff;
}

.custom-category-main ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.custom-category-main li {
  padding: 14px 12px;
  cursor: pointer;
}

.custom-category-main li:hover,
.custom-category-main li.active {
  background: #fff;
  color: #000;
}

.custom-category-sub {
  flex: 1;
  background: #f7f7f7;
  padding: 15px;
}

.custom-sub-list {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
}

.custom-sub-list.active {
  display: block;
}
.custom-sub-list li + li {
  margin-top: 6px; 
}



  .flash-timer {
    animation: pulse 1.5s infinite;
    color: #ff4444; /* 기본 강조 색상 */
  }

  .flash-urgent {
    color: #ff0000 !important; /* 24시간 이하 시 색상 변경 */
  }

  @keyframes pulse {
    0% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.85; transform: scale(1.05); }
    100% { opacity: 1; transform: scale(1); }
  }
  
/* 새로운 타이머 깜빡이는 효과 */
@keyframes countdown-blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}

.countdown-timer {
  animation: countdown-blink 0.5s linear infinite;
  font-size: 1.25rem;
  color: red;
}


@keyframes moveLine {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

/* Button Click Ani */
.button-ani {
  background-color: #28a745;
  color: white;
  padding: 10px 18px;
  font-size: 1em;
  border: none;
  border-radius: 6px;
  margin-top: 15px;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.3s ease;
}

.button-ani.clicked {
  transform: scale(0.95);
  background-color: #218838;
}






    .pvSwiper {
      overflow: hidden;
      width: 100%;
      padding: 10px 0;
    }

    .user-card {
      border: 1px solid #ddd;
      border-radius: 16px;
      padding: 12px;
      display: flex;
      align-items: flex-start;
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
      height: 100%;
    }

    .glow-avatar {
      animation: glow 1.5s infinite alternate;
    }

    @keyframes glow {
      0% { box-shadow: 0 0 5px rgba(255, 215, 0, 0.5); }
      100% { box-shadow: 0 0 15px rgba(255, 215, 0, 1); }
    }

    .user-info {
      margin-left: 12px;
      flex-grow: 1;
    }

    .user-info .fs-6 {
      font-size: 1rem;
    }

    .user-info .fs-7 {
      font-size: 0.875rem;
    }

    @media (max-width: 768px) {
      .swiper-slide {
        width: 100% !important;
      }
    }
	



/* 기본 스타일: 데스크탑 및 큰 화면에서 사용 */
.mySwiper.mainViewSlide {
  width: 100%;  /* 화면 전체 너비 */
  height: 300px;  /* 배너 높이 */
  overflow: hidden;  /* 슬라이드 범위 밖으로 벗어나는 부분 숨기기 */
  position: relative;
  margin: 0 auto;
}

.mySwiper.mainViewSlide .swiper-wrapper {
  height: 100%;
}

.mySwiper.mainViewSlide .swiper-slide {
  width: 100% !important; /* 화면 전체 너비 */
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mySwiper.mainViewSlide .mainMyBanner {
  width: 100%;  /* 화면 너비에 맞게 늘림 */
  height: 100%;  /* 화면 높이에 맞게 늘림 */
  object-fit: cover;  /* 비율에 맞게 이미지 자르기 */
}

/* 네비게이션 버튼 스타일 */
.mySwiper.mainViewSlide .mainSwiperButtonNext,
.mySwiper.mainViewSlide .mainSwiperButtonPrev {
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 4px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mySwiper.mainViewSlide .mainSwiperButtonNext::after,
.mySwiper.mainViewSlide .mainSwiperButtonPrev::after {
  color: black;
  font-size: 18px;
  font-weight: bold;
}

/* 모바일 환경에서 스타일 변경 */
@media (max-width: 768px) {
  .mySwiper.mainViewSlide {
    height: auto;  /* 모바일에서는 높이를 자동으로 설정 */
  }

  .mySwiper.mainViewSlide .mainMyBanner {
    height: auto;  /* 모바일에서는 높이를 자동으로 설정 */
    object-fit: contain;  /* 비율에 맞게 이미지 크기 조정 */
  }
}

/* Not Found Image */
.fallback-icon {
  display: inline-block;
  width: 100px;
  height: 100px;
  text-align: center;
  line-height: 100px;
  color: #ccc;
}





    .partner-avatar {
        width: 80px;
        height: 80px;
        object-fit: cover;
        border-radius: 50%;
        border: 3px solid #dee2e6;
        transition: transform 0.3s ease;
    }

    .partner-card {
        border: none;
        border-radius: 1rem;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .partner-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    }

    .partner-card .card-body {
        padding: 1rem 0.5rem;
    }

    .partner-card .card-title {
        font-weight: 600;
        font-size: 1rem;
    }

.small-avatar {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border: 2px solid #fff799 !important;
    box-shadow: 0 0 5px #ffd700, 0 0 15px #ffd700;
}


    .other-boss-name {
        font-size: 0.9rem;
    }

    .boss-card {
        background: linear-gradient(135deg, #f8f9fa, #fcf8c7);
        border-radius: 1rem;
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        padding: 2rem 1.5rem;
    }
    .boss-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 18px 36px rgba(0, 0, 0, 0.12);
    }
.boss-avatar {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #0d6efd;
    animation: glow-pulse 2s infinite;
}

@keyframes glow-pulse {
    0% { box-shadow: 0 0 10px #ffd700, 0 0 20px #ffd700; }
    50% { box-shadow: 0 0 20px #ffd700, 0 0 40px #ffd700; }
    100% { box-shadow: 0 0 10px #ffd700, 0 0 20px #ffd700; }
}

.boss-bg-gradient {
    background: linear-gradient(135deg, #ffffff 0%, #ffe97f 100%);
}

.boss-avatar-lg {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid #fff;
    box-shadow: 0 0 15px #ffd700, 0 0 30px #ffd700;
}



/* Atomy Video Shopping */
.close-btn {
	position: absolute;
	top: 10px;
	right: 10px;
	padding: 5px 10px;
	border: none;
	background-color: #f44336;
	color: white;
	font-size: 12px;
	cursor: pointer;
	border-radius: 5px;
}

.close-btn:hover {
	background-color: #d32f2f;
}
.popup {
display: none;
overflow: hidden;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.5);
z-index: 9999;
}
.popup-content {
position: absolute;
overflow: hidden;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background-color: white;
padding: 10px;
width:400px;
height:800px;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
max-width: 80%; /* 팝업 최대 너비 설정 */
max-height: 80%; 
}


/* pv 1000 auto slide */
.pv-animate, .pv-animate-right {
  position: absolute;
  top: -20px;
  left: 50%;
  background-color: #d1e7dd;
  color: #0f5132;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.85rem;
  opacity: 0;
  transition: opacity 0.5s;
}
.pv-animate {
  transform: translateX(-130%);
}
.pv-animate-right {
  transform: translateX(30%);
}
  .pv-animate.show {
    opacity: 1;
  }
.pv-animate-right.show {
  opacity: 1;
}


#categoryPanel {
	display: none;
}

.fade-text {
  transition: opacity 0.5s ease-in-out;
  opacity: 1;
}
.fade-text.fade-out {
  opacity: 0;
}
.category-icon-button {
  width: 70px;
  flex-shrink: 0;
}
.category-icon-button .rounded-circle {
  background-color: #f8f9fa;
  font-size: 24px;
  color: #198754; /* 부트스트랩 success 색 */
}




@media (max-width: 768px) {
	.product-title {
		font-size: 11px;
		line-height: 13px;           
	}
	.product-price {
		font-size: 14px;
	}
	.product-pv {
		font-size: 10px;
	}
	.flag-overlay {
		width: 18px !important;
	}
	.cat-item { 
		font-size: 10px;
	}
	.popup-content {
		max-width: 100% !important;
		max-height: 100% !important;
		box-shadow: none !important;
		border: none !important;
		padding: 0 !important;
		border-radius: 0 !important;
		overflow: hidden !important; /* 내용이 넘칠 경우 숨김 */
	}
	.close-btn {
		position: absolute;
		top: 10px;
		right: 10px;
		width:50px;
		cursor: pointer;
	}
	.category-scroll-wrapper {
		overflow-x: auto !important;
		overflow-y: hidden !important;
		-webkit-overflow-scrolling: touch; 
		scroll-behavior: smooth;
		touch-action: pan-x;
	}
	#categoryMenu {
		justify-content: flex-start !important; 
	}
	.category-scroll-wrapper::-webkit-scrollbar {
		display: none;
	}
	#imgKakao,
	#imgNaver,
	#imgHeart,
	#imgLink,
	#imgCopy {
		width: 25px; 
		height: 25px;
	}
}
@media (min-width: 769px) {
	.cat-item { font-size: 14px; }
}

  .line-down {
    width: 2px;
    height: 40px;
    background: #ccc;
    margin: 10px auto;
  }

  .pv-message {
    position: absolute;
    left: -130px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.95);
    padding: 6px 12px;
    border: 2px solid #dc3545;
    border-radius: 8px;
    font-size: 0.95rem;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
  }
  
  
      .don-mall-description {
      background-color: #fff;
      border-radius: 0.25rem;
    }
	.kakao-container {
	  max-width: 420px;
	  width: 100%;
	  margin: 20px auto;
	  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	  background-color: #d7e3f4;
	  display: flex;
	  flex-direction: column;
	  /* height 제거 */
	}
    .kakao-header {
      background-color: #e1ebf4;
      padding: 10px 15px;
      border-bottom: 1px solid #ccc;
      font-weight: bold;
    }
    .kakao-date {
      text-align: center;
      margin: 10px auto;
      background-color: #f2f2f2;
      padding: 4px 8px;
      border-radius: 12px;
      font-size: 12px;
      color: #333;
    }
    .kakao-chat-box {
      flex: 1;
      padding: 10px;
      overflow-y: auto;
    }
    .chat-message {
      display: flex;
      align-items: flex-end;
      margin-bottom: 10px;
      opacity: 0;
      transform: translateY(20px);
      animation: fadeInUp 0.3s ease forwards;
    }
    .chat-message.user {
      justify-content: flex-start;
    }
    .chat-message.bot {
      justify-content: flex-end;
    }
    .message-content {
      max-width: 70%;
      padding: 8px 12px;
      font-size: 14px;
      line-height: 1.4;
    }
    .message-user {
      background-color: #ffffff;
      border-radius: 10px;
      margin-left: 8px;
	  text-align: left;
    }
    .message-bot {
      background-color: #fff066;
      border-radius: 10px;
      margin-right: 8px;
	  text-align: left;
    }
    .kakao-avatar {
      width: 36px;
      height: 36px;
    }
    .avatar-bot img {
      width: 36px;
      height: 36px;
      border-radius: 50%;
    }
    @keyframes fadeInUp {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
.row-split {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.left-side,
.right-side {
  flex: 1 1 45%;
  box-sizing: border-box;
}

.left-side {
  padding: 20px;
  text-align: left;
}
@media (max-width: 768px) {
  .left-side,
  .right-side {
    flex: 1 1 100%;
  }
}
@media (max-width: 768px) {
  .top-company-bg {
    background-size: 100% auto !important;
    background-position: center center !important;
  }
}
  .chat-container {
    max-width: 600px;
    margin: 0 auto;
    font-family: sans-serif;
  }

  .chat-bubble {
    display: inline-block;
    padding: 12px 16px;
    margin: 10px;
    border-radius: 20px;
    max-width: 80%;
    position: relative;
    line-height: 1.4;
  }

  .left {
    background-color: #f1f0f0;
    align-self: flex-start;
    border-top-left-radius: 0;
  }

  .right {
    background-color: #dcf8c6;
    align-self: flex-end;
    border-top-right-radius: 0;
    margin-left: auto;
  }

  .chat-row {
    display: flex;
    flex-direction: column;
  }

  .icon {
    font-size: 1.3rem;
    margin-right: 6px;
  }

  .chat-title {
    font-weight: bold;
    margin-bottom: 4px;
  }
  
//GLOBAL PAGE
  .hover-shadow:hover {
    transform: translateY(-5px);
    transition: 0.3s ease;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  }