.hero-gradient {
            background: linear-gradient(135deg, #2D2B26 0%, #7F6635 100%);
        }
        .section-padding {
            padding: 5rem 0;
        }
        .hover-scale {
            transition: transform 0.3s ease;
        }
        .hover-scale:hover {
            transform: translateY(-5px);
        }
        .gradient-text {
            background: linear-gradient(135deg, #2D2B26 0%, #7F6635 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .product-card {
            transition: all 0.3s ease;
            border: 1px solid #E0DCD5;
        }
        .product-card:hover {
            box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
            border-color: #2D2B26;
        }
        .contact-input {
            transition: all 0.3s ease;
            border: 1px solid #E0DCD5;
        }
        .contact-input:focus {
            border-color: #2D2B26;
            box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
        }