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

:root {
    --primary: #0A2F25;
    --bg-dark: #051A14;
    --bg-gradient: linear-gradient(160deg, #0A2F25 0%, #051A14 50%, #010806 100%);

    /* True Metallic Deep Gold Gradient Texture */
    --gold-metallic: linear-gradient(135deg, #8C6B1F 0%, #C5A046 25%, #F5D76E 50%, #D4AF37 75%, #8C6B1F 100%);
    --gold-base: #C5A046;
    --gold-rich: #D4AF37;
    --gold-shadow: #8C6B1F;
    --gold-highlight: #F5D76E;

    --text-main: #F4F4F4;
    --text-muted: #B5B5B5;
    --text-dark: #1F1F1F;
    --font-heading: 'Cinzel', serif;
    --font-body: 'Inter', sans-serif;

    /* Fluid Typography System */
    --fs-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.85rem);
    --fs-sm: clamp(0.85rem, 0.8rem + 0.25vw, 0.95rem);
    --fs-base: clamp(0.95rem, 0.9rem + 0.25vw, 1.05rem);
    --fs-md: clamp(1.1rem, 1rem + 0.5vw, 1.25rem);
    --fs-lg: clamp(1.25rem, 1.1rem + 0.75vw, 1.5rem);
    --fs-xl: clamp(1.5rem, 1.25rem + 1.25vw, 2.2rem);
    --fs-xxl: clamp(2.2rem, 1.5rem + 3.5vw, 4.5rem);
    --fs-title: clamp(1.8rem, 1.2rem + 2.5vw, 3.2rem);

    /* Section Spacing */
    --section-padding: clamp(4rem, 8vh, 10rem);
    --container-width: 1280px;

    --glass-bg: rgba(255, 255, 255, 0.02);
    --glass-border: rgba(212, 175, 55, 0.15);
    --drawer-bg: rgba(5, 20, 15, 0.98);
    --radius: 12px;
    --secondary: #D4AF37;
    --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.5);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background: var(--bg-dark);
    background-image: var(--bg-gradient);
    color: var(--text-main);
    line-height: 1.8;
    overflow-x: hidden;
    min-height: 100vh;
    font-size: var(--fs-base);
}

p {
    line-height: 1.7;
}

.product-title {
    font-size: var(--fs-md);
    line-height: 1.4;
    font-family: var(--font-heading);
    color: var(--text-main);
}

.course-title {
    font-size: var(--fs-md);
    line-height: 1.4;
    font-family: var(--font-heading);
    color: var(--text-main);
}

.footer-title {
    font-size: var(--fs-md);
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
    color: var(--gold-highlight);
}

.nav-link {
    font-size: 0.95rem;
}

body.drawer-open {
    overflow: hidden;
}

/* Canvas Background */
#premium-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    background: transparent;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--text-main);
    font-weight: 400;
    line-height: 1.3;
}

/* Metallic Highlight Utility */
h1 strong,
h2 strong,
h3 strong,
.gold-text {
    background: var(--gold-metallic);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
    display: inline-block;
    filter: drop-shadow(0 2px 5px rgba(212, 175, 55, 0.2));
}

a {
    text-decoration: none;
    color: var(--gold-base);
    transition: var(--transition);
}

a:hover {
    color: #FFF;
}

/* Premium Gold Icons */
.gold-icon {
    color: var(--gold-base);
    background: var(--gold-metallic);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 4px 10px rgba(212, 175, 55, 0.4));
    transition: var(--transition);
}

.gold-icon:hover,
.glass-card:hover .gold-icon {
    transform: scale(1.05);
    filter: drop-shadow(0 6px 15px rgba(212, 175, 55, 0.6)) brightness(1.1);
}

/* Premium Gold Icon Circles */
.gold-icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(11, 61, 46, 0.9) !important;
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: inset 0 0 15px rgba(212, 175, 55, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}

.glass-card:hover .gold-icon-circle {
    box-shadow: inset 0 0 25px rgba(212, 175, 55, 0.25), 0 5px 20px rgba(11, 61, 46, 0.6);
    border-color: rgba(212, 175, 55, 0.6);
    transform: translateY(-5px);
}

.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
}

/* Premium Utility Grid System */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.contact-grid {
    grid-template-columns: 0.8fr 1.2fr;
}

/* Base Cards */
.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 2.5rem;
    box-shadow: var(--shadow-soft);
    position: relative;
    transition: var(--transition);
    overflow: hidden;
}

.glass-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 15px 45px rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.5);
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(5, 26, 20, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition);
    min-height: 72px !important;
    height: 72px !important;
    padding: 0 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding-top: 0;
    padding-bottom: 0;
}

/* Premium Vastu Logo Optimization */
.navbar-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.navbar-logo img {
    height: 72px !important; /* Kept exactly as requested */
    width: auto !important;
    object-fit: contain;
    background: #FFFFFF;
    border-radius: 50%;
    border: 2px solid var(--gold-base);
    padding: 4px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.25));
    transition: all 0.3s ease;
    position: relative;
    top: 0;
    margin: 0;
}

.navbar-logo:hover img {
    transform: scale(1.05) rotate(2deg);
    filter: drop-shadow(0 0 12px rgba(212, 175, 55, 0.4));
    border-color: var(--gold-highlight);
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    background: var(--gold-metallic);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Removed previous .site-logo-img styles as they are merged into .navbar-logo img */

.nav-links ul {
    list-style: none;
    display: flex;
    gap: 28px; /* Optimized gap */
    align-items: center;
}

.nav-links a {
    font-size: 0.95rem; /* Slightly reduced for balance */
    color: var(--text-main);
    letter-spacing: 1px;
    position: relative;
    transition: var(--transition);
}

.site-header a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--gold-metallic);
    transition: var(--transition);
}

