body {
    -webkit-tap-highlight-color: transparent;
    scroll-behavior: smooth;
}

.font-heading {
    font-family: 'Cinzel', serif;
}

.lotus-divider {
    height: 40px;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='40' viewBox='0 0 100 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50 0 C40 20 20 20 0 40 L100 40 C80 20 60 20 50 0' fill='%23D4AF37' opacity='0.3'/%3E%3C/svg%3E");
    background-repeat: repeat-x;
    background-position: center;
}

.gold-border {
    border: 1px solid rgba(212, 175, 55, 0.4);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.1);
}

.spiritual-gradient {
    background: linear-gradient(135deg, #7A1E1E 0%, #FF7A00 100%);
}

.product-card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.2);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}
