/* ==========================================================================
   OnlyMantra Category Hub & Devotional Form Styles
   Rich Aesthetics, Glassmorphism, Multi-Color Themes, Animated Om & Yantra
   ========================================================================== */

:root {
    --om-primary: #ea580c;
    --om-primary-dark: #c2410c;
    --om-primary-light: #fff7ed;
    --om-accent: #c2185b;
    --om-gold: #f59e0b;
    --om-gold-light: #fef9e7;
    --om-bg-soft: #f8fafc;
    --om-card-bg: rgba(255, 255, 255, 0.85);
    --om-border-soft: rgba(255, 255, 255, 0.95);
    --om-text-main: #0f172a;
    --om-text-muted: #64748b;
    --om-radius-md: 14px;
    --om-radius-lg: 18px;
    --om-shadow-card: 0 4px 20px -2px rgba(15, 23, 42, 0.05), 0 2px 6px -1px rgba(15, 23, 42, 0.03);
    --om-shadow-hover: 0 16px 32px -4px rgba(15, 23, 42, 0.08), 0 4px 12px -2px rgba(15, 23, 42, 0.04);
    --om-transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.om-category-hub {
    background-color: var(--om-bg-soft);
    min-height: 100vh;
    padding-bottom: 80px;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Inter', system-ui, sans-serif;
    color: var(--om-text-main);
}

/* --------------------------------------------------------------------------
   Animations (Om Float, Mandala Spin, Light Aura Pulse)
   -------------------------------------------------------------------------- */
@keyframes omFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg) scale(1);
    }
    50% {
        transform: translateY(-16px) rotate(4deg) scale(1.05);
    }
}

@keyframes omFloatReverse {
    0%, 100% {
        transform: translateY(0px) rotate(0deg) scale(1);
    }
    50% {
        transform: translateY(14px) rotate(-5deg) scale(0.96);
    }
}

@keyframes mandalaSpin {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes auraPulse {
    0%, 100% {
        opacity: 0.35;
        transform: scale(1);
    }
    50% {
        opacity: 0.75;
        transform: scale(1.2);
    }
}

/* --------------------------------------------------------------------------
   Hero Header Section with Dynamic Category Themes
   -------------------------------------------------------------------------- */
.om-cat-hero {
    color: #ffffff;
    padding: 56px 0 64px;
    position: relative;
    overflow: hidden;
    border-bottom: 3px solid var(--om-gold);
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.5) 0%, rgba(20, 10, 5, 0.75) 100%),
                url('../images/om-hero-clean.webp') center center / cover no-repeat;
    box-shadow: inset 0 -20px 40px rgba(0, 0, 0, 0.3);
}

/* Theme 1: Mantras */
.om-theme-mantras {
    background: linear-gradient(180deg, rgba(9, 13, 22, 0.55) 0%, rgba(67, 20, 7, 0.8) 100%),
                url('../images/om-hero-clean.webp') center center / cover no-repeat !important;
    border-bottom-color: #f97316 !important;
}

/* Theme 2: Stotras */
.om-theme-stotras {
    background: linear-gradient(180deg, rgba(42, 8, 8, 0.55) 0%, rgba(120, 53, 15, 0.8) 100%),
                url('../images/om-hero-clean.webp') center center / cover no-repeat !important;
    border-bottom-color: #eab308 !important;
}

/* Theme 3: Ashtottaras */
.om-theme-ashtottaras {
    background: linear-gradient(180deg, rgba(56, 4, 21, 0.55) 0%, rgba(157, 23, 77, 0.8) 100%),
                url('../images/om-hero-clean.webp') center center / cover no-repeat !important;
    border-bottom-color: #fb7185 !important;
}

/* Theme 4: Sahasranamas */
.om-theme-sahasranamas {
    background: linear-gradient(180deg, rgba(24, 11, 46, 0.55) 0%, rgba(88, 28, 135, 0.8) 100%),
                url('../images/om-hero-clean.webp') center center / cover no-repeat !important;
    border-bottom-color: #d946ef !important;
}

