﻿
@media all and (max-width: 769px) {
}

@media all and (max-width: 1000px) {
}

@media all and (min-width: 481px) {
}

@media all and (min-width: 769px) {
}

@media all and (min-width: 1001px) {
}

@media all and (min-width: 1367px) {
}
/*** MOBILE NAVIGATION ***/

/*********** COMPLETED MENU STYLES ***********/

/*** RESPONSIVE NAVIGATION SYSTEM ***/
/* Hide button on desktop */
@media (min-width: 992px) {
    .mobile-nav-button {
        display: none;
    }
}
/* Base Media Query Breakpoints */
@media (min-width: 769px) {
    /* Hide mobile elements on desktop */
    .mobile-menu-toggle,
    .menu-background {
        display: none;
    }

    /* Show desktop menu */
    .desktop-menu {
        display: block;
    }
}

@media (max-width: 768px) {
    /* Hide desktop menu on mobile */
    .desktop-menu {
        display: none;
    }
    /* Mobile Header */
    .mobile-header {
        display: block;
        padding: 10px 15px;
        background: #fff;
        position: relative;
        border-bottom: 1px solid #eee;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .menu-toggle {
        background: none;
        border: none;
        padding: 0;
        width: 30px;
        height: 25px;
        position: relative;
        cursor: pointer;
    }

        .menu-toggle span {
            display: block;
            width: 100%;
            height: 3px;
            background: #444;
            margin: 5px 0;
            border-radius: 2px;
        }

    .mobile-logo {
        flex-grow: 1;
        text-align: center;
        margin: 0 15px;
    }

    .cart-button {
        position: relative;
    }

    /* Mobile Menu Container */
    .mobile-menu-container {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        z-index: 1000;
        visibility: hidden;
        opacity: 0;
        transition: all 0.3s ease;
    }

        .mobile-menu-container.active {
            visibility: visible;
            opacity: 1;
        }

    .mobile-menu-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1001;
    }

    .mobile-menu-wrapper {
        position: absolute;
        top: 0;
        left: 0;
        width: 300px;
        height: 100%;
        background: #fff;
        z-index: 1002;
        overflow-y: auto;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }

    .mobile-menu-container.active .mobile-menu-wrapper {
        transform: translateX(0);
    }

    .mobile-menu-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 15px;
        background: #4ab2f1;
        color: #fff;
    }

    .close-button {
        background: none;
        border: none;
        color: #fff;
        font-size: 24px;
        line-height: 1;
        cursor: pointer;
    }

    /* 6-Button Navigation */
    .mobile-nav-buttons {
        display: flex;
        flex-wrap: wrap;
        padding: 10px 5px;
    }

    .nav-button {
        flex: 0 0 33.333%;
        padding: 10px 5px;
        text-align: center;
        box-sizing: border-box;
    }

        .nav-button a {
            display: block;
            text-decoration: none;
            color: #444;
        }

    .button-icon {
        font-size: 24px;
        margin-bottom: 5px;
        color: #4ab2f1;
    }

    .button-text {
        font-size: 12px;
        display: block;
    }

    /* Menu Panels */
    .menu-panel {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #fff;
        z-index: 1003;
        overflow-y: auto;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }

        .menu-panel.active {
            transform: translateX(0);
        }

    .panel-header {
        display: flex;
        align-items: center;
        padding: 15px;
        background: #4ab2f1;
        color: #fff;
    }

    .back-button {
        background: none;
        border: none;
        color: #fff;
        margin-right: 10px;
        cursor: pointer;
        font-size: 18px;
    }

    .panel-body {
        padding: 15px;
    }

    /* Menu Lists */
    .mobile-menu-list {
        margin: 0;
        padding: 0;
        list-style: none;
    }

        .mobile-menu-list li {
            border-bottom: 1px solid #eee;
        }

            .mobile-menu-list li:last-child {
                border-bottom: none;
            }

    .menu-item-link {
        display: block;
        padding: 12px 0;
        color: #444;
        text-decoration: none;
    }

    .has-sublist > a {
        position: relative;
        padding-right: 30px;
    }

    .toggle-icon {
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
    }

    .sublist-wrapper {
        display: none;
        padding: 0 0 10px 15px;
    }

    .sublist {
        margin: 0;
        padding: 0;
        list-style: none;
    }

    /* Menu Sections */
    .menu-section {
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid #eee;
    }

    .section-title {
        font-size: 16px;
        font-weight: 600;
        margin: 0 0 15px;
    }
    /* Mobile Menu Toggle Button */
    .mobile-menu-toggle {
        position: fixed;
        top: 20px;
        right: 20px;
        z-index: 998;
        width: 40px;
        height: 40px;
        background: #fff;
        border: none;
        border-radius: 50%;
        box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        font-size: 24px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: transform 0.2s ease;
    }

        .mobile-menu-toggle:hover {
            transform: scale(1.1);
        }

    /* Menu Background Overlay */
    .menu-background {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.7);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

        .menu-background.active {
            opacity: 1;
            visibility: visible;
        }

    /* Close Button */
    .menu-close {
        position: absolute;
        top: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        background: none;
        border: none;
        color: white;
        font-size: 32px;
        cursor: pointer;
        z-index: 1001;
    }

        .menu-close:hover {
            color: #ff5555;
        }

    /* Mobile Menu Container */
    .mobile-menu {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 90%;
        max-width: 500px;
        max-height: 90vh;
        overflow-y: auto;
        background-color: white;
        border-radius: 8px;
        padding: 20px;
        z-index: 1000;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

    /* Menu Items */
    .menu-item {
        margin-bottom: 15px;
        border-bottom: 1px solid #eee;
        padding-bottom: 15px;
        position: relative;
    }

    .menu-link {
        display: block;
        color: #333;
        text-decoration: none;
        font-size: 18px;
        padding: 8px 0;
    }

    .has-submenu .menu-link {
        width: calc(100% - 40px);
        display: inline-block;
    }

    .menu-link:hover {
        color: #0066cc;
    }

    /* Submenu Toggle Button */
    .submenu-toggle {
        position: absolute;
        right: 0;
        top: 8px;
        background: none;
        border: none;
        font-size: 20px;
        cursor: pointer;
        width: 30px;
        height: 30px;
        color: #555;
    }

        .submenu-toggle:hover {
            color: #0066cc;
        }

    /* Submenu */
    .submenu {
        display: none;
        padding-left: 15px;
        margin-top: 10px;
        overflow: hidden;
        transition: all 0.3s ease;
    }

        .submenu.open {
            display: block;
            animation: fadeIn 0.3s ease forwards;
        }

    /* Menu List Styles for Mega Menu */
    .mega-menu .menu-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    /* Animation */
    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Additional Responsive Adjustments */
    @media (max-width: 480px) {
        .mobile-menu {
            width: 95%;
            padding: 15px;
        }

        .menu-link {
            font-size: 16px;
        }

        .mobile-menu-toggle,
        .menu-close {
            width: 36px;
            height: 36px;
            font-size: 20px;
        }
    }
    /* Mobile Menu Container */
    .mobile-menu {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 90%;
        max-width: 500px;
        max-height: 90vh;
        overflow-y: auto;
        background-color: white;
        border-radius: 8px;
        padding: 20px;
        z-index: 1000;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        opacity: 0; /* Start hidden */
        visibility: hidden; /* Start invisible */
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

        .mobile-menu.active {
            opacity: 1;
            visibility: visible;
        }
}

/*********** CSS RESET **********/


* {
    margin: 0;
    padding: 0;
    text-decoration: none;
}

    *, *:before, *:after {
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

html {
    margin: 0;
    -webkit-text-size-adjust: none;
}

ol, ul {
    list-style: none;
}

a img {
    border: none;
}

button::-moz-focus-inner,
input[type="button"]::-moz-focus-inner,
input[type="submit"]::-moz-focus-inner,
input[type="reset"]::-moz-focus-inner,
input[type="file"] > button::-moz-focus-inner,
input[type="file"] > input[type="button"]::-moz-focus-inner {
    margin: 0;
    border: 0;
    padding: 0;
}

button,
input[type="button"],
input[type="submit"],
input[type="reset"],
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
textarea {
    border-radius: 0;
}

button,
input[type="button"],
input[type="submit"],
input[type="reset"] {
    -webkit-appearance: none;
}

input:-webkit-autofill {
    -webkit-box-shadow: inset 0 0 0 1000px #fff;
}

script {
    display: none !important;
}

.center-1 {
    margin: 0 0 100px;
}

.center-2, .side-2 {
    margin: 0 0 50px;
}

    .side-2:after {
        content: "";
        display: block;
        clear: both;
    }

.flyout-cart {
    display: none;
}
/*********** HEADER ***********/


.header {
    position: relative;
    z-index: 10;
    width: 95%;
    margin: auto;
    text-align: center;
}

.header-upper {
    position: relative;
    z-index: 1;
    border-bottom: 1px solid #ddd;
}

.header-selectors-wrapper {
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
}

    .header-selectors-wrapper > div {
        display: block;
        width: 50%;
        margin: 10px auto;
        vertical-align: middle;
    }

    .header-selectors-wrapper select {
        width: 100%;
    }

.language-list {
    max-width: 100%;
    font-size: 0;
}

    .language-list li {
        display: inline-block;
        margin: 0 1px;
        vertical-align: middle;
    }

    .language-list a {
        display: block;
        position: relative;
        width: 24px;
        height: 32px;
        line-height: 0;
    }

    .language-list img {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        margin: auto;
    }

.header-links-wrapper {
    position: relative;
    padding: 20px 0;
}

.header-links {
}

    .header-links ul {
        font-size: 0;
    }

    .header-links li {
        display: inline-block;
        margin: 0 10px;
    }

    .header-links span,
    .header-links a {
        display: inline-block;
        font-size: 12px; /*reset zeroing*/
        line-height: 36px;
        text-transform: uppercase;
    }

        .header-links a:hover,
        .header-links a:focus {
            color: #4ab2f1;
        }

#topcartlink {
    display: block;
    width: 70%;
    max-width: 400px;
    margin: 10px auto 0;
    background-color: #f6f6f6;
    padding: 0 20px;
}

    #topcartlink a {
        background: url('../images/shopping-bag.png') left center no-repeat;
        padding: 0 0 0 20px;
    }

