/*
Theme Name: Best Church
Theme URI: https://bestchurch.com
Author: Best Church Team
Author URI: https://bestchurch.com
Description: A premium dark mode church landing page theme with full Elementor support and template management. Designed for modern churches with elegant gold accents and glassmorphism effects.
Version: 1.0.0
Requires at least: 5.9
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: bestchurch
Tags: dark-mode, church, elementor, landing-page, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
*/

/* ===== CSS VARIABLES ===== */
:root {
    /* Primary Colors */
    --bc-bg-primary: #0a0a0f;
    --bc-bg-secondary: #111118;
    --bc-bg-tertiary: #1a1a24;
    --bc-bg-card: rgba(26, 26, 36, 0.7);
    --bc-bg-glass: rgba(26, 26, 36, 0.4);

    /* Accent Colors */
    --bc-gold: #d4a853;
    --bc-gold-light: #e8c97a;
    --bc-gold-dark: #b8892e;
    --bc-gold-glow: rgba(212, 168, 83, 0.15);
    --bc-gold-gradient: linear-gradient(135deg, #d4a853 0%, #e8c97a 50%, #b8892e 100%);

    /* Text Colors */
    --bc-text-primary: #f0f0f5;
    --bc-text-secondary: #a0a0b0;
    --bc-text-muted: #6a6a7a;

    /* Border & Shadow */
    --bc-border: rgba(212, 168, 83, 0.12);
    --bc-border-hover: rgba(212, 168, 83, 0.3);
    --bc-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    --bc-shadow-gold: 0 4px 20px rgba(212, 168, 83, 0.15);
    --bc-glass-blur: blur(20px);

    /* Typography */
    --bc-font-heading: 'Playfair Display', 'Georgia', serif;
    --bc-font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --bc-section-padding: 100px 0;
    --bc-container-width: 1200px;
    --bc-radius: 16px;
    --bc-radius-sm: 8px;

    /* Transitions */
    --bc-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --bc-transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--bc-font-body);
    background-color: var(--bc-bg-primary);
    color: var(--bc-text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    font-size: 16px;
}

a {
    color: var(--bc-gold);
    text-decoration: none;
    transition: var(--bc-transition);
}

a:hover {
    color: var(--bc-gold-light);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--bc-font-heading);
    color: var(--bc-text-primary);
    line-height: 1.2;
    font-weight: 700;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
}

p {
    color: var(--bc-text-secondary);
    line-height: 1.8;
}

/* ===== CONTAINER ===== */
.bc-container {
    max-width: var(--bc-container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== HEADER / NAVIGATION ===== */
.bc-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--bc-transition);
    background: transparent;
}

.bc-header.scrolled {
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: var(--bc-glass-blur);
    -webkit-backdrop-filter: var(--bc-glass-blur);
    padding: 12px 0;
    border-bottom: 1px solid var(--bc-border);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.bc-header .bc-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.bc-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.bc-logo img {
    height: 40px;
    width: auto;
}

.bc-logo-text {
    font-family: var(--bc-font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--bc-text-primary);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.bc-logo-text span {
    color: var(--bc-gold);
}

/* Navigation */
.bc-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.bc-nav ul {
    display: flex;
    list-style: none;
    gap: 8px;
}

.bc-nav ul li a {
    color: var(--bc-text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: var(--bc-radius-sm);
    transition: var(--bc-transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.bc-nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--bc-gold-gradient);
    transition: var(--bc-transition);
    border-radius: 2px;
}

.bc-nav ul li a:hover,
.bc-nav ul li.current-menu-item a {
    color: var(--bc-gold);
}

.bc-nav ul li a:hover::after,
.bc-nav ul li.current-menu-item a::after {
    width: 60%;
}

/* Submenu */
.bc-nav ul li ul.sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bc-bg-secondary);
    border: 1px solid var(--bc-border);
    border-radius: var(--bc-radius-sm);
    min-width: 200px;
    padding: 8px;
    flex-direction: column;
    gap: 2px;
    box-shadow: var(--bc-shadow);
    backdrop-filter: var(--bc-glass-blur);
}

.bc-nav ul li:hover>ul.sub-menu {
    display: flex;
}

.bc-nav ul li ul.sub-menu li a {
    padding: 10px 16px;
    display: block;
    font-size: 0.85rem;
    border-radius: var(--bc-radius-sm);
}

.bc-nav ul li ul.sub-menu li a:hover {
    background: var(--bc-gold-glow);
}

.bc-nav ul li ul.sub-menu li a::after {
    display: none;
}

/* Mobile Menu Toggle */
.bc-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.bc-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--bc-text-primary);
    margin: 6px 0;
    transition: var(--bc-transition);
    border-radius: 2px;
}

