/* Breakpoints */
@media (max-width: 1610px) {
    .container-xxl {
        max-width: 100%;
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media (max-width: 1400px) {
    .container-xxl {
        max-width: 1320px;
    }
}

@media (max-width: 1200px) {
    .container-xxl {
        max-width: 1140px;
    }
    .search-bar {
        max-width: 600px;
    }
    .nav-links__inner > .d-flex {
        gap: 15px !important;
    }
}

@media (max-width: 992px) {
    .container-xxl {
        max-width: 960px;
    }
    .header__inner {
        height: auto;
        padding: 15px 0;
        flex-wrap: wrap;
        gap: 15px;
    }
    .search-bar {
        order: 3;
        flex-basis: 100%;
        max-width: 100%;
    }
    .nav-links {
        display: none;
    }
    .topbar {
        display: none;
    }
    .openMenu {
        display: flex !important;
        align-items: center;
        justify-content: center;
        padding: 0;
        border: none;
        background: none;
    }
}

@media (max-width: 768px) {
    .container-xxl {
        max-width: 720px;
    }
    .logo-main {
        height: 40px;
    }
}

@media (max-width: 576px) {
    .container-xxl {
        max-width: 100%;
    }
    .header__inner {
        gap: 10px;
    }
    .cart__badge {
        width: 16px;
        height: 16px;
        font-size: 8px;
    }
}

/* Mobile Menu Sidebar Styles */
.header-mobile {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    z-index: 2000;
    visibility: hidden;
    transition: all 0.3s ease;
}

body.activeMenu .header-mobile {
    left: 0;
    visibility: visible;
}

.header-mobile__inner {
    position: absolute;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100%;
    background: #fff;
    z-index: 2;
    display: flex;
    flex-direction: column;
    transition: left 0.3s ease;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
}

body.activeMenu .header-mobile__inner {
    left: 0;
}

.header-mobile__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.header-mobile__header {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #eee;
}

.header-mobile__header img {
    height: 40px;
}

.header-mobile__title {
    font-size: 14px;
    font-weight: 700;
    color: var(--brand-green);
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.header-mobile__content {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.header-mobile__nav {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.header-mobile__link {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-dark);
    text-decoration: none;
    padding: 10px 0;
    border-bottom: 1px solid #f5f5f5;
}

.header-mobile__link:hover {
    color: var(--brand-green);
}

.header-mobile__contact {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.header-mobile__contact a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
}

/* Icons Utility */
.icon-30 {
    width: 30px;
    height: 30px;
    object-fit: contain;
}
.icon-24 {
    width: 24px;
    height: 24px;
    object-fit: contain;
}
.icon-20 {
    width: 20px;
    height: 20px;
    object-fit: contain;
}
