/* Fonts */
/* @import url("fonts.css"); */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

@import url("icomoon.css");

/* Bootstrap */
@import url("bootstrap.css");

/* slick slider */
@import url("slick-theme.css");

@import url("slick.css");

/* Clear search button */
.search-box {
  position: relative;
}

.clear-search-btn {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: rgba(0,0,0,0.08);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  line-height: 22px;
  text-align: center;
  font-size: 16px;
  cursor: pointer;
  color: #333;
  display: none; /* shown when input has value */
}

.clear-search-btn:hover {
  background: rgba(0,0,0,0.15);
}

.search-input.has-value ~ .clear-search-btn {
  display: inline-block;
}

.search-input {
  padding-right: 40px; /* room for clear button */
}

/* Floating Chat Boat Icon */
.floating-chat-boat {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  pointer-events: none;
}

.chat-boat-btn {
  width: 60px;
  height: 60px;
  border: none;
  border-radius: 50%;
  background-color: #0af;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chat-boat-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.chat-boat-btn:active {
  transform: scale(0.95);
}

.chat-boat-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
}



/* Responsive adjustments */
@media (max-width: 768px) {
  .floating-chat-boat {
    bottom: 20px;
    right: 20px;
  }
  
  .chat-boat-btn {
    width: 50px;
    height: 50px;
  }
}