/* 
  Theme Name: Sylvan River
  Description: Premium Glassmorphic aesthetic inspired by Nature and Rivers for Core CMS.
  Version: 1.0.5
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Outfit:wght@400;500;700;800;900&display=swap');

:root {
    /* Primary brand colors */
    --primary: #10b981;
    /* Emerald green */
    --primary-hover: #34d399;
    --primary-glow: rgba(16, 185, 129, 0.5);
    --secondary: #0ea5e9;
    /* River blue */
    --accent: #84cc16;
    /* Lime/Leaf green */

    /* Backgrounds and Text */
    --bg-color: #041710;
    /* Very dark forest green */
    --text-color: #d1d5db;
    --text-bright: #ffffff;

    /* Glassmorphism System */
    --glass-bg: rgba(255, 255, 255, 0.04);
    --glass-bg-hover: rgba(255, 255, 255, 0.08);
    --glass-blur: blur(16px);
    --glass-blur-heavy: blur(25px);
    --glass-border: 1px solid rgba(255, 255, 255, 0.1);

    /* UI Structure */
    --border-radius: 20px;
    --border-radius-sm: 12px;
    --card-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.6), 0 4px 6px -2px rgba(0, 0, 0, 0.4);

    /* Typography Gradients */
    --gradient-primary: linear-gradient(135deg, var(--secondary), var(--primary));
    --gradient-brand: linear-gradient(135deg, var(--primary), var(--accent));
    --gradient-text: linear-gradient(135deg, #ffffff 0%, var(--primary) 100%);
}

/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    min-height: 100vh;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;

    /* Forest River Background */
    background-image: url('https://images.unsplash.com/photo-1448375240586-882707db888b?auto=format&fit=crop&w=1950');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;

    display: flex;
    flex-direction: column;
}

/* Disable default background image when Hero Engine is active (unless Layer Over Mode is enabled) */
body.has-hero-engine:not(.hero-layer-mode) {
    background-image: none !important;
}

/* Let the Hero Background Engine shine through */
body.has-hero-engine .site-wrapper,
body.has-hero-engine main {
    background-color: transparent !important;
}

/* iOS background-attachment fix */
@media (max-width: 1024px) {
    body {
        background-attachment: scroll;
    }

    body::before {
        content: '';
        position: fixed;
        inset: 0;
        z-index: -1;
        background-image: inherit;
        background-size: cover;
        background-position: center;
        pointer-events: none;
    }
}

/* Dark Radial Main Overlay */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(16, 185, 129, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(14, 165, 233, 0.08) 0%, transparent 40%),
        rgba(4, 23, 16, 0.7);
    z-index: -1;
    pointer-events: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    color: var(--text-bright);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    letter-spacing: -0.01em;
}

p {
    margin-bottom: 1.5rem;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-hover);
}

/* Globals */
body.no-scroll {
    overflow: hidden;
}

.mobile-only {
    display: none !important;
}

.desktop-only {
    display: block !important;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    flex: 1;
}

.text-center {
    text-align: center;
}

/* The Header */
.tool-header {
    background: rgba(4, 23, 16, 0.5);
    backdrop-filter: var(--glass-blur-heavy);
    -webkit-backdrop-filter: var(--glass-blur-heavy);
    border-bottom: var(--glass-border);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 30px;
    gap: 1rem;
}

.site-logo {
    max-height: 40px;
}

.site-identity h2 {
    margin: 0;
    font-size: 1.5rem;
}

/* Navigation */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 1rem;
    align-items: center;
}

.nav-menu li a {
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-sm);
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: var(--text-bright);
    background: rgba(255, 255, 255, 0.08);
}

/* Dropdown Support */
.nav-menu li {
    position: relative;
}

/* Indicator for items with submenus */
.nav-menu li:has(ul)>a::after {
    content: '▾';
    margin-left: 5px;
    font-size: 0.8em;
    opacity: 0.6;
}

.nav-menu li ul {
    position: absolute;
    top: calc(100% - 2px);
    left: 0;
    min-width: 200px;
    background: rgba(4, 23, 16, 0.9);
    backdrop-filter: var(--glass-blur-heavy);
    -webkit-backdrop-filter: var(--glass-blur-heavy);
    border: var(--glass-border);
    border-radius: var(--border-radius-sm);
    padding: 10px 0;
    list-style: none;
    display: none;
    flex-direction: column;
    gap: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    margin-top: 0;
}

.nav-menu li ul::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 0;
    right: 0;
    height: 8px;
    background: transparent;
}

.nav-menu li:hover>ul {
    display: flex;
}

.nav-menu li ul li a {
    display: block;
    padding: 10px 20px;
    border-radius: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.nav-menu li ul li a:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-bright);
}

.nav-menu li ul li:first-child a {
    border-radius: var(--border-radius-sm) var(--border-radius-sm) 0 0;
}

.nav-menu li ul li:last-child a {
    border-radius: 0 0 var(--border-radius-sm) var(--border-radius-sm);
}

/* Glass Panels */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: var(--glass-border);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    box-shadow: var(--card-shadow);
    transition: all 0.4s ease;
}

.glass-panel:hover {
    background: var(--glass-bg-hover);
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

/* Gradients text utility */
.gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

/* Buttons */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.8rem;
    border-radius: var(--border-radius-sm);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.cta-button.primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 15px var(--primary-glow);
}

.cta-button.primary:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.6);
}

/* Breadcrumbs */
.breadcrumbs-container {
    margin: 1rem auto;
}

.breadcrumbs-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: var(--glass-blur);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    border: var(--glass-border);
    font-size: 0.85rem;
}

