:root {
    --bg: #0b1224;
    --bg-soft: #101a33;
    --card: #141f3d;
    --primary: #f4c95d;
    --primary-dark: #d7a832;
    --text: #f5f7ff;
    --muted: #a7b2d4;
    --accent: #4dd0e1;
    --success: #5fd38d;
    --danger: #ff6b6b;
    --shadow: rgba(15, 23, 42, 0.45);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Manrope', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

body.spiritual-bg {
    background-color: #0b1224;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(244, 201, 93, 0.18), transparent 45%),
        radial-gradient(circle at 85% 15%, rgba(255, 161, 90, 0.16), transparent 50%),
        radial-gradient(circle at 20% 85%, rgba(77, 208, 225, 0.18), transparent 55%),
        linear-gradient(180deg, rgba(11, 18, 36, 0.9), rgba(11, 18, 36, 0.98));
    background-attachment: fixed;
}

body.spiritual-bg::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: radial-gradient(circle, rgba(244, 201, 93, 0.08) 1px, transparent 1px);
    background-size: 120px 120px;
    opacity: 0.25;
    pointer-events: none;
    z-index: -1;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(1200px, 90%);
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    isolation: isolate;
    background: linear-gradient(96deg, rgba(8, 15, 32, 0.95), rgba(14, 30, 58, 0.92) 52%, rgba(32, 18, 5, 0.9));
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.26);
}

.site-header::before,
.site-header::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.site-header::before {
    background:
        radial-gradient(circle at 8% 28%, rgba(77, 208, 225, 0.18), transparent 30%),
        radial-gradient(circle at 86% 10%, rgba(244, 201, 93, 0.16), transparent 26%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 58%);
    opacity: 1;
    z-index: -2;
}

.site-header::after {
    inset: auto 0 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(244, 201, 93, 0.72), transparent);
    z-index: -1;
}

.nav-wrap {
    width: min(1320px, 96%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: clamp(0.8rem, 1.3vw, 1.3rem);
    padding: 0.72rem 0;
}

.brand {
    display: flex;
    gap: 0.8rem;
    align-items: center;
    flex: 0 0 auto;
    min-width: 0;
}

.brand-copy {
    min-width: 0;
}

.brand-mark {
    width: 50px;
    height: 50px;
    border-radius: 15px;
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle at 35% 28%, rgba(255, 247, 220, 0.92), rgba(244, 201, 93, 0.16) 70%),
        rgba(11, 26, 52, 0.45);
    color: #fff9dd;
    font-size: 1.58rem;
    font-weight: 600;
    box-shadow:
        inset 0 0 0 1px rgba(255, 244, 211, 0.35),
        0 10px 24px rgba(3, 10, 22, 0.4);
}

.brand-name {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.1rem, 0.9vw + 0.78rem, 1.4rem);
    font-weight: 700;
    color: #fef8e9;
    letter-spacing: 0.02em;
    line-height: 1.1;
}

.brand-tag {
    display: block;
    font-size: 0.69rem;
    color: rgba(235, 241, 255, 0.74);
    margin-top: 0.16rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.nav-shell {
    min-width: 0;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(0.5rem, 1vw, 1rem);
    width: 100%;
    min-width: 0;
    border-radius: 20px;
    padding: 0.4rem 0.55rem;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.nav-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    min-width: 0;
}

.nav-links-primary {
    flex: 1 1 auto;
    justify-content: flex-start;
    gap: 0.2rem;
}

.nav-links-tools {
    flex: 0 1 auto;
    justify-content: flex-start;
    gap: 0.35rem;
    padding: 0;
    margin-left: 0.45rem;
}

.nav a {
    color: rgba(246, 251, 255, 0.94);
    font-family: 'Manrope', sans-serif;
    font-size: 0.94rem;
    font-weight: 650;
    line-height: 1;
    transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.nav-links-primary a:not(.btn) {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0.62rem 0.8rem;
    border-radius: 12px;
    position: relative;
    white-space: nowrap;
    color: rgba(242, 248, 255, 0.9);
}

.nav-links-primary a:not(.btn)::after {
    content: '';
    position: absolute;
    left: 0.8rem;
    right: 0.8rem;
    bottom: 0.46rem;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(77, 208, 225, 0), rgba(77, 208, 225, 0.95), rgba(77, 208, 225, 0));
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.24s ease;
}

.nav-links-tools a:not(.btn) {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0.52rem 0.62rem;
    border-radius: 10px;
    border: 1px solid transparent;
    white-space: nowrap;
}

.nav a:hover {
    color: #ffffff;
}

.nav-links-primary a:not(.btn):hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.09);
    transform: translateY(-1px);
}

