@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

html {
    scroll-behavior: smooth;
}

.hero-gradient {
    background: linear-gradient(to right, #1e1c19, #2c2822, #3d3a34);
}

.zoom-effect {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.zoom-effect:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(201, 177, 143, 0.4);
}

.glow {
    text-shadow: 0 0 10px rgba(230, 215, 195, 0.6);
}

.product-card {
    background: rgba(44, 40, 34, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(201, 177, 143, 0.2);
}

.glass-card {
    background: rgba(30, 28, 25, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(201, 177, 143, 0.2);
}

.neon-border {
    box-shadow: 0 0 5px rgba(201, 177, 143, 0.3),
                0 0 10px rgba(201, 177, 143, 0.2),
                inset 0 0 5px rgba(201, 177, 143, 0.1);
}

.form-message {
    transition: all 0.3s ease;
    max-height: 0;
    overflow: hidden;
}

.form-message.show {
    max-height: 60px;
    padding: 10px;
    margin-top: 10px;
}