/* Universal Magic Studio — Professional Sober Theme */

:root {
    --saffron: #FF9933;
    --saffron-light: #FFB366;
    --saffron-dark: #E68A2E;
    --deep-red: #C62828;
    --deep-red-dark: #8B1A1A;
    --gold: #FFD700;
    --white: #FFFFFF;
    --grey-50: #FAFAFA;
    --grey-100: #F5F5F5;
    --grey-200: #EEEEEE;
    --grey-600: #666666;
    --grey-800: #333333;
    --grey-900: #1A1A1A;
    --cream: #FAFAFA;
    --beige: #F5F5F5;
    --deep-purple: #C62828;
    --text-dark: #1A1A1A;
    --text-muted: #666666;
    --gradient-hero: linear-gradient(135deg, #C62828 0%, #D84315 45%, #FF9933 100%);
    --gradient-hero-light: linear-gradient(165deg, #FFFCF8 0%, #FFF6ED 45%, #FFECD8 100%);
    --gradient-cta: linear-gradient(90deg, #E3F2FD 0%, #FFF3E0 100%);
    --shadow-card: 0 2px 16px rgba(0, 0, 0, 0.06);
    --shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.1);
    --radius: 12px;
    --radius-lg: 16px;
    --transition: all 0.25s ease;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
    line-height: 1.65;
    font-size: 15px;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    color: var(--grey-900);
}

.font-playfair { font-family: 'Inter', sans-serif; }

.text-gold { color: var(--saffron) !important; }
.text-purple { color: var(--deep-red) !important; }
.text-indigo { color: var(--saffron) !important; }
.text-saffron { color: var(--saffron) !important; }
.text-red { color: var(--deep-red) !important; }
.bg-cosmic { background: var(--gradient-hero); }
.bg-cream { background-color: var(--white); }
.bg-beige { background-color: var(--grey-50); }
.bg-light-section { background-color: var(--grey-50); }

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--grey-100); }
::-webkit-scrollbar-thumb { background: var(--saffron); border-radius: 3px; }

/* ─── Navbar ─── */
.navbar-spiritual {
    background: var(--white);
    padding: 0.75rem 0;
    transition: var(--transition);
    border-bottom: 1px solid var(--grey-200);
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.04);
}

.navbar-spiritual.scrolled {
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.navbar-brand-spiritual {
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    color: var(--saffron) !important;
    font-weight: 700;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-logo {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--saffron), var(--deep-red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
}

.nav-link-spiritual {
    color: var(--grey-800) !important;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.4rem 0.85rem !important;
    transition: var(--transition);
}

.nav-link-spiritual:hover {
    color: var(--saffron) !important;
}

.nav-link-spiritual.active {
    color: var(--saffron) !important;
    font-weight: 600;
    background: rgba(255, 153, 51, 0.12);
    border-radius: 6px;
}

.nav-link-spiritual::after { display: none; }

/* Buttons */
.btn-gold {
    background: var(--gold);
    color: var(--grey-900) !important;
    border: 2px solid var(--grey-900);
    padding: 10px 22px;
    font-weight: 600;
    border-radius: 8px;
    transition: var(--transition);
    font-size: 0.875rem;
    text-transform: none;
    letter-spacing: 0;
}

.btn-gold:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
    color: var(--grey-900) !important;
}

.btn-outline-gold {
    border: 2px solid var(--white);
    color: var(--white) !important;
    background: transparent;
    padding: 10px 22px;
    font-weight: 600;
    border-radius: 8px;
    transition: var(--transition);
    font-size: 0.875rem;
    text-transform: none;
}

.btn-outline-gold:hover {
    background: var(--white);
    color: var(--saffron) !important;
    border-color: var(--white);
}

.btn-outline-gold.dark {
    border-color: var(--saffron);
    color: var(--saffron) !important;
}

.btn-outline-gold.dark:hover {
    background: var(--saffron);
    color: var(--white) !important;
}

.btn-purple,
.btn-saffron {
    background: var(--saffron);
    color: var(--white) !important;
    border: none;
    padding: 10px 22px;
    font-weight: 600;
    border-radius: 8px;
    transition: var(--transition);
    font-size: 0.875rem;
}

.btn-purple:hover,
.btn-saffron:hover {
    background: var(--saffron-dark);
    color: var(--white) !important;
    transform: translateY(-1px);
    box-shadow: var(--shadow-hover);
}

/* ─── Hero ─── */
.hero-section {
    min-height: 85vh;
    background: var(--gradient-hero-light);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 153, 51, 0.12);
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
}