/* Main Content Area Styling (Editor.js Integration) */
main.container>h1 {
    text-align: center;
    margin-top: 3rem;
    font-size: clamp(2.5rem, 5vw, 4rem);
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

/* Editor Grid Systems */
.editor-columns {
    display: grid;
    gap: 20px;
    margin: 1.5em 0;
}

@media (min-width: 768px) {
    .editor-columns--2 {
        grid-template-columns: 1fr 1fr;
    }

    .editor-columns--3 {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media (max-width: 767px) {
    .editor-columns {
        grid-template-columns: 1fr;
    }
}

/* Alignment Utilities */
.text-left {
    text-align: left;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-justify {
    text-align: justify;
}

.entry-content {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: var(--glass-border);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    box-shadow: var(--card-shadow);
    margin: 2rem 0;
}

.entry-content h2,
.entry-content h3 {
    margin-top: 2rem;
}

.entry-content .editor-image img {
    max-width: 100%;
    border-radius: var(--border-radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.entry-content blockquote {
    border-left: 4px solid var(--primary);
    padding-left: 1rem;
    font-style: italic;
    background: rgba(255, 255, 255, 0.02);
    padding: 1rem;
    border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
}

/* Tables */
.editor-table-wrapper {
    overflow-x: auto;
    margin: 2rem 0;
    border-radius: var(--border-radius-sm);
    border: var(--glass-border);
    transition: all 0.3s ease;
}

.editor-table-wrapper.stretched {
    width: 100%;
}

.editor-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.03);
}

.stretched .editor-table {
    width: 100% !important;
}

.editor-table th,
.editor-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.editor-table th {
    background: rgba(255, 255, 255, 0.05);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--text-bright);
}

.editor-table tr:last-child td {
    border-bottom: none;
}

/* Sections / Groups */
.editor-section {
    padding: 2.5rem;
    border-radius: var(--border-radius);
    margin: 2rem 0;
    border: var(--glass-border);
}

.editor-section.style-glass {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
}

.editor-section.style-dark {
    background: rgba(4, 23, 16, 0.6);
    backdrop-filter: var(--glass-blur-heavy);
}

.editor-section.style-primary {
    background: rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.3);
}

.editor-section.style-accent {
    background: rgba(132, 204, 22, 0.1);
    border-color: rgba(132, 204, 22, 0.3);
}

/* Utility: Table Alignment */
.editor-table-wrapper.text-center .editor-table {
    margin-left: auto;
    margin-right: auto;
    width: auto;
    min-width: 60%;
}

.editor-table-wrapper.text-right .editor-table {
    margin-left: auto;
    width: auto;
    min-width: 60%;
}

.editor-table-wrapper.stretched .editor-table {
    width: 100% !important;
}

.editor-table-wrapper.text-center th,
.editor-table-wrapper.text-center td {
    text-align: center;
}

.editor-table-wrapper.text-right th,
.editor-table-wrapper.text-right td {
    text-align: right;
}

/* --- Editor.js Cover / Hero Block --- */
.editor-cover {
    width: 100%;
    margin: 2rem 0;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 1px solid rgba(16, 185, 129, 0.15);
}

.editor-cover > .editor-cover-overlay,
.editor-cover > .editor-cover-container,
.editor-cover > .editor-cover-spacer-wrapper {
    grid-area: 1 / 1;
}

.editor-cover-spacer-wrapper {
    height: 0;
    overflow: hidden;
    visibility: hidden;
    pointer-events: none;
}

.editor-cover-spacer {
    width: auto;
    max-width: 100%;
    display: block;
}

.editor-cover.height-standard {
    min-height: 400px;
}

.editor-cover.height-half {
    min-height: 50vh;
}

.editor-cover.height-hero {
    min-height: 80vh;
}

.editor-cover.width-full {
    width: 100vw;
    max-width: 100vw;
    position: relative;
    left: calc(-50vw + 50%);
    border-radius: 0;
    border-left: none;
    border-right: none;
}

.editor-cover.width-container {
    max-width: var(--container-width, 1200px);
    margin-left: auto;
    margin-right: auto;
}

.editor-cover.width-100p {
    width: fit-content;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.editor-cover.width-100p .editor-cover-spacer {
    width: auto;
    max-width: 100%;
}

.editor-cover.is-parallax {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

@media (max-width: 1024px) {
    .editor-cover.is-parallax {
        background-attachment: scroll;
    }
}

.editor-cover-overlay {
    z-index: 1;
    transition: all 0.3s ease;
    background-color: var(--overlay-color, rgba(4, 23, 16, 0.6));
    opacity: var(--overlay-opacity, 1);
}

.editor-cover.overlay-glass .editor-cover-overlay {
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    background-color: rgba(4, 23, 16, 0.45) !important;
}

.editor-cover.overlay-theme .editor-cover-overlay {
    backdrop-filter: var(--glass-blur-heavy);
    -webkit-backdrop-filter: var(--glass-blur-heavy);
    background: radial-gradient(circle at center, rgba(4, 23, 16, 0.35) 0%, rgba(4, 23, 16, 0.9) 100%) !important;
    box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.8) !important;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.editor-cover-container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    padding: 3rem 2rem;
    box-sizing: border-box;
    justify-content: center;
    backdrop-filter: none;
}

.editor-cover.align-left .editor-cover-container { align-items: flex-start; text-align: left; }
.editor-cover.align-center .editor-cover-container { align-items: center; text-align: center; }
.editor-cover.align-right .editor-cover-container { align-items: flex-end; text-align: right; }

.editor-cover h1,
.editor-cover h2 {
    color: var(--text-bright);
    margin-bottom: 1.5rem;
    font-family: 'Outfit', sans-serif !important;
    text-shadow: 0 0 10px rgba(16, 185, 129, 0.3) !important;
}

.editor-cover.text-dark {
    color: #041710 !important;
}

.editor-cover.text-light {
    color: #ffffff !important;
}

.editor-cover.text-dark h1,
.editor-cover.text-dark h2,
.editor-cover.text-dark h3,
.editor-cover.text-dark p,
.editor-cover.text-dark span,
.editor-cover.text-dark a {
    background: none !important;
    -webkit-background-clip: initial !important;
    background-clip: initial !important;
    -webkit-text-fill-color: initial !important;
    color: #041710 !important;
    text-shadow: none !important;
}

.editor-cover .editor-section {
    background: rgba(4, 23, 16, 0.6);
    backdrop-filter: var(--glass-blur);
    border: 1px solid rgba(16, 185, 129, 0.15);
}

@media (max-width: 768px) {
    .editor-cover {
        margin: 2rem 0;
        border-radius: var(--border-radius-sm);
    }
    .editor-cover-container {
        padding: 3rem 1.5rem;
    }
}

/* Footer (Apex Structure) */
.site-footer {
    padding: 4rem 0;
    margin-top: auto;
    border-top: var(--glass-border);
    background: rgba(4, 23, 16, 0.5);
    backdrop-filter: var(--glass-blur-heavy);
    -webkit-backdrop-filter: var(--glass-blur-heavy);
    width: 100%;
}

/* Multi-column Footer Support (From XML Layout) */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto 3rem;
    padding: 0 20px;
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-column h3 {
    font-size: 1.1rem;
    font-family: 'Outfit', sans-serif;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-color);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.footer-links svg {
    width: 18px;
    height: 18px;
    opacity: 0.6;
    fill: currentColor;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
    text-align: center;
}

.footer-legal-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    font-size: 0.9rem;
    color: var(--text-bright);
    font-weight: 500;
}


/* Mobile responsive fixes */
@media (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }

    body .mobile-only {
        display: flex !important;
    }

    .tool-header {
        padding: 0;
    }

    .header-container {
        padding: 10px 15px;
    }

    .site-title-text {
        font-size: 1.1rem !important;
    }

    .container {
        padding: 0 12px;
    }

    .entry-content,
    .glass-panel {
        padding: 1.25rem;
        border-radius: var(--border-radius-sm);
        margin: 1rem 0;
    }

    main.container > h1 {
        font-size: clamp(1.8rem, 4vw, 2.5rem);
        margin-top: 1.5rem;
    }

    body .mobile-only.hamburger {
        display: flex !important;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 20px;
        cursor: pointer;
        z-index: 1001;
        /* Above mobile menu overlay */
    }

    .hamburger span {
        display: block;
        height: 3px;
        width: 100%;
        border-radius: 3px;
        background: var(--text-bright);
        transition: all 0.3s ease;
    }

    /* Hamburger X State */
    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    /* Mobile Navigation Overlay */
    .site-navigation {
        position: fixed;
        top: 0;
        left: -100vw;
        width: 100vw;
        height: 100vh;
        background: rgba(4, 23, 16, 0.98);
        backdrop-filter: var(--glass-blur-heavy);
        -webkit-backdrop-filter: var(--glass-blur-heavy);
        z-index: 1000;
        transition: left 0.3s ease, visibility 0.3s ease;
        visibility: hidden;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        box-sizing: border-box;
    }

    .site-navigation.active {
        left: 0;
        visibility: visible;
    }

    .nav-menu {
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 80px 20px 40px 20px;
        gap: 1.5rem;
        overflow-y: auto;
        height: 100%;
        width: 100%;
        box-sizing: border-box;
    }

    /* Custom Mobile Nav Scrollbar */
    .nav-menu::-webkit-scrollbar {
        width: 6px;
    }
    .nav-menu::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.05);
        border-radius: 10px;
    }
    .nav-menu::-webkit-scrollbar-thumb {
        background: var(--gradient-primary);
        border-radius: 10px;
        box-shadow: 0 0 10px var(--primary-glow);
    }

    .nav-menu li {
        width: 100%;
        max-width: 400px;
        text-align: center;
    }

    .nav-menu li a {
        font-size: 1.4rem;
        font-weight: 700;
        color: var(--text-bright);
        padding: 10px 0;
        display: block;
        text-align: center;
        transition: color 0.3s ease;
    }

    .nav-menu li a:hover,
    .nav-menu li a.active {
        color: var(--primary-hover);
        background: transparent;
    }

    /* Mobile Submenu Overrides */
    .nav-menu li ul {
        position: static;
        display: flex;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: none;
        border: var(--glass-border);
        box-shadow: none;
        padding: 10px 0;
        margin-top: 10px;
        border-radius: var(--border-radius-sm);
        width: 100%;
        box-sizing: border-box;
    }

    .nav-menu li ul li {
        max-width: 100%;
    }

    .nav-menu li ul li a {
        font-size: 1.1rem;
        font-weight: 600;
        padding: 8px 15px;
        color: rgba(255, 255, 255, 0.85);
    }

    .nav-menu li ul li a:hover {
        color: var(--primary-hover) !important;
        background: rgba(255, 255, 255, 0.05);
    }

    .site-identity h2 {
        font-size: 1.2rem;
    }
}

