/* Main App Styles */
body {
    font-family: 'Manrope', sans-serif;
    -webkit-font-smoothing: antialiased;
}
.serif-text {
    font-family: 'Times New Roman', Times, serif; /* Elegant fallback for serif needs */
}
.text-gradient-gold {
    background: linear-gradient(to right, #f4c025, #f8d46e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.border-gold-subtle {
    border-color: rgba(244, 192, 37, 0.2);
}

/* Scroll to Top Button Visibility */
.scroll-hidden {
    opacity: 0;
    visibility: hidden;
}
.scroll-visible {
    opacity: 1;
    visibility: visible;
}

/* Favoritos (home e vitrines — alinhado a collection.css) */
.js-toggle-favorite.is-favorite .material-icons-outlined {
    color: #d4af37 !important;
}

.heart-pop {
    animation: heartPop 0.45s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes heartPop {
    0% { transform: scale(1); }
    50% { transform: scale(1.4); }
    100% { transform: scale(1); }
}
