* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
}

body {
  font-family: merri-400;
  background-color: #f5f5dc;
  color: #212121;
}

a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

ul {
  padding: 0;
  margin: 0;
}

input,
textarea {
  border: none;
  outline: none;
}

@font-face {
  font-family: merri-300;
  src: url(/assets/front/fonts/Merriweather_120pt-Light.ttf);
}

@font-face {
  font-family: merri-400;
  src: url(/assets/front/fonts/Merriweather_120pt-Regular.ttf);
}

@font-face {
  font-family: merri-500;
  src: url(/assets/front/fonts/Merriweather_120pt-Medium.ttf);
}

@font-face {
  font-family: merri-600;
  src: url(/assets/front/fonts/Merriweather_120pt-SemiBold.ttf);
}

@font-face {
  font-family: merri-700;
  src: url(/assets/front/fonts/Merriweather_120pt-Bold.ttf);
}

@font-face {
  font-family: merri-800;
  src: url(/assets/front/fonts/Merriweather_120pt-ExtraBold.ttf);
}
@font-face {
  font-family: merri-900;
  src: url(/assets/front/fonts/Merriweather_120pt-Black.ttf);
}

@font-face {
  font-family: lato-300;
  src: url(/assets/front/fonts/Lato-Light.ttf);
}

@font-face {
  font-family: lato-400;
  src: url(/assets/front/fonts/Lato-Regular.ttf);
}

@font-face {
  font-family: lato-700;
  src: url(/assets/front/fonts/Lato-Bold.ttf);
}

@font-face {
  font-family: poppins-400;
  src: url(/assets/front/fonts/Poppins-Regular.ttf);
}

@font-face {
  font-family: kanit-400;
  src: url(/assets/front/fonts/Kanit-Regular.ttf);
}
@font-face {
  font-family: kanit-600;
  src: url(/assets/front/fonts/Kanit-SemiBold.ttf);
}
@font-face {
  font-family: inter-400;
  src: url(/assets/front/fonts/Inter_24pt-Regular.ttf);
}

.btn-close {
  --bs-btn-close-focus-shadow: none;
}

::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  border-radius: 10px;
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: #6f4f1e;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #6f4f1e;
}

::-webkit-scrollbar-corner {
  background-color: transparent;
}
.chat-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #6f4f1e;
    color: white;
    border-radius: 50%;
    padding: 15px;
    cursor: pointer;
    font-size: 24px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  }

  .chat-modal {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 300px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
    overflow: hidden;
    z-index: 1000;
  }

  .hidden {
    display: none;
  }

  .chat-header {
    background: #6f4f1e;
    color: white;
    padding: 10px;
    display: flex;
    justify-content: space-between;
  }

  .chat-body {
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .chat-body input,
  .chat-body textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 5px;
  }

  #send-btn {
    background: #6f4f1e;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
  }
  #close-chat {
    background: transparent;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: color 0.3s ease;
  }

  #close-chat:hover {
    color: #ddd;
  }