/* Scroll to Top Button */
.scroll-top-btn {
    position: fixed;
    z-index: 99;
    border: var(--glass-border);
    outline: none;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    color: var(--text-bright);
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px);
    box-shadow: var(--card-shadow);
    padding: 0;
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top-btn:hover {
    background: var(--glass-bg-hover);
    transform: translateY(-5px) scale(1.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.scroll-top-btn:active {
    transform: translateY(-2px) scale(0.96);
}

.scroll-top-btn svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
    transition: transform 0.3s ease;
}

.scroll-top-btn:hover svg {
    transform: translateY(-2px);
}

/* --- Plugin Overrides: Blogger Feed --- */
.blogger-feed-grid {
    gap: 30px;
    margin: 3rem 0;
}

.blog-card {
    background: var(--glass-bg) !important;
    backdrop-filter: var(--glass-blur) !important;
    -webkit-backdrop-filter: var(--glass-blur) !important;
    border: var(--glass-border) !important;
    border-radius: var(--border-radius) !important;
    padding: 2.5rem !important;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1) !important;
    box-shadow: var(--card-shadow);
}

.blog-card:hover {
    background: var(--glass-bg-hover) !important;
    transform: translateY(-10px) scale(1.02) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5) !important;
}

.blog-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    color: var(--text-bright);
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.blog-meta {
    color: var(--primary) !important;
    font-weight: 800 !important;
    letter-spacing: 0.1em !important;
    opacity: 1 !important;
}

.blog-card p {
    color: var(--text-color);
    opacity: 0.8;
}

.read-more {
    color: var(--primary) !important;
    font-family: 'Outfit', sans-serif;
    font-weight: 900 !important;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.read-more::after {
    content: ' →';
    transition: transform 0.3s ease;
}

.blog-card:hover .read-more::after {
    transform: translateX(5px);
}

/* --- Plugin Overrides: Contact Form --- */
.contact-form-wrapper {
    background: var(--glass-bg) !important;
    backdrop-filter: var(--glass-blur) !important;
    -webkit-backdrop-filter: var(--glass-blur) !important;
    border: var(--glass-border) !important;
    border-radius: var(--border-radius) !important;
    padding: 3rem !important;
    box-shadow: var(--card-shadow);
    color: var(--text-bright);
}

.contact-form-wrapper h3 {
    color: var(--text-bright) !important;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
}

.contact-form-plugin label {
    color: var(--text-bright) !important;
    opacity: 0.9;
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-form-plugin input,
.contact-form-plugin textarea {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: var(--text-bright) !important;
    border-radius: 8px !important;
    font-family: 'Inter', sans-serif;
}

.contact-form-plugin input:focus,
.contact-form-plugin textarea:focus {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: var(--primary) !important;
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.2) !important;
}

.contact-form-plugin .btn {
    background: var(--gradient-text) !important;
    color: #041710 !important;
    border: none !important;
    border-radius: 50px !important;
    transition: all 0.3s ease !important;
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 900;
}

.contact-form-plugin .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    filter: brightness(1.1);
}

.form-feedback.success {
    background: rgba(16, 185, 129, 0.1) !important;
    color: #10b981 !important;
    border: 1px solid rgba(16, 185, 129, 0.3) !important;
}

.form-feedback.error {
    background: rgba(239, 68, 68, 0.1) !important;
    color: #ef4444 !important;
    border: 1px solid rgba(239, 68, 68, 0.3) !important;
}

/* --- Plugin Overrides: Social Sharing --- */
.social-wrapper span {
    color: var(--text-color) !important;
}

.social-sharing {
    border-radius: var(--border-radius-sm) !important;
    background: var(--glass-bg) !important;
    backdrop-filter: var(--glass-blur) !important;
    -webkit-backdrop-filter: var(--glass-blur) !important;
    border: var(--glass-border) !important;
    box-shadow: var(--card-shadow) !important;
}

.social-sharing svg {
    fill: var(--text-bright) !important;
    transition: transform 0.3s ease !important;
}

.social-sharing:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
}

.social-sharing:hover svg {
    transform: scale(1.1) !important;
}

.social-facebook:hover {
    background-color: rgba(59, 89, 152, 0.8) !important;
}

.social-x:hover {
    background-color: rgba(0, 0, 0, 0.8) !important;
}

.social-pinterest:hover {
    background-color: rgba(189, 8, 28, 0.8) !important;
}

.social-linkedin:hover {
    background-color: rgba(0, 119, 181, 0.8) !important;
}

.social-whatsapp:hover {
    background-color: rgba(37, 211, 102, 0.8) !important;
}

.social-reddit:hover {
    background-color: rgba(255, 87, 0, 0.8) !important;
}

.social-telegram:hover {
    background-color: rgba(0, 136, 204, 0.8) !important;
}

.social-truth:hover {
    background-color: rgba(84, 72, 238, 0.8) !important;
}

/* --- Cover / Hero Block (Apex UI) --- */
.editor-cover {
    position: relative;
    width: 100%;
    margin: 0rem 0;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    border: var(--glass-border);
}

.editor-cover.height-standard {
    min-height: 400px;
}

.editor-cover.height-half {
    min-height: 50vh;
}

.editor-cover.height-hero {
    min-height: 100vh;
}

.editor-cover.is-parallax {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.editor-cover-overlay {
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    transition: all 0.4s ease;
}

.editor-cover.overlay-theme .editor-cover-overlay {
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.editor-cover-container {
    padding: 5rem 3rem;
    backdrop-filter: none;
}

/* Glassmorphic nested content support */
.editor-cover .editor-section {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Gradient text for headers inside hero */
.editor-cover h1,
.editor-cover h2 {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
}

.editor-cover.text-dark h1,
.editor-cover.text-dark h2 {
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
    -webkit-text-fill-color: initial;
    color: var(--bg-color);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .editor-cover {
        margin: 2rem 0;
        border-radius: var(--border-radius-sm);
    }

    .editor-cover-container {
        padding: 3rem 1.5rem;
    }
}

/* --- Plugin Overrides: Search --- */
.search-dropdown.glass-panel {
    background: var(--glass-bg) !important;
    backdrop-filter: var(--glass-blur-heavy) !important;
    -webkit-backdrop-filter: var(--glass-blur-heavy) !important;
    border: var(--glass-border) !important;
    box-shadow: var(--card-shadow) !important;
}

.search-dropdown input,
.search-results-form input,
.search-block-wrapper input {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: var(--text-bright) !important;
    border-radius: 8px !important;
    font-family: 'Inter', sans-serif;
}

.search-dropdown input:focus,
.search-results-form input:focus,
.search-block-wrapper input:focus {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: var(--primary) !important;
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.2) !important;
}

.search-dropdown button,
.search-results-form button,
.search-block-wrapper button {
    background: var(--gradient-text) !important;
    color: #041710 !important;
    border: none !important;
    border-radius: 50px !important;
    transition: all 0.3s ease !important;
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 900;
}

.search-dropdown button:hover,
.search-results-form button:hover,
.search-block-wrapper button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    filter: brightness(1.1);
}

/* --- Event Planner Plugin Overrides (Sylvan River Skin) --- */
body .event-glass-card {
    background: var(--glass-bg) !important;
    backdrop-filter: var(--glass-blur) !important;
    -webkit-backdrop-filter: var(--glass-blur) !important;
    border: var(--glass-border) !important;
    border-radius: var(--border-radius) !important;
    box-shadow: var(--card-shadow) !important;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease, border-color 0.3s ease !important;
}

body .event-glass-card:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.5), 0 0 10px var(--primary-glow) !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
}

body .event-btn {
    background: var(--gradient-primary) !important;
    color: #041710 !important;
    border: none !important;
    border-radius: 50px !important;
    padding: 10px 24px !important;
    font-family: 'Outfit', sans-serif !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 12px var(--primary-glow) !important;
    display: inline-block !important;
    text-decoration: none !important;
}