/* Theme 5: Kavachams */
.om-theme-kavachams {
    background: linear-gradient(180deg, rgba(2, 32, 24, 0.55) 0%, rgba(4, 120, 87, 0.8) 100%),
                url('../images/om-hero-clean.webp') center center / cover no-repeat !important;
    border-bottom-color: #10b981 !important;
}

/* Theme 6: Chalisas */
.om-theme-chalisas {
    background: linear-gradient(180deg, rgba(80, 23, 6, 0.55) 0%, rgba(194, 65, 12, 0.8) 100%),
                url('../images/om-hero-clean.webp') center center / cover no-repeat !important;
    border-bottom-color: #fbbf24 !important;
}

/* Theme 7: Suprabhatams & Aartis */
.om-theme-suprabhatams {
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.55) 0%, rgba(180, 83, 9, 0.8) 100%),
                url('../images/om-hero-clean.webp') center center / cover no-repeat !important;
    border-bottom-color: #f59e0b !important;
}

/* --------------------------------------------------------------------------
   Floating Sacred Animated Elements in Hero
   -------------------------------------------------------------------------- */
.om-hero-ambient-wrap {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.om-bg-mandala {
    position: absolute;
    right: -80px;
    top: 50%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    border: 2px dashed rgba(255, 255, 255, 0.18);
    box-shadow: 0 0 90px rgba(255, 183, 77, 0.2), inset 0 0 80px rgba(255, 255, 255, 0.06);
    animation: mandalaSpin 120s linear infinite;
}

.om-bg-mandala::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 440px;
    height: 440px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 215, 0, 0.25);
}

.om-bg-mandala::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 280px;
    height: 280px;
    border-radius: 50%;
    border: 2px dotted rgba(255, 255, 255, 0.3);
}

.om-bg-floating-om {
    position: absolute;
    right: 150px;
    top: 45%;
    transform: translateY(-50%);
    font-size: 150px;
    color: rgba(255, 255, 255, 0.2);
    text-shadow: 0 0 50px rgba(255, 200, 100, 0.5), 0 0 20px rgba(255, 255, 255, 0.3);
    animation: omFloat 6s ease-in-out infinite;
    user-select: none;
    font-family: 'Noto Serif Devanagari', serif;
    font-weight: 700;
}

.om-bg-floating-star1 {
    position: absolute;
    left: 8%;
    top: 18%;
    font-size: 30px;
    color: rgba(255, 255, 255, 0.6);
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
    animation: omFloatReverse 5s ease-in-out infinite;
}

.om-bg-floating-star2 {
    position: absolute;
    right: 38%;
    bottom: 12%;
    font-size: 34px;
    color: rgba(255, 230, 120, 0.55);
    text-shadow: 0 0 20px rgba(255, 200, 50, 0.7);
    animation: omFloat 7s ease-in-out infinite;
}

.om-bg-orb-glow {
    position: absolute;
    right: 18%;
    top: 5%;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(255, 170, 0, 0.35) 0%, transparent 70%);
    filter: blur(45px);
    animation: auraPulse 5s ease-in-out infinite;
}

.om-cat-hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

.om-cat-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    color: #fed7aa;
    margin-bottom: 22px;
}

.om-cat-breadcrumbs a {
    color: #fef08a;
    text-decoration: none;
    transition: var(--om-transition);
}

.om-cat-breadcrumbs a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.om-cat-badge-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 16px;
}

.om-cat-count-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #ffffff;
    font-size: 13.5px;
    font-weight: 700;
    padding: 5px 16px;
    border-radius: 50px;
    letter-spacing: 0.5px;
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.om-cat-verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(16, 185, 129, 0.3);
    border: 1px solid rgba(52, 211, 153, 0.6);
    color: #a7f3d0;
    font-size: 12.5px;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 50px;
    backdrop-filter: blur(8px);
}