.nav-links-primary a:not(.btn):hover::after {
    transform: scaleX(1);
}

.nav-links-tools a:not(.btn):hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.14);
    transform: translateY(-1px);
}

.nav-links-primary a.active:not(.btn),
.nav-links-tools a.active:not(.btn) {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.18);
}

.nav-links-primary a.active:not(.btn)::after {
    transform: scaleX(1);
}

.blink-link {
    position: relative;
    color: #ffe8ac;
    font-weight: 600;
    animation: blinkPulse 1.2s ease-in-out infinite;
}

@keyframes blinkPulse {
    0%, 100% {
        opacity: 1;
        text-shadow: 0 0 0 rgba(244, 201, 93, 0);
    }
    50% {
        opacity: 0.45;
        text-shadow: 0 0 12px rgba(244, 201, 93, 0.8);
    }
}

.user-pill {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0.42rem 0.82rem;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(8, 23, 45, 0.48), rgba(23, 14, 7, 0.28));
    border: 1px solid rgba(193, 231, 255, 0.2);
    color: #ebf8ff;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
}

.lang-switch {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    border: 1px solid rgba(255, 245, 226, 0.24);
    border-radius: 999px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(11, 29, 56, 0.42), rgba(35, 20, 7, 0.28));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.lang-switch a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    padding: 0.3rem 0.55rem;
    font-size: 0.84rem;
    font-weight: 700;
    line-height: 1;
    color: #fff5e3;
}

.lang-switch a.active {
    background: var(--primary);
    color: #000;
}

.nav-cta {
    min-height: 38px;
    padding-inline: 0.88rem;
    white-space: nowrap;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    border-radius: 11px;
    font-size: 0.85rem;
}

.nav .nav-guest-cta {
    background: rgba(8, 17, 35, 0.78);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.26);
}

.nav .nav-guest-cta:hover {
    background: rgba(18, 35, 67, 0.78);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.4);
}

.nav .btn-primary.nav-guest-cta {
    color: #ffffff;
}

.nav-register-menu {
    position: relative;
}

.nav-register-menu summary {
    list-style: none;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.nav-register-menu summary::-webkit-details-marker {
    display: none;
}

.nav-register-menu summary::after {
    content: '▾';
    font-size: 0.8rem;
    transition: transform 0.2s ease;
}

.nav-register-menu[open] summary::after {
    transform: rotate(180deg);
}

.nav-register-dropdown {
    position: absolute;
    top: calc(100% + 0.45rem);
    right: 0;
    min-width: 240px;
    display: grid;
    gap: 0.25rem;
    padding: 0.45rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: linear-gradient(180deg, rgba(8, 17, 35, 0.97), rgba(17, 35, 64, 0.98));
    box-shadow: 0 16px 36px rgba(3, 8, 15, 0.4);
    z-index: 30;
}

.nav-register-dropdown a {
    display: block;
    padding: 0.7rem 0.85rem;
    border-radius: 12px;
    color: #fff7e8;
    font-size: 0.95rem;
}

.nav-register-dropdown a:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

.nav-toggle {
    display: none;
    background: linear-gradient(180deg, rgba(9, 23, 46, 0.7), rgba(30, 18, 8, 0.36));
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 12px;
    padding: 0.6rem;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff8e8;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    background: transparent;
    color: var(--text);
}

.btn-primary {
    background: var(--primary);
    color: #000;
}

.btn-primary:hover {
    background: var(--primary-dark);
    color: #000;
}

.btn-outline {
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--text);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.shop-add-btn {
    border-color: #2ea664;
    background: #2ea664;
    color: #f6fff9;
}

.shop-add-btn:hover {
    border-color: #248552;
    background: #248552;
    color: #ffffff;
}

.shop-edit-btn {
    border-color: #c97a1a;
    background: #c97a1a;
    color: #fffaf2;
}

.shop-edit-btn:hover {
    border-color: #a66312;
    background: #a66312;
    color: #ffffff;
}

.pandit-top-banner {
    position: relative;
    overflow: hidden;
    padding: 1rem 0;
}

.pandit-top-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.9;
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.08), transparent 28%);
}