body .event-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 18px rgba(16, 185, 129, 0.4) !important;
    filter: brightness(1.1) !important;
}

body .event-btn-outline {
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: var(--text-color) !important;
    box-shadow: none !important;
}

body .event-btn-outline:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: var(--primary) !important;
    color: var(--text-bright) !important;
}

/* Form Fields */
body .event-planner-wrapper input[type="text"],
body .event-planner-wrapper input[type="email"],
body .event-planner-wrapper select,
body .event-planner-wrapper textarea {
    background: rgba(4, 23, 16, 0.6) !important;
    border: var(--glass-border) !important;
    color: var(--text-bright) !important;
    border-radius: var(--border-radius-sm) !important;
    padding: 10px 15px !important;
    font-family: inherit;
    transition: all 0.3s ease !important;
    outline: none !important;
}

body .event-planner-wrapper input[type="text"]:focus,
body .event-planner-wrapper input[type="email"]:focus,
body .event-planner-wrapper select:focus,
body .event-planner-wrapper textarea:focus {
    border-color: var(--primary) !important;
    box-shadow: 0 0 10px var(--primary-glow) !important;
    background: rgba(4, 23, 16, 0.8) !important;
}

/* View Toggle Switch */
body .event-view-toggle {
    background: var(--glass-bg) !important;
    border: var(--glass-border) !important;
    border-radius: 12px !important;
}

body .event-view-toggle a {
    color: var(--text-color) !important;
}

body .event-view-toggle a.active {
    background: var(--gradient-primary) !important;
    color: #041710 !important;
    box-shadow: 0 4px 10px var(--primary-glow) !important;
}

/* Badges */
body .event-badge.scheduled { background: rgba(14, 165, 233, 0.15) !important; color: #7dd3fc !important; border: 1px solid rgba(14, 165, 233, 0.3) !important; }
body .event-badge.active { background: rgba(16, 185, 129, 0.15) !important; color: #6ee7b7 !important; border: 1px solid rgba(16, 185, 129, 0.3) !important; }
body .event-badge.cancelled { background: rgba(239, 68, 68, 0.15) !important; color: #fca5a5 !important; border: 1px solid rgba(239, 68, 68, 0.3) !important; }
body .event-badge.completed { background: rgba(120, 113, 108, 0.15) !important; color: #e7e5e4 !important; border: 1px solid rgba(120, 113, 108, 0.3) !important; }

/* --- Commerce Shop Plugin Overrides (Sylvan River Skin) --- */
body .shop-wrapper {
    padding: 2rem 0 !important;
}

body .shop-title {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-size: 2.5rem !important;
    margin-bottom: 2rem !important;
    font-family: 'Outfit', sans-serif !important;
    font-weight: 800 !important;
}

body .product-card {
    background: var(--glass-bg) !important;
    backdrop-filter: var(--glass-blur) !important;
    -webkit-backdrop-filter: var(--glass-blur) !important;
    border: var(--glass-border) !important;
    border-radius: var(--border-radius) !important;
    padding: 1.5rem !important;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
    box-shadow: var(--card-shadow) !important;
    display: flex !important;
    flex-direction: column !important;
    position: relative;
    overflow: hidden;
}

body .product-card:hover {
    background: var(--glass-bg-hover) !important;
    transform: translateY(-5px) !important;
    border-color: var(--primary) !important;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5), 0 0 15px var(--primary-glow) !important;
}

body .product-card img {
    border-radius: var(--border-radius-sm) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    margin-bottom: 1.2rem !important;
    width: 100% !important;
    height: 200px !important;
    object-fit: contain !important;
    background: rgba(0, 0, 0, 0.2) !important;
    transition: transform 0.5s ease !important;
}

body .product-card:hover img {
    transform: scale(1.02) !important;
}

body .product-card h3 a {
    color: var(--text-bright) !important;
    font-size: 1.3rem !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    font-family: 'Outfit', sans-serif !important;
    transition: color 0.3s ease !important;
}

body .product-card h3 a:hover {
    color: var(--primary) !important;
}

body .product-card .price {
    margin-top: auto !important;
    padding-top: 1rem !important;
    color: var(--primary) !important;
    font-weight: 800 !important;
    font-size: 1.4rem !important;
    font-family: 'Outfit', sans-serif !important;
}

/* Product Detail Page Overrides */
body .product-detail-wrapper {
    background: var(--glass-bg) !important;
    backdrop-filter: var(--glass-blur) !important;
    -webkit-backdrop-filter: var(--glass-blur) !important;
    border: var(--glass-border) !important;
    border-radius: var(--border-radius) !important;
    padding: 2.5rem !important;
    box-shadow: var(--card-shadow) !important;
    margin-top: 2rem !important;
    margin-bottom: 4rem !important;
}

body .product-image img {
    border-radius: var(--border-radius) !important;
    border: var(--glass-border) !important;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4) !important;
}

body .product-info h1 {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-size: 2.5rem !important;
    font-family: 'Outfit', sans-serif !important;
}

body .product-info .price {
    color: var(--primary) !important;
    font-size: 2.2rem !important;
    font-weight: 800 !important;
    font-family: 'Outfit', sans-serif !important;
}

body .add-to-cart-btn {
    background: var(--gradient-primary) !important;
    color: white !important;
    border: none !important;
    border-radius: var(--border-radius-sm) !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px var(--primary-glow) !important;
    font-weight: 700 !important;
    padding: 12px 30px !important;
    font-family: 'Outfit', sans-serif !important;
}

body .add-to-cart-btn:hover:not([disabled]) {
    transform: scale(1.05) !important;
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.6) !important;
}

body #view-cart-btn {
    background: rgba(16, 185, 129, 0.1) !important;
    border: 1px solid rgba(16, 185, 129, 0.3) !important;
    color: #10b981 !important;
    border-radius: var(--border-radius-sm) !important;
    transition: all 0.3s ease !important;
    font-weight: 700 !important;
    padding: 12px 30px !important;
    font-family: 'Outfit', sans-serif !important;
    text-decoration: none !important;
    display: inline-block !important;
}

body #view-cart-btn:hover {
    background: rgba(16, 185, 129, 0.2) !important;
    transform: translateY(-2px) !important;
}

/* --- Latest Posts Block Overrides (Sylvan River Skin) --- */
body .latest-posts-grid {
    padding: 1rem 0 !important;
}

body .latest-post-card {
    background: var(--glass-bg) !important;
    backdrop-filter: var(--glass-blur) !important;
    -webkit-backdrop-filter: var(--glass-blur) !important;
    border: var(--glass-border) !important;
    border-radius: var(--border-radius) !important;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1) !important;
    box-shadow: var(--card-shadow) !important;
    color: var(--text-color) !important;
    overflow: hidden !important;
}

body .latest-post-card:hover {
    background: var(--glass-bg-hover) !important;
    transform: translateY(-5px) !important;
    border-color: var(--primary) !important;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5), 0 0 15px var(--primary-glow) !important;
}

body .latest-post-card img {
    border-bottom: var(--glass-border) !important;
    border-top-left-radius: inherit !important;
    border-top-right-radius: inherit !important;
    width: 100% !important;
    height: 180px !important;
    object-fit: cover !important;
}

body .latest-post-card h3 a {
    color: var(--text-bright) !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    font-size: 1.25rem !important;
    line-height: 1.3 !important;
    font-family: 'Outfit', sans-serif !important;
    transition: color 0.3s ease !important;
}

body .latest-post-card h3 a:hover {
    color: var(--primary) !important;
}

body .latest-post-card span {
    color: var(--primary) !important;
    font-weight: 800 !important;
    letter-spacing: 0.05em !important;
    text-transform: uppercase !important;
    font-size: 0.8rem !important;
    margin-bottom: 0.8rem !important;
    display: block !important;
    opacity: 1 !important;
}

body .latest-post-card p {
    color: var(--text-color) !important;
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
    margin-bottom: 1.5rem !important;
    opacity: 0.8 !important;
}

