html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}




.sign-in {
    display: none;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.top-bar {
    background: #f7f7fa;
    font-size: 15px;
    color: #222;
    border-bottom: 1px solid #eee;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 40px;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

    .contact-info i {
        color: #19c37d;
        margin-right: 4px;
    }

.contact-text {
    margin-right: 12px;
}

.sign-in {
    color: #222;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

    .sign-in:hover {
        color: #19c37d;
    }

.main-nav {
    background: #fff;
    border-bottom: 1px solid #eee;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 18px;
}
/* .logo {
  height: 54px;
  width: 54px;
  object-fit: contain;
  border-radius: 50%;
  background: #e6f9f0;
  border: 2px solid #19c37d;
} */
.brand img {
    height: 40px;
    width: 150px;
    font-size: 2rem;
    font-weight: 700;
    color: #19c37d;
    margin-left: 8px;
    letter-spacing: 0.5px;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 2rem;
    color: #222;
    margin-right: 10px;
    cursor: pointer;
}

.search-bar {
    flex: 1 1 500px;
    max-width: 600px;
    display: flex;
    align-items: center;
    margin: 0 32px;
    background: #fff;
    border-radius: 32px;
    box-shadow: 0 2px 12px 0 rgba(25,195,125,0.07);
    border: 1.5px solid #19c37d;
    height: 48px;
}

    .search-bar input {
        flex: 1;
        border: none;
        outline: none;
        padding: 0 20px;
        font-size: 1.1rem;
        background: transparent;
        border-radius: 32px 0 0 32px;
    }

    .search-bar button {
        background: none;
        border: none;
        color: #19c37d;
        font-size: 1.5rem;
        padding: 0 18px;
        cursor: pointer;
        border-radius: 0 32px 32px 0;
        transition: background 0.2s;
    }

        .search-bar button:hover {
            background: #e6f9f0;
        }

.nav-icons {
    display: flex;
    align-items: center;
    gap: 22px;
}

.icon-btn {
    color: #222;
    font-size: 1.5rem;
    background: #fff;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s;
    position: relative;
    text-decoration: none;
}

    .icon-btn:hover {
        background: #e6f9f0;
        color: #19c37d;
    }

.menu-bar {
    background: #fff;
    border-bottom: 1px solid #eee;
}

.menu-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
    height: 56px;
}

.menu-item {
    font-size: 1.1rem;
    color: #222;
    cursor: pointer;
    padding: 0 8px;
    position: relative;
    transition: color 0.2s;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
}

    .menu-item.dropdown i {
        font-size: 0.9em;
        margin-left: 4px;
    }

    .menu-item:hover {
        color: #19c37d;
    }

    .menu-item.offers {
        color: #ff9900;
        font-weight: 700;
    }

        .menu-item.offers i {
            margin-right: 4px;
        }

/* Responsive Styles */
@media (max-width: 991px) {
    .top-bar, .main-nav {
        padding: 0 10px !important;
    }

    .container {
        padding: 0 10px;
    }

    .top-bar-content {
        font-size: 14px;
        height: 36px;
    }

    .main-nav {
        height: auto;
    }

    .nav-content {
        margin-top: 10px;
        height: 64px;
        flex-wrap: wrap;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0;
    }

    .nav-left {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .brand {
        font-size: 1.4rem;
        margin-left: 8px;
    }

    .logo {
        height: 40px;
        width: 40px;
    }

    .hamburger {
        display: inline-block;
        font-size: 2.2rem;
        margin-right: 0;
        margin-left: 0;
        background: none;
        border: none;
        color: #232d3b;
        cursor: pointer;
    }

    .nav-icons {
        gap: 12px;
    }

    .icon-btn {
        width: 42px;
        height: 42px;
        font-size: 1.3rem;
        border: 1px solid #e0e0e0;
        background: #fff;
    }

    .search-bar {
        order: 3;
        width: 90%;
        margin: 12px 0 0 0;
        max-width: 90%;
        height: 44px;
    }

        .search-bar input {
            font-size: 1.1rem;
            padding: 0 18px;
        }

        .search-bar button {
            color: #19c37d;
            font-size: 1.6rem;
            padding: 0 18px;
        }

    .menu-bar, .menu-list {
        width: 100%;
        overflow-x: hidden;
    }

    .menu-list {
        padding: 0;
        margin: 0;
    }

    .menu-item {
        width: 100%;
        display: flex;
        align-items: center;
        gap: 8px;
        justify-content: flex-start;
        padding: 18px 24px 18px 24px;
        position: relative;
        font-size: 1.45rem;
        font-weight: 700;
        color: #232d3b;
        background: none;
        border: none;
        outline: none;
        cursor: pointer;
        transition: background 0.2s, color 0.2s;
    }

        .menu-item .submenu-toggle {
            margin: 0;
            font-size: 1.3rem;
            flex-shrink: 0;
            color: #232d3b;
            transition: transform 0.3s;
        }

        .menu-item.open .submenu-toggle {
            transform: rotate(180deg);
        }

    .submenu {
        display: none;
        position: static;
        width: 100%;
        background: #f7f7fa;
        border-radius: 0 0 8px 8px;
        margin: 0;
        padding: 0 0 0 18px;
        box-shadow: none;
        border-left: 2px solid #e0e0e0;
        border-top: 1px solid #ececec;
        z-index: 1;
    }

    .menu-item.open > .submenu {
        display: block;
    }

    .submenu li {
        font-size: 1.1rem;
        display: block;
        color: #232d3b;
        font-weight: 400;
        padding: 0px 0 0px 0px;
        list-style: none;
        cursor: pointer;
        border-bottom: 1px solid #ececec;
        background: transparent;
        white-space: normal;
    }

        .submenu li:last-child {
            border-bottom: none;
        }
}

@media (max-width: 768px) {
    .container {
        padding: 0 10px;
    }

    .sign-in {
        display: block;
    }

    .top-bar-content {
        font-size: 10px;
        height: 36px;
    }

    .top-bar a {
        font-size: 10px !important;
    }

    .main-nav {
        height: auto;
    }

    .nav-content {
        height: 64px;
        flex-wrap: wrap;
    }

    .brand {
        font-size: 1.4rem;
    }

    .logo {
        height: 40px;
        width: 40px;
    }

    .search-bar {
        order: 3;
        width: 80%;
        margin: 12px 0 0 0;
        max-width: 80%;
        height: 44px;
    }

    .nav-icons {
        gap: 12px;
    }
}

@media (max-width: 600px) {
    .top-bar {
        padding: 0 4px !important;
    }

    .top-bar-content {
        margin-top: 2px;
        margin-bottom: 2px;
        flex-direction: row;
        font-size: 11px;
        height: 28px;
        align-items: center;
    }

    .top-bar a {
        font-size: 13px !important;
        margin: 0 2px;
    }

    .contact-icon {
        font-size: 1.1rem;
        margin-right: 6px;
    }

        .contact-icon:last-child {
            margin-right: 0;
        }

    .sign-in {
        font-size: 13px;
        margin-left: 4px;
    }

    .main-nav {
        border-bottom: none;
        padding: 0 4px !important;
    }

    .nav-content {
        height: 38px;
        padding: 0;
        flex-direction: row;
        align-items: center;
        gap: 0;
    }

    .nav-left {
        gap: 4px;
        align-items: center;
    }

    .hamburger {
        display: inline-block;
        font-size: 1.3rem;
        margin-right: 2px;
        margin-left: 0;
        background: none;
        border: none;
        color: #232d3b;
        cursor: pointer;
    }

        .hamburger i {
            font-size: 1.3rem;
        }

    .brand {
        font-size: 0.95rem;
        margin-left: 2px;
        display: flex;
        align-items: center;
        gap: 2px;
    }

        .brand img {
            margin-top: 0 !important;
            height: 22px;
            width: 60px;
            display: inline-block;
            vertical-align: middle;
        }

    .nav-icons {
        gap: 4px;
        align-items: center;
    }

    .icon-btn {
        width: 24px;
        height: 24px;
        font-size: 0.95rem;
        border: 1px solid #e0e0e0;
        background: #fff;
        padding: 0;
        margin: 0 1px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .search-bar {
        order: 3;
        width: 90%;
        margin: 8px 0 0 0;
        max-width: 100%;
        height: 34px;
        border: 2px solid #19c37d;
        box-shadow: none;
        border-radius: 22px;
        display: flex;
        align-items: center;
        background: #fff;
    }

        .search-bar input {
            font-size: 0.95rem;
            width: 0%;
            padding: 0 10px;
            height: 30px;
            border-radius: 22px 0 0 22px;
        }

        .search-bar button {
            color: #19c37d;
            font-size: 1.2rem;
            padding: 0 12px;
            border-radius: 0 22px 22px 0;
            height: 30px;
            display: flex;
            align-items: center;
            background: none;
            border: none;
        }

    .menu-bar {
        position: fixed;
        top: 0;
        left: 0;
        height: 100vh;
        width: 85vw;
        max-width: 370px;
        background: #fff;
        box-shadow: 2px 0 24px 0 rgba(0,0,0,0.10);
        z-index: 120;
        border-radius: 0 0 20px 0;
        transform: translateX(-100%);
        display: block;
        padding-top: 0;
        overflow-y: auto;
        transition: transform 0.35s cubic-bezier(.4,0,.2,1);
    }

        .menu-bar.active {
            transform: translateX(0);
        }

    .sign-in {
        font-size: 10px;
        display: block;
        top: 10px;
        background: none;
        border: none;
        font-size: 2.1rem;
        color: #222;
        z-index: 130;
    }

        .sign-in a {
            font-size: 20px;
            color: #222;
            text-decoration: none;
        }

    .close-menu {
        display: block;
        position: absolute;
        top: 10px;
        right: 24px;
        background: none;
        border: none;
        font-size: 1.8rem;
        color: #222;
        z-index: 130;
        cursor: pointer;
    }

    .menu-list {
        margin-top: 48px;
        width: 100%;
        padding-left: 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        height: auto;
    }

    .menu-item {
        font-size: 1.55rem;
        color: #232d3b;
        font-family: 'Segoe UI', Arial, sans-serif;
        font-weight: 600;
        background: none;
        border: none;
        outline: none;
        display: flex;
        align-items: center;
        gap: 16px;
        padding: 18px 0 18px 36px;
        margin: 0;
        border-bottom: none;
        width: 100%;
        transition: background 0.2s, color 0.2s;
    }

        .menu-item.dropdown i.fa-chevron-down {
            margin-left: auto;
            margin-right: 100px;
            font-size: 1.2rem;
            color: #232d3b;
        }

        .menu-item.offers {
            color: #ff9900;
            font-weight: 700;
            font-size: 1.45rem;
            margin-top: 32px;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 10px;
            padding-left: 36px;
        }

            .menu-item.offers i {
                font-size: 1.5rem;
                margin-right: 4px;
            }

    .contact-text {
        display: none;
    }

    .contact-icon:active,
    .contact-icon:focus,
    .contact-icon:hover {
        color: #0e8c5a;
    }
}

@media (min-width: 601px) {
    .menu-overlay,
    .close-menu {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 4px;
    }

    .search-bar input {
        font-size: 0.95rem;
        padding: 0 10px;
    }

    .menu-item {
        font-size: 0.98rem;
        padding: 10px 12px;
    }
}

/* --- Mobile left-side drawer menu and overlay --- */
.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.18);
    z-index: 110;
    transition: opacity 0.3s;
}

    .menu-overlay.active {
        display: block;
        opacity: 1;
    }

@media (max-width: 991px) {
    .menu-bar {
        display: block;
    }
}

@media (min-width: 992px) {
    .menu-bar {
        display: block;
        background: #fff;
        border-bottom: 1px solid #eee;
        position: relative;
        box-shadow: none;
        width: 100%;
        padding: 0;
    }

    .menu-list {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: flex-start;
        gap: 32px;
        list-style: none;
        margin: 0;
        padding: 0;
        height: 56px;
        position: relative;
    }

    .menu-item {
        position: relative;
        display: flex;
        align-items: center;
        font-size: 1.15rem;
        color: #232d3b;
        font-weight: 600;
        background: none;
        border: none;
        outline: none;
        padding: 0 16px;
        height: 56px;
        cursor: pointer;
        transition: color 0.2s;
        width: auto;
        gap: 8px;
    }

        .menu-item.offers {
            color: #ff9900;
            font-weight: 700;
            font-size: 1.15rem;
            margin-top: 0;
            margin-bottom: 0;
            padding-left: 0;
        }

        .menu-item .submenu-toggle {
            display: none;
        }

    .submenu {
        display: none;
        position: absolute;
        left: 0;
        top: 100%;
        min-width: 210px;
        background: #fff;
        box-shadow: 0 8px 24px 0 rgba(0,0,0,0.10);
        border-radius: 0 0 8px 8px;
        z-index: 1000;
        padding: 10px 0;
        border: 1px solid #eee;
    }

    .menu-item:hover > .submenu {
        display: block;
    }

    .submenu li {
        font-size: 1rem;
        color: #232d3b;
        font-weight: 400;
        padding: 8px 24px;
        list-style: none;
        cursor: pointer;
        background: #fff;
        border: none;
        transition: background 0.2s;
        white-space: nowrap;
    }

        .submenu li:hover {
            background: #f7f7fa;
            color: #19c37d;
        }
} 