.pandit-top-banner-inner {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1.4rem;
    align-items: center;
    padding: 1.45rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 18px 44px rgba(8, 15, 30, 0.26);
    backdrop-filter: blur(8px);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.pandit-top-banner:hover .pandit-top-banner-inner {
    transform: translateY(-2px);
    box-shadow: 0 22px 56px rgba(8, 15, 30, 0.34);
}

.pandit-top-banner h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.35rem, 2vw, 2rem);
    line-height: 1.28;
    margin: 0.65rem 0 0.55rem;
}

.pandit-top-banner p {
    color: #e5edff;
    margin-bottom: 0.85rem;
    max-width: 720px;
}

.pandit-top-banner .tag {
    border: 1px solid rgba(255, 255, 255, 0.14);
    font-weight: 700;
    letter-spacing: 0.02em;
}

.pandit-top-highlights {
    display: grid;
    grid-template-columns: repeat(2, minmax(250px, 1fr));
    gap: 0.6rem;
}

.pandit-top-highlights span {
    border-radius: 14px;
    padding: 0.65rem 0.8rem;
    font-size: 0.92rem;
    color: #f7fbff;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(9, 16, 31, 0.3);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.pandit-top-actions {
    display: grid;
    gap: 0.65rem;
    min-width: 240px;
}

.pandit-top-actions .btn {
    width: 100%;
}

.pandit-top-banner .btn-primary {
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.16);
}

.pandit-top-banner .btn-outline {
    background: rgba(255, 255, 255, 0.04);
}

.banner-pandit .pandit-top-banner-inner {
    background: linear-gradient(135deg, rgba(100, 48, 7, 0.72), rgba(173, 90, 18, 0.58), rgba(18, 28, 44, 0.96));
    border-color: rgba(244, 201, 93, 0.34);
}

.banner-pandit .tag {
    background: rgba(244, 201, 93, 0.18);
    color: #ffe5a0;
}

.banner-pandit .pandit-top-highlights span {
    background: rgba(72, 37, 8, 0.34);
    border-color: rgba(244, 201, 93, 0.2);
}