.header-lower {
    position: relative;
    z-index: 0;
    padding: 35px 0;
}

.header-logo {
    margin: 0 0 20px;
    text-align: center;
}

    .header-logo a {
        display: inline-block;
        max-width: 100%;
        line-height: 0; /*firefox line-height bug fix*/
    }

        .header-logo a img {
            max-width: 100%;
            opacity: 1;
        }

.search-box form {
    display: inline-block;
}

    .search-box form:after {
        content: "";
        display: block;
        clear: both;
    }

.search-box input.search-box-text {
    float: left;
    width: 200px;
    height: 36px;
    margin: 0 -1px 0 0;
}

.search-box .search-box-button {
    float: left;
    min-width: 86px;
    height: 36px;
    border: none;
    background-color: #4ab2f1;
    padding: 0 15px;
    text-align: center;
    color: #fff;
    text-transform: uppercase;
}

    .search-box .search-box-button:hover,
    .search-box .search-box-button:focus {
        background-color: #248ece;
    }

.search-box .ui-autocomplete-loading {
    background: #fff url('../images/ajax-loader-small.gif') right center no-repeat;
}

.ui-helper-hidden-accessible {
    display: none !important;
}

.ui-autocomplete {
    width: 385px !important;
    border: 1px solid #ddd;
    border-top: none;
    overflow: hidden;
    background-color: #fff;
    text-align: left;
    /*override jQuery UI styles, do not delete doubled properties*/
    border-radius: 0;
    padding: 0;
    font: normal 14px Arial, Helvetica, sans-serif;
}

    .ui-autocomplete li {
        border-top: 0px solid #ddd;
    }

        .ui-autocomplete li:first-child {
            border-top: none;
        }

    .ui-autocomplete a {
        display: block;
        padding: 15px;
        font-size: 15px;
        /*override jQuery UI styles, do not delete doubled properties*/
        margin: 0 !important;
        border: none !important;
        border-radius: 0 !important;
        background: none !important;
        padding: 15px !important;
        line-height: normal !important;
        color: #777 !important;
    }

        .ui-autocomplete a:hover,
        .ui-autocomplete a:focus,
        .ui-autocomplete a.ui-state-focus {
            background-color: #f6f6f6 !important;
        }

    .ui-autocomplete img {
        display: none;
        min-width: 25px;
        margin: 0 10px 0 0;
        vertical-align: middle;
    }