.site-header a:hover::after,
.site-header a.active::after {
    width: 100%;
}

.site-header a:hover,
.site-header a.active {
    background: var(--gold-metallic);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    font-size: 1.5rem;
}

.hamburger i {
    background: var(--gold-metallic);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* AJAX Cart Button */
.cart-trigger {
    cursor: pointer;
    position: relative;
    background: none;
    border: none;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cart-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-trigger i {
    background: var(--gold-metallic);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cart-count {
    background: var(--gold-metallic);
    color: var(--text-dark);
    font-size: 0.75rem;
    font-weight: 700;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -5px;
    margin-top: -10px;
}

/* Premium Luxury Buttons */
.btn-luxury {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1.1rem 2.8rem;
    background: var(--gold-metallic);
    color: var(--text-dark) !important;
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: 1.5px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    font-size: 0.85rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3), inset 0 0 10px rgba(255, 255, 255, 0.2);
}

.btn-luxury::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
}

.btn-luxury:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3), inset 0 0 15px rgba(255, 255, 255, 0.3);
}

.btn-luxury:hover::after {
    animation: buttonShine 1s ease-in-out infinite;
}

@keyframes buttonShine {
    0% { left: -100%; }
    100% { left: 200%; }
}

.btn-luxury-outline {
    background: transparent;
    border: 1px solid var(--gold-rich);
    color: var(--gold-highlight) !important;
    padding: 1.1rem 2.8rem;
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-size: 0.85rem;
    transition: var(--transition);
}

.btn-luxury-outline:hover {
    background: rgba(212, 175, 55, 0.05);
    border-color: var(--gold-highlight);
    color: #FFF !important;
    transform: translateY(-3px);
}

/* Drawers & Overlay */
.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}

.drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

.side-drawer {
    position: fixed;
    top: 0;
    height: 100vh;
    background: var(--drawer-bg);
    z-index: 10001;
    padding: 0;
    transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

/* ============================================
   PREMIUM MOBILE MENU REDESIGN
   ============================================ */

/* Mobile drawer with luxury gradient */
.mobile-menu.drawer-left {
    background: linear-gradient(160deg, #0A2F25 0%, #051A14 60%, #000000 100%);
    border-right: 1px solid rgba(212, 175, 55, 0.15);
    box-shadow: 4px 0 40px rgba(0, 0, 0, 0.8);
}

/* Inner wrapper: full-height flex column */
.mobile-menu-inner {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding-bottom: 2rem;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 1.5rem 1.8rem 2rem;
}

/* Brand header area inside drawer */
.mobile-menu-brand-header {
    padding: 2rem 0 1.2rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    margin-bottom: 0.3rem;
    position: relative;
}

.mobile-menu-brand-header::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--gold-metallic);
}

/* Nav links: premium style */
.mobile-nav-menu {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
}

.mobile-nav-menu .nav-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.65rem 0.5rem;
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-family: var(--font-heading);
    color: rgba(255, 255, 255, 0.75);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mobile-nav-menu .nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background: var(--gold-metallic);
    border-radius: 2px;
    transition: height 0.3s ease;
}

.mobile-nav-menu .nav-link:hover,
.mobile-nav-menu .nav-link.active-link {
    color: var(--gold-highlight) !important;
    -webkit-text-fill-color: var(--gold-highlight) !important;
    padding-left: 1.2rem;
    background: rgba(212, 175, 55, 0.04);
}

.mobile-nav-menu .nav-link:hover::before,
.mobile-nav-menu .nav-link.active-link::before {
    height: 60%;
}

/* Social icons: refined circular buttons */
.mobile-menu-socials {
    display: flex !important;
    gap: 1rem !important;
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
    flex-wrap: wrap;
}

.mobile-menu-socials a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.25);
    background: rgba(212, 175, 55, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.mobile-menu-socials a:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.6);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
}

.mobile-menu-socials a i {
    font-size: 0.9rem;
}

/* Account CTA section */
.mobile-account-section {
    margin-top: auto !important;
    padding-top: 1.5rem !important;
    border-top: 1px solid rgba(212, 175, 55, 0.1) !important;
}

.mobile-account-section .account-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 1rem 2rem !important;
    background: var(--gold-metallic) !important;
    color: #1a1a1a !important;
    border-radius: 4px !important;
    font-family: var(--font-heading) !important;
    font-size: 0.8rem !important;
    font-weight: 700 !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    border: none !important;
    box-shadow: 0 5px 25px rgba(212, 175, 55, 0.3) !important;
    transition: all 0.3s ease !important;
}

.mobile-account-section .account-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5) !important;
}

/* Mobile Nav Drawer Width Fixed to 80% */
.drawer-left {
    left: 0;
    width: 82%;
    max-width: 340px;
    transform: translateX(-100%);
    border-right: 1px solid var(--glass-border);
}

.drawer-left.active {
    transform: translateX(0);
}

/* Cart Drawer remains max 380px, but 75% on mobile */
.drawer-right {
    right: 0;
    width: 75%;
    max-width: 380px;
    transform: translateX(100%);
    border-left: 1px solid var(--glass-border);
}

.drawer-right.active {
    transform: translateX(0);
}

.drawer-close {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10002;
    padding: 10px;
    line-height: 1;
}

