/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #F6E8D8;
}
::-webkit-scrollbar-thumb {
    background: #BE9469;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #5D5655;
}

/* Text Selection */
::selection {
    background: #E4AC7C;
    color: #3A332F;
}

/* Image Hover Effects */
.img-hover-zoom {
    overflow: hidden;
}
.img-hover-zoom img {
    transition: transform 0.5s ease;
}
.img-hover-zoom:hover img {
    transform: scale(1.05);
}

.whatsapp-float {
  position: fixed;
  bottom: 60px;
  right: 24px;
  width: 56px;
  height: 56px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  z-index: 999;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(0,0,0,0.3);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}