.bc-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.bc-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.bc-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* ===== HERO SECTION ===== */
.bc-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-top: 80px;
}

.bc-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at center top, rgba(212, 168, 83, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 20% 80%, rgba(212, 168, 83, 0.04) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
}

.bc-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.bc-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.25;
}

.bc-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(10, 10, 15, 0.3) 0%,
            rgba(10, 10, 15, 0.6) 50%,
            rgba(10, 10, 15, 0.95) 100%);
    z-index: 1;
}

.bc-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 24px;
}

.bc-hero-cross {
    font-size: 3rem;
    color: var(--bc-gold);
    margin-bottom: 24px;
    opacity: 0.8;
    animation: cross-glow 3s ease-in-out infinite;
}

@keyframes cross-glow {

    0%,
    100% {
        text-shadow: 0 0 20px rgba(212, 168, 83, 0.3);
    }

    50% {
        text-shadow: 0 0 40px rgba(212, 168, 83, 0.6);
    }
}

.bc-hero-subtitle {
    font-family: var(--bc-font-body);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--bc-gold);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 16px;
}

.bc-hero-title {
    font-size: clamp(3rem, 7vw, 5rem);
    margin-bottom: 24px;
    line-height: 1.1;
    background: linear-gradient(135deg, #f0f0f5 0%, #d4a853 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bc-hero-desc {
    font-size: 1.15rem;
    color: var(--bc-text-secondary);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.bc-hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== BUTTONS ===== */
.bc-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: var(--bc-font-body);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: var(--bc-transition);
    border: none;
    text-decoration: none;
}

.bc-btn-primary {
    background: var(--bc-gold-gradient);
    color: var(--bc-bg-primary);
    box-shadow: var(--bc-shadow-gold);
}

.bc-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212, 168, 83, 0.3);
    color: var(--bc-bg-primary);
}

.bc-btn-outline {
    background: transparent;
    color: var(--bc-gold);
    border: 1px solid var(--bc-gold);
}

.bc-btn-outline:hover {
    background: var(--bc-gold-glow);
    transform: translateY(-2px);
    color: var(--bc-gold-light);
}

/* ===== SECTION STYLES ===== */
.bc-section {
    padding: var(--bc-section-padding);
    position: relative;
}

.bc-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.bc-section-label {
    font-family: var(--bc-font-body);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--bc-gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 12px;
    display: block;
}

.bc-section-title {
    margin-bottom: 16px;
}

.bc-section-desc {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.05rem;
}

/* Divider */
.bc-divider {
    width: 60px;
    height: 3px;
    background: var(--bc-gold-gradient);
    margin: 20px auto;
    border-radius: 3px;
}

/* ===== CARDS (Glass) ===== */
.bc-card {
    background: var(--bc-bg-card);
    border: 1px solid var(--bc-border);
    border-radius: var(--bc-radius);
    padding: 40px 32px;
    backdrop-filter: var(--bc-glass-blur);
    -webkit-backdrop-filter: var(--bc-glass-blur);
    transition: var(--bc-transition);
    position: relative;
    overflow: hidden;
}

.bc-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--bc-gold-gradient);
    opacity: 0;
    transition: var(--bc-transition);
}

.bc-card:hover {
    transform: translateY(-4px);
    border-color: var(--bc-border-hover);
    box-shadow: var(--bc-shadow-gold);
}

.bc-card:hover::before {
    opacity: 1;
}

.bc-card-icon {
    font-size: 2.5rem;
    color: var(--bc-gold);
    margin-bottom: 20px;
}