body .latest-post-card .btn-primary {
    background: var(--gradient-primary) !important;
    color: white !important;
    border: none !important;
    border-radius: var(--border-radius-sm) !important;
    font-weight: 700 !important;
    padding: 0.6rem 1.4rem !important;
    text-transform: uppercase !important;
    font-size: 0.8rem !important;
    letter-spacing: 0.05em !important;
    transition: all 0.3s ease !important;
    align-self: flex-start !important;
    text-decoration: none !important;
}

body .latest-post-card:hover .btn-primary {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.5) !important;
}

/* --- E-Commerce & Shopping Cart overrides (Sylvan River Skin) --- */
body .cart-wrapper .glass-panel,
body .checkout-wrapper .glass-panel,
body .shop-wrapper .product-card.glass-panel {
    background: var(--glass-bg) !important;
    backdrop-filter: var(--glass-blur) !important;
    -webkit-backdrop-filter: var(--glass-blur) !important;
    border: var(--glass-border) !important;
    border-radius: var(--border-radius) !important;
    box-shadow: var(--card-shadow) !important;
}

body .cart-wrapper thead {
    background: rgba(4, 23, 16, 0.8) !important;
}

body .cart-wrapper thead tr {
    border-bottom: 2px solid rgba(255, 255, 255, 0.1) !important;
}

body .cart-wrapper th {
    color: var(--text-bright) !important;
    font-family: 'Outfit', sans-serif !important;
    text-transform: uppercase !important;
    font-weight: 700 !important;
    font-size: 0.85rem !important;
    letter-spacing: 1px !important;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1) !important;
}

body .cart-wrapper tbody tr {
    background: rgba(255, 255, 255, 0.02) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
    transition: background 0.3s ease;
}

body .cart-wrapper tbody tr:hover {
    background: rgba(255, 255, 255, 0.06) !important;
}

body .cart-wrapper td {
    color: var(--text-color) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
}

body .cart-wrapper td strong a {
    color: var(--primary-hover) !important;
}

body .cart-wrapper td strong a:hover {
    color: var(--text-bright) !important;
    text-shadow: 0 0 8px rgba(52, 211, 153, 0.6) !important;
}

body .cart-wrapper .remove-item {
    color: #ef4444 !important;
}

body .cart-wrapper .remove-item:hover {
    color: #f87171 !important;
    text-shadow: 0 0 8px rgba(239, 68, 68, 0.4) !important;
}

body .cart-wrapper .qty-spinner,
body #quantity {
    background: rgba(4, 23, 16, 0.7) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    color: var(--text-bright) !important;
    border-radius: var(--border-radius-sm) !important;
    transition: all 0.3s ease !important;
}

body .cart-wrapper .qty-spinner:focus,
body #quantity:focus {
    border-color: var(--primary) !important;
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.3) !important;
    background: rgba(4, 23, 16, 0.9) !important;
    outline: none !important;
}

body .cart-wrapper tfoot {
    background: rgba(4, 23, 16, 0.8) !important;
}

body .cart-wrapper tfoot td {
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
}

body .cart-wrapper #cart-total {
    color: var(--primary) !important;
    text-shadow: 0 0 8px rgba(16, 185, 129, 0.3) !important;
}

/* Storefront & Product Card overrides */
body .shop-wrapper .product-card {
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease, border-color 0.3s ease !important;
}

body .shop-wrapper .product-card:hover {
    transform: translateY(-5px) !important;
    border-color: rgba(16, 185, 129, 0.3) !important;
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.15), var(--card-shadow) !important;
}

body .shop-wrapper .product-card h3 a {
    color: var(--text-bright) !important;
    transition: color 0.3s ease;
}

body .shop-wrapper .product-card:hover h3 a {
    color: var(--primary) !important;
}

body .shop-wrapper .product-card .price,
body .product-detail-wrapper .price {
    color: var(--primary) !important;
    font-family: 'Outfit', sans-serif !important;
}

/* Product Detail overrides */
body .product-detail-wrapper h1 {
    font-family: 'Outfit', sans-serif !important;
}

body .product-detail-wrapper .description {
    color: var(--text-color) !important;
}

/* Add to Cart / Checkout buttons styling */
body .cart-wrapper .btn,
body .checkout-actions .btn,
body .product-detail-wrapper .btn,
body .shop-wrapper .btn,
body .add-to-cart-btn,
body #view-cart-btn {
    background: var(--gradient-primary) !important;
    color: white !important;
    border: none !important;
    border-radius: 30px !important;
    padding: 12px 30px !important;
    font-family: 'Outfit', sans-serif !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    display: inline-block !important;
    text-decoration: none !important;
    box-shadow: none !important;
}

body .cart-wrapper .btn:hover,
body .checkout-actions .btn:hover,
body .product-detail-wrapper .btn:hover,
body .shop-wrapper .btn:hover,
body .add-to-cart-btn:hover,
body #view-cart-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4) !important;
    background: var(--gradient-brand) !important;
}

body .add-to-cart-btn:disabled {
    opacity: 0.5 !important;
    cursor: not-allowed !important;
    transform: none !important;
    box-shadow: none !important;
    background: rgba(255, 255, 255, 0.1) !important;
    color: var(--text-color) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

/* Scrollable table container on mobile */
@media (max-width: 768px) {
    body .cart-wrapper .glass-panel {
        overflow-x: auto !important;
    }
}

/* Checkout Form overrides */
body .checkout-wrapper input[type="text"],
body .checkout-wrapper input[type="email"],
body .checkout-wrapper select,
body .checkout-wrapper textarea {
    background: rgba(4, 23, 16, 0.7) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    color: var(--text-bright) !important;
    border-radius: var(--border-radius-sm) !important;
    padding: 10px 15px !important;
    transition: all 0.3s ease !important;
    outline: none !important;
}

body .checkout-wrapper input[type="text"]:focus,
body .checkout-wrapper input[type="email"]:focus,
body .checkout-wrapper select:focus,
body .checkout-wrapper textarea:focus {
    border-color: var(--primary) !important;
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.3) !important;
    background: rgba(4, 23, 16, 0.9) !important;
}

body .checkout-wrapper label {
    color: var(--text-color) !important;
}

body .checkout-wrapper #label-shipping,
body .checkout-wrapper #label-pickup {
    background: rgba(255, 255, 255, 0.02) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: var(--text-color) !important;
}

body .checkout-wrapper #label-shipping input[type="radio"]:checked + strong,
body .checkout-wrapper #label-pickup input[type="radio"]:checked + strong {
    color: var(--primary-hover) !important;
}

/* My Orders Portal Overrides */
body main.container .glass-panel {
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(12px) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3) !important;
}

body main.container .glass-panel p {
    color: var(--text-color) !important;
}

body main.container p[style*="color: #64748b"] {
    color: var(--text-color) !important;
}

body #order-lookup-form input[type="email"],
body #order-lookup-form input[type="text"] {
    background: rgba(4, 23, 16, 0.7) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    color: var(--text-bright) !important;
    border-radius: var(--border-radius-sm) !important;
    padding: 10px 15px !important;
    outline: none !important;
    transition: all 0.3s ease !important;
}

body #order-lookup-form input[type="email"]:focus,
body #order-lookup-form input[type="text"]:focus {
    border-color: var(--primary) !important;
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.3) !important;
    background: rgba(4, 23, 16, 0.9) !important;
}

body #order-lookup-form label {
    color: var(--text-bright) !important;
}

body #order-lookup-form button {
    background: var(--gradient-primary) !important;
    color: white !important;
    border: none !important;
    border-radius: 30px !important;
    padding: 12px 30px !important;
    font-family: 'Outfit', sans-serif !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    transition: all 0.3s ease !important;
}

body #order-lookup-form button:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4) !important;
    background: var(--gradient-brand) !important;
}

body main.container table th,
body main.container table td {
    color: var(--text-bright) !important;
    border-bottom-color: rgba(255, 255, 255, 0.1) !important;
}

body main.container table th {
    color: var(--text-color) !important;
}

body main.container h1, 
body main.container h2, 
body main.container h3 {
    color: var(--text-bright) !important;
}