.hero-orb-1 {
    width: 420px;
    height: 420px;
    background: rgba(255, 179, 102, 0.35);
    top: -120px;
    right: -80px;
}

.hero-orb-2 {
    width: 320px;
    height: 320px;
    background: rgba(255, 215, 160, 0.4);
    bottom: -60px;
    left: -40px;
}

.hero-orb-3 {
    width: 200px;
    height: 200px;
    background: rgba(255, 153, 51, 0.18);
    top: 40%;
    left: 55%;
}

.hero-section::before,
.hero-section::after,
.hero-stars,
.hero-moon,
.zodiac-ring,
.sacred-geometry { display: none !important; }

.hero-content {
    position: relative;
    z-index: 2;
    padding: 130px 0 90px;
    text-align: center;
}

.hero-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--saffron-dark);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 1.25rem;
    padding: 7px 18px;
    background: rgba(255, 153, 51, 0.12);
    border: 1px solid rgba(255, 153, 51, 0.2);
    border-radius: 50px;
}

.hero-title {
    font-size: clamp(1.85rem, 4.5vw, 3rem);
    color: var(--grey-900);
    margin-bottom: 1.25rem;
    font-weight: 700;
    line-height: 1.25;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}

.hero-accent {
    color: var(--saffron);
}

.hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.95rem, 1.8vw, 1.125rem);
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    line-height: 1.75;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 2.25rem;
}

.hero-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    color: var(--grey-800);
    padding: 9px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid var(--grey-200);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.hero-pill i {
    color: var(--saffron);
    font-size: 0.75rem;
}

/* ─── Sections ─── */
.section-padding { padding: 80px 0; }

.section-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--saffron);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: clamp(1.6rem, 2.5vw, 2.1rem);
    color: var(--grey-900);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.section-subtitle {
    font-family: 'Inter', sans-serif;
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 560px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.section-divider {
    width: 48px;
    height: 3px;
    background: var(--saffron);
    margin: 0.75rem auto 1.5rem;
    border-radius: 2px;
}

.section-divider.left { margin-left: 0; }

/* ─── Cards ─── */
.feature-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: var(--transition);
    border: 2px solid rgba(230, 138, 46, 0.65);
    height: 100%;
    box-shadow: var(--shadow-card);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: var(--saffron-dark);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: var(--saffron);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 1.25rem;
    color: var(--white);
    border: none;
}

.feature-card h4 {
    color: var(--grey-900);
    margin-bottom: 0.6rem;
    font-size: 1.05rem;
    font-weight: 600;
}

/* Service Cards */
.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--grey-200);
    height: 100%;
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.service-card-icon {
    background: var(--grey-50);
    padding: 2rem;
    text-align: left;
    font-size: 1.5rem;
    color: var(--saffron);
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.service-card-icon i {
    width: 44px;
    height: 44px;
    background: var(--saffron);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.service-card-image {
    height: 180px;
    background: var(--grey-100);
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.service-card-body .btn {
    margin-top: 0;
}

.service-card-actions {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.services-grid > [class*="col-"] {
    display: flex;
}

.service-card-body h4 {
    color: var(--saffron);
    margin-bottom: 0.6rem;
    font-size: 1.05rem;
    font-weight: 600;
}

/* Pricing */
.pricing-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem 1.75rem;
    text-align: left;
    transition: var(--transition);
    border: 1px solid var(--grey-200);
    position: relative;
    height: 100%;
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
}

.pricing-card .btn {
    margin-top: auto;
}

.pricing-grid > [class*="col-"] {
    display: flex;
}

.pricing-card.popular {
    border-color: var(--saffron);
    box-shadow: 0 4px 20px rgba(255, 153, 51, 0.15);
    transform: none;
}

.pricing-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--gold);
    color: var(--grey-900);
    padding: 4px 14px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid var(--grey-900);
}

.pricing-card h3 {
    color: var(--saffron);
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-card h3 i {
    width: 36px;
    height: 36px;
    background: var(--saffron);
    color: white;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
}

.pricing-price {
    font-family: 'Inter', sans-serif;
    font-size: 2rem;
    color: var(--saffron);
    margin: 1rem 0;
    font-weight: 700;
}

.pricing-price small { font-size: 0.9rem; color: var(--text-muted); font-weight: 400; }

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.pricing-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--grey-100);
    font-size: 0.9rem;
    color: var(--text-muted);
}