.bc-card-title {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.bc-card-text {
    font-size: 0.95rem;
    color: var(--bc-text-secondary);
}

/* ===== GRID LAYOUTS ===== */
.bc-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.bc-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.bc-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* ===== ABOUT SECTION ===== */
.bc-about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.bc-about-image {
    position: relative;
    border-radius: var(--bc-radius);
    overflow: hidden;
}

.bc-about-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid var(--bc-border);
    border-radius: var(--bc-radius);
}

.bc-about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.bc-about-text h2 {
    margin-bottom: 20px;
}

.bc-about-text p {
    margin-bottom: 24px;
}

.bc-about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 32px;
}

.bc-stat {
    text-align: center;
    padding: 20px;
    background: var(--bc-bg-card);
    border-radius: var(--bc-radius-sm);
    border: 1px solid var(--bc-border);
}

.bc-stat-number {
    font-family: var(--bc-font-heading);
    font-size: 2rem;
    color: var(--bc-gold);
    font-weight: 700;
}

.bc-stat-label {
    font-size: 0.8rem;
    color: var(--bc-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

/* ===== SERVICES / SCHEDULE ===== */
.bc-schedule-item {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 24px;
    background: var(--bc-bg-card);
    border: 1px solid var(--bc-border);
    border-radius: var(--bc-radius);
    transition: var(--bc-transition);
    backdrop-filter: var(--bc-glass-blur);
}

.bc-schedule-item:hover {
    border-color: var(--bc-border-hover);
    transform: translateX(4px);
}

.bc-schedule-day {
    min-width: 80px;
    text-align: center;
    padding: 16px;
    background: var(--bc-gold-glow);
    border-radius: var(--bc-radius-sm);
    border: 1px solid var(--bc-border);
}

.bc-schedule-day-name {
    font-family: var(--bc-font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--bc-gold);
    text-transform: uppercase;
}

.bc-schedule-time {
    font-size: 0.75rem;
    color: var(--bc-text-muted);
    margin-top: 4px;
}

.bc-schedule-info h4 {
    margin-bottom: 4px;
}

.bc-schedule-info p {
    font-size: 0.9rem;
}

/* ===== EVENTS ===== */
.bc-event-card {
    background: var(--bc-bg-card);
    border: 1px solid var(--bc-border);
    border-radius: var(--bc-radius);
    overflow: hidden;
    transition: var(--bc-transition);
    backdrop-filter: var(--bc-glass-blur);
}

.bc-event-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--bc-shadow-gold);
}

.bc-event-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.bc-event-body {
    padding: 24px;
}

.bc-event-date {
    font-size: 0.8rem;
    color: var(--bc-gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.bc-event-title {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.bc-event-text {
    font-size: 0.9rem;
    color: var(--bc-text-secondary);
}

/* ===== SERMONS ===== */
.bc-sermon-card {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: var(--bc-bg-card);
    border: 1px solid var(--bc-border);
    border-radius: var(--bc-radius);
    transition: var(--bc-transition);
}

.bc-sermon-card:hover {
    border-color: var(--bc-border-hover);
    box-shadow: var(--bc-shadow-gold);
}

.bc-sermon-play {
    min-width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bc-gold-glow);
    border: 1px solid var(--bc-border);
    border-radius: 50%;
    color: var(--bc-gold);
    font-size: 1.2rem;
    transition: var(--bc-transition);
    cursor: pointer;
}

.bc-sermon-play:hover {
    background: var(--bc-gold);
    color: var(--bc-bg-primary);
}

/* ===== CTA SECTION ===== */
.bc-cta {
    text-align: center;
    padding: 100px 0;
    background:
        radial-gradient(ellipse at center, rgba(212, 168, 83, 0.06) 0%, transparent 70%);
    border-top: 1px solid var(--bc-border);
    border-bottom: 1px solid var(--bc-border);
}

.bc-cta h2 {
    margin-bottom: 16px;
}

.bc-cta p {
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== FOOTER ===== */
.bc-footer {
    background: var(--bc-bg-secondary);
    border-top: 1px solid var(--bc-border);
    padding: 60px 0 24px;
}

.bc-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.bc-footer-about .bc-logo-text {
    font-size: 1.2rem;
    margin-bottom: 16px;
}

.bc-footer-about p {
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.bc-footer-social {
    display: flex;
    gap: 12px;
}

.bc-footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bc-bg-card);
    border: 1px solid var(--bc-border);
    border-radius: 50%;
    color: var(--bc-text-secondary);
    font-size: 0.9rem;
    transition: var(--bc-transition);
}

.bc-footer-social a:hover {
    background: var(--bc-gold);
    color: var(--bc-bg-primary);
    border-color: var(--bc-gold);
}

.bc-footer h4 {
    font-size: 1rem;
    color: var(--bc-gold);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bc-footer ul {
    list-style: none;
}

.bc-footer ul li {
    margin-bottom: 10px;
}

.bc-footer ul li a {
    color: var(--bc-text-secondary);
    font-size: 0.9rem;
}

.bc-footer ul li a:hover {
    color: var(--bc-gold);
    padding-left: 4px;
}

.bc-footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: var(--bc-text-secondary);
    font-size: 0.9rem;
}

.bc-footer-contact li i {
    color: var(--bc-gold);
    margin-top: 3px;
}

.bc-footer-bottom {
    border-top: 1px solid var(--bc-border);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--bc-text-muted);
    font-size: 0.85rem;
}

/* ===== SCROLL TO TOP ===== */
.bc-scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--bc-gold-gradient);
    color: var(--bc-bg-primary);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--bc-transition);
    box-shadow: var(--bc-shadow-gold);
    z-index: 999;
}

