@media (max-width: 1440px) {
    #header .custom-container {
        max-width: unset !important;
        padding-left: 30px !important;
        padding-right: 30px !important;
    }
    .navbar-nav .nav-link {
        padding: 8px 10px !important;
        font-size: 13px !important;
    }
    .header-logo img {
        max-height: 70px;
    }
}

@media (max-width: 1199px) {
    .header-inner {
        gap: 10px;
    }
    .footer-top {
        padding: 60px 0;
    }
    .footer-widget-title {
        font-size: 18px;
    }
    .footer-menu-list li a {
        font-size: 16px;
    }
    .footer-menu-list li {
        margin-bottom: 12px;
    }
}

@media (max-width: 991px) {
    .header {
        height: auto !important;
        padding: 10px 0;
    }
    .footer-bottom {
        padding-bottom: 30px;
    }
    .footer-bottom .row > div {
        margin-bottom: 15px;
    }
    .footer-bottom .row > div:last-child {
        margin-bottom: 0;
    }
    .header .navbar-brand.logo img {
        max-height: 60px;
    }
}

/* Mobile Sidebar Styles */
.mobile-sidebar {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100vh;
    background-color: #333333; /* Dark background as in screenshot */
    z-index: 1001;
    transition: left 0.3s ease;
    overflow-y: auto;
    padding: 0 20px;
}

.mobile-sidebar.show {
    left: 0;
}

.mobile-sidebar-header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 10px;
}

.sidebar-close {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 24px;
}

.mobile-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu-item {
    margin-bottom: 24px;
}

.menu-link-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-menu-link {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 400;
    text-transform: uppercase;
    font-family: var(--body-font);
}

.mobile-menu-link:hover {
    color: var(--color-gold);
}

.submenu-toggler {
    color: #fff;
    cursor: pointer;
    font-size: 14px;
    transition: transform 0.3s ease;
}

.submenu-toggler.active {
    transform: rotate(180px); /* I'll handle rotation in JS or better CSS */
}

.mobile-submenu {
    list-style: none;
    padding-left: 20px;
    margin-top: 10px;
    display: none;
}

.mobile-submenu li {
    margin-bottom: 10px;
}

.mobile-submenu li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 15px;
    text-transform: uppercase;
}

.mobile-submenu li a:hover {
    color: #fff;
}

@media (max-width: 767px) {
    .footer-widget {
        text-align: center;
        margin-bottom: 30px;
    }
    .footer-logo {
        margin-bottom: 15px !important;
    }
    .social-icons {
        justify-content: center;
        display: flex;
        margin-bottom: 0;
    }
    .social-icons a {
        margin: 0 10px;
    }
    .payment-methods {
        justify-content: center;
        display: flex;
        gap: 10px;
    }
    .payment-methods img {
        margin: 0 !important;
    }
}