.banner-pandit .btn-primary {
    background: linear-gradient(135deg, #f4c95d, #f0a43b);
    color: #281800;
}

.banner-pandit .btn-primary:hover {
    background: linear-gradient(135deg, #ffd670, #f3b24f);
}

.banner-vendor .pandit-top-banner-inner {
    background: linear-gradient(135deg, rgba(8, 70, 56, 0.8), rgba(19, 116, 96, 0.58), rgba(14, 27, 41, 0.96));
    border-color: rgba(95, 211, 141, 0.3);
}

.banner-vendor .tag {
    background: rgba(95, 211, 141, 0.16);
    color: #bff7d2;
}

.banner-vendor .pandit-top-highlights span {
    background: rgba(8, 59, 47, 0.34);
    border-color: rgba(95, 211, 141, 0.22);
}

.banner-vendor .btn-primary {
    background: linear-gradient(135deg, #5fd38d, #2fbf9d);
    color: #052117;
}

.banner-vendor .btn-primary:hover {
    background: linear-gradient(135deg, #74de9d, #3bc9a7);
}

.banner-devotee .pandit-top-banner-inner {
    background: linear-gradient(135deg, rgba(40, 53, 123, 0.82), rgba(79, 70, 229, 0.56), rgba(14, 24, 40, 0.96));
    border-color: rgba(129, 140, 248, 0.34);
}

.banner-devotee .tag {
    background: rgba(129, 140, 248, 0.16);
    color: #d7dcff;
}

.banner-devotee .pandit-top-highlights span {
    background: rgba(36, 47, 111, 0.34);
    border-color: rgba(129, 140, 248, 0.22);
}

.banner-devotee .btn-primary {
    background: linear-gradient(135deg, #8b9bff, #5b7cff);
    color: #08122e;
}

.banner-devotee .btn-primary:hover {
    background: linear-gradient(135deg, #9facff, #6b8bff);
}

.om-intro {
    padding: 2.1rem 0 0.8rem;
}

.om-intro-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(130px, 170px) 1fr;
    gap: 1.4rem;
    align-items: center;
    border-radius: 30px;
    padding: clamp(1.1rem, 2.1vw, 1.8rem);
    background:
        radial-gradient(circle at 18% 16%, rgba(244, 201, 93, 0.27), transparent 35%),
        radial-gradient(circle at 94% 9%, rgba(77, 208, 225, 0.18), transparent 33%),
        linear-gradient(120deg, rgba(23, 35, 70, 0.9), rgba(16, 24, 46, 0.92));
    border: 1px solid rgba(255, 234, 190, 0.2);
    box-shadow: 0 30px 70px rgba(8, 12, 24, 0.42);
    overflow: hidden;
}

.om-intro-grid::after {
    content: '';
    position: absolute;
    right: -70px;
    bottom: -80px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(244, 201, 93, 0.25), rgba(244, 201, 93, 0));
    pointer-events: none;
}

.om-intro-mark-wrap {
    position: relative;
    display: grid;
    place-items: center;
}

.om-intro-mark {
    width: clamp(98px, 11vw, 132px);
    height: clamp(98px, 11vw, 132px);
    border-radius: 28px;
    display: grid;
    place-items: center;
    font-size: clamp(2.7rem, 3.8vw, 4rem);
    font-family: 'Playfair Display', serif;
    color: #fff5d0;
    background:
        radial-gradient(circle at 28% 24%, rgba(255, 242, 198, 0.88), rgba(244, 201, 93, 0.18) 72%),
        rgba(47, 22, 4, 0.35);
    box-shadow:
        inset 0 0 0 1px rgba(255, 244, 212, 0.35),
        0 16px 34px rgba(8, 12, 24, 0.45);
    position: relative;
    z-index: 1;
}

.om-intro-glow {
    position: absolute;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(244, 201, 93, 0.42), rgba(244, 201, 93, 0));
    filter: blur(1px);
}

.om-intro-copy h2 {
    margin: 0.65rem 0 0.2rem;
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.95rem, 2.8vw, 2.75rem);
    line-height: 1.1;
}

.om-intro-tagline {
    color: #ffde9a;
    font-weight: 700;
    margin-bottom: 0.65rem;
}

.om-intro-copy p {
    margin-bottom: 0.85rem;
    color: #d4dffb;
}

.om-intro-points {
    display: grid;
    gap: 0.5rem;
    margin: 0 0 1rem;
}

.om-intro-points span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #e8eeff;
    font-size: 0.95rem;
}

.om-intro-points span::before {
    content: '✦';
    color: var(--primary);
    font-size: 0.85rem;
}

.hero {
    padding: 5rem 0 4rem;
    background: radial-gradient(circle at top right, rgba(77, 208, 225, 0.18), transparent 45%),
        radial-gradient(circle at top left, rgba(244, 201, 93, 0.12), transparent 55%);
}

.hero-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 3rem;
    align-items: center;
}

.hero-lead {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    padding: 1.4rem;
}

.hero-lead::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(90deg, rgba(11, 18, 36, 0.9), rgba(11, 18, 36, 0.52)), url('../../images/ganesha.png');
    background-repeat: no-repeat;
    background-position: left 4% center;
    background-size: min(430px, 52%);
    opacity: 0.46;
    pointer-events: none;
}

.hero-lead > * {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 3vw, 3.4rem);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.hero p {
    color: var(--muted);
    margin-bottom: 2rem;
}

.hero-pandit-tagline {
    margin: 0.4rem 0 1.1rem;
    padding: 0.85rem 1rem;
    border-left: 4px solid var(--primary);
    border-radius: 0 12px 12px 0;
    background: rgba(244, 201, 93, 0.1);
    color: #ffe8af;
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.45;
}

.hero-benefits {
    display: grid;
    gap: 0.55rem;
    margin: 0 0 1.3rem;
}