.om-cat-title-main {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Inter', system-ui, sans-serif;
    font-size: 42px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 10px;
    line-height: 1.15;
    text-shadow: 0 3px 14px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.035em;
}

.om-cat-title-subtitle {
    font-family: 'Ramabhadra', 'Mandali', 'Suranna', 'Noto Serif Telugu', sans-serif;
    font-size: 18.5px;
    color: #fef08a;
    margin: 0 0 18px;
    font-weight: 400;
    letter-spacing: 0.3px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.om-cat-description {
    font-size: 16.5px;
    line-height: 1.75;
    color: #f8fafc;
    max-width: 800px;
    margin: 0 0 28px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
}

/* Universal Glassmorphic Stats Strip */
.om-scr-stats-strip {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 16px !important;
    padding-top: 20px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.om-scr-stat-box {
    display: inline-flex !important;
    align-items: center !important;
    gap: 12px !important;
    background: rgba(0, 0, 0, 0.3) !important;
    padding: 10px 18px !important;
    border-radius: 12px !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
}

.om-scr-stat-icon {
    font-size: 22px !important;
    line-height: 1 !important;
}

.om-scr-stat-value {
    font-size: 14.5px !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    line-height: 1.2 !important;
}

.om-scr-stat-label {
    font-size: 11px !important;
    color: #fed7aa !important;
    font-weight: 500 !important;
}

.om-hero-ambient-wrap,
.om-cat-ambient-bg {
    display: none !important;
}

/* --------------------------------------------------------------------------
   Filter & Interactive Controls Bar
   -------------------------------------------------------------------------- */
.om-cat-controls-bar {
    max-width: 1280px;
    margin: -26px auto 36px;
    padding: 0 24px;
    position: relative;
    z-index: 10;
}

.om-controls-card {
    background: var(--om-card-bg);
    border-radius: var(--om-radius-md);
    padding: 22px 26px;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.09);
    border: 1px solid var(--om-border-soft);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.om-search-row {
    display: flex;
    gap: 16px;
    align-items: center;
}

.om-search-input-wrap {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
}

.om-search-icon {
    position: absolute;
    left: 16px;
    font-size: 18px;
    color: var(--om-text-muted);
    pointer-events: none;
}

.om-filter-search-input {
    width: 100%;
    padding: 14px 18px 14px 48px;
    font-size: 15.5px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    background: #f8fafc;
    color: var(--om-text-main);
    transition: var(--om-transition);
}

.om-filter-search-input:focus {
    outline: none;
    border-color: var(--om-primary);
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.18);
}

.om-sort-select {
    padding: 14px 20px;
    font-size: 14px;
    font-weight: 600;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    background: #f8fafc;
    color: var(--om-text-main);
    cursor: pointer;
    transition: var(--om-transition);
}

.om-sort-select:focus {
    outline: none;
    border-color: var(--om-primary);
}

/* Deity Filter Pills */
.om-pills-row {
    display: flex;
    align-items: center;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: thin;
}

.om-pills-row::-webkit-scrollbar {
    height: 4px;
}

.om-pills-row::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

.om-filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    color: #475569;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13.5px;
    font-weight: 600;
    white-space: nowrap;
    cursor: pointer;
    transition: var(--om-transition);
}

.om-filter-btn:hover {
    background: #e2e8f0;
    color: var(--om-text-main);
    transform: translateY(-2px);
}

.om-filter-btn.active {
    background: var(--om-primary);
    border-color: var(--om-primary);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(255, 107, 0, 0.35);
}

.om-filter-btn .pill-count {
    background: rgba(0, 0, 0, 0.08);
    padding: 1px 7px;
    border-radius: 20px;
    font-size: 11.5px;
}

.om-filter-btn.active .pill-count {
    background: rgba(255, 255, 255, 0.28);
    color: #ffffff;
}

/* --------------------------------------------------------------------------
   Layout: Main Grid (68%) + Sidebar (32%)
   -------------------------------------------------------------------------- */
.om-cat-main-layout {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 36px;
    align-items: start;
}