/* --- Media Embeds Plugin (HearThis / Mixcloud) --- */
body .media-embed-wrapper {
    background: var(--glass-bg) !important;
    backdrop-filter: var(--glass-blur) !important;
    -webkit-backdrop-filter: var(--glass-blur) !important;
    border: var(--glass-border) !important;
    border-radius: var(--border-radius) !important;
    padding: 0 !important;
    box-shadow: var(--card-shadow) !important;
    margin: 2rem 0 !important;
    transition: all 0.3s ease !important;
    overflow: hidden !important;
}

body .media-embed-wrapper:hover {
    border-color: rgba(16, 185, 129, 0.3) !important;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6), 0 0 15px var(--primary-glow) !important;
}

body .media-embed-wrapper iframe {
    border-radius: 0 !important;
    width: 100% !important;
    display: block !important;
}

/* --- Media Embeds Plugin (v1.0.1+ Overrides) --- */
body .media-embed-wrapper.video-embed {
    padding-bottom: 56.25% !important;
    height: 0 !important;
}

body .media-embed-wrapper .iframe-placeholder {
    transition: background 0.3s ease, border-color 0.3s ease !important;
}

body .media-embed-wrapper .iframe-placeholder:hover {
    background: rgba(4, 23, 16, 0.6) !important;
    border-color: var(--primary) !important;
}

/* Ensure the play button circle in the placeholder matches theme colors */
body .media-embed-wrapper .iframe-placeholder div div[style*="background:"] {
    background: var(--primary) !important;
    transition: transform 0.2s ease !important;
}

body .media-embed-wrapper .iframe-placeholder:hover div div[style*="background:"] {
    transform: scale(1.1);
    background: var(--primary-hover) !important;
}

/* --- Auth & Member Dashboard Skin (Sylvan River) --- */
body .auth-card,
body .member-header-card,
body .member-tab-content .card {
    background: rgba(4, 23, 16, 0.8) !important;
    backdrop-filter: blur(25px) !important;
    -webkit-backdrop-filter: blur(25px) !important;
    border: 1px solid rgba(16, 185, 129, 0.25) !important;
    border-radius: 16px !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 20px rgba(16, 185, 129, 0.15) !important;
    color: #e2e8f0 !important;
}

body .auth-card h2,
body .member-header-card h2,
body .member-tab-content h3 {
    color: #ffffff !important;
}

body .auth-form input[type="text"],
body .auth-form input[type="email"],
body .auth-form input[type="password"],
body .member-tab-content input[type="text"],
body .member-tab-content input[type="email"],
body .member-tab-content input[type="password"] {
    background: rgba(2, 12, 8, 0.6) !important;
    border: 1px solid rgba(16, 185, 129, 0.3) !important;
    color: #ffffff !important;
}

body .tab-link {
    color: rgba(255, 255, 255, 0.7) !important;
}

body .tab-link:hover {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: rgba(255, 255, 255, 0.12) !important;
}

body .tab-link.active {
    color: #ffffff !important;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.35), rgba(14, 165, 233, 0.35)) !important;
    border: 1px solid rgba(16, 185, 129, 0.5) !important;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.25) !important;
}

body .badge-role {
    background: rgba(16, 185, 129, 0.15) !important;
    color: #10b981 !important;
    border: 1px solid rgba(16, 185, 129, 0.3) !important;
}

body .badge-tier-pro {
    background: rgba(132, 204, 22, 0.15) !important;
    color: #84cc16 !important;
    border: 1px solid rgba(132, 204, 22, 0.3) !important;
}

/* --- AVDJ Studio Plugin Overrides (Sylvan River Skin) --- */
body .avdj-card {
    background: rgba(4, 23, 16, 0.7) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(16, 185, 129, 0.25) !important;
    border-radius: 18px !important;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
    padding: 1.75rem !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

body .avdj-card:hover {
    border-color: rgba(16, 185, 129, 0.45) !important;
    box-shadow: 0 16px 45px rgba(16, 185, 129, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.15) !important;
}

body .avdj-dropzone-box {
    background: rgba(2, 12, 8, 0.55) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    border: 2px dashed rgba(16, 185, 129, 0.45) !important;
    border-radius: 18px !important;
    padding: 3rem 1.75rem !important;
    box-shadow: inset 0 0 30px rgba(16, 185, 129, 0.08) !important;
    transition: all 0.3s ease !important;
}

body .avdj-dropzone-box:hover,
body .avdj-dropzone-box.dragover {
    border-color: var(--primary) !important;
    background: rgba(16, 185, 129, 0.06) !important;
    box-shadow: inset 0 0 30px rgba(16, 185, 129, 0.12), 0 0 25px rgba(16, 185, 129, 0.2) !important;
}

body .avdj-title {
    color: var(--text-bright, #ffffff) !important;
}

body .avdj-subtitle {
    color: var(--text-color) !important;
    opacity: 0.8 !important;
}

body .avdj-header-bar {
    border-bottom-color: rgba(255, 255, 255, 0.12) !important;
    padding-bottom: 1.5rem !important;
}

body .avdj-badge-speed {
    background: rgba(16, 185, 129, 0.25) !important;
    border: 1px solid rgba(16, 185, 129, 0.5) !important;
    color: #a7f3d0 !important;
}

body .avdj-badge-res {
    background: rgba(14, 165, 233, 0.18) !important;
    border: 1px solid rgba(14, 165, 233, 0.4) !important;
    color: #bae6fd !important;
}

body .avdj-queue-item {
    background: rgba(2, 12, 8, 0.75) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 12px !important;
    padding: 1rem 1.2rem !important;
    transition: all 0.2s ease !important;
}

body .avdj-queue-item:hover {
    background: rgba(4, 23, 16, 0.9) !important;
    border-color: rgba(16, 185, 129, 0.4) !important;
}

body .avdj-queue-item strong {
    color: #ffffff !important;
}

body .avdj-badge-active {
    background: rgba(34, 197, 94, 0.2) !important;
    border: 1px solid rgba(34, 197, 94, 0.5) !important;
    color: #86efac !important;
}

body .avdj-badge-pending {
    background: rgba(234, 179, 8, 0.2) !important;
    border: 1px solid rgba(234, 179, 8, 0.5) !important;
    color: #fef08a !important;
}

body .avdj-badge-done {
    background: rgba(59, 130, 246, 0.2) !important;
    border: 1px solid rgba(59, 130, 246, 0.5) !important;
    color: #93c5fd !important;
}

body .avdj-badge-error {
    background: rgba(239, 68, 68, 0.2) !important;
    border: 1px solid rgba(239, 68, 68, 0.5) !important;
    color: #fca5a5 !important;
}

body .avdj-select-input {
    background: rgba(2, 12, 8, 0.85) !important;
    border: 1px solid rgba(16, 185, 129, 0.45) !important;
    color: #ffffff !important;
    font-weight: 600 !important;
    border-radius: 10px !important;
    padding: 0.65rem 0.85rem !important;
}

body .avdj-select-input option {
    background: #020c08 !important;
    color: #ffffff !important;
}

body .avdj-select-input:focus {
    outline: none !important;
    border-color: var(--primary) !important;
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.3) !important;
}

body .avdj-info-card {
    background: rgba(16, 185, 129, 0.15) !important;
    border: 1px solid rgba(16, 185, 129, 0.35) !important;
    color: #d1fae5 !important;
    border-radius: 12px !important;
    padding: 1rem !important;
}

body .avdj-engine-display {
    background: rgba(16, 185, 129, 0.2) !important;
    border: 1px solid rgba(16, 185, 129, 0.5) !important;
    color: #a7f3d0 !important;
    border-radius: 10px !important;
}

body .avdj-audio-controls {
    background: rgba(2, 12, 8, 0.7) !important;
    border: 1px solid rgba(16, 185, 129, 0.35) !important;
    border-radius: 10px !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
}

body .avdj-audio-controls #avdj-vol-label {
    color: var(--text-color) !important;
}

body .avdj-checkbox-option {
    background: rgba(4, 23, 16, 0.65) !important;
    border: 1px solid rgba(16, 185, 129, 0.4) !important;
    border-radius: 10px !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    transition: all 0.25s ease !important;
}