.drawer-close i {
    background: var(--gold-metallic);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.drawer-close:hover {
    transform: scale(1.1);
    filter: brightness(1.2);
}

/* Layouts */
.section-padding {
    padding: var(--section-padding) 0;
}

.page-hero-container {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-title {
    text-align: center;
    font-size: var(--fs-title);
    margin-bottom: 4rem;
    letter-spacing: 2px;
    color: var(--text-main);
    font-weight: 500;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

/* Product/Course Images - Fixed Aspect Ratio & Contain */
.item-img-placeholder {
    width: calc(100% + 5rem);
    height: 300px;
    background: #020806;
    margin: -2.5rem -2.5rem 1.5rem -2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid var(--glass-border);
    overflow: hidden;
}

.item-img-placeholder img {
    width: 100%;
    height: 100%;
    /* Switched from cover to contain to prevent cropping on full-width images */
    object-fit: contain;
    transition: transform 0.6s ease;
}

.glass-card:hover .item-img-placeholder img {
    transform: scale(1.05);
}

/* Course Thumbnail Specific Overlay */
.course-thumb-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    pointer-events: none;
    opacity: 0.9;
}

.course-thumb-overlay i {
    background: var(--gold-metallic);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.8));
}

/* WhatsApp Floating Widget */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: var(--gold-metallic);
    color: var(--text-dark) !important;
    -webkit-text-fill-color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 2.2rem;
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.4);
    z-index: 9999;
    transition: var(--transition);
    animation: floatingPulse 2.5s infinite;
}

.whatsapp-float:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.6);
}

@keyframes floatingPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(212, 175, 55, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}


/* Premium Hero System v2 */
.hero-premium {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
    background: radial-gradient(circle at 50% 50%, #0B3D2E 0%, #051A14 70%, #000000 100%);
    border-bottom: 1px solid var(--glass-border);
}

.hero-ambient-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 20%, rgba(11, 61, 46, 0.4) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(140, 107, 31, 0.05) 0%, transparent 40%);
    z-index: 0;
}

.hero-sacred-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(212, 175, 55, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
    z-index: 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 50px;
    color: var(--gold-highlight);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
}

.hero-title {
    font-size: var(--fs-xxl);
    margin-bottom: 1.8rem;
    max-width: 700px;
}

.gold-glow-text {
    background: var(--gold-metallic);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.3));
}

.hero-subtitle {
    font-size: var(--fs-md);
    color: var(--text-muted);
    max-width: 520px;
    margin-bottom: 3.5rem;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.hero-social-trust {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.trust-stars {
    color: var(--gold-rich);
    font-size: 0.9rem;
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.4));
}

.trust-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Desktop Visual Composition */
.hero-visual-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-desktop-visual {
    position: relative;
    width: 450px;
    height: 450px;
}

.luxury-mandala-wrap {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mandala-om {
    font-size: 8rem;
    background: var(--gold-metallic);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.6)) drop-shadow(0 0 20px rgba(212, 175, 55, 0.4));
    animation: floatOm 6s ease-in-out infinite;
    z-index: 5;
}

.ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.15);
    transition: var(--transition);
}

.ring-1 { width: 100%; height: 100%; animation: orbit 20s linear infinite; border-style: dashed; }
.ring-2 { width: 80%; height: 80%; animation: orbit 15s linear reverse infinite; border-color: rgba(212, 175, 55, 0.1); }
.ring-3 { width: 60%; height: 60%; border-style: solid; opacity: 0.3; }

@keyframes floatOm {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@keyframes orbit {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Mobile Visual (Logo Aura) */
.hero-mobile-visual {
    display: none; /* Desktop default */
}

.logo-aura-wrap {
    position: relative;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.aura-glow {
    position: absolute;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    filter: blur(20px);
    z-index: 1;
}

.hero-mobile-logo {
    width: 130px;
    height: 130px;
    object-fit: contain;
    z-index: 10;
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.5));
    border-radius: 50%;
    background: #FFF;
    padding: 10px;
    border: 2px solid var(--gold-base);
}

.aura-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulseAura 3s ease-in-out infinite;
}

@keyframes pulseAura {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0.8; }
}
        box-shadow: 0 0 40px rgba(140, 107, 31, 0.1);
    }

    100% {
        opacity: 1;
        box-shadow: 0 0 80px rgba(140, 107, 31, 0.3);
    }
}

/* Best Seller Badge UI Polish */
.badge-bestseller {
    position: absolute;
    top: 1.2rem;
    left: 1.2rem;
    background: var(--gold-metallic);
    color: #000;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    z-index: 10;
    box-shadow: 0 5px 15px rgba(140, 107, 31, 0.4);
    transition: var(--transition);
}

.glass-card:hover .badge-bestseller {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(140, 107, 31, 0.6);
}

/* Carousel */
.slider-container {
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
}

.slider-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    gap: 2rem;
}

.slide {
    flex: 0 0 calc(33.333% - 1.33rem);
}

.slider-arrows {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.slider-arrow {
    width: 40px;
    height: 40px;
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: transparent;
    transition: var(--transition);
}

.slider-arrow i {
    background: var(--gold-metallic);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.slider-arrow:hover {
    background: rgba(140, 107, 31, 0.1);
    border-color: var(--gold-base);
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--glass-border);
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    background: var(--gold-metallic);
    transform: scale(1.5);
}


/* Forms & Inputs */
.form-control {
    width: 100%;
    padding: 0.9rem 1.2rem;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--glass-border);
    border-radius: 4px;
    color: var(--text-main);
    font-family: var(--font-body);
}

.form-control:focus {
    outline: none;
    border-color: var(--gold-base);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.1);
}

/* Footer - Multi-column */
footer {
    background: #000;
    padding: 5rem 0 2rem;
    border-top: 1px solid var(--glass-border);
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(250px, 1.5fr) 1fr 1fr 1.2fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h3 {
    font-size: 1.1rem;
    color: var(--text-main);
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 0.8rem;
}

.footer-col a {
    color: var(--text-muted);
    font-size: 0.9rem;
    position: relative;
    transition: var(--transition);
}

.footer-col a:hover {
    color: #FFF;
    padding-left: 5px;
    text-shadow: 0 0 10px var(--gold-base);
}

/* Footer Branding Fix */
.footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    max-width: 100%;
}