/* Spotlight Essential Cards */
.om-spotlight-section {
    margin-bottom: 36px;
}

.om-section-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--om-accent);
    margin-bottom: 8px;
}

.om-section-title-wrap h2 {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Inter', system-ui, sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: var(--om-text-main);
    margin: 0 0 20px;
    letter-spacing: -0.025em;
}

.om-spotlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

/* --------------------------------------------------------------------------
   Interactive Devotional Cards (Grid)
   -------------------------------------------------------------------------- */
.om-items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
    gap: 24px;
}

.om-mantra-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    border: 1px solid rgba(255, 255, 255, 0.95);
    border-radius: var(--om-radius-md);
    padding: 22px;
    box-shadow: var(--om-shadow-card);
    transition: var(--om-transition);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
}

.om-mantra-card:hover {
    background: #ffffff;
    transform: translateY(-4px);
    box-shadow: var(--om-shadow-hover);
    border-color: #fed7aa;
}

.om-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.om-card-deity-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #fff7ed;
    border: 1px solid #fed7aa;
    color: #c2410c;
    font-size: 12px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
}

.om-card-type-tag {
    font-size: 11px;
    font-weight: 700;
    color: #64748b;
    background: #f1f5f9;
    padding: 2px 8px;
    border-radius: 6px;
    text-transform: uppercase;
}

.om-card-title-en {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Inter', system-ui, sans-serif;
    font-size: 18.5px;
    font-weight: 700;
    color: var(--om-text-main);
    margin: 0 0 6px;
    line-height: 1.3;
    letter-spacing: -0.02em;
    transition: var(--om-transition);
}

.om-mantra-card:hover .om-card-title-en {
    color: var(--om-primary);
}

.om-card-title-sub {
    font-family: 'Ramabhadra', 'Mandali', 'Suranna', 'Noto Serif Telugu', sans-serif;
    font-size: 13.5px;
    color: #854d0e;
    margin: 0 0 14px;
    font-weight: 400;
    letter-spacing: 0.2px;
}

