body { 
    background-color: #FFFCF8; 
    color: #2D1B2E; 
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Custom scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #F0EBE1; }
::-webkit-scrollbar-thumb { background: #B58A61; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #9a734e; }

/* Page transitions */
.page-view { 
    display: none; 
    opacity: 0; 
    transition: opacity 0.4s ease, transform 0.4s ease; 
}

.page-view.active { 
    display: block; 
    opacity: 1; 
    animation: fadeIn 0.5s ease-out;
}

/* Vintage borders */
.vintage-border { 
    border: 1px solid #B58A61; 
    padding: 4px; 
}

.vintage-inner { 
    border: 1px solid #B58A61; 
}

/* Tailwind custom text color fallback */
.text-brass {
    --tw-text-opacity: 1;
    color: rgb(181 138 97 / var(--tw-text-opacity, 1));
}

/* Property card hover effects */
.property-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.property-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(45, 27, 46, 0.15);
}

/* Image hover zoom */
.image-zoom {
    overflow: hidden;
}

.image-zoom img {
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-zoom:hover img {
    transform: scale(1.08);
}

/* Custom date input styling */
input[type="date"]::-webkit-calendar-picker-indicator {
    filter: sepia(1) hue-rotate(330deg) saturate(3);
    cursor: pointer;
}

/* Loading skeleton */
.skeleton {
    background: linear-gradient(90deg, #F0EBE1 25%, #e5dfd3 50%, #F0EBE1 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Mobile menu animation */
.mobile-menu-enter {
    animation: slideDown 0.3s ease-out;
}

/* Success animation */
.checkmark-animation {
    animation: scaleIn 0.5s ease-out;
}

/* Print styles */
@media print {
    header, footer, .no-print { display: none !important; }
    body { background: white; }
}