/* StayCMS Boutique theme — minimal supplemental styles
 * Tailwind handles the bulk; this file only adds bits Tailwind can't do inline.
 */

[x-cloak] { display: none !important; }

/* Date input clean look */
input[type="date"] {
    appearance: none;
    -webkit-appearance: none;
}

/* Subtle scroll snap on property gallery */
.gallery-snap {
    scroll-snap-type: x mandatory;
}
.gallery-snap > * {
    scroll-snap-align: start;
}

/* Line clamp helpers (Tailwind 3 has them but theme is on CDN) */
.line-clamp-2 { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.line-clamp-3 { display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

/* Shimmer for loading skeletons */
@keyframes shimmer {
    0% { background-position: -800px 0; }
    100% { background-position: 800px 0; }
}
.shimmer {
    background: linear-gradient(90deg, #F5F1EB 0%, #FBF8F3 50%, #F5F1EB 100%);
    background-size: 1600px 100%;
    animation: shimmer 1.6s linear infinite;
}
