
        /* Custom Styles for nuances not covered by Tailwind utilities */
        .hero-bg {
            background-image: linear-gradient(rgba(43, 36, 32, 0.85), rgba(43, 36, 32, 0.7)), url('https://picsum.photos/seed/leatherfactory/1920/1080');
            background-size: cover;
            background-position: center;
        }
        .gold-gradient-text {
            background: linear-gradient(to right, #D4AF37, #FFE5B4);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .card-hover:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
        }
    