/* search button */

#resultList {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border-top: none;
  z-index: 1000;
  max-height: 400px;
  overflow-y: auto;
  list-style: none;
  padding: 0;
  margin: 0;
}

#resultList li {
  padding: 10px;
  border-bottom: 1px solid #eee;
}

#resultList li:last-child {
  border-bottom: none;
}

#resultList li a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #333;
}

#resultList li img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  margin-right: 10px;
}

/* blogs */
.blog-img {
  transition: transform 0.3s ease;
  height: 240px;
}

/* Footer Hover Effect */
.transition {
  transition: all 0.3s ease;
}

.hover-text-white:hover {
  color: #fff !important;
}

.social-icon {
  color: #aaa;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.social-icon:hover {
  color: #fff;
  transform: translateY(-3px) scale(1.1);
}

/* products */
.product-img {
  transition: transform 0.3s ease;
  height: 180px;
}

.product-img:hover {
  transform: scale(1.05);
  height: 180px;
}

/* Password toggle */
.password-field {
  position: relative;
  width: 100%;
}

.password-field input {
  padding-right: 44px;
}

.password-toggle-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #666;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
}

.password-toggle-icon:hover {
  color: #333;
}

.password-toggle-icon:focus-visible {
  outline: 2px solid #e2001a;
  outline-offset: 2px;
}

.blog-img {
  object-fit: contain;
}

.product-thumbnail > img {
  object-fit: contain;
}

/* outlets */
.outlet-img {
  object-fit: contain;
  max-height: 600px;
  width: 100%;
}

.outlet-title {
  color: #83bc2e !important;
}

@media (max-width: 768px) {
  .outlet-img {
    max-height: 300px;
  }
}