.pricing-features li i { color: var(--saffron); margin-right: 8px; width: 16px; }

/* Product Cards */
.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--grey-200);
    height: 100%;
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
}

.product-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }

.product-image {
    height: 180px;
    min-height: 180px;
    background: var(--grey-100);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}

.product-image i { font-size: 3rem; color: var(--saffron); opacity: 0.5; }
.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
}

.product-badge-featured {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--saffron);
    color: var(--white);
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
}

.product-badge-category {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--grey-900);
    color: var(--white);
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
}

.product-body {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-body h5 {
    color: var(--grey-900);
    margin-bottom: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.35;
}

.product-desc {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.55;
    margin-bottom: 0.75rem;
    min-height: 2.8em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-zodiac {
    min-height: 28px;
    margin-bottom: 0.75rem;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.product-zodiac .badge {
    font-size: 0.7rem;
    font-weight: 500;
    background: var(--grey-100) !important;
    color: var(--grey-800) !important;
    border: 1px solid var(--grey-200);
}

.product-footer {
    margin-top: auto;
    padding-top: 0.75rem;
    border-top: 1px solid var(--grey-100);
}

.product-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    gap: 8px;
}

.product-price {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    color: var(--saffron);
    font-weight: 700;
    line-height: 1;
}

.product-price-range {
    display: block;
    width: 100%;
    margin: 0.85rem 0 0;
    padding: 0.55rem 0.75rem;
    text-align: center;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--grey-800);
    background: #f3e8d8;
    border-radius: 999px;
    line-height: 1.35;
}

.product-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
}

.product-actions .btn {
    font-size: 0.8rem;
    padding: 8px 10px;
}

@media (max-width: 767px) {
    .product-footer {
        text-align: center;
    }

    .product-price-row {
        justify-content: center;
    }

    .product-actions {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
        width: 100%;
    }
}

/* Gemstones shop layout */
.shop-layout {
    overflow-x: clip;
}

.shop-layout .row.align-shop {
    align-items: flex-start;
}

.shop-layout .row.align-shop > [class*="col-"] {
    min-width: 0;
    max-width: 100%;
}

.shop-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem 1rem;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--grey-200);
    position: relative;
    z-index: 30;
}

.shop-results-count {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.shop-filter-bar {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 0;
}

.shop-filter-icon {
    font-size: 0.85rem;
    flex-shrink: 0;
}

.shop-filter-bar .filter-dropdown {
    position: relative;
}

.shop-filter-bar .filter-dropdown-toggle {
    width: auto;
    min-width: 0;
    padding: 0.4rem 1.75rem 0.4rem 0.75rem;
    font-size: 0.8125rem;
    white-space: nowrap;
    background: var(--white);
    border: 1px solid var(--grey-200);
    border-radius: 6px;
    color: var(--grey-800);
    box-shadow: none;
}

.shop-filter-bar .filter-dropdown-toggle:hover,
.shop-filter-bar .filter-dropdown-toggle:focus,
.shop-filter-bar .filter-dropdown-toggle.show {
    background: var(--white);
    border-color: var(--saffron);
    color: var(--grey-800);
    box-shadow: none;
}

.shop-filter-bar .filter-dropdown-toggle::after {
    right: 0.6rem;
}

.shop-filter-bar .dropdown-menu {
    min-width: 180px;
    max-height: 280px;
    overflow-y: auto;
    margin-top: 0.35rem;
    border: 1px solid var(--grey-200);
    box-shadow: var(--shadow-hover);
    z-index: 1050;
}

.shop-grid {
    position: relative;
    z-index: 1;
}

.shop-filter-bar .shop-filter-price .filter-dropdown-toggle,
.shop-filter-bar .shop-filter-zodiac .filter-dropdown-toggle {
    min-width: 140px;
    padding: 0.5rem 2rem 0.5rem 0.9rem;
    font-size: 0.875rem;
}

.shop-filter-bar .shop-filter-price .dropdown-menu {
    min-width: 240px;
}

.shop-filter-bar .shop-filter-zodiac .dropdown-menu {
    min-width: 160px;
}

.shop-filter-bar .shop-filter-price .dropdown-item,
.shop-filter-bar .shop-filter-zodiac .dropdown-item {
    white-space: nowrap;
}

.shop-filter-clear {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--saffron);
    text-decoration: none;
    white-space: nowrap;
    padding: 0.4rem 0.25rem;
}