.bc-scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.bc-scroll-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 168, 83, 0.3);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.bc-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--bc-transition-slow);
}

.bc-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Particle canvas */
#bc-particles {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

/* ===== PAGE TEMPLATE ===== */
.bc-page-header {
    padding: 160px 0 80px;
    text-align: center;
    background:
        radial-gradient(ellipse at center top, rgba(212, 168, 83, 0.06) 0%, transparent 60%);
    border-bottom: 1px solid var(--bc-border);
}

.bc-page-content {
    padding: 60px 0;
}

/* ===== SIDEBAR ===== */
.bc-sidebar .widget {
    background: var(--bc-bg-card);
    border: 1px solid var(--bc-border);
    border-radius: var(--bc-radius);
    padding: 24px;
    margin-bottom: 24px;
    backdrop-filter: var(--bc-glass-blur);
}

.bc-sidebar .widget-title {
    font-family: var(--bc-font-heading);
    font-size: 1.1rem;
    color: var(--bc-gold);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--bc-border);
}

/* ===== FORMS ===== */
.bc-form input,
.bc-form textarea,
.bc-form select {
    width: 100%;
    padding: 14px 20px;
    background: var(--bc-bg-tertiary);
    border: 1px solid var(--bc-border);
    border-radius: var(--bc-radius-sm);
    color: var(--bc-text-primary);
    font-family: var(--bc-font-body);
    font-size: 0.95rem;
    transition: var(--bc-transition);
    margin-bottom: 16px;
}

.bc-form input:focus,
.bc-form textarea:focus,
.bc-form select:focus {
    outline: none;
    border-color: var(--bc-gold);
    box-shadow: 0 0 0 3px rgba(212, 168, 83, 0.1);
}

.bc-form textarea {
    min-height: 120px;
    resize: vertical;
}

/* ===== WORDPRESS CORE STYLES ===== */
.alignleft {
    float: left;
    margin: 0 24px 16px 0;
}

.alignright {
    float: right;
    margin: 0 0 16px 24px;
}

.aligncenter {
    display: block;
    margin: 0 auto 24px;
}

.wp-caption {
    max-width: 100%;
    margin-bottom: 16px;
}

.wp-caption-text {
    font-size: 0.85rem;
    color: var(--bc-text-muted);
    text-align: center;
    padding-top: 8px;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 8px;
    margin-bottom: 24px;
}

.gallery-item {
    margin: 0;
}

.gallery-item img {
    border-radius: var(--bc-radius-sm);
}

.sticky {
    border-left: 3px solid var(--bc-gold);
    padding-left: 20px;
}

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
    word-wrap: normal !important;
}

