ul{
    margin-bottom: 0px !important;
}

/* Top promotional banner */
.promo-banner {
    background: #7e4f00;
    color: white;
    padding: 10px 0;
    overflow: hidden;
    position: relative;
}

.promo-content {
    display: flex;
    white-space: nowrap;
    animation: scroll 25s linear infinite;
}

/*.promo-item {*/
/*    display: inline-block;*/
/*    font-size: 15px;*/
/*    font-weight: 500;*/
/*    padding-right: 0;*/
/*}*/

.promo-code {
    background: white;
    color: #333;
    padding: 4px 14px;
    border-radius: 4px;
    font-weight: 700;
    margin: 0 8px;
    display: inline-block;
}

.promo-item {
    display: inline-flex;
    align-items: center;     /* ✅ vertical center */
    font-weight: 500;
    padding-right: 0;
    white-space: nowrap;
    font-size: 15px;
    line-height: 1.4;
}


.promo-code {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    background: #fff;
    color: #000;
    font-weight: 600;
    border-radius: 4px;
    line-height: 1;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Main navbar */
.navbarx {
    background: #f9f6ee;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
    position: relative;
}

.navbar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.nav-philips {
    background-color: #ffc107 !important;
}

.navbar-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.navbar-left {
    display: flex;
    align-items: center;
    gap: 0;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-text {
    font-size: 36px;
    font-weight: 1000;
    color: #333;
    font-family: 'Times New Roman', Times, serif;
    letter-spacing: 1px;
}

/* Right icons */
.navbar-icons {
    display: flex;
    align-items: center;
    gap: 25px;
}

.icon-btn {
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    transition: transform 0.2s;
}

.icon-btn:hover {
    transform: scale(1.1);
}

.search-icon {
    width: 26px;
    height: 26px;
}

.user-icon {
    width: 28px;
    height: 28px;
    background: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-icon svg {
    width: 16px;
    height: 16px;
    fill: white;
}

.heart-icon {
    width: 28px;
    height: 28px;
}

.cart-icon {
    width: 28px;
    height: 28px;
}

.icon-badge {
    display: none;
}

/* Bottom section with contact and nav */
.navbar-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-top: 1px solid #f0f0f0;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 14px;
}

.phone-icon {
    width: 20px;
    height: 20px;
    fill: #D946A6;
}

.contact-info span {
    color: #666;
}

.phone-number {
    color: #333;
    font-weight: 600;
    text-decoration: none;
}

.live-chat {
    color: #333;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
}

/* Navigation menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 45px;
    list-style: none;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-size: 15px;
    font-weight: 600;
    transition: color 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.nav-menu a:hover {
    color: #fff;
}

.nav-item-badge {
    position: relative;
}

.mobile-header {
    display: none;
}

/* Mobile Menu Sidebar */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100%;
    background: #fff;
    z-index: 999;
    transition: left 0.3s ease;
    overflow-y: auto;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #f0f0f0;
    background: #f9f6ee;
}

.mobile-menu-title {
    font-size: 20px;
    font-weight: 700;
    color: #333;
}

.close-menu-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-icon {
    width: 24px;
    height: 24px;
    stroke: #333;
    stroke-width: 2;
}

.mobile-menu-content {
    padding: 0;
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-list li {
    border-bottom: 1px solid #f0f0f0;
}

.mobile-nav-list a {
    display: block;
    padding: 18px 20px;
    color: #333;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    transition: background 0.2s, color 0.2s;
}

.mobile-nav-list a:hover {
    background: #ffc107;
    color: #333;
}

.mobile-contact-section {
    padding: 20px;
    border-top: 2px solid #f0f0f0;
    margin-top: 20px;
}

.mobile-contact-title {
    font-size: 14px;
    font-weight: 700;
    color: #666;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mobile-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}
.mobile-contact-item .icon {
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-contact-item svg {
    width: 18px;
    height: 18px;
    fill: #D946A6;
    display: block;
}

.mobile-contact-item a {
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

.mobile-contact-item a:hover {
    color: #7e4f00;
}

/* Responsive styles for screens under 1024px */
@media (max-width: 1024px) {
    .navbar-container {
        padding: 0 15px;
    }

    .navbar-top {
        padding: 15px 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;
    }

    .navbar-left {
        position: absolute;
        left: 36%;
        transform: translateX(-50%);
        z-index: 1;
    }

    .navbar-bottom {
        display: none;
    }

    .logo-text {
        font-size: 20px;
        font-weight: 1000;
    }

    .navbar-icons {
        gap: 18px;
        position: static;
        z-index: 2;
    }

    .search-icon,
    .heart-icon {
        display: none;
    }

    .icon-btn {
        padding: 8px;
    }

    .user-icon {
        width: 28px;
        height: 28px;
    }

    .cart-icon {
        width: 26px;
        height: 26px;
    }

    /* Mobile menu */
    .mobile-header {
        display: flex;
        align-items: center;
        gap: 18px;
        z-index: 2;
    }

    .hamburger-btn {
        background: none;
        border: none;
        cursor: pointer;
        padding: 8px;
        display: flex;
        flex-direction: column;
        gap: 4.5px;
    }

    .hamburger-line {
        width: 24px;
        height: 2.5px;
        background: #333;
        border-radius: 2px;
        transition: transform 0.3s, opacity 0.3s;
    }

    .mobile-search-btn {
        background: none;
        border: none;
        cursor: pointer;
        padding: 8px;
    }

    .mobile-search-icon {
        width: 26px;
        height: 26px;
    }

    .icon-badge {
        display: none !important;
    }

    .hearticon {
        display: none;
    }
}

/* Responsive styles for screens under 500px */
@media (max-width: 500px) {
    .navbar-container {
        padding: 0 12px;
    }

    .navbar-top {
        padding: 10px 0;
    }

    .logo-text {
        font-size: 18px;
    }

    .navbar-icons {
        gap: 15px;
    }

    .icon-btn {
        padding: 4px;
    }

    .user-icon {
        width: 26px;
        height: 26px;
    }

    .user-icon svg {
        width: 15px;
        height: 15px;
    }

    .cart-icon {
        width: 24px;
        height: 24px;
    }

    .mobile-header {
        gap: 15px;
    }

    .hamburger-btn {
        padding: 4px;
        gap: 4px;
    }

    .hamburger-line {
        width: 22px;
        height: 2.5px;
    }

    .mobile-search-btn {
        padding: 4px;
    }

    .mobile-search-icon {
        width: 24px;
        height: 24px;
    }

    .mobile-menu {
        width: 260px;
    }

    .mobile-menu-header {
        padding: 15px;
    }

    .mobile-menu-title {
        font-size: 18px;
    }

    .mobile-nav-list a {
        padding: 15px 15px;
        font-size: 14px;
    }

    .mobile-contact-section {
        padding: 15px;
    }
}

@media (min-width: 1025px) {
    .mobile-header {
        display: none;
    }
}

@media (max-width: 400px) {
    .logo-text {
        font-size: 14px;
    }

    .mobile-menu {
        width: 240px;
    }
}

@media (max-width: 575.98px) {
  .row.g-5 { --bs-gutter-x: 1rem; --bs-gutter-y: 1rem; }
}
