body {
    font-family: 'Inter', sans-serif !important;
    font-size: 14px;
}

a {
    text-decoration: none !important;
    transition: all 0.2s ease-in-out;
}

.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-float img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* Dropdown transition */
.dropdown-menu-custom {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 50;
}

.dropdown-hover:hover .dropdown-menu-custom {
    display: block;
}

.dropdown-menu-custom::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 0;
    right: 0;
    height: 15px;
}

/* Background patterns */
.bg-grid-pattern {
    background-image: radial-gradient(circle, currentColor 1px, transparent 1px);
    background-size: 24px 24px;
}

input[class^="rounded-"],
input[class*=" rounded-"],
select[class^="rounded-"],
select[class*=" rounded-"],
textarea[class^="rounded-"],
textarea[class*=" rounded-"] {
    border-radius: 4px;
}

button[class^="rounded-"],
button[class*=" rounded-"],
a[class^="rounded-"],
a[class*=" rounded-"] {
    border-radius: 4px;
}

.btn-primary {
    @apply px-4 py-2 bg-blue-500 text-white rounded-lg hover:bg-blue-600 transition;
}