/* ===== COMMENTS ===== */
.comments-area {
    padding: 40px 0;
}

.comment-list {
    list-style: none;
}

.comment-body {
    padding: 24px;
    background: var(--bc-bg-card);
    border: 1px solid var(--bc-border);
    border-radius: var(--bc-radius);
    margin-bottom: 16px;
    backdrop-filter: var(--bc-glass-blur);
}

.comment-author img {
    border-radius: 50%;
    margin-right: 12px;
}

.comment-meta {
    color: var(--bc-text-muted);
    font-size: 0.85rem;
    margin-bottom: 8px;
}

/* ===== PAGINATION ===== */
.pagination,
.nav-links {
    display: flex;
    gap: 8px;
    justify-content: center;
    padding: 40px 0;
}

.page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    background: var(--bc-bg-card);
    border: 1px solid var(--bc-border);
    border-radius: var(--bc-radius-sm);
    color: var(--bc-text-secondary);
    font-size: 0.9rem;
    transition: var(--bc-transition);
}

.page-numbers.current,
.page-numbers:hover {
    background: var(--bc-gold);
    color: var(--bc-bg-primary);
    border-color: var(--bc-gold);
}

/* ===== ELEMENTOR OVERRIDES ===== */
.elementor-page .bc-header+.site-main,
.elementor-page .bc-header+.bc-content {
    padding-top: 0;
}

body.elementor-page {
    background-color: var(--bc-bg-primary);
}

.elementor-section {
    background-color: transparent;
}

.elementor-widget-text-editor {
    color: var(--bc-text-secondary);
}

.elementor-widget-heading .elementor-heading-title {
    font-family: var(--bc-font-heading);
}

/* ===== WOOCOMMERCE DARK MODE STYLING ===== */
.woocommerce span.onsale {
    background-color: var(--bc-gold);
    color: var(--bc-bg-primary);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.75rem;
    padding: 4px 12px;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
    background: var(--bc-bg-card);
    border: 1px solid var(--bc-border);
    border-radius: var(--bc-radius);
    padding: 20px;
    transition: var(--bc-transition);
    backdrop-filter: var(--bc-glass-blur);
}

.woocommerce ul.products li.product:hover {
    transform: translateY(-5px);
    border-color: var(--bc-border-hover);
    box-shadow: var(--bc-shadow-gold);
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    color: var(--bc-text-primary);
    font-family: var(--bc-font-heading);
    padding: 15px 0 10px;
    font-size: 1.1rem;
}

.woocommerce ul.products li.product .price {
    color: var(--bc-gold);
}

.woocommerce ul.products li.product .button {
    background: var(--bc-gold-gradient);
    color: var(--bc-bg-primary);
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    margin-top: 15px;
    width: 100%;
    text-align: center;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
    color: var(--bc-gold);
    font-size: 1.5rem;
}

.woocommerce div.product .product_title {
    color: var(--bc-text-primary);
    font-family: var(--bc-font-heading);
}

.woocommerce-tabs ul.tabs {
    background: transparent !important;
    border-bottom: 1px solid var(--bc-border) !important;
}

.woocommerce-tabs ul.tabs li {
    background: var(--bc-bg-card) !important;
    border: 1px solid var(--bc-border) !important;
    border-bottom: none !important;
    border-radius: var(--bc-radius-sm) var(--bc-radius-sm) 0 0 !important;
}

.woocommerce-tabs ul.tabs li.active {
    background: var(--bc-gold) !important;
}

.woocommerce-tabs ul.tabs li.active a {
    color: var(--bc-bg-primary) !important;
}

.woocommerce-tabs .panel {
    background: var(--bc-bg-card);
    border: 1px solid var(--bc-border);
    padding: 30px;
    border-radius: 0 0 var(--bc-radius) var(--bc-radius);
    color: var(--bc-text-secondary);
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
    background: var(--bc-bg-secondary) !important;
    color: var(--bc-text-primary) !important;
    border-top-color: var(--bc-gold) !important;
}

.woocommerce-MyAccount-navigation ul {
    list-style: none;
    padding: 0;
}

