#top_banner_wrap {position: relative;padding: 0;}
#top_banner .carousel-item img {cursor: pointer;}
#top_banner .carousel-item-next:not(.carousel-item-start),
#top_banner .active.carousel-item-end {
  transform: translateY(100%);
}
#top_banner .carousel-item-prev:not(.carousel-item-end),
#top_banner .active.carousel-item-left {
  transform: translateY(-100%);
}
#top_banner .carousel-control-next, #top_banner .carousel-control-prev {
  width: 3%;
}
#top_banner .carousel-indicators {
  display: none;
}
.delivery-top a.nav-link {font-size: 14px; padding: 5px .5rem;}
.delivery-top .nav-item img {position: relative; top: 3px;padding-left:20px;}

.left-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    margin: 15px 0;
}

/* 이미지 검색 버튼 스타일 */
.image-search-button {
  background-color: #f8f9fa;
  border: 1px solid #ced4da;
  border-radius: 0;
  padding: 6px 12px;
  cursor: pointer;
  transition: all 0.3s;
  margin-right: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  width: 50px;
  position: relative;
}
.image-search-button:hover {
  background-color: #e9ecef;
  border-color: #ff3300;
}
.image-search-button i {
  font-size: 20px;
  color: #ff3300;
}
.image-search-button:hover i {
  color: #ff3300;
}
.image-search-button::after {
  content: "이미지 검색";
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 12px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  white-space: nowrap;
  z-index: 100;
}
.image-search-button:hover::after {
  opacity: 1;
  visibility: visible;
}
.input-container {
  display: flex;
  align-items: center;
  margin: 15px 0;
}
.input-container input, .input-container button {
  margin-bottom: 0 !important;
}
.head-form-control {
  flex: 1;
  margin-right: 5px;
}

.input-container {
    display: flex;
    justify-content: center; /* 수평 중앙 정렬 */
    align-items: center; /* 수직 중앙 정렬 */
}

.head-form-control {
    width: 100%; /* 너비 100% */
    max-width: 500px; /* 최대 너비 설정 */
    height: 50px; /* 높이 설정 */
    padding: 10px; /* 내부 여백 */
    font-size: 16px; /* 글꼴 크기 */
    border: 3px solid #ff3300; /* 테두리 색상 변경 및 굵기 증가 */
    border-radius: 5px; /* 모서리 둥글게 */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* 그림자 효과 */
    transition: border-color 0.3s, box-shadow 0.3s; /* 전환 효과 */
}

.head-form-control:focus {
    border-color: #ff3300; /* 포커스 시 테두리 색상 */
    box-shadow: 0 2px 8px rgba(255, 51, 0, 0.25); /* 포커스 시 그림자 효과 */
    outline: none; /* 포커스 시 기본 아웃라인 제거 */
}

.search-button {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px; /* 입력 필드와 동일한 높이 */
    padding: 0 10px; /* 좌우 여백 */
    font-size: 20px; /* 글꼴 크기 */
    color: #fff; /* 글자 색상 */
    background-color: #ff3300; /* 배경 색상 */
    border: none; /* 테두리 제거 */
    border-radius: 5px; /* 모서리 둥글게 */
    cursor: pointer; /* 커서 변경 */
    transition: background-color 0.3s; /* 전환 효과 */
    width: 110px;
    font-weight: bold;
}

.search-button:hover {
    background-color: #e62e00; /* 호버 시 배경 색상 */
}

.category-btn {
  background: #e62e00;
  color: white;
  border: none;
  padding: 10px 15px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 5px;
  height: 50px;
  margin-right: 5px;
}