.hero-benefits span {
    display: block;
    padding-left: 1.1rem;
    position: relative;
    color: #d7e2ff;
    font-size: 0.95rem;
}

.hero-benefits span::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
}

.hero-card {
    background: var(--card);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 20px 60px var(--shadow);
    display: grid;
    gap: 1.25rem;
}

.search-form {
    display: grid;
    gap: 1rem;
}

.input-group {
    display: grid;
    gap: 0.35rem;
}

label {
    color: var(--muted);
    font-size: 0.85rem;
}

input, select, textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
    color: var(--text);
    font-family: inherit;
}

.input-with-prefix {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
    padding: 0.35rem 0.75rem;
}

.input-with-prefix input {
    border: none;
    background: transparent;
    padding: 0.6rem 0.4rem;
}

.input-with-prefix input:focus {
    outline: none;
}

.input-prefix {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.35rem 0.6rem;
    border-radius: 999px;
    background: rgba(244, 201, 93, 0.18);
    color: var(--primary);
    font-weight: 600;
    font-size: 0.85rem;
}

select option {
    background: var(--card);
    color: var(--text);
}

textarea {
    min-height: 110px;
    resize: vertical;
}

section {
    padding: 4rem 0;
}

.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 2rem;
    margin-bottom: 2rem;
}

.section-heading h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 2.6vw, 2.6rem);
}

.section-heading p {
    color: var(--muted);
    max-width: 520px;
}

.pandit-highlights {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(210px, 1fr));
    gap: 0.65rem;
    max-width: 760px;
}

.pandit-highlights span {
    display: block;
    padding: 0.55rem 0.8rem;
    border-radius: 12px;
    border: 1px solid rgba(95, 211, 141, 0.36);
    background: rgba(95, 211, 141, 0.12);
    color: #dffbe9;
    font-size: 0.9rem;
    line-height: 1.4;
}

.pandit-highlights span::before {
    content: '+';
    margin-right: 0.45rem;
    color: var(--success);
    font-weight: 700;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.pandit-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.8rem;
}

.card {
    background: var(--card);
    padding: 1.5rem;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 16px 40px var(--shadow);
}

.card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.pandit-card {
    border-radius: 10px;
    padding: 1.25rem;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.35);
    aspect-ratio: 1 / 1;
    display: flex;
    flex-direction: column;
    overflow: visible;
    min-height: 500px;
}

.pandit-card .pandit-thumb {
    border-radius: 8px;
    aspect-ratio: 1 / 1;
    height: auto;
    min-height: 190px;
}

.pandit-card h3 {
    margin-bottom: 0.35rem;
}

.pandit-card p {
    margin-bottom: 0.25rem;
    line-height: 1.35;
}

.product-image {
    width: 100%;
    height: 160px;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.06);
}

.pandit-thumb {
    width: 100%;
    height: 170px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.06);
}

.pandit-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pandit-thumb-fallback {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.75rem;
    font-weight: 700;
    color: #101a33;
    background: linear-gradient(135deg, #f4c95d, #4dd0e1);
}

.puja-thumb {
    width: 100%;
    height: 160px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.06);
}

.puja-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card p {
    color: var(--muted);
    margin-bottom: 1rem;
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    background: rgba(93, 173, 226, 0.15);
    color: var(--accent);
    font-size: 0.75rem;
}

.kpis {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
}

.kpi {
    background: var(--bg-soft);
    padding: 1rem 1.25rem;
    border-radius: 16px;
}

.kpi h4 {
    font-size: 1.5rem;
    margin-bottom: 0.2rem;
}

.kpi span {
    color: var(--muted);
    font-size: 0.85rem;
}

.badge {
    display: inline-flex;
    padding: 0.25rem 0.6rem;
    border-radius: 10px;
    font-size: 0.75rem;
    background: rgba(95, 211, 141, 0.15);
    color: var(--success);
}

.muted {
    color: var(--muted);
}

