        body { font-family: 'Montserrat', sans-serif; overflow-x: hidden; }
        .font-serif-elegant { font-family: 'Playfair Display', serif; }
        
        /* Animations */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 1.2s ease-out;
        }
        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        .fade-in {
            animation: fadeIn 2s ease-in forwards;
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .diamond-btn {
            transition: all 0.5s ease;
        }
        .diamond-btn:hover {
            transform: rotate(45deg) scale(1.1);
            border-color: #C19A5B;
        }

        /* Search & Cart Overlays */
        .side-panel {
            transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
        }

        /* Image hover effect */
        .img-zoom-container:hover img {
            transform: scale(1.08);
        }