.shop-filter-clear:hover {
    color: var(--grey-900);
}

.shop-grid > [class*="col-"] {
    display: flex;
}

.shop-sidebar-col {
    min-width: 0;
}

.shop-sidebar-inner {
    position: sticky;
    top: 90px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.shop-sidebar-panel {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.25rem 1.5rem;
    border: 2px solid rgba(230, 138, 46, 0.65);
    box-shadow: var(--shadow-card);
}

.shop-sidebar-panel h6 {
    color: var(--grey-900);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.shop-trust-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.shop-trust-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-muted);
    padding: 0.45rem 0;
}

.shop-trust-list li i {
    color: var(--saffron);
    margin-top: 2px;
    flex-shrink: 0;
}

.shop-layout .filter-sidebar {
    position: static;
    top: auto;
}

.shop-layout .product-image {
    height: 240px;
    min-height: 240px;
    padding: 1rem;
    box-sizing: border-box;
}

.shop-layout .product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.shop-layout .product-image i {
    font-size: 4rem;
}

.shop-layout .product-body {
    padding: 1.5rem;
}

.shop-layout .product-body h5 {
    font-size: 1.1rem;
}

.shop-layout .product-desc {
    min-height: 3.2em;
    -webkit-line-clamp: 3;
}

.shop-layout .product-actions .btn {
    font-size: 0.875rem;
    padding: 10px 14px;
}

.filter-sidebar .form-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--grey-800);
    margin-bottom: 0.35rem;
}

.filter-sidebar .form-select {
    font-size: 0.875rem;
    width: 100%;
    max-width: 100%;
}

.filter-dropdown {
    position: relative;
}

.filter-dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.25rem 2.25rem 0.25rem 0.75rem;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--grey-800);
    background-color: var(--white);
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    text-align: left;
    box-shadow: none;
}

.filter-dropdown-toggle:hover,
.filter-dropdown-toggle:focus,
.filter-dropdown-toggle.show {
    color: var(--grey-800);
    background-color: var(--white);
    border-color: #86b7fe;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.filter-dropdown-toggle::after {
    position: absolute;
    right: 0.75rem;
    margin-left: 0;
}

.filter-dropdown .dropdown-menu {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    max-height: 240px;
    overflow-y: auto;
}

.filter-dropdown .dropdown-item.active,
.filter-dropdown .dropdown-item:active {
    background-color: var(--saffron);
    color: var(--white);
}


/* Testimonials — professional grid */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.5rem;
    text-align: left;
    border: 1px solid var(--grey-200);
    margin: 0;
    box-shadow: var(--shadow-card);
    position: relative;
}

.testimonial-card.border-blue { border-left: 4px solid #42A5F5; }
.testimonial-card.border-green { border-left: 4px solid #66BB6A; }
.testimonial-card.border-orange { border-left: 4px solid var(--saffron); }

.testimonial-quote {
    font-size: 1.5rem;
    color: var(--saffron);
    line-height: 1;
    margin-bottom: 0.75rem;
}

.testimonial-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--saffron);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: white;
    font-weight: 600;
    border: none;
    margin: 0;
}

.testimonial-stars { margin-bottom: 0.75rem; }
.testimonial-stars i { font-size: 0.8rem; }

.testimonial-text {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    color: var(--saffron-dark);
    margin-bottom: 1rem;
    font-size: 0.9rem;
    line-height: 1.65;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.testimonial-author span { font-size: 0.85rem; color: var(--text-muted); }

/* Blog Cards */
.blog-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--grey-200);
    height: 100%;
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
}