.cta {
    background: linear-gradient(135deg, rgba(244, 201, 93, 0.16), rgba(77, 208, 225, 0.12));
    border-radius: 24px;
    padding: 3rem;
    display: grid;
    gap: 1.5rem;
    align-items: center;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.site-footer {
    padding: 3rem 0 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    background: #b15928;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.site-footer h4 {
    margin-bottom: 1rem;
}

.site-footer ul {
    list-style: none;
    display: grid;
    gap: 0.6rem;
}

.footer-bottom {
    margin-top: 2rem;
    text-align: center;
    color: var(--muted);
    font-size: 0.85rem;
}

.page-hero {
    padding: 3rem 0 2rem;
    background: var(--bg-soft);
}

.page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 2.8vw, 2.8rem);
    margin-bottom: 0.75rem;
}

.filter-bar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.notice {
    padding: 1rem 1.25rem;
    border-radius: 14px;
    background: rgba(95, 211, 141, 0.1);
    border: 1px solid rgba(95, 211, 141, 0.3);
    color: var(--success);
}

.cart-panel {
    display: grid;
    gap: 1rem;
}

.cart-items {
    display: grid;
    gap: 1rem;
}

.cart-item {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr) minmax(0, 0.6fr);
    gap: 1rem;
    padding: 1rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    align-items: center;
}

.cart-item-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.cart-thumb {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.06);
}

.cart-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.qty-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: var(--text);
    cursor: pointer;
}

.qty-input {
    width: 70px;
    text-align: center;
}

.remove-btn {
    border: none;
    background: transparent;
    color: var(--danger);
    cursor: pointer;
    font-weight: 600;
}

.cart-subtotal {
    text-align: right;
    font-weight: 600;
}

.cart-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cart-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 32px;
    border-radius: 999px;
    background: rgba(244, 201, 93, 0.18);
    color: var(--primary);
    font-weight: 700;
    padding: 0 0.6rem;
}

.hidden {
    display: none !important;
}

.tab-toggle {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.tab-button {
    padding: 0.75rem 1rem;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    color: var(--muted);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.tab-button.active {
    background: rgba(244, 201, 93, 0.18);
    border-color: rgba(244, 201, 93, 0.6);
    color: var(--primary);
}

.plan-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
}

.plan-card {
    text-align: left;
    padding: 1rem 1.2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text);
    cursor: pointer;
    transition: all 0.2s ease;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.85rem;
    align-items: start;
    position: relative;
}

.plan-card h4 {
    margin-bottom: 0.4rem;
}

.plan-card.selected {
    border-color: rgba(244, 201, 93, 0.8);
    box-shadow: 0 16px 30px rgba(244, 201, 93, 0.12);
    background: rgba(244, 201, 93, 0.1);
}

.plan-card-recommended {
    border-color: rgba(95, 211, 141, 0.35);
    background: linear-gradient(135deg, rgba(95, 211, 141, 0.08), rgba(255, 255, 255, 0.03));
}

.recommended-badge {
    display: inline-flex;
    align-items: center;
    margin-bottom: 0.55rem;
    padding: 0.28rem 0.65rem;
    border-radius: 999px;
    background: rgba(95, 211, 141, 0.16);
    color: #9ef0bf;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.plan-radio {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.plan-radio-indicator {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid rgba(244, 201, 93, 0.45);
    display: grid;
    place-items: center;
    margin-top: 2px;
    background: rgba(244, 201, 93, 0.08);
    transition: all 0.2s ease;
}

.plan-radio-indicator::after {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary);
    transform: scale(0);
    transition: transform 0.2s ease;
}

.plan-card.selected .plan-radio-indicator {
    border-color: rgba(244, 201, 93, 0.9);
    box-shadow: 0 0 0 4px rgba(244, 201, 93, 0.2);
}

.plan-card.selected .plan-radio-indicator::after {
    transform: scale(1);
}

.about-hero {
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at top right, rgba(244, 201, 93, 0.2), transparent 55%),
        radial-gradient(circle at bottom left, rgba(77, 208, 225, 0.2), transparent 55%),
        var(--bg-soft);
}

.about-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(90deg, rgba(16, 26, 51, 0.88), rgba(16, 26, 51, 0.58)), url('../../images/ganesha.png');
    background-repeat: no-repeat;
    background-position: right 4% center;
    background-size: min(500px, 46%);
    opacity: 0.5;
    pointer-events: none;
}

