/* ==========================================================
   WORDPRESS & GLOBAL OVERRIDES
========================================================== */

/**
 * Remove problematic WordPress/Plugin body styles
 */
body {
    margin: 0 !important;
    padding: 0 !important;
    max-width: none !important;
}

/* ==========================================================
   PAGE STRUCTURE
========================================================== */

/**
 * Page wrapper
 */
#page {
    width: 100%;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/**
 * Main content area
 */
main {
    width: 100%;
    flex: 1;
}

/**
 * Content wrapper
 */
#content {
    width: 100%;
}

/* ==========================================================
   BASE STYLES & GLOBAL CONTAINER
========================================================== */

/**
 * Global Container
 * Used throughout the theme for content wrapper
 */
.vir-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/**
 * Utility Classes
 */
.vir-homepage-widget {
    /* Base homepage widget styles */
}

/**
 * Button Styles
 */
.vir-btn {
    display: inline-block;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-align: center;
}

.vir-btn-primary {
    background: var(--color-accent);
    color: white;
}

.vir-btn-primary:hover {
    background: var(--color-secondary);
    transform: translateY(-2px);
}

.vir-btn-secondary {
    background: white;
    color: var(--color-accent);
}

.vir-btn-secondary:hover {
    background: var(--color-primary);
    color: white;
}

/**
 * Responsive Container
 */
@media (max-width: 1024px) {
    .vir-container {
        max-width: 960px;
    }
}

@media (max-width: 768px) {
    .vir-container {
        max-width: 100%;
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .vir-container {
        padding: 0 10px;
    }
}
/* ==================================================
   VIR ELEMENTOR FULL WIDTH
================================================== */

.vir-elementor-main {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
}
/* ==================================================
   VIR ELEMENTOR MAIN
================================================== */

.vir-elementor-main {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
}