.follow-us {
    margin: 30px auto 0;
    text-align: center;
}

    .follow-us .title {
        margin: 0 0 10px;
        background: none;
        color: #444;
        cursor: auto;
    }

    .follow-us .social ul {
        margin: 0 0 30px;
        border-bottom: 1px solid #ddd;
        padding: 0 0 30px;
        font-size: 0;
    }

    .follow-us .social li {
        display: inline-block;
        margin: 0 5px;
    }

    .follow-us .social a {
        display: block;
        width: 38px;
        height: 38px;
        background: url('../images/social-sprite.png') no-repeat;
        font-size: 0;
    }

    .follow-us .social .facebook a {
        background-position: 0 0;
    }

    .follow-us .social .twitter a {
        background-position: -38px 0;
    }

    .follow-us .social .rss a {
        background-position: -76px 0;
    }

    .follow-us .social .youtube a {
        background-position: -114px 0;
    }

    .follow-us .social .instagram a {
        background-position: -152px 0;
    }

.newsletter-email {
    display: inline-block;
    overflow: hidden;
}

    .newsletter-email:focus-within {
        overflow: visible;
    }

    .newsletter-email input[type="email"] {
        float: left;
        width: 180px;
        height: 36px;
        margin: 0 -1px 0 0;
    }

.newsletter-subscribe-button {
    float: left;
    height: 36px;
    border: none;
    background-color: #4ab2f1;
    padding: 0 15px;
    text-align: center;
    color: #fff;
    text-transform: uppercase;
}

    .newsletter-subscribe-button:hover,
    .newsletter-subscribe-button:focus {
        background-color: #248ece;
    }