.about-hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 1rem;
    max-width: 900px;
}

.about-hero-inner p {
    margin-bottom: 0;
}

.about-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
}

.about-block h2,
.about-block h3 {
    margin-bottom: 0.8rem;
}

.about-services-grid .card {
    padding: 1rem 1.1rem;
    font-weight: 600;
    margin-bottom: 0;
}

.about-why-grid .card p {
    margin-bottom: 0;
}

.about-cta {
    max-width: 960px;
    margin: 0 auto;
}

.about-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 2.4vw, 2.2rem);
}

.about-cta p {
    color: var(--text);
    margin-bottom: 0;
}

.about-promise {
    display: grid;
    gap: 0.65rem;
    padding: 1rem 1.1rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 900px) {
    .nav-wrap {
        width: min(95%, 1200px);
        grid-template-columns: 1fr auto;
        gap: 0.65rem;
        padding: 0.75rem 0;
    }

    .brand-tag {
        display: none;
    }

    .brand {
        min-width: 0;
    }

    .brand-copy {
        max-width: min(56vw, 260px);
    }

    .brand-name {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .nav-shell {
        grid-column: 1 / -1;
        position: relative;
    }

    .nav {
        display: none;
        position: absolute;
        top: 0.45rem;
        left: 0;
        right: 0;
        background: linear-gradient(170deg, rgba(9, 23, 46, 0.98), rgba(21, 17, 24, 0.98));
        padding: 1rem;
        border-radius: 18px;
        flex-direction: column;
        align-items: stretch;
        width: auto;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.42);
        border: 1px solid rgba(255, 255, 255, 0.14);
    }

    .nav.open {
        display: flex;
    }

    .nav-links {
        width: 100%;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0.4rem;
    }

    .nav-links-primary,
    .nav-links-tools {
        flex-direction: column;
    }

    .nav-links-tools {
        padding: 0.85rem 0 0;
        margin-top: 0.35rem;
        margin-left: 0;
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.14);
    }

    .nav-links-primary a:not(.btn),
    .nav-links-tools a:not(.btn),
    .nav-cta,
    .user-pill,
    .lang-switch,
    .nav-register-menu {
        width: 100%;
    }

    .nav-links-primary a:not(.btn),
    .nav-links-tools a:not(.btn) {
        justify-content: flex-start;
        padding-inline: 0.9rem;
    }

    .nav-links-primary a:not(.btn)::after {
        left: 0.9rem;
        right: 0.9rem;
    }

    .nav-register-menu summary {
        width: 100%;
        justify-content: space-between;
    }

    .nav-register-dropdown {
        position: static;
        min-width: 0;
        margin-top: 0.45rem;
    }

    .nav .nav-guest-cta,
    .nav .btn {
        justify-content: center;
    }

    .lang-switch {
        align-self: stretch;
        justify-content: center;
    }

    .nav-toggle {
        display: flex;
        border: 1px solid rgba(255, 255, 255, 0.26);
    }

    .hero {
        padding-top: 3rem;
    }

    .om-intro-grid {
        grid-template-columns: 1fr;
        text-align: left;
        gap: 1rem;
        padding: 1.15rem 1rem;
    }

    .om-intro-mark-wrap {
        justify-content: flex-start;
    }

    .om-intro-mark {
        width: 88px;
        height: 88px;
        border-radius: 22px;
        font-size: 2.4rem;
    }

    .pandit-top-banner-inner {
        grid-template-columns: 1fr;
    }

    .pandit-top-highlights {
        grid-template-columns: 1fr;
    }

    .pandit-top-actions {
        width: 100%;
    }

    .hero-lead {
        padding: 1rem;
    }

    .hero-lead::before {
        background-position: left -24px top 12px;
        background-size: min(280px, 65%);
        opacity: 0.33;
    }

    .cta {
        padding: 2rem;
    }

    .pandit-highlights {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .cart-item {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .cart-subtotal {
        text-align: left;
    }

    .about-services-grid .card {
        padding: 0.9rem 1rem;
    }

    .about-hero::before {
        background-position: right -30px top 18px;
        background-size: min(340px, 64%);
        opacity: 0.38;
    }

}