.footer-brand img {
    width: 50px !important;
    height: 50px !important;
    object-fit: contain !important;
    flex-shrink: 0;
}

.footer-brand .brand-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.footer-brand h3 {
    margin: 0 !important;
    font-size: 1.25rem !important;
    background: var(--gold-metallic);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2 !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.footer-brand p {
    font-size: 0.75rem !important;
    margin: 0.2rem 0 0 0 !important;
    opacity: 0.7;
    color: var(--text-muted);
    white-space: nowrap;
}

/* Footer Socials */
.footer-socials {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.footer-socials a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
}

.footer-socials a:hover {
    border-color: var(--gold-base);
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
}

.footer-socials a i {
    font-size: 1.4rem;
}

/* Footer Contact */
.footer-email {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-muted);
    margin-top: 1rem;
    font-size: 0.9rem;
}

.footer-email i {
    font-size: 1.1rem;
    color: var(--gold-base);
}

.footer-divider {
    height: 1px;
    background: var(--glass-border);
    margin: 2rem 0;
}

.footer-bottom {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer-bottom a {
    background: var(--gold-metallic);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Mobile Menu Specifics */
.mobile-nav-menu {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.mobile-nav-menu a {
    font-size: 1.3rem;
    color: var(--text-main);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: var(--font-heading);
    transition: var(--transition);
    border-bottom: 1px solid transparent;
    padding-bottom: 0.5rem;
    width: max-content;
}

.mobile-nav-menu a:hover {
    background: var(--gold-metallic);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding-left: 10px;
    border-bottom: 1px solid var(--gold-base);
}

.mobile-socials {
    display: flex;
    gap: 1rem;
    margin-top: 3rem;
    justify-content: flex-start;
}

.mobile-socials a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid var(--gold-base);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.mobile-socials a i {
    font-size: 1.2rem;
    background: var(--gold-metallic);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.mobile-socials a:hover {
    background: var(--gold-metallic);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.mobile-socials a:hover i {
    -webkit-text-fill-color: #000;
}

/* Fade Smooth */
.fade {
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

/* CTA Buttons Base (Desktop Equal Width) */
.cta-button {
    flex: 1;
    max-width: 280px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* --- Comprehensive Mobile Responsiveness Overrides --- */

/* Tablet & Smaller Desktop */
@media (max-width: 1024px) {
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .slide {
        flex: 0 0 calc(50% - 1rem);
    }
}

/* Trust Bar & Grid Base */
.trust-bar-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-main);
}

.trust-item i {
    font-size: 2rem;
    transition: var(--transition);
}

.trust-item span {
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.trust-item small {
    color: var(--text-muted);
    font-weight: 400;
    font-size: 0.85rem;
}

.trust-item:hover i {
    transform: scale(1.1);
    filter: drop-shadow(0 0 8px var(--gold-base));
}

/* Product Detail Page Components */
.product-image-container {
    background: rgba(255, 255, 255, 0.03);
    /* Slightly more visible */
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    /* Reduced further */
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    padding: 3rem;
    /* Increased padding to breathe */
}

.product-ambient-glow {
    position: absolute;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

#main-product-img {
    position: relative;
    z-index: 1;
    max-width: 70%;
    /* Reduced from 90% */
    max-height: 320px;
    /* Reduced from 400px */
    object-fit: contain;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.7));
    transition: var(--transition);
}

/* Mobile Devices (max 768px) */
@media (max-width: 768px) {
    nav.nav-links, 
    .nav-links, 
    .nav-links ul,
    .nav-links li {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
        height: 0 !important;
        width: 0 !important;
        overflow: hidden !important;
        position: absolute !important;
    }

    .hamburger {
        display: block !important;
    }

    /* 1. Global Mobile Typography (Responsive Scaling) */
    h1,
    .hero-title {
        font-size: clamp(2rem, 6vw, 3rem) !important;
        line-height: 1.2 !important;
    }

    h2,
    .section-title {
        font-size: clamp(1.6rem, 5vw, 2.4rem) !important;
    }

    h3 {
        font-size: 1.3rem !important;
    }

    p,
    .hero-subtitle {
        font-size: 0.95rem !important;
        line-height: 1.7 !important;
    }

    .btn {
        font-size: 0.9rem !important;
        padding: 0.7rem 1.5rem !important;
    }

    .navbar a,
    .nav-link {
        font-size: 0.9rem !important;
    }

    .site-header {
        display: flex !important; 
        visibility: visible !important;
        opacity: 1 !important;
        height: 72px !important;
        min-height: 72px !important;
        padding: 0 15px !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        z-index: 9999 !important;
        background: rgba(5, 26, 20, 0.98) !important;
        align-items: center !important;
        justify-content: space-between !important;
    }

    .navbar-container {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        height: 100% !important;
    }

    .navbar-logo img {
        height: 58px !important;
        width: auto !important;
        padding: 3px;
    }

    .site-logo-text {
        font-size: 1rem !important;
        letter-spacing: 0.5px !important;
    }

    .hamburger {
        font-size: 1.2rem !important;
    }

    .cart-trigger {
        font-size: 1rem !important;
    }

    .cart-count {
        width: 16px !important;
        height: 16px !important;
        font-size: 0.6rem !important;
    }

    /* 3. Hamburger Menu Responsive Refinement */
    .mobile-menu {
        top: 72px !important;
        height: calc(100vh - 72px) !important;
        overflow: hidden !important;
        padding: 0 !important;
        z-index: 9998 !important;
    }

    .mobile-menu-inner {
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-between !important;
        height: 100% !important;
        overflow-y: auto !important;
    }

    .mobile-menu-content {
        padding: 40px 30px 60px 30px !important; /* Increased bottom padding */
        min-height: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        text-align: left !important;
        overflow-y: auto !important; /* Ensures scrolling if content is too tall */
        -webkit-overflow-scrolling: touch;
    }

    .mobile-menu .navbar-logo {
        margin-bottom: 2.5rem !important;
        display: flex !important;
        justify-content: flex-start !important;
        width: 100%;
    }

    .mobile-menu .navbar-logo img {
        width: 55px !important;
        height: 55px !important;
        background: transparent !important;
        border: none !important;
        padding: 0 !important;
        object-fit: contain !important;
    }

    .mobile-nav-menu {
        width: 100%;
        display: flex !important;
        flex-direction: column !important;
        gap: 0 !important;
        margin-bottom: 2rem !important;
    }

    .mobile-nav-menu .nav-link {
        font-size: 1rem !important;
        font-family: var(--font-heading) !important;
        color: var(--text-main) !important;
        text-transform: uppercase !important;
        letter-spacing: 1.2px !important;
        padding: 0.8rem 0 !important;
        border-bottom: none !important;
        width: 100% !important;
        display: block !important;
        transition: all 0.3s ease;
    }

    .mobile-nav-menu .nav-link:last-child {
        border-bottom: none !important;
    }

    .mobile-nav-menu .nav-link:hover {
        color: var(--gold-highlight) !important;
        background: rgba(212, 175, 55, 0.05);
    }

    .mobile-menu-socials {
        margin-top: 1.5rem !important;
        margin-bottom: 2.5rem !important;
        display: flex !important;
        justify-content: flex-start !important;
        gap: 1.5rem !important;
        width: 100%;
    }

    /* Account/Login Button Refinement */
    .mobile-account-section {
        width: 100% !important;
        margin-top: auto !important;
        padding-top: 2rem !important;
        border-top: 1px solid rgba(255,255,255,0.1) !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important; /* Button stays centered */
    }

    .mobile-account-section .account-btn {
        background: linear-gradient(135deg, #d4af37 0%, #f2d06b 50%, #d4af37 100%) !important;
        color: #1a1a1a !important;
        border-radius: 50px !important;
        padding: 0.9rem 2rem !important;
        font-size: 0.85rem !important;
        font-weight: 700 !important;
        width: 90% !important;
        max-width: 280px !important;
        box-shadow: 0 5px 20px rgba(140, 107, 31, 0.5) !important;
        text-align: center !important;
        text-transform: uppercase !important;
        letter-spacing: 1px !important;
        border: none !important;
    }

    /* 4. Product Detail Page Spacing Fix */
    .product-image-container {
        min-height: 260px !important;
        padding: 1.5rem !important;
        margin-bottom: 2rem !important;
    }

    #main-product-img {
        max-height: 200px !important;
    }

    .grid-2 {
        gap: 2.5rem !important;
        margin-bottom: 3rem !important;
    }

    /* 5. Course Page Button Alignment Fix */
    .course-purchase-wrapper {
        flex-direction: column !important;
        gap: 1.5rem !important;
        text-align: center !important;
        padding-top: 1.5rem !important;
    }

    .unlock-btn {
        width: 100% !important;
        text-align: center !important;
    }

    /* 5.1 Add to Cart Form Fix */
    .ajax-add-to-cart {
        flex-direction: column !important;
        gap: 1rem !important;
        align-items: stretch !important;
    }

    .ajax-add-to-cart div[style*="width: 120px"] {
        width: 100% !important;
    }

    .ajax-add-to-cart input {
        height: 50px !important;
    }

    .ajax-add-to-cart .btn {
        padding: 1.2rem !important;
        width: 100% !important;
    }

    /* 6. Trusted By Section Fix (Hero) */
    .hero-trust-bar {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 0.8rem !important;
    }

    /* 7. Hero Section Responsive Refinement */
    .hero {
        padding-top: 100px !important;
        min-height: auto !important;
        padding-bottom: 4rem !important;
    }

    .hero-content {
        max-width: 100% !important;
    }

    .hero .container {
        display: flex !important;
        flex-direction: column !important;
    }

    .hero-visual {
        order: -1 !important;
        margin-top: 0 !important;
        margin-bottom: 2rem !important;
    }

    .vastu-mandala {
        width: 180px !important;
        height: 180px !important;
    }

    .vastu-mandala i {
        font-size: 4.5rem !important;
    }

    .fade.stagger-1 {
        justify-content: center !important;
        width: 100% !important;
    }

    .fade.stagger-1 a {
        width: 100% !important;
    }

    /* 8. Global Spacing Optimization */
    .section-padding {
        padding: 3rem 0 !important;
    }

    /* Global fix for header overlap on all pages */
    section:first-of-type {
        padding-top: 100px !important;
    }

    .section-title {
        margin-bottom: 2.5rem !important;
    }

    .glass-card {
        padding: 1.5rem !important;
    }

    .item-img-placeholder {
        height: 220px !important;
        margin: -1.5rem -1.5rem 1.2rem -1.5rem !important;
        width: calc(100% + 3rem) !important;
    }

    /* 9. Responsive Grid Fixes */
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    .footer-grid {
        grid-template-columns: 1fr !important;
        text-align: center !important;
        gap: 2rem !important;
    }

    .footer-col {
        padding-left: 0 !important;
    }

    .slide {
        flex: 0 0 100% !important;
    }

    /* About Page Hero Padding */
    section[style*="padding: 10rem"] {
        padding: 120px 0 3rem !important;
    }

    /* Footer Mobile Overrides */
    footer {
        padding: 3rem 0 2rem !important;
    }

    .footer-grid {
        grid-template-columns: 1fr !important;
        text-align: center !important;
        gap: 2.5rem !important;
    }

    .footer-brand {
        flex-direction: column !important;
        gap: 1rem !important;
        justify-content: center !important;
    }

    .footer-socials {
        justify-content: center !important;
    }

    .footer-email {
        justify-content: center !important;
    }

    .footer-bottom {
        margin-top: 2rem !important;
    }

    /* Mobile Text Centering Improvements */
    .hero-content,
    .hero-text {
        text-align: center;
        align-items: center;
        margin: 0 auto;
    }

    .hero-buttons {
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 16px;
    }

    .trust-badge,
    .hero-trust {
        justify-content: center;
        text-align: center;
        margin: 0 auto;
    }

    .product-card,
    .product-card-content,
    .glass-card {
        text-align: center;
    }

    .course-card,
    .course-content {
        text-align: center;
        align-items: center;
    }

    .about-section,
    .about-content,
    .about-preview-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .contact-section,
    .contact-content {
        text-align: center;
    }

    /* Global Mobile Text Centering */
    .hero-content,
    .hero-text,
    .section-title,
    .section-padding p,
    .about-content,
    .about-preview-content,
    .contact-section,
    .contact-content,
    .trust-item,
    .glass-card,
    .product-card-content,
    .course-content {
        text-align: center !important;
        align-items: center !important;
        justify-content: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .container {
        text-align: center !important;
    }

    footer,
    .footer-content,
    footer,
    .footer-content {
        text-align: left !important;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 2.5rem 1.2rem !important;
    }

    .footer-col {
        text-align: left !important;
        align-items: flex-start !important;
    }

    .footer-col:first-child,
    .footer-col:last-child {
        grid-column: span 2;
        text-align: center !important;
        align-items: center !important;
    }

    .footer-col:last-child {
        margin-top: 1rem;
        border-top: 1px solid rgba(255,255,255,0.05);
        padding-top: 2rem;
    }

    .footer-brand {
        justify-content: center !important;
    }

    .footer-socials {
        justify-content: center !important;
    }

    .footer-col h3 {
        font-size: 0.95rem !important;
        margin-bottom: 1.2rem !important;
    }

    .footer-col ul {
        display: block !important;
        padding: 0 !important;
    }

    .footer-col li {
        margin-bottom: 0.8rem !important;
        font-size: 0.85rem !important;
    }

    .grid-2,
    .grid-3,
    .grid-4,
    .contact-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    .trust-bar-grid,
    .mobile-grid-2 {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        grid-auto-rows: 1fr !important;
        gap: 1.2rem !important;
    }

    .trust-item {
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        text-align: center !important;
        gap: 0.5rem !important;
        padding: 1rem !important;
        background: rgba(255, 255, 255, 0.03);
        border-radius: 12px;
        border: 1px solid rgba(212, 175, 55, 0.1);
        height: 155px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .trust-item i {
        font-size: 1.8rem !important;
    }

    .trust-item span {
        font-size: 0.95rem !important;
    }

    /* Fix Header Z-Index on Mobile */
    .site-header {
        z-index: 999 !important;
    }

    /* Side Drawers Z-Index (Must be higher than header) */
    .side-drawer {
        z-index: 100000 !important;
    }

    .drawer-overlay {
        z-index: 99999 !important;
    }

    /* Expand Sidebar to Full Height */
    body.menu-open .mobile-menu {
        top: 0 !important;
        height: 100vh !important;
    }

    .site-header,
    .mobile-menu {
        transition: all 0.35s ease !important;
    }

    /* CTA Buttons Mobile Refinements */
    .cta-buttons-wrapper {
        gap: 0.6rem !important;
        flex-wrap: nowrap !important;
        padding: 0 !important;
    }
    .cta-button {
        padding: 0.7rem 0.4rem !important;
        font-size: 0.75rem !important;
        flex: 1 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        letter-spacing: 0.5px !important;
    }
    .cta-button i {
        margin-right: 4px !important;
        flex-shrink: 0;
    }

    /* Course Card & Button Mobile Refinements */
    .course-title {
        font-size: 1.1rem !important;
        margin-bottom: 0.8rem !important;
    }
    .glass-card .btn {
        padding: 0.5rem 0.9rem !important;
        font-size: 0.75rem !important;
        width: auto !important;
        white-space: nowrap !important;
    }
    .glass-card span[style*="font-size: 1.4rem"],
    .glass-card span[style*="font-size: 1.3rem"] {
        font-size: 1.1rem !important;
    }

    /* Product Page Search Bar & Mobile Grid Fixes */
    .search-container form:focus-within {
        border-color: var(--gold-base) !important;
        box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
    }
    .search-container input::placeholder {
        color: rgba(255,255,255,0.4);
    }

    .mobile-grid-2 .product-card-desc {
        display: none !important; /* Hide description in mobile grid */
    }

    .mobile-grid-2 .glass-card {
        padding: 1rem !important;
    }

    /* Product/Course Card Refinements */
    .glass-card {
        padding: 2.5rem;
        background: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%);
    }

    .glass-card:hover {
        border-color: rgba(212, 175, 55, 0.4);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 15px rgba(212, 175, 55, 0.15);
    }

    .badge-bestseller {
        position: absolute;
        top: 1rem;
        right: 1rem;
        padding: 0.4rem 1rem;
        background: var(--gold-metallic);
        color: var(--text-dark);
        font-size: 0.65rem;
        font-weight: 800;
        letter-spacing: 1px;
        border-radius: 4px;
        z-index: 10;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }

    /* Reveal Animations */
    .fade {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 1s cubic-bezier(0.165, 0.84, 0.44, 1), transform 1s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

    .fade.visible {
        opacity: 1;
        transform: translateY(0);
    }

    /* Interactive Staggered Fade */
    .fade.stagger-1 { transition-delay: 0.1s; }
    .fade.stagger-2 { transition-delay: 0.2s; }
    .fade.stagger-3 { transition-delay: 0.3s; }
    .fade.stagger-4 { transition-delay: 0.4s; }
    .fade.stagger-5 { transition-delay: 0.5s; }

    /* Final Responsive Polish */
    @media (max-width: 1024px) {
        .hero-grid {
            grid-template-columns: 1fr;
            text-align: center;
            gap: 1.5rem;
        }
    }

    @media (max-width: 768px) {
        .logo-desktop-only {
            display: none !important;
        }
        .brand-title {
            font-size: 0.85rem !important;
        }
        .hero-premium {
            min-height: 90vh;
            padding-top: 100px;
        }
        .hero-title {
            margin-left: auto;
            margin-right: auto;
        }
        .hero-actions {
            flex-direction: column;
            width: 100%;
        }
        .hero-visual-container {
            order: -1;
            margin-bottom: 1rem;
        }
        .hero-desktop-visual {
            display: none !important;
        }
        .hero-mobile-visual {
            display: flex !important;
        }
    }

    .mobile-grid-2 .product-title {
        font-size: 0.95rem !important;
        margin-bottom: 0.8rem !important;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        height: 2.4rem;
    }

    /* Course Card Footer Mobile Side-by-Side */
    .course-card-footer {
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        gap: 1rem !important; /* Increased gap */
    }

    .course-card-footer span {
        font-size: 1rem !important; /* Further reduced */
    }

    .course-card-footer .btn {
        width: auto !important;
        padding: 0.4rem 0.7rem !important; /* Even more compact */
        font-size: 0.65rem !important;
        display: inline-flex !important;
    }
}

/* Product Page Redesign System */
.search-wrapper {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
}

.luxury-search-form {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(15px);
    border-radius: 50px;
    padding: 6px 6px 6px 20px;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.luxury-search-form:focus-within {
    border-color: var(--gold-highlight);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.15);
    background: rgba(255, 255, 255, 0.05);
}

.search-input-group {
    display: flex;
    align-items: center;
    flex-grow: 1;
    gap: 12px;
}

.search-icon {
    color: var(--gold-highlight);
    font-size: 1rem;
    opacity: 0.7;
}

.luxury-search-form input {
    background: transparent;
    border: none;
    color: #FFF;
    font-size: 1rem;
    width: 100%;
    outline: none;
    font-family: var(--font-body);
}

.btn-luxury-sm {
    background: var(--gold-metallic);
    color: var(--text-dark) !important;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.75rem;
    cursor: pointer;
    transition: var(--transition);
}

.btn-luxury-sm:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.search-feedback {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.clear-search {
    color: var(--gold-highlight);
    text-decoration: none;
    margin-left: 10px;
    font-weight: 600;
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}

.clear-search:hover {
    border-bottom-color: var(--gold-highlight);
}

/* Stable Product Grid */
.product-listing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    padding: 2rem 0;
}

.luxury-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition);
    height: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.luxury-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
    background: rgba(255, 255, 255, 0.04);
}

.badge-premium {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gold-metallic);
    color: var(--text-dark);
    padding: 4px 12px;
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    border-radius: 4px;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.product-visual {
    width: 100%;
    aspect-ratio: 1/1;
    margin-bottom: 1.8rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-img-wrap {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.luxury-card:hover .product-img-wrap {
    transform: scale(1.1);
}

.product-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.4));
}

.product-info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-name {
    font-family: var(--font-heading);
    font-size: 1.05rem; /* Reduced for elegance */
    margin-bottom: 0.8rem;
    color: #FFF;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.product-short-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1.5rem;
    margin-top: auto;
}

.product-price {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--gold-highlight);
}

.btn-luxury-outline-sm {
    border: 1px solid var(--gold-rich);
    color: var(--gold-highlight) !important;
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-luxury-outline-sm:hover {
    background: var(--gold-metallic);
    color: var(--text-dark) !important;
    border-color: transparent;
}

/* Empty State */
.empty-state {
    padding: 8rem 0;
}

.empty-icon-wrap {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2rem;
    color: var(--text-muted);
    border: 1px solid var(--glass-border);
}

.empty-state h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #FFF;
}

.empty-state p {
    color: var(--text-muted);
    margin-bottom: 3rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

/* Mobile Product Grid Overrides */
@media (max-width: 1024px) {
    .product-listing-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .product-listing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
        padding: 1rem 0;
        align-items: stretch;
    }
    
    .luxury-card {
        padding: 0.9rem;
        display: flex;
        flex-direction: column;
    }
    
    .product-visual {
        margin-bottom: 1rem;
        padding: 0.7rem;
        aspect-ratio: 1/1;
    }
    
    .product-info {
        display: flex;
        flex-direction: column;
        flex-grow: 1;
        align-items: center;
        text-align: center;
    }
    
    .product-name {
        font-size: 0.52rem;
        line-height: 1.4;
        text-align: center;
        margin-bottom: 0.5rem;
    }
    
    .product-short-desc {
        display: none;
    }
    
    .product-price {
        font-size: 1rem;
        text-align: center;
    }
    
    .luxury-search-form {
        padding: 4px 4px 4px 15px;
    }
    
    .btn-luxury-sm {
        padding: 0.6rem 1.2rem;
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .product-listing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.6rem;
        align-items: stretch;
    }
    .luxury-card {
        padding: 0.75rem;
    }
    .product-name {
        font-size: 0.48rem;
    }
    .product-price {
        font-size: 0.9rem;
    }
    .product-footer {
        flex-direction: column;
        align-items: stretch;
        gap: 0.7rem;
        text-align: center;
        padding-top: 0.8rem;
        margin-top: auto;
    }
    .btn-luxury-outline-sm {
        width: 100%;
        font-size: 0.65rem;
        padding: 0.5rem 0.8rem;
    }
}


/* Very Small Devices */
@media (max-width: 375px) {
    .hero-title {
        font-size: 2rem !important;
    }

    .vastu-mandala {
        width: 150px !important;
        height: 150px !important;
    }

    .vastu-mandala i {
        font-size: 3.5rem !important;
    }
}

/* Contact Page Redesign System */
.contact-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.icon-glow-sm {
    width: 40px;
    height: 40px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-highlight);
    font-size: 1rem;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.1);
}

