/* ==========================================
   Custom Styling & Theme Overrides
   ========================================== */

/* Center Heading Ornament */
.heading-ornament { 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    gap: 10px; 
    color: #a87c3e; 
    margin-bottom: 12px; 
}
.heading-ornament::before, 
.heading-ornament::after { 
    content: ''; 
    height: 1px; 
    width: 36px; 
    background: linear-gradient(to right, transparent, #a87c3e); 
}
.heading-ornament::after {
    background: linear-gradient(to left, transparent, #a87c3e);
}

/* Left Aligned Heading Ornament */
.heading-ornament-left { 
    display: flex; 
    align-items: center; 
    gap: 8px; 
    color: #a87c3e; 
    margin-bottom: 12px; 
}
.heading-ornament-left::before, 
.heading-ornament-left::after { 
    content: ''; 
    height: 1px; 
    width: 28px; 
    background-color: #a87c3e; 
}

/* Hide Scrollbars */
.hide-scrollbar::-webkit-scrollbar { 
    display: none; 
}
.hide-scrollbar { 
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Slow Rotation Animation for Spiritual Symbols */
@keyframes spinSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
.animate-spin-slow {
    animation: spinSlow 24s linear infinite;
}

/* Hero Multi-Arch Drop Shadow Effect */
.hero-arch-outer {
    box-shadow: 0 20px 40px -15px rgba(168, 124, 62, 0.25);
}

/* Scale effect for products square grid images */
.scale-108 {
    transform: scale(1.08);
}