@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&family=Montserrat:wght@300;400;600&display=swap');

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #f8f5f2;
}

.title-font {
    font-family: 'Cinzel', serif;
}

.hero-bg {
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    background-color: rgba(0, 0, 0, 0.5);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.spiritual-bg {
    background-color: #4B0082;
}

.spiritual-text {
    color: #d4af37;
}

.spiritual-border {
    border-color: #d4af37;
}

.cart-item {
    transition: all 0.3s ease;
}

.cart-item:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.bg-mystic-dark {
    background-color: #1b1a29;
}

.bg-mystic-purple {
    background-color: #6e3bbc;
}

.bg-mystic-gold {
    background-color: #c7a17a;
}

.text-mystic-dark {
    color: #1b1a29;
}

.text-mystic-light {
    color: #e0dede;
}

.text-mystic-gold {
    color: #c7a17a;
}

.text-mystic-purple {
    color: #6e3bbc;
}

.border-mystic-purple {
    border-color: #6e3bbc;
}

.spiritual-icon {
    font-size: 2.5rem;
    color: #d4a017;
    margin-bottom: 1rem;
}

.nav-link {
    position: relative;
}

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: #d4a017;
    transition: width 0.3s ease;
}

.nav-link:hover:after {
    width: 100%;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
} 