body .avdj-checkbox-option:hover {
    border-color: var(--primary) !important;
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.15) !important;
}

body .avdj-checkbox-option label {
    color: var(--text-bright, #ffffff) !important;
}

body .avdj-checkbox-option input[type="checkbox"] {
    accent-color: var(--primary) !important;
}

body .avdj-progress-track {
    background: rgba(255, 255, 255, 0.1) !important;
}

body .avdj-progress-fill {
    background: linear-gradient(90deg, var(--primary), var(--primary-hover)) !important;
}

/* --- Business Directory Plugin Integration --- */
body .directory-title {
    background: var(--gradient-brand) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    color: transparent !important;
}

body .directory-glass-card {
    background: rgba(255, 255, 255, 0.03) !important;
    backdrop-filter: var(--glass-blur-heavy) !important;
    -webkit-backdrop-filter: var(--glass-blur-heavy) !important;
    border: var(--glass-border) !important;
    border-radius: var(--border-radius) !important;
    box-shadow: var(--card-shadow) !important;
    color: var(--text-color) !important;
}

body .directory-glass-card:hover {
    background: rgba(255, 255, 255, 0.06) !important;
    border-color: rgba(255, 255, 255, 0.25) !important;
    transform: translateY(-4px) !important;
}

body .directory-card-title {
    color: var(--text-bright) !important;
}

body .directory-card-desc {
    color: var(--text-color) !important;
    opacity: 0.8;
}

body .directory-card-logo-container,
body .directory-logo-display {
    background: rgba(4, 23, 16, 0.5) !important;
    border: var(--glass-border) !important;
}

body .directory-category-badge {
    background: rgba(16, 185, 129, 0.15) !important;
    color: var(--primary-hover) !important;
    border: 1px solid rgba(16, 185, 129, 0.3) !important;
}

body .directory-btn,
body .directory-wrapper a.directory-btn {
    background: var(--gradient-primary) !important;
    color: #fff !important;
    box-shadow: 0 4px 12px var(--primary-glow) !important;
    transition: all 0.3s ease !important;
}

body .directory-btn:hover,
body .directory-wrapper a.directory-btn:hover {
    background: var(--gradient-brand) !important;
    transform: scale(1.02);
    color: #fff !important;
}

body .directory-btn-outline,
body .directory-wrapper a.directory-btn-outline {
    background: transparent !important;
    border: var(--glass-border) !important;
    color: var(--text-bright) !important;
    transition: all 0.3s ease !important;
}

body .directory-btn-outline:hover,
body .directory-wrapper a.directory-btn-outline:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    color: var(--text-bright) !important;
}

body .directory-wrapper h1 {
    color: var(--text-bright) !important;
}