.newsletter-email .options {
    clear: both;
    padding: 10px 0 0;
}

.newsletter-validation,
.newsletter-result {
    width: 100%;
    overflow: hidden;
    line-height: 28px;
}
/*.newsletter-validation .please-wait {
	display: none !important; 
}*/
/*********** SIDE COLUMN ***********/



.block {
    max-width: 600px; /*width limit in mobile*/
    min-height: 50px;
    margin: auto;
    text-align: left;
}

    .block .title {
        position: relative;
        margin: 0 0 10px;
        border-bottom: 1px solid #ddd;
        background: #f6f6f6 url('../images/toggle-gray.png') right 14px no-repeat;
        padding: 12px 30px 12px 10px;
        font-size: 20px;
        color: #444;
        cursor: pointer;
    }

        .block .title strong {
            font-weight: normal;
        }

    .block .listbox {
        display: none;
        border-bottom: 1px solid #ddd;
        padding: 10px 5px;
    }

    .block .list li {
        padding: 5px 0 5px 15px;
    }

    .block .list a {
        display: inline-block;
        position: relative;
        padding: 5px 0;
        font-size: 16px;
        color: #444;
        -webkit-transition: all 0.1s ease;
        transition: all 0.1s ease;
    }

        .block .list a:before {
            content: "";
            position: absolute;
            top: 12px;
            left: -15px;
            width: 5px;
            height: 5px;
            background-color: #ddd;
        }

    .block .list .active > a {
        color: #4ab2f1;
    }

    .block .list a:hover,
    .block .list a:focus {
        color: #4ab2f1;
    }

    .block a.product-picture {
        display: none;
    }

        .block a.product-picture:before {
            display: none;
        }

    .block .sublist {
        margin: 15px 0 5px;
    }

        .block .sublist a {
            font-size: 14px;
        }

    .block .view-all {
        margin: 10px 0 0;
    }

        .block .view-all a {
            display: inline-block;
            padding: 10px 15px;
            font-size: 16px;
            color: #4ab2f1;
        }

            .block .view-all a:hover,
            .block .view-all a:focus {
                text-decoration: underline;
            }

    .block .tags {
        margin: 5px 0 10px;
    }

        .block .tags ul {
            font-size: 0;
        }

        .block .tags li,
        .product-tags-all-page li {
            display: inline-block;
            position: relative;
            margin: 0 10px;
            overflow: hidden;
            font-size: 17px !important; /*setting base size*/
        }

            .block .tags li a,
            .product-tags-all-page li a {
                float: left;
                line-height: 30px;
                color: #444;
            }

                .block .tags li a:hover,
                .block .tags li a:focus,
                .product-tags-all-page li a:hover,
                .product-tags-all-page li a:focus {
                    color: #4ab2f1;
                }
/*********** TOPICS ***********/



.topic-block {
    margin: 0 0 25px;
}

.topic-block-title {
    min-height: 50px;
    margin: 0 0 25px;
    border-bottom: 1px solid #ddd;
    padding: 0 0 15px;
}

    .topic-block-title h2 {
        font-size: 30px;
        font-weight: normal;
    }

.topic-block-body {
    text-align: justify;
    line-height: 24px;
    font-size: 16px;
}

.topic-page .page-body {
    text-align: justify;
    line-height: 22px;
}

.topic-block a,
.topic-page a {
    text-decoration: underline;
}

.topic-block strong,
.topic-page strong {
    color: #444;
}

.home-page .topic-block {
    margin: 0 0 50px;
}

.popup-window .topic-page {
    padding: 15px;
}

.not-found-page p {
    margin: 30px 15px;
}

.topic-password {
    text-align: center;
}

.enter-password-title {
    margin: 0 0 20px;
    color: #444;
}

.enter-password-form {
    display: inline-block;
    overflow: hidden;
}

    .enter-password-form input[type="password"] {
        float: left;
        width: 200px;
        height: 40px;
        margin: 0 -1px 0 0;
    }

    .enter-password-form button[type="submit"] {
        float: left;
        width: auto;
        min-width: 86px;
        height: 40px;
        border: none;
        background-color: #4ab2f1;
        padding: 0 15px;
        color: #fff;
        text-transform: uppercase;
    }

        .enter-password-form button[type="submit"]:hover,
        .enter-password-form button[type="submit"]:focus {
            background-color: #248ece;
        }