[class*="col-"]:has(> .blog-card) {
    display: flex;
}

.blog-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }

.blog-card-image {
    height: 180px;
    background: var(--grey-100);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.blog-card-image i { font-size: 2.5rem; color: var(--saffron); opacity: 0.4; }

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}

.blog-category {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--saffron);
    color: var(--white);
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    border: none;
}

.blog-card-body {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-card-body h5 { color: var(--grey-900); margin-bottom: 0.6rem; font-size: 1rem; font-weight: 600; line-height: 1.4; }

.blog-card-body > p {
    flex: 1;
    margin-bottom: 0;
}

.blog-card-body > a {
    margin-top: auto;
    padding-top: 0.85rem;
}

.blog-filter-search {
    width: 180px;
    max-width: 100%;
    padding: 0.4rem 0.75rem;
    font-size: 0.8125rem;
    line-height: 1.5;
    color: var(--grey-800);
    background: var(--white);
    border: 1px solid var(--grey-200);
    border-radius: 6px;
}

.blog-filter-search:focus {
    outline: none;
    border-color: var(--saffron);
    box-shadow: none;
}

.blog-filter-bar .shop-filter-category .filter-dropdown-toggle {
    min-width: 140px;
}

.blog-filter-bar .shop-filter-category .dropdown-menu {
    min-width: 200px;
}

.blog-filter-bar .dropdown-item.active,
.blog-filter-bar .dropdown-item:active {
    background-color: var(--saffron);
    color: var(--white);
}

.blog-grid {
    position: relative;
    z-index: 1;
}

.blog-detail-image {
    width: 100%;
    height: 320px;
    margin-bottom: 1.5rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--grey-100);
    border: 1px solid var(--grey-200);
    box-shadow: var(--shadow-card);
}

.blog-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blog-detail-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--grey-100);
}

.blog-detail-image-placeholder i {
    font-size: 4rem;
    color: var(--saffron);
    opacity: 0.4;
}

/* Courses */
.course-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--grey-200);
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.course-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.course-card-image {
    height: 200px;
    min-height: 200px;
    background: var(--grey-100);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 1rem;
    box-sizing: border-box;
}

.course-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.course-card-image i {
    font-size: 3.5rem;
    color: var(--saffron);
    opacity: 0.45;
}

.course-badge-featured,
.course-badge-category {
    position: absolute;
    top: 12px;
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
}

.course-badge-featured {
    left: 12px;
    background: var(--saffron);
    color: var(--white);
}

.course-badge-category {
    right: 12px;
    background: var(--grey-900);
    color: var(--white);
}

.course-card-body {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.course-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-bottom: 0.75rem;
}

.course-meta .badge {
    background: var(--grey-100);
    color: var(--grey-800);
    font-weight: 500;
    font-size: 0.7rem;
    border: 1px solid var(--grey-200);
}

.course-card-body h5 {
    font-size: 1.05rem;
    margin-bottom: 0.6rem;
    color: var(--grey-900);
}

.course-desc {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
    min-height: 3.2em;
}

.course-highlights {
    list-style: none;
    padding: 0;
    margin: 0 0 0.85rem;
}

.course-highlights li {
    font-size: 0.8rem;
    color: var(--text-muted);
    padding: 0.2rem 0;
}

.course-highlights li i {
    color: var(--saffron);
    margin-right: 0.4rem;
    font-size: 0.7rem;
}

.course-card-actions {
    display: grid;
    gap: 0.5rem;
    margin-top: auto;
    padding-top: 0.75rem;
}

.courses-grid > [class*="col-"] {
    display: flex;
}

.course-detail-category {
    display: inline-block;
    background: var(--saffron);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.course-detail-visual {
    background: var(--grey-50);
    border-radius: var(--radius-lg);
    border: 2px solid rgba(230, 138, 46, 0.65);
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 1rem;
    box-sizing: border-box;
}

.course-detail-visual img {
    width: 100%;
    height: 100%;
    min-height: 300px;
    object-fit: contain;
    object-position: center;
}

.course-detail-visual i {
    font-size: 5rem;
    color: var(--saffron);
    opacity: 0.45;
}

.course-detail-meta p {
    margin-bottom: 0.5rem;
    color: var(--text-muted);
}

/* CTA — sober bar style */
.cta-section {
    background: var(--gradient-cta);
    position: relative;
    overflow: hidden;
    padding: 48px 0;
}

.cta-section::before { display: none; }

.cta-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
    background: var(--gradient-cta);
    border-radius: var(--radius-lg);
    padding: 2rem 2.5rem;
}

