/* The LINE "add friend" button that floats over every page. LINE green rather
   than the site's own palette on purpose — it has to read as "this opens LINE"
   at a glance, the way it does on every Thai site that has one. */

.line-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px 12px 14px;
  border-radius: 999px;
  background: #06C755;
  color: #fff;
  font-family: 'Sarabun', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(6, 199, 85, 0.4);
  transition: transform 0.15s, box-shadow 0.15s;
}
.line-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(6, 199, 85, 0.48);
}
.line-float-ico { width: 22px; height: 22px; flex: none; }

@media (max-width: 480px) {
  .line-float { right: 12px; bottom: 12px; padding: 11px 16px 11px 12px; font-size: 0.86rem; }
}