/* Verse Snippet inside card */
.om-card-verse-box {
    background: #fffbf5;
    border-left: 3px solid var(--om-primary);
    padding: 12px 14px;
    border-radius: 0 8px 8px 0;
    margin-bottom: 16px;
    font-family: 'Ramabhadra', 'Mandali', 'Suranna', 'Noto Serif Telugu', sans-serif;
    font-size: 14px;
    line-height: 1.7;
    color: #334155;
    max-height: 72px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.om-card-meta-row {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    color: var(--om-text-muted);
    margin-bottom: 16px;
    padding-top: 10px;
    border-top: 1px dashed #f1e6da;
}

.om-card-meta-item {
    display: flex;
    align-items: center;
    gap: 4px;
}

.om-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.om-card-action-btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: linear-gradient(135deg, #ff6b00 0%, #d95300 100%);
    color: #ffffff;
    font-size: 13.5px;
    font-weight: 700;
    padding: 9px 16px;
    border-radius: 10px;
    text-decoration: none;
    transition: var(--om-transition);
    box-shadow: 0 2px 6px rgba(255, 107, 0, 0.2);
}

.om-card-action-btn:hover {
    background: linear-gradient(135deg, #e65100 0%, #b73e00 100%);
    box-shadow: 0 4px 12px rgba(255, 107, 0, 0.35);
    color: #ffffff;
}

.om-card-copy-btn {
    background: #f8fafc;
    border: 1px solid #cbd5e1;
    color: #475569;
    padding: 9px 12px;
    border-radius: 10px;
    font-size: 13px;
    cursor: pointer;
    transition: var(--om-transition);
}

.om-card-copy-btn:hover {
    background: #e2e8f0;
    color: var(--om-text-main);
}

/* --------------------------------------------------------------------------
   Sidebar Components
   -------------------------------------------------------------------------- */
.om-cat-sidebar {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.om-sidebar-box {
    background: var(--om-card-bg);
    border: 1px solid var(--om-border-soft);
    border-radius: var(--om-radius-md);
    padding: 22px;
    box-shadow: var(--om-shadow-card);
}

.om-sidebar-title {
    font-family: 'Philosopher', 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--om-text-main);
    margin: 0 0 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid #ffeedd;
    display: flex;
    align-items: center;
    gap: 8px;
}

.om-categories-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.om-cat-nav-item a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    border-radius: 10px;
    background: #f8fafc;
    color: #334155;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: var(--om-transition);
    border: 1px solid transparent;
}

.om-cat-nav-item a:hover {
    background: #fff7ed;
    color: var(--om-primary);
    border-color: #fed7aa;
    transform: translateX(4px);
}

.om-cat-nav-item.active a {
    background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
    color: var(--om-primary-dark);
    border-color: #fdba74;
    font-weight: 700;
}

.om-cat-nav-count {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
    color: #64748b;
}

/* Japa Mala Guide Card in Sidebar */
.om-japa-guide-card {
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
    border: 1px solid #fde68a;
    border-radius: var(--om-radius-md);
    padding: 20px;
}

.om-japa-guide-card h4 {
    font-family: 'Philosopher', 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    font-size: 16px;
    color: #92400e;
    margin: 0 0 10px;
}

.om-japa-guide-card p {
    font-size: 13.5px;
    line-height: 1.6;
    color: #78350f;
    margin: 0 0 12px;
}

/* AdSense Slot in Sidebar */
.om-cat-ad-slot {
    background: #fafafa;
    border: 1px dashed #d1d5db;
    border-radius: var(--om-radius-md);
    padding: 16px;
    text-align: center;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.om-ad-label {
    font-size: 11px;
    font-weight: 700;
    color: #9ca3af;
    letter-spacing: 0.8px;
    margin-bottom: 8px;
}

.om-ad-hint {
    font-size: 12px;
    color: #cbd5e1;
}

/* --------------------------------------------------------------------------
   Educational Japa Accordion Section
   -------------------------------------------------------------------------- */
.om-cat-guide-section {
    max-width: 1280px;
    margin: 48px auto 0;
    padding: 0 24px;
}

.om-guide-box {
    background: var(--om-card-bg);
    border-radius: var(--om-radius-lg);
    padding: 36px;
    border: 1px solid var(--om-border-soft);
    box-shadow: var(--om-shadow-card);
}

.om-guide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-top: 24px;
}

.om-guide-step {
    background: #fafaf9;
    border-radius: 12px;
    padding: 20px;
    border-left: 4px solid var(--om-primary);
}

.om-guide-step-num {
    font-size: 12px;
    font-weight: 800;
    color: var(--om-primary);
    text-transform: uppercase;
    margin-bottom: 6px;
}

.om-guide-step h4 {
    font-size: 16px;
    margin: 0 0 8px;
    color: var(--om-text-main);
}

.om-guide-step p {
    font-size: 13.5px;
    line-height: 1.6;
    color: var(--om-text-muted);
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .om-cat-main-layout {
        grid-template-columns: 1fr;
    }
    .om-cat-sidebar {
        margin-top: 20px;
    }
    .om-bg-floating-om {
        font-size: 100px;
        right: 40px;
    }
}

@media (max-width: 768px) {
    .om-hero-ambient-wrap,
    .om-cat-ambient-bg,
    .om-bg-floating-om,
    .om-bg-mandala,
    .om-cat-bg-mandala,
    .om-cat-bg-symbol {
        display: none !important;
    }
    .om-cat-title-main {
        font-size: 26px !important;
        font-family: 'Marcellus', 'Rozha One', 'Playfair Display', serif !important;
    }
    .om-cat-hero,
    .om-chant-hero {
        padding: 32px 0 36px !important;
    }
    .om-controls-card {
        padding: 16px !important;
    }
    .om-search-row {
        flex-direction: column !important;
    }
    .om-sort-select {
        width: 100% !important;
    }
    .om-items-grid,
    .om-chant-forms-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }
}