.cta-bar h2 { color: var(--grey-900); font-size: 1.5rem; margin-bottom: 0.25rem; }
.cta-bar p { color: var(--text-muted); font-size: 0.95rem; margin: 0; }

.cta-section h2 { color: var(--grey-900); font-size: 1.5rem; }
.cta-section p { color: var(--text-muted); font-size: 0.95rem; }

/* Footer */
.footer-spiritual {
    background: var(--grey-900);
    color: rgba(255, 255, 255, 0.65);
    padding: 60px 0 0;
}

.footer-spiritual h5 {
    color: var(--white);
    font-family: 'Inter', sans-serif;
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
    font-weight: 600;
}

.footer-spiritual a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: var(--transition);
    display: block;
    padding: 0.25rem 0;
    font-size: 0.9rem;
}

.footer-spiritual a:hover { color: var(--saffron); }

.footer-social a {
    display: inline-flex;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    font-size: 0.85rem;
}

.footer-social a:hover {
    background: var(--saffron);
    color: white !important;
    border-color: var(--saffron);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.25rem 0;
    margin-top: 2.5rem;
    text-align: center;
    font-size: 0.85rem;
}

/* Page Header — minimal */
.page-header {
    background: var(--white);
    padding: 120px 0 48px;
    text-align: center;
    border-bottom: 1px solid var(--grey-200);
}

.page-header h1 {
    color: var(--grey-900);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    margin-bottom: 0.5rem;
}

.page-header p {
    color: var(--text-muted);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
}

.page-header .blog-category {
    position: static;
    display: inline-block;
    margin-bottom: 0.75rem;
}

.breadcrumb-spiritual { background: transparent; justify-content: center; margin-top: 0.75rem; }
.breadcrumb-spiritual .breadcrumb-item a { color: var(--saffron); text-decoration: none; font-size: 0.85rem; }
.breadcrumb-spiritual .breadcrumb-item.active { color: var(--text-muted); font-size: 0.85rem; }
.breadcrumb-spiritual .breadcrumb-item + .breadcrumb-item::before { color: var(--grey-200); }

/* Forms */
.form-spiritual .form-control,
.form-spiritual .form-select {
    border: 1px solid var(--grey-200);
    border-radius: 8px;
    padding: 11px 14px;
    font-family: 'Inter', sans-serif;
    transition: var(--transition);
    background: white;
    font-size: 0.9rem;
}

.form-spiritual .form-control:focus,
.form-spiritual .form-select:focus {
    border-color: var(--saffron);
    box-shadow: 0 0 0 3px rgba(255, 153, 51, 0.12);
}

.form-spiritual label {
    font-weight: 500;
    color: var(--grey-800);
    margin-bottom: 0.4rem;
    font-size: 0.875rem;
}

.form-spiritual .password-field-group {
    flex-wrap: nowrap;
}

.form-spiritual .password-field-group .form-control {
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
    border-right: 0;
    box-shadow: none;
}