.accordion-menu {
    display: none; /* Hidden by default */
}

.accordion-item {
    border-bottom: 1px solid #ccc;
}

.accordion-header {
    display: block;
    padding: 10px;
    cursor: pointer;
    background: #f9f9f9;
    transition: background 0.3s ease;
}

    .accordion-header:hover {
        background: #e9e9e9;
    }

.accordion-content {
    display: none;
    padding: 10px;
    background: #f1f1f1;
}

    @media all and (max-width: 1000px) {
        /*** MOBILE NAVIGATION ***/


        .header-menu {
            position: relative;
            z-index: 1;
            width: 90%;
            max-width: 600px;
            margin: 0 auto 40px;
        }

        .menu-toggle {
            background: #4ab2f1 url('../../../../Themes/DefaultClean/Content/images/menu-icon.png')right center no-repeat;
            padding: 15px;
            font-size: 15px;
            font-weight: bold;
            color: #fff;
            text-transform: uppercase;
            cursor: pointer;
        }
        .top-menu-mobile-accordion {
            display: block;
        }

        .top-menu {
            display: none;
        }

            .top-menu > li {
                position: relative;
                margin: 1px 0;
                background-color: #f6f6f6;
            }

                .top-menu > li > a {
                    display: block;
                    min-height: 55px;
                    padding: 18px;
                    font-size: 15px;
                    color: #555;
                }

                    .top-menu > li > a:focus {
                        position: relative;
                        z-index: 1;
                    }

            .top-menu .sublist {
                display: none;
                background-color: #fff;
                padding: 5px 0;
            }

                .top-menu .sublist li {
                    position: relative;
                    margin: 1px 0 1px 20px;
                }

                    .top-menu .sublist li a {
                        display: block;
                        padding: 15px 18px;
                        font-size: 15px;
                    }

        .sublist-toggle {
            position: absolute;
            top: 0;
            right: 0;
            width: 55px;
            height: 55px;
            border-left: 1px solid #fff;
            background: url('../images/toggle-black.png') center no-repeat;
            padding: 15px;
            font-size: 15px;
            font-weight: bold;
            color: #fff;
            text-transform: uppercase;
            cursor: pointer;
        }

        .sublist .sublist-toggle {
            height: 49px;
        }

        .sublist .sublist li {
            background-color: #f6f6f6;
        }

        .sublist .sublist .sublist li {
            background-color: #fff;
        }

        .block-category-navigation {
            display: none;
        }

        .block-account-navigation {
            float: none;
            margin: auto !important;
        }

        .write-review .review-rating {
            text-align: center;
        }

            .write-review .review-rating div.name-description {
                width: 100%;
                margin: 0 5px 0 0;
                text-align: center;
            }
    }

    @media all and (min-width: 481px) {


        /*** GLOBAL ***/


        .master-wrapper-content,
        .header-menu {
            width: 92.5%;
        }

        /*** HEADER ***/


        .header-selectors-wrapper > div {
            display: inline-block;
            width: 30%;
            margin: 10px auto;
        }

        .search-box input.search-box-text {
            width: 280px;
        }

        .ui-autocomplete {
            width: 280px !important;
        }

            .ui-autocomplete img {
                display: inline;
            }
        /*** TOPICS ***/


        .enter-password-form input[type="password"] {
            width: 260px;
        }
    }


    @media all and (min-width: 769px) {

        /*** HEADER ***/


        .header-selectors-wrapper > div {
            width: 20%;
        }
    }

    @media all and (min-width: 1001px) {


        /*** GLOBAL STYLES ***/


        .master-wrapper-content {
            width: 980px;
            margin: auto;
        }

        .center-2 {
            float: right;
            width: 73%;
        }

        .side-2 {
            float: left;
            width: 25%;
        }

        .page {
            text-align: left;
        }

        .inputs {
            text-align: left;
        }

            .inputs label {
                display: inline-block;
                width: 265px;
                margin: 0 10px 0 0;
                text-align: right;
            }

            .inputs input[type="text"],
            .inputs input[type="email"],
            .inputs input[type="tel"],
            .inputs input[type="password"],
            .inputs select {
                min-height: 40px;
            }

            .inputs .option-list li {
                margin: 0 10px 0 0;
            }

        .center-1 .buttons {
            text-align: center;
        }

        .center-2 .inputs label {
            width: 136px;
        }

        .inputs.accept-consent label {
            width: auto;
        }

        .page-title a + h1 {
            float: left;
        }

        .link-rss {
            display: block;
            float: right;
            margin: 6px 0 0;
        }
        /*** HEADER ***/


        .header {
            width: 980px;
            margin: auto;
        }

        .header-upper:after {
            content: "";
            display: block;
            clear: both;
        }

        .header-selectors-wrapper {
            float: left;
            border: none;
            padding: 0;
        }

            .header-selectors-wrapper > div {
                width: auto;
                min-width: 100px;
                margin: 0 12px 0 0;
                line-height: 43px;
            }

            .header-selectors-wrapper select {
                height: 25px;
                padding: 4px;
                font-size: 12px;
            }

        .language-list {
            text-align: left;
        }

        .header-links-wrapper {
            float: right;
            padding: 0;
        }

        .header-links li {
            margin: 0 16px;
        }

        .header-links a,
        .header-links span {
            line-height: 45px;
            text-transform: none;
        }

        #topcartlink {
            display: inline-block;
            width: auto;
            margin: 0;
            padding: 0 18px;
        }

        .flyout-cart {
            position: absolute;
            top: 100%;
            right: 0;
            z-index: 100;
            width: 300px;
            box-shadow: 0 0 2px rgba(0,0,0,0.25);
            background-color: #fff;
        }

            .flyout-cart.active {
                display: block;
            }

        .mini-shopping-cart {
            padding: 12px;
            text-align: left;
            font-size: 12px;
        }

            .mini-shopping-cart .count {
                padding: 5px 0 15px;
                color: #444;
            }

                .mini-shopping-cart .count a {
                    margin: 0 2px;
                    font-weight: bold;
                    color: #444;
                }

            .mini-shopping-cart .items {
                border-top: 1px solid #ddd;
                border-bottom: 1px solid #ddd;
                margin: 0 0 20px;
            }

            .mini-shopping-cart .item {
                overflow: hidden;
                padding: 10px 0;
            }

            .mini-shopping-cart .picture {
                float: left;
                width: 70px;
                text-align: center;
            }

                .mini-shopping-cart .picture a {
                    display: block;
                    position: relative;
                    overflow: hidden;
                }

                    .mini-shopping-cart .picture a:before {
                        content: "";
                        display: block;
                        padding-top: 100%;
                    }

                .mini-shopping-cart .picture img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    bottom: 0;
                    left: 0;
                    margin: auto;
                    max-width: 100%;
                }

                .mini-shopping-cart .picture + .product {
                    margin: 0 0 0 80px;
                }

            .mini-shopping-cart .name {
                margin: 0 0 10px;
                font-size: 14px;
            }

                .mini-shopping-cart .name a {
                    color: #4ab2f1;
                }

                    .mini-shopping-cart .name a:hover,
                    .mini-shopping-cart .name a:focus {
                        color: #248ece;
                    }

            .mini-shopping-cart .attributes {
                margin: 5px 0;
                color: #444;
            }

            .mini-shopping-cart .totals {
                margin: 0 0 12px;
                font-size: 14px;
            }

                .mini-shopping-cart .totals strong {
                    font-size: 16px;
                    color: #444;
                }

            .mini-shopping-cart .buttons {
                margin: 0 0 5px;
            }

            .mini-shopping-cart button[type="button"] {
                display: inline-block;
                border: none;
                background-color: #4ab2f1;
                padding: 10px 20px;
                font-size: 12px;
                color: #fff;
                text-transform: uppercase;
            }

                .mini-shopping-cart button[type="button"]:hover,
                .mini-shopping-cart button[type="button"]:focus {
                    background-color: #248ece;
                }

        .header-lower {
            display: table;
            width: 100%;
        }

        .header-logo {
            display: table-cell;
            text-align: left;
            vertical-align: middle;
            font-size: 0;
        }

        .search-box {
            display: table-cell;
            text-align: right;
            vertical-align: middle;
        }

            .search-box input.search-box-text,
            .search-box .search-box-button {
                height: 40px;
            }


        /*** NAVIGATION ***/


        .header-menu {
            position: relative;
            z-index: 5;
            width: 980px;
            margin: 0 auto 30px;
            border-top: 1px solid #ddd;
            border-bottom: 1px solid #ddd;
            padding: 25px 0;
            text-align: center;
        }

        .menu-toggle,
        .sublist-toggle {
            display: none;
        }

        .header-menu > ul {
            display: block !important; /* prevents toggle display:none on resize */
            font-size: 0;
        }

            .header-menu > ul.mobile {
                display: none !important;
            }

            .header-menu > ul > li {
                display: inline-block;
                border-left: 1px solid #ddd;
                padding: 0 15px;
                vertical-align: middle;
            }

                .header-menu > ul > li:first-child {
                    border-left: none;
                }

                .header-menu > ul > li > a {
                    display: block;
                    padding: 5px 10px;
                    line-height: 20px;
                    font-size: 17px; /*reset zeroing*/
                    color: #555;
                    cursor: pointer;
                }

                    .header-menu > ul > li > a:hover,
                    .header-menu > ul > li > a:focus {
                        color: #4ab2f1;
                    }

        .header-menu .sublist {
            display: none;
            position: absolute;
            width: 200px;
            box-shadow: 0 0 2px rgba(0,0,0,0.2);
            background-color: #fff;
            padding: 10px 0;
            text-align: left;
        }

            .header-menu .sublist li {
                position: relative;
            }

                .header-menu .sublist li a {
                    display: block;
                    position: relative;
                    padding: 10px 20px 10px 30px;
                    font-size: 14px;
                    color: #444;
                }

                    .header-menu .sublist li a:before {
                        content: "";
                        position: absolute;
                        top: 17px;
                        left: 15px;
                        width: 5px;
                        height: 5px;
                        background-color: #ddd;
                    }

                .header-menu .sublist li:hover > a,
                .header-menu .sublist li:focus > a {
                    background-color: #f6f6f6;
                }

        .header-menu ul li:hover > .sublist,
        .header-menu ul li:focus > .sublist {
            display: block;
        }

        .header-menu .sublist .sublist {
            top: -10px;
            left: 100% !important;
        }

        .follow-us {
            float: right;
            width: 300px !important;
            margin: 0;
            text-align: left;
        }

            .follow-us .social li {
                margin: 0 10px 0 0;
            }

        .newsletter-email {
            display: block;
        }

            .newsletter-email input[type="text"] {
                width: 200px;
            }

            .newsletter-email .newsletter-subscribe-button {
                min-width: 100px;
                padding: 0 5px;
            }

        .newsletter-validation .field-validation-valid {
            text-align: left;
        }
        /*** COLUMN ***/


        .product-filter .filter-title {
            background: #f6f6f6;
        }

        .block {
            float: none;
            width: auto;
            margin: 0 0 20px;
        }

            .block .title {
                margin: 0;
                border-bottom: 1px solid #ddd;
                background: none;
                cursor: auto;
            }

                .block .title strong {
                    font-weight: bold;
                }

            .block .listbox {
                display: block;
                border-bottom: none;
            }

            .block a.product-picture {
                display: inline-block;
                position: relative;
                width: 30%;
                margin: 0 0 0 -15px;
                vertical-align: middle;
            }

            .block a.product-name {
                vertical-align: middle;
            }

            .block a.product-picture + a.product-name {
                width: 70%;
            }

                .block a.product-picture + a.product-name:before {
                    display: none;
                }
        /*** TOPICS ***/


        .center-1 .topic-block-title {
            text-align: center;
        }

        .topic-page p {
            text-align: justify;
        }
        /*** REGISTRATION, LOGIN, ACCOUNT ***/


        .gender span {
            margin: 0 10px 0 0;
        }

            .gender span > * {
                margin: 0 5px 0 0;
            }

        .date-of-birth select + select {
            margin: 0 0 0 11px;
        }
        /*** SEARCH & SITEMAP ***/


        .advanced-search .price-range {
            margin-left: 114px;
        }
    }





    @media all and (min-width: 1367px) {
        /*** GLOBAL STYLES ***/


        .master-wrapper-content {
            width: 1200px;
        }

        .inputs label {
            width: 375px;
        }

        .center-2 .inputs label {
            width: 213px;
        }

        .inputs.accept-consent label {
            width: auto;
        }


        /*** HEADER ***/


        .header {
            width: 1200px;
        }


        /*** NAVIGATION ***/


        .header-menu {
            width: 1200px;
        }

            .header-menu > ul > li {
                padding: 0 20px;
            }

                .header-menu > ul > li > a,
                .header-menu > ul > li > span {
                    font-size: 18px;
                }
    }

    .swiper {
        width: 100%;
        height: 100%;
    }

    .swiper-slide {
        text-align: center;
        font-size: 18px;
        background: #fff;
        /* Center slide text vertically */
        display: -webkit-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        -webkit-justify-content: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        -webkit-align-items: center;
        align-items: center;
    }

    .swiper-pagination-bullet-active {
        padding: 5px;
        background-color: #4ab2f1;
    }

    

        .accordion-menu {
            display: block;
        }
    

