html {
            scroll-behavior: smooth;
        }
        .nav-link:hover, .flink:hover {
            color: #D4AF37 !important;
            transform: translateY(-2px);
            transition: all 0.3s ease;
        }
        .btn-primary {
            background-color: #8B0000;
            color: white;
        }
        .btn-primary:hover {
            background-color: #A52A2A;
            transform: scale(1.05);
        }
        .hero-bg {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1600271886742-f049cd451bba?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
        }
        .product-card {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }
        .flink {
            display: inline-block;
            padding: 8px 16px;
            margin: 5px;
            border: 1px solid #e5e7eb;
            border-radius: 4px;
            color: #4b5563;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        .flink:hover {
            border-color: #D4AF37;
            color: #D4AF37;
        }
        .footer-links a:hover {
            color: #D4AF37;
            text-decoration: underline;
        }
        .section-divider {
            border-top: 3px solid #D4AF37;
            width: 80px;
            margin: 1.5rem auto;
        }