.form-spiritual .password-field-group .password-toggle-btn {
    background: #fff;
    border: 1px solid var(--grey-200);
    border-left: 0;
    border-top-right-radius: 8px !important;
    border-bottom-right-radius: 8px !important;
    padding: 0 14px;
    color: var(--text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    font-size: 0.95rem;
    box-shadow: none;
}

.form-spiritual .password-field-group .password-toggle-btn:hover,
.form-spiritual .password-field-group .password-toggle-btn:focus {
    color: var(--saffron);
    background: #fff;
    outline: none;
    box-shadow: none;
}

.form-spiritual .password-field-group .form-control:focus {
    box-shadow: none;
}

.form-spiritual .password-field-group:focus-within .form-control,
.form-spiritual .password-field-group:focus-within .password-toggle-btn {
    border-color: var(--saffron);
}

.form-spiritual .password-field-group:focus-within {
    box-shadow: 0 0 0 3px rgba(255, 153, 51, 0.12);
    border-radius: 8px;
}

/* Stats */
.stat-card { text-align: center; padding: 1.5rem; }

.stat-number {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    color: var(--white);
    font-weight: 700;
}

.stat-label { color: rgba(255, 255, 255, 0.85); font-size: 0.9rem; margin-top: 0.25rem; }

.stats-section { background: var(--gradient-hero); }

/* FAQ */
.accordion-spiritual .accordion-item {
    border: 1px solid var(--grey-200);
    border-radius: var(--radius) !important;
    margin-bottom: 0.75rem;
    overflow: hidden;
}

.accordion-spiritual .accordion-button {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: var(--grey-900);
    background: white;
    padding: 1rem 1.25rem;
    font-size: 0.95rem;
}

.accordion-spiritual .accordion-button:not(.collapsed) {
    background: var(--grey-50);
    color: var(--saffron);
    box-shadow: none;
}

.accordion-spiritual .accordion-button:focus { box-shadow: none; }

/* Floating Actions */
.float-actions {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.float-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
    transition: var(--transition);
    text-decoration: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.float-btn:hover {
    transform: scale(1.08);
    color: white;
}

.whatsapp-float {
    background: #25D366;
    color: white;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
}

.whatsapp-float:hover {
    color: white;
}

.call-float {
    background: var(--saffron);
    color: white;
    box-shadow: 0 4px 16px rgba(255, 153, 51, 0.35);
}

.call-float:hover {
    color: white;
}

.back-to-top {
    background: var(--grey-900);
    color: white;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    pointer-events: none;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.back-to-top:hover {
    background: var(--saffron);
    color: white;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

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

/* Contact page */
.contact-card,
.contact-form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid var(--grey-200);
    box-shadow: var(--shadow-card);
    height: 100%;
}

.contact-card h4,
.contact-form-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--grey-900);
    margin-bottom: 1.5rem;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 1.75rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.contact-info-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: var(--saffron);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
}

.contact-info-item h6 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--grey-900);
    margin-bottom: 0.2rem;
}

.contact-info-item a,
.contact-info-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}

.contact-actions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.contact-actions .btn {
    font-size: 0.8rem;
    padding: 8px 10px;
    white-space: nowrap;
}

.feature-card.text-start .feature-icon,
.feature-icon.ms-0 {
    margin: 0;
}

.contact-form-card .section-title {
    font-size: 1.15rem;
    margin-bottom: 0.35rem;
}

@media (max-width: 575px) {
    .contact-actions { grid-template-columns: 1fr; }
}

.filter-sidebar {
    background: white;
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    border: 1px solid var(--grey-200);
    position: sticky;
    top: 90px;
    box-shadow: var(--shadow-card);
}

.filter-sidebar h5 { color: var(--grey-900); margin-bottom: 1rem; font-size: 1rem; font-weight: 600; }

.calculator-widget {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid var(--grey-200);
    box-shadow: var(--shadow-card);
}

.calculator-result {
    background: var(--grey-50);
    border-radius: 8px;
    padding: 1.25rem;
    margin-top: 1rem;
    display: none;
}

.cart-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--saffron);
    color: white;
    font-size: 0.65rem;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

/* About block */
.about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--grey-100);
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image i { font-size: 4rem; color: var(--saffron); opacity: 0.3; }

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.about-image-portrait {
    height: auto;
    min-height: 380px;
    max-height: 520px;
    padding: 1rem;
    background: var(--white);
}

.about-image-portrait img {
    width: 100%;
    height: auto;
    max-height: 480px;
    object-fit: contain;
    object-position: center top;
}

/* Admin (unchanged structure, sober fonts) */
.admin-sidebar {
    background: var(--grey-900);
    min-height: 100vh;
    width: 260px;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 100;
    transition: var(--transition);
}

.admin-sidebar .brand {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--saffron);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 700;
}

.admin-sidebar .nav-link {
    color: rgba(255, 255, 255, 0.65);
    padding: 0.7rem 1.5rem;
    transition: var(--transition);
    border-left: 3px solid transparent;
    font-size: 0.875rem;
}