/* Responsive */


    .mobile-header {
        display: flex;
    }

    body.menu-open {
        overflow: hidden;
    }
/* MegaMenu mobile: make the sidebar full-width inside mobile panels */
@media (max-width: 1000px) {
    .mobile-navs .megametro-spmenu .mmobile-scope .side-2 {
        width: 100%;
        max-width: 100%;
        float: none;
        display: block;
    }
}
@media (max-width: 1000px) {
    .mobile-navs .megametro-spmenu .mmobile-scope .block {
        max-width: none;
        margin: 0;
    }
}

/* Dropdown item styles */
.dropdown-item {
    padding: 10px;
    color: #333;
    text-decoration: none;
    display: block;
}

/* Dropdown styles */
.dropdown {
    display: flex;
    justify-content: center;
}

/* Dropdown toggle button styles */
.dropdown-toggle {
    padding: 15px;
    border: none;
    cursor: pointer;
}

/* Level 1 Dropdown menu styles */







/* Ensure level 2 dropdown is within the viewport */
/* Level 2 Dropdown menu styles */
.dropdown-menu-level-2 {
    display: none;
    position: absolute;
    padding: 25px;
    top: 0%;
    left: 0; /* Center the dropdown relative to the viewport */
    transform: translateX(20%);
    width: 65rem;
    height: auto; /* Set the width to 1000px */
    min-height: 100rem; /* Set the max height to 90% of the viewport */
    overflow-y: auto; /* Add scrollbar when content exceeds max height */
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1;
}
    /* Add scrollbar to dropdown menu */
    /* For WebKit (Chrome, Safari) */
    .dropdown-menu-level-2::-webkit-scrollbar {
        width: 8px;
    }

    .dropdown-menu-level-2::-webkit-scrollbar-thumb {
        background-color: #888;
        border-radius: 4px;
    }

