/* Modern Boxed Layout for Putul-IT Theme */

html {
    background-color: #f1f5f9 !important;
}

body {
    background-color: #f1f5f9 !important;
    margin: 0 !important;
    padding: 0 !important;
}

.boxed_layout_wrapper {
    max-width: 1240px;
    margin: 0 auto !important;
    background: #ffffff;
    box-shadow: 0 0 60px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: visible !important; /* Critical for dropdowns */
    z-index: 10;
}

/* Remove stray blue shapes from footer */
.footer--menu-wrapper:before,
.footer--menu-wrapper:after {
    display: none !important;
}

/* Ensure sections inside the box align well */
.boxed_layout_wrapper > section,
.boxed_layout_wrapper > div {
    width: 100% !important;
}

/* Responsive adjustments */
@media (max-width: 1240px) {
    .boxed_layout_wrapper {
        margin: 0 !important;
        max-width: 100% !important;
        box-shadow: none !important;
        border-radius: 0 !important;
    }
}

/* Fix for sticky header in boxed layout */
body .menu_section.sticky {
    max-width: 1240px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 100% !important;
}

@media (max-width: 1240px) {
    body .menu_section.sticky {
        left: 0 !important;
        transform: none !important;
    }
}