.premium-form .form-group-luxury {
    margin-bottom: 1.5rem;
    text-align: left;
}

.premium-form label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gold-highlight);
    margin-bottom: 0.8rem;
    font-weight: 600;
    opacity: 0.8;
}

.premium-form input,
.premium-form textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 4px;
    padding: 1rem 1.2rem;
    color: #FFF;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
}

.premium-form input:focus,
.premium-form textarea:focus {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--gold-highlight);
    outline: none;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.1);
}

.success-banner {
    background: rgba(11, 61, 46, 0.3);
    border: 1px solid var(--gold-highlight);
    color: #FFF;
    padding: 1.2rem;
    border-radius: 4px;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.success-banner i {
    color: #28a745;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .contact-form-side .luxury-card {
        padding: 1.5rem !important;
    }
    
    .premium-form .form-row {
        grid-template-columns: 1fr !important;
        gap: 0 !important;
    }
    
    .contact-card-header h3 {
        font-size: 1rem !important;
    }
}

/* Always show address text on contact page regardless of mobile hiding */
.contact-details-side .product-short-desc {
    display: block !important;
}


/* Course Specific Refinements */
.course-thumb-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 61, 46, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    backdrop-filter: blur(2px);
    border-radius: 8px;
}

.luxury-card:hover .course-thumb-overlay {
    opacity: 1;
}