/* For Firefox */
.dropdown-menu-level-2 {
    scrollbar-width: thin;
    scrollbar-color: #888 transparent;
}


/* For Firefox */
.dropdown-menu {
    scrollbar-width: thin;
}

.dropdown-menu {
    scrollbar-color: #888 transparent; /* thumb and track color */
}

/* Make columns for menu content */
.dropdown-menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

    /* Customize column width as needed */
    .dropdown-menu > * {
        flex-basis: 48%; /* Adjust as needed */
    }

/* Dropdown item styles */
.dropdown-item {
    padding: 10px;
    color: #333;
    text-decoration: none;
    display: block;
}

/* Dropdown styles */
.dropdown {
    display: flex;
    justify-content: center;
}

/* Dropdown toggle button styles */
.dropdown-toggle {
    padding: 15px;
    border: none;
    cursor: pointer;
}

/* Level 1 Dropdown menu styles */
.dropdown-menu {
    display: none;
    position: absolute;
    margin-top: -25px;
    top: -1000vh; /* Initially position off-screen */
    left: 50%; /* Center the dropdown relative to the viewport */
    transform: translateX(-50%);
    width: 65rem; /* 80wh */
    max-height: 50rem; /* Set the width to 1000px */
    height: auto;
    margin-bottom: 100px; /* Set the max height to 90% of the viewport */
    overflow-y: auto; /* Add scrollbar when content exceeds max height */
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1;
}



    /* Add more styling as needed */

    /* Add scrollbar to dropdown menu */
    .dropdown-menu::-webkit-scrollbar {
        width: 8px;
    }

    .dropdown-menu::-webkit-scrollbar-thumb {
        background-color: #888;
        border-radius: 4px;
    }