.admin-sidebar .nav-link:hover,
.admin-sidebar .nav-link.active {
    color: var(--saffron);
    background: rgba(255, 153, 51, 0.08);
    border-left-color: var(--saffron);
}

.admin-sidebar .nav-link i { width: 22px; margin-right: 8px; }

.admin-content {
    margin-left: 260px;
    padding: 1.5rem;
    background: var(--grey-50);
    min-height: 100vh;
}

.admin-topbar {
    background: white;
    padding: 0.875rem 1.5rem;
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-card);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stat-box {
    background: white;
    border-radius: var(--radius);
    padding: 1.25rem;
    border-left: 3px solid var(--saffron);
    box-shadow: var(--shadow-card);
    transition: var(--transition);
}

.stat-box:hover { box-shadow: var(--shadow-hover); }

.stat-box .stat-value {
    font-family: 'Inter', sans-serif;
    font-size: 1.75rem;
    color: var(--grey-900);
    font-weight: 700;
}

.stat-box .stat-label { color: var(--text-muted); font-size: 0.85rem; }

.admin-table {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.admin-table th {
    background: var(--grey-50);
    color: var(--grey-800);
    font-weight: 600;
    border: none;
    padding: 0.875rem 1rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.admin-table td { padding: 0.875rem 1rem; vertical-align: middle; border-color: var(--grey-100); }

.admin-form {
    background: white;
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--shadow-card);
}

.badge-status { padding: 4px 10px; border-radius: 6px; font-size: 0.75rem; font-weight: 600; }

.spinner-spiritual {
    width: 32px;
    height: 32px;
    border: 2px solid var(--grey-200);
    border-top-color: var(--saffron);
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
}

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

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

.alert-spiritual { border-radius: 8px; border: none; padding: 0.875rem 1.25rem; font-size: 0.9rem; }
.alert-spiritual-success { background: #E8F5E9; color: #2E7D32; }
.alert-spiritual-error { background: #FFEBEE; color: #C62828; }

/* Service Detail */
.service-detail-visual {
    background: var(--grey-50);
    border-radius: var(--radius-lg);
    border: 2px solid rgba(230, 138, 46, 0.65);
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.service-detail-visual img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
}

.service-detail-visual i {
    font-size: 5rem;
    color: var(--saffron);
    opacity: 0.45;
}

.service-detail-feature {
    background: var(--white);
    border: 2px solid rgba(230, 138, 46, 0.65);
    border-radius: var(--radius);
    padding: 1.25rem;
    height: 100%;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    box-shadow: var(--shadow-card);
}

.service-detail-feature i {
    color: var(--saffron);
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.service-detail-steps {
    padding-left: 1.25rem;
    margin: 0;
}

.service-detail-steps li {
    color: var(--text-muted);
    padding: 0.65rem 0;
    border-bottom: 1px solid var(--grey-100);
}

.service-detail-steps li:last-child {
    border-bottom: none;
}

.service-detail-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-detail-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text-muted);
    padding: 0.65rem 0;
    border-bottom: 1px solid var(--grey-100);
}

.service-detail-list li:last-child {
    border-bottom: none;
}

.service-detail-list li i {
    color: var(--saffron);
    font-size: 0.7rem;
    margin-top: 6px;
}

/* Responsive */
@media (max-width: 991px) {
    .pricing-card.popular { transform: none; }
    .admin-sidebar { transform: translateX(-100%); }
    .admin-sidebar.show { transform: translateX(0); }
    .admin-content { margin-left: 0; }
    .cta-bar { flex-direction: column; text-align: center; }
}

@media (max-width: 767px) {
    .section-padding { padding: 56px 0; }
    .hero-content { padding: 110px 0 60px; }
    .hero-orb-1 { width: 260px; height: 260px; }
    .hero-orb-2 { width: 200px; height: 200px; }
    .hero-pill { font-size: 0.75rem; padding: 8px 14px; }
    .page-header { padding: 100px 0 40px; }
    .shop-sidebar-inner { position: static; top: auto; }
    .filter-sidebar { position: static; top: auto; }
    .shop-toolbar {
        flex-direction: column;
        align-items: stretch;
    }
    .shop-filter-bar {
        width: 100%;
    }
    .blog-filter-search {
        width: 100%;
    }
}