.course-thumb-overlay i {
    font-size: 3rem;
    color: var(--gold-highlight);
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.6));
    transform: scale(0.8);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.luxury-card:hover .course-thumb-overlay i {
    transform: scale(1);
}

.master-level-tag {
    font-size: 0.65rem;
    color: var(--gold-highlight);
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
    display: block;
    opacity: 0.8;
}

/* =============================================
   COURSES PAGE: Desktop Grid & Card Fix
   ============================================= */
.courses-grid-section .product-listing-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.courses-grid-section .product-visual {
    aspect-ratio: 4 / 3;
    margin-bottom: 1.5rem;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.courses-grid-section .product-img-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.courses-grid-section .product-image {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.courses-grid-section .product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: nowrap;
}

.courses-grid-section .product-price {
    font-size: 1.2rem;
    white-space: nowrap;
}

.courses-grid-section .btn-luxury-outline-sm {
    white-space: nowrap;
    flex-shrink: 0;
}

@media (max-width: 1024px) {
    .courses-grid-section .product-listing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .courses-grid-section .product-listing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .courses-grid-section .product-visual {
        aspect-ratio: 16 / 10;
    }
}

/* =============================================
   MOBILE: Homepage Featured Product Card Fixes
   ============================================= */
@media (max-width: 768px) {
    /* Card: reset padding and clip image correctly */
    .mobile-grid-2 .glass-card {
        padding: 0 0 1rem 0 !important;
        display: flex;
        flex-direction: column;
        height: 100%;
        box-sizing: border-box;
    }

    /* Image area: reset negative margins to match 0 padding */
    .mobile-grid-2 .item-img-placeholder {
        width: 100% !important;
        height: 160px !important;
        margin: 0 0 1rem 0 !important;
        border-radius: 0;
    }

    /* Text content: add horizontal padding */
    .mobile-grid-2 .glass-card h3.product-title {
        font-size: 0.65rem !important;
        font-weight: 600;
        padding: 0 0.8rem;
        margin-bottom: 0.5rem !important;
        line-height: 1.4;
        text-align: center;
    }

    /* Price */
    .mobile-grid-2 .featured-price {
        font-size: 0.85rem !important;
        display: block;
        padding: 0 0.8rem;
        margin-bottom: 0.8rem !important;
        text-align: center;
    }

    /* Hide description */
    .mobile-grid-2 .product-card-desc {
        display: none !important;
    }

    /* View Details button */
    .mobile-grid-2 .glass-card a.btn.btn-luxury {
        margin: 0 0.8rem !important;
        width: calc(100% - 1.6rem) !important;
        font-size: 0.65rem !important;
        padding: 0.6rem 0.5rem !important;
        letter-spacing: 0.5px !important;
        white-space: nowrap !important;
        box-sizing: border-box;
        border-radius: 6px !important;
    }

    /* Price div wrapper */
    .mobile-grid-2 div[style*="margin-bottom: 1.5rem"] {
        margin: 0 !important;
    }
}

/* ==========================================================================
   AJAX Cart Drawer Item Styles
   ========================================================================== */
.cart-item-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    margin-bottom: 1rem;
}
.cart-item-row:last-child {
    border-bottom: none;
    margin-bottom: 0;
}
.remove-cart-item {
    transition: transform 0.2s ease, color 0.2s ease;
    padding: 0.5rem;
}
.remove-cart-item:hover {
    transform: scale(1.1);
    color: #ff6b81 !important;
}