/* Make columns for menu content */
.dropdown-menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

    /* Customize column width as needed */
    .dropdown-menu > * {
        flex-basis: 48%; /* Adjust as needed */
    }
/* Add cursor:pointer to li elements */
.dropdown-level-2 {
    cursor: pointer;
    padding 8px;
}
/* Style link icon */
.link-icon {
    display: none;
    width: 18px;
    height: 18px;
    background-image: url('../../../../../../Plugins/Misc.MegaMenu/Content/images/link-3.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-right: 5px; /* Adjust as needed */
    cursor: pointer;
    padding-top: 5px;
    opacity: 0.55;
    transition: opacity 0.3s ease; /* Add transition for opacity */
}

    .link-icon:hover {
        opacity: 1;
    }

/* ///////////////////////////////////////////
      Handling the open state with the .open class */
.dropdown.clicked .dropdown-menu.open {
}
/* Handle click open */
/* Handle hover */
.dropdown:focus-within .dropdown-menu { /* Handle focus within for accessibility */
    display: block;
    top: 100%;
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu, /* Added for accessibility */
.dropdown.clicked .dropdown-menu { /* Add this class for clicked state */
    top: 100%; /* Position below the parent element */
    display: block; /* Show the dropdown menu */
}

/*//////////////////////////  Level 2 Dropdown menu styles */

/* left: 20%; /* Adjust as needed */
/* width: 80%; /* Adjust as needed
    transform: none; /* Reset transform */
/* Add any additional styles as needed */

/* Hover effect */