.woocommerce-MyAccount-navigation ul li {
    background: var(--bc-bg-card);
    margin-bottom: 5px;
    border-radius: var(--bc-radius-sm);
    border: 1px solid var(--bc-border);
}

.woocommerce-MyAccount-navigation ul li a {
    display: block;
    padding: 12px 20px;
}

.woocommerce-MyAccount-navigation ul li.is-active {
    background: var(--bc-gold);
}

.woocommerce-MyAccount-navigation ul li.is-active a {
    color: var(--bc-bg-primary);
}

.woocommerce-cart-form,
.cart-collaterals {
    background: var(--bc-bg-card);
    border: 1px solid var(--bc-border);
    border-radius: var(--bc-radius);
    padding: 30px;
}

.woocommerce table.shop_table {
    border: 1px solid var(--bc-border) !important;
    border-radius: var(--bc-radius) !important;
    color: var(--bc-text-secondary);
}

.woocommerce table.shop_table th {
    background: var(--bc-bg-tertiary);
    color: var(--bc-gold);
}

/* Checkout Specific */
.woocommerce-checkout .col2-set {
    margin-bottom: 30px;
}

.woocommerce-checkout .bc-page-content {
    background: var(--bc-bg-card);
    padding: 40px;
    border-radius: var(--bc-radius);
    border: 1px solid var(--bc-border);
}

.woocommerce form .form-row label {
    color: var(--bc-text-secondary);
    font-weight: 500;
    margin-bottom: 8px;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea {
    background: var(--bc-bg-tertiary) !important;
    border: 1px solid var(--bc-border) !important;
    color: var(--bc-text-primary) !important;
    padding: 12px 15px !important;
    border-radius: var(--bc-radius-sm) !important;
}

.woocommerce form .form-row input.input-text:focus {
    border-color: var(--bc-gold) !important;
    outline: none;
}

#order_review_heading {
    margin-top: 40px;
    color: var(--bc-gold);
    font-family: var(--bc-font-heading);
}

#payment {
    background: var(--bc-bg-secondary) !important;
    border: 1px solid var(--bc-border) !important;
    border-radius: var(--bc-radius-sm) !important;
}

#payment ul.payment_methods {
    border-bottom: 1px solid var(--bc-border) !important;
}

#payment div.payment_box {
    background: var(--bc-bg-tertiary) !important;
    color: var(--bc-text-secondary) !important;
}

#payment div.payment_box::before {
    border-bottom-color: var(--bc-bg-tertiary) !important;
}

.woocommerce-checkout-payment .button {
    background: var(--bc-gold-gradient) !important;
    color: var(--bc-bg-primary) !important;
    font-size: 1.1rem !important;
    padding: 15px !important;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .bc-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .bc-footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .bc-about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    :root {
        --bc-section-padding: 60px 0;
    }

    .bc-menu-toggle {
        display: block;
    }

    .bc-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--bc-bg-secondary);
        flex-direction: column;
        padding: 80px 24px 24px;
        transition: var(--bc-transition);
        border-left: 1px solid var(--bc-border);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
    }

    .bc-nav.open {
        right: 0;
    }

    .bc-nav ul {
        flex-direction: column;
        width: 100%;
    }

    .bc-nav ul li a {
        display: block;
        padding: 12px 16px;
    }

    .bc-nav ul li ul.sub-menu {
        position: static;
        border: none;
        padding-left: 16px;
        box-shadow: none;
    }

    .bc-grid-2,
    .bc-grid-3 {
        grid-template-columns: 1fr;
    }

    .bc-grid-4 {
        grid-template-columns: 1fr;
    }

    .bc-footer-grid {
        grid-template-columns: 1fr;
    }

    .bc-hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .bc-footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .bc-about-stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .bc-hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .bc-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ===== LOADING ANIMATION ===== */
.bc-preloader {
    position: fixed;
    inset: 0;
    background: var(--bc-bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.bc-preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

.bc-preloader-cross {
    font-size: 3rem;
    color: var(--bc-gold);
    animation: preloader-pulse 1.5s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bc-preloader-cross img {
    max-height: 100px;
    width: auto;
    display: block;
}

@keyframes preloader-pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}