body .directory-wrapper h3 {
    color: var(--text-bright) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

body .directory-wrapper a {
    color: var(--primary) !important;
}

body .directory-wrapper a:hover {
    color: var(--primary-hover) !important;
}

/* Form Controls (Search & Dropdown) styling */
body .directory-wrapper form select,
body .directory-wrapper form input[type="text"] {
    background: rgba(4, 23, 16, 0.6) !important;
    border: var(--glass-border) !important;
    color: var(--text-bright, #ffffff) !important;
    border-radius: var(--border-radius-sm, 12px) !important;
    padding: 10px 15px !important;
    backdrop-filter: var(--glass-blur) !important;
    -webkit-backdrop-filter: var(--glass-blur) !important;
    outline: none !important;
    transition: border-color 0.25s ease, box-shadow 0.25s ease !important;
}

body .directory-wrapper form select:focus,
body .directory-wrapper form input[type="text"]:focus {
    border-color: var(--primary) !important;
    box-shadow: 0 0 10px var(--primary-glow) !important;
}

body .directory-wrapper form select option {
    background-color: var(--bg-color, #041710) !important;
    color: var(--text-bright, #ffffff) !important;
}

/* ==========================================================================
   Recipe Box overrides for Sylvan River (Emerald & River Blue Glassmorphic)
   ========================================================================== */

body .recipe-glass-card {
    background: var(--glass-bg, rgba(255, 255, 255, 0.04)) !important;
    border: var(--glass-border) !important;
    backdrop-filter: var(--glass-blur, blur(16px)) !important;
    -webkit-backdrop-filter: var(--glass-blur, blur(16px)) !important;
    border-radius: var(--border-radius, 20px) !important;
    box-shadow: var(--card-shadow) !important;
    color: var(--text-color, #d1d5db) !important;
}

body .recipe-glass-card:hover {
    background: var(--glass-bg-hover, rgba(255, 255, 255, 0.08)) !important;
    border-color: rgba(255, 255, 255, 0.25) !important;
    transform: translateY(-4px) !important;
}

body .recipe-breadmaker-badge {
    background: var(--gradient-brand, linear-gradient(135deg, var(--primary), var(--accent))) !important;
    color: var(--text-bright, #ffffff) !important;
    font-weight: 700 !important;
    border-radius: var(--border-radius-sm, 12px) !important;
}

body .recipe-scale-bar {
    background: var(--glass-bg, rgba(255, 255, 255, 0.04)) !important;
    border: var(--glass-border) !important;
    border-radius: var(--border-radius-sm, 12px) !important;
    backdrop-filter: var(--glass-blur) !important;
    -webkit-backdrop-filter: var(--glass-blur) !important;
    color: var(--text-color, #d1d5db) !important;
}

body .scale-btn {
    background: rgba(255, 255, 255, 0.06) !important;
    color: var(--text-bright, #ffffff) !important;
    border: var(--glass-border) !important;
    border-radius: var(--border-radius-sm, 12px) !important;
    transition: all 0.3s ease !important;
}

body .scale-btn:hover,
body .scale-btn.active {
    background: var(--primary) !important;
    color: var(--text-bright, #ffffff) !important;
    border-color: var(--primary) !important;
    box-shadow: 0 0 10px var(--primary-glow) !important;
}

body .recipe-ingredient-amount {
    color: var(--primary-hover, #34d399) !important;
}

body .recipe-step-item {
    background: var(--glass-bg, rgba(255, 255, 255, 0.04)) !important;
    border: var(--glass-border) !important;
    border-radius: var(--border-radius-sm, 12px) !important;
    color: var(--text-color, #d1d5db) !important;
    backdrop-filter: var(--glass-blur) !important;
    -webkit-backdrop-filter: var(--glass-blur) !important;
}

body .recipe-step-num {
    background: var(--primary) !important;
    color: var(--text-bright, #ffffff) !important;
}

/* Override Search Inputs & Selects inside recipe box on frontend to match theme */
body .recipe-container input[type="text"],
body .recipe-container select {
    background: rgba(4, 23, 16, 0.6) !important;
    border: var(--glass-border) !important;
    color: var(--text-bright, #ffffff) !important;
    border-radius: var(--border-radius-sm, 12px) !important;
    padding: 10px 15px !important;
    backdrop-filter: var(--glass-blur) !important;
    -webkit-backdrop-filter: var(--glass-blur) !important;
    outline: none !important;
    transition: border-color 0.25s ease, box-shadow 0.25s ease !important;
}

body .recipe-container input[type="text"]:focus,
body .recipe-container select:focus {
    border-color: var(--primary) !important;
    box-shadow: 0 0 10px var(--primary-glow) !important;
}

body .recipe-container select option {
    background-color: var(--bg-color, #041710) !important;
    color: var(--text-bright, #ffffff) !important;
}

/* Ensure recipe descriptions and details are vibrant and readable */
body .recipe-glass-card .recipe-card-body p,
body .recipe-container .recipe-description,
body .recipe-container .recipe-description * {
    color: var(--text-bright, #ffffff) !important;
}

/* Ensure metadata labels and minor details are readable light gray */
body .recipe-container .recipe-glass-card span,
body .recipe-container small {
    color: var(--text-color, #d1d5db) !important;
}

/* Premium zoom hover effect for recipe cards */
body .recipe-glass-card .recipe-card-media img {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
body .recipe-glass-card:hover .recipe-card-media img {
    transform: scale(1.06) !important;
}

/* ==========================================================================
   Event Planner overrides for Sylvan River (Emerald & River Blue Glassmorphic)
   ========================================================================== */

body .event-planner-title {
    background: var(--gradient-brand) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    color: transparent !important;
}

body .event-view-toggle {
    background: rgba(255, 255, 255, 0.04) !important;
    border: var(--glass-border) !important;
    backdrop-filter: var(--glass-blur) !important;
    -webkit-backdrop-filter: var(--glass-blur) !important;
    border-radius: var(--border-radius-sm, 12px) !important;
}

body .event-view-toggle a {
    color: var(--text-color, #cbd5e1) !important;
}

body .event-view-toggle a.active {
    background: var(--primary) !important;
    color: var(--text-bright, #ffffff) !important;
    box-shadow: 0 4px 12px var(--primary-glow) !important;
}

body .event-glass-card {
    background: var(--glass-bg, rgba(255, 255, 255, 0.04)) !important;
    border: var(--glass-border) !important;
    backdrop-filter: var(--glass-blur, blur(16px)) !important;
    -webkit-backdrop-filter: var(--glass-blur, blur(16px)) !important;
    border-radius: var(--border-radius, 20px) !important;
    box-shadow: var(--card-shadow) !important;
    color: var(--text-color, #d1d5db) !important;
}

body .event-glass-card:hover {
    background: var(--glass-bg-hover, rgba(255, 255, 255, 0.08)) !important;
    border-color: rgba(255, 255, 255, 0.25) !important;
    transform: translateY(-4px) !important;
}

body .event-card-title a {
    color: var(--text-bright, #ffffff) !important;
    transition: color 0.3s ease !important;
}

body .event-card-title a:hover {
    color: var(--primary-hover) !important;
}

body .event-details-item {
    color: var(--text-color, #cbd5e1) !important;
    opacity: 0.9;
}

body .event-details-item svg {
    color: var(--primary) !important;
}

/* Badges */
body .event-badge {
    border-radius: 8px !important;
    font-weight: 700 !important;
}

body .event-badge.scheduled {
    background: rgba(14, 165, 233, 0.15) !important;
    color: #38bdf8 !important;
    border: 1px solid rgba(14, 165, 233, 0.3) !important;
}

body .event-badge.active {
    background: rgba(16, 185, 129, 0.15) !important;
    color: var(--primary-hover) !important;
    border: 1px solid rgba(16, 185, 129, 0.3) !important;
}

body .event-badge.cancelled {
    background: rgba(239, 68, 68, 0.15) !important;
    color: #f87171 !important;
    border: 1px solid rgba(239, 68, 68, 0.3) !important;
}

body .event-badge.completed {
    background: rgba(255, 255, 255, 0.08) !important;
    color: #94a3b8 !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
}

/* Buttons */
body .event-btn,
body .event-planner-wrapper a.event-btn,
body .single-event-container a.event-btn {
    background: var(--gradient-primary) !important;
    color: #ffffff !important;
    box-shadow: 0 4px 12px var(--primary-glow) !important;
    transition: all 0.3s ease !important;
    border-radius: var(--border-radius-sm, 12px) !important;
    border: none !important;
}

body .event-btn:hover,
body .event-planner-wrapper a.event-btn:hover,
body .single-event-container a.event-btn:hover {
    background: var(--gradient-brand) !important;
    transform: scale(1.02) !important;
    color: #ffffff !important;
    box-shadow: 0 6px 15px var(--primary-glow) !important;
}

body .event-btn-outline,
body .event-planner-wrapper a.event-btn-outline,
body .single-event-container a.event-btn-outline {
    background: rgba(255, 255, 255, 0.05) !important;
    border: var(--glass-border) !important;
    color: var(--text-bright) !important;
    transition: all 0.3s ease !important;
    box-shadow: none !important;
}

body .event-btn-outline:hover,
body .event-planner-wrapper a.event-btn-outline:hover,
body .single-event-container a.event-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(255, 255, 255, 0.25) !important;
    color: var(--text-bright) !important;
}

/* Calendar styling override */
body .calendar-header {
    background: var(--glass-bg, rgba(255, 255, 255, 0.04)) !important;
    border: var(--glass-border) !important;
    backdrop-filter: var(--glass-blur, blur(16px)) !important;
    -webkit-backdrop-filter: var(--glass-blur, blur(16px)) !important;
    border-radius: var(--border-radius, 20px) !important;
    box-shadow: var(--card-shadow) !important;
}

body .calendar-month-title {
    color: var(--text-bright) !important;
}

body .calendar-nav-btn {
    background: rgba(255, 255, 255, 0.06) !important;
    border: var(--glass-border) !important;
    color: var(--text-bright) !important;
}

body .calendar-nav-btn:hover {
    background: var(--primary) !important;
    color: #ffffff !important;
    border-color: var(--primary) !important;
}

body .calendar-day-header {
    color: var(--primary) !important;
}

body .calendar-cell {
    background: rgba(4, 23, 16, 0.45) !important;
    border: var(--glass-border) !important;
    border-radius: var(--border-radius-sm, 12px) !important;
    color: var(--text-color) !important;
    backdrop-filter: var(--glass-blur) !important;
    -webkit-backdrop-filter: var(--glass-blur) !important;
}

body .calendar-cell.other-month {
    opacity: 0.25 !important;
    background: transparent !important;
}

body .calendar-cell.today {
    border: 2px solid var(--primary) !important;
    box-shadow: 0 0 15px var(--primary-glow) !important;
}

body .calendar-events-list {
    overflow-x: hidden !important;
}

/* Custom sleek scrollbar for events list */
body .calendar-events-list::-webkit-scrollbar {
    width: 4px !important;
    height: 4px !important;
}

body .calendar-events-list::-webkit-scrollbar-track {
    background: transparent !important;
}

body .calendar-events-list::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15) !important;
    border-radius: 10px !important;
}

body .calendar-events-list::-webkit-scrollbar-thumb:hover {
    background: var(--primary) !important;
}

body .calendar-event-link {
    background: rgba(16, 185, 129, 0.15) !important;
    color: var(--text-bright) !important;
    border-left: 3px solid var(--primary) !important;
    border-radius: 4px !important;
    transition: all 0.25s ease !important;
}

body .calendar-event-link:hover {
    background: var(--primary) !important;
    color: #ffffff !important;
    transform: translateX(2px) !important;
}

/* Single view page overrides */
body .single-event-card {
    background: var(--glass-bg, rgba(255, 255, 255, 0.04)) !important;
    border: var(--glass-border) !important;
    backdrop-filter: var(--glass-blur, blur(16px)) !important;
    -webkit-backdrop-filter: var(--glass-blur, blur(16px)) !important;
    border-radius: var(--border-radius, 20px) !important;
    box-shadow: var(--card-shadow) !important;
}

body .single-event-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

body .single-event-title {
    color: var(--text-bright) !important;
}

/* Inputs & Form Controls override inside Event Planner wrapper */
body .event-planner-wrapper form input[type="text"],
body .event-planner-wrapper form input[type="email"],
body .event-planner-wrapper form select,
body .event-planner-wrapper form textarea {
    background: rgba(4, 23, 16, 0.6) !important;
    border: var(--glass-border) !important;
    color: var(--text-bright, #ffffff) !important;
    border-radius: var(--border-radius-sm, 12px) !important;
    padding: 10px 15px !important;
    backdrop-filter: var(--glass-blur) !important;
    -webkit-backdrop-filter: var(--glass-blur) !important;
    outline: none !important;
    transition: border-color 0.25s ease, box-shadow 0.25s ease !important;
}

body .event-planner-wrapper form input[type="text"]:focus,
body .event-planner-wrapper form input[type="email"]:focus,
body .event-planner-wrapper form select:focus,
body .event-planner-wrapper form textarea:focus {
    border-color: var(--primary) !important;
    box-shadow: 0 0 10px var(--primary-glow) !important;
}

body .event-planner-wrapper form select option {
    background-color: var(--bg-color, #041710) !important;
    color: var(--text-bright, #ffffff) !important;
}