/* Import fonts from main site */
@import url('https://fonts.googleapis.com/css2?family=Bagel+Fat+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dekko&display=swap');

/* Root variables matching main site */
:root {
    --dark: #141e29;
    --secondary: #394e6e;
    --accent: #f2b705;
    --bg-color: #e4efff;
    --text-light: #ffffff;
    --text-dark: #141e29;
    --gradient: linear-gradient(135deg, var(--dark) 0%, var(--secondary) 100%);
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 15px 40px rgba(57, 78, 110, 0.2);
}

/* Resetting default margin and padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 140px;
}

html, body {
    width: 100%;
    height: 100%;
    overflow-x: hidden;
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--secondary);
    border-radius: 4px;
}

/* Body styling */
body {
    font-family: "Dekko", cursive;
    background: var(--bg-color);
    color: var(--text-dark);
    overflow-x: hidden;
}

/* ===== OFFER BAR ===== */
.offer-bar {
    background: var(--dark);
    overflow: hidden;
    white-space: nowrap;
    height: 40px;
    display: flex;
    align-items: center;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1001;
    transition: none;
}

.offer-marquee {
    display: flex;
    animation: marquee 30s linear infinite;
}

.offer-group {
    display: flex;
    gap: 60px;
    padding-right: 60px;
}

.offer-group span {
    color: var(--text-light);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    font-family: "Dekko", cursive;
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-100%); }
}

.offer-bar:hover .offer-marquee { animation-play-state: paused; }

/* ===== DESKTOP NAVBAR ===== */
.desktop-navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
  padding: 4px 24px;
  border-radius: 40px;
  margin: 16px auto;
  max-width: 1200px;
  height: 80px;              /* ✅ FIXED */
  width: 90%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  position: fixed;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  overflow: hidden;          /* ✅ IMPORTANT */
}

.desktop-navbar.scrolled {
    top: 10px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

.nav-desktop {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.nav-center {
    display: flex;
    align-items: center;
    gap: 50px;
    flex: 1;
    justify-content: center;
}

.nav-center a {
    text-decoration: none;
    color: var(--dark);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: color 0.3s;
    font-family: "Dekko", cursive;
}


.logo-desktop { display: block; }

.logo-desktop a { text-decoration: none; }

.logo-img {
  height: 200px;
  width: auto;
  object-fit: contain;
  position: relative;
  top: 20%;
}

.back-home-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--dark);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    font-family: "Dekko", cursive;
    transition: all 0.3s;
}

.back-home-btn:hover {
    background: var(--secondary);
    transform: translateY(-2px);
}

/* ===== MOBILE HEADER ===== */
.mobile-header {
    display: none;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #ffffff;
    border-radius: 0 0 30px 30px;
    box-shadow: var(--shadow);
    transition: none;
}

.mobile-logo a { text-decoration: none; }

.mobile-logo {
    display: flex;
    align-items: center;
}

.mobile-logo .logo-img {
    height: 50px;
    transform: scale(1.2);
    transform-origin: center;
}

.bigger-logo .logo-img { height: 70px; }

.mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
    width: 50px;
    height: 50px;
    padding: 0;
    transition: all 0.3s;
}

.menu-icon {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 30px;
}

.menu-icon span {
    width: 100%;
    height: 3px;
    background: var(--dark);
    border-radius: 3px;
    transition: all 0.3s;
}

.mobile-menu-btn.active .menu-icon span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active .menu-icon span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .menu-icon span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.products-icon-btn {
    display: none;
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
    display: none;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 100px;
    right: 20px;
    width: 200px;
    border-radius: 20px;
    padding: 20px;
    box-shadow: var(--shadow-hover);
    z-index: 1000;
    border: 1px solid rgba(57, 78, 110, 0.1);
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.mobile-menu.active { display: flex; }

.mobile-menu a {
    text-decoration: none;
    color: var(--dark);
    font-size: 16px;
    font-weight: 600;
    padding: 15px 0;
    border-bottom: 1px solid rgba(57, 78, 110, 0.1);
    font-family: "Dekko", cursive;
    text-align: left;
    transition: all 0.3s;
    position: relative;
}

.mobile-menu a:hover { color: var(--secondary); }

.mobile-menu a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: width 0.3s;
}

.mobile-menu a:hover::before { width: 100%; }

.mobile-menu a:last-child { border-bottom: none; }

.mobile-home-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--dark) !important;
}

/* ===== MAIN CONTENT WRAPPER ===== */
.main-content-wrapper {
    width: 100%;
    min-height: 100vh;
    padding-top: 140px;
}

/* ===== MENU HERO SECTION ===== */
.menu-hero {
    position: relative;
    padding: 80px 20px;
    text-align: center;
    overflow: hidden;
    margin-bottom: 40px;
}

.menu-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.heritage-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--secondary);
    color: white;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 25px;
    font-family: "Dekko", cursive;
    letter-spacing: 2px;
}

.menu-hero-title {
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 25px;
    font-family: "Bagel Fat One", system-ui;
    color: var(--dark);
}

.menu-hero-title span {
    color: var(--secondary);
    position: relative;
    display: inline-block;
}

.menu-hero-text {
    font-size: 22px;
    color: #555;
    font-family: "Dekko", cursive;
    line-height: 1.6;
    margin-bottom: 35px;
}

/* ===== CATEGORY NAVIGATION ===== */
.category-nav-container {
    position: sticky;
    top: 135px;
    z-index: 100;
    background: var(--bg-color);
    padding: 15px 0;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(57, 78, 110, 0.1);
}

.category-nav-wrapper {
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    padding: 0 20px;
}

.category-nav-arrow {
    background: var(--secondary);
    color: white;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    flex-shrink: 0;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.category-nav-arrow:hover {
    background: var(--dark);
    transform: scale(1.05);
}

.category-nav-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: none;
}

.category-nav {
    display: flex;
    gap: 75px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 5px 15px;
    flex: 1;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.category-nav::-webkit-scrollbar { display: none; }

.category-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 8px 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    min-width: 120px;
    font-family: "Dekko", cursive;
    font-weight: 600;
    color: var(--dark);
    font-size: 14px;
}

.category-nav-item.active {
    color: var(--secondary);
    border-bottom-color: var(--secondary);
}

.category-nav-item .category-icon {
    width: 52px;
    height: 52px;
    object-fit: contain;
    transition: transform 0.3s;
}

.category-nav-item.active .category-icon { transform: scale(1.1); }

.category-nav-item:hover:not(.active) { color: var(--secondary); }

.category-nav-item:hover:not(.active) .category-icon { transform: scale(1.05); }

/* ===== PRODUCTS CONTAINER ===== */
.products-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.category-section {
    display: none;
    margin-bottom: 60px;
}

.category-section.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.category-header {
    text-align: center;
    margin-bottom: 40px;
}

.category-header h2 {
    font-size: 48px;
    color: var(--dark);
    margin-bottom: 10px;
    font-family: "Bagel Fat One", system-ui;
}

.category-header p {
    font-size: 20px;
    color: #666;
    font-family: "Dekko", cursive;
}

/* ===== PRODUCTS GRID ===== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

/* Product Card */
.product-card {
    background: white;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.product-image {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: #f8f8f8;
    cursor: pointer;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.product-card:hover .product-image img { transform: scale(1.1); }

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #b69b66;
    color: white;
    padding: 6px 15px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 600;
    font-family: "Dekko", cursive;
    z-index: 2;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-info {
    padding: 25px;
}

.product-info h3 {
    font-size: 22px;
    color: var(--secondary);
    margin-bottom: 8px;
    font-family: "Bagel Fat One", system-ui;
}

.product-info p {
    font-size: 15px;
    color: var(--dark);
    margin-bottom: 20px;
    line-height: 1.5;
    font-family: "Dekko", cursive;
}

.order-btn {
    background: var(--dark);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 40px;
    font-size: 16px;
    font-weight: 600;
    font-family: "Dekko", cursive;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    justify-content: center;
}

.order-btn:hover {
    background: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(57, 78, 110, 0.3);
}

.order-btn i {
    font-size: 14px;
    transition: transform 0.3s;
}

.order-btn:hover i { transform: translateX(5px); }

/* ===== MENU CTA SECTION ===== */
.menu-cta {
    padding: 80px 20px;
    text-align: center;
    border-radius: 60px 60px 0 0;
    margin-top: 60px;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 48px;
    margin-bottom: 15px;
    font-family: "Bagel Fat One", system-ui;
    color: var(--dark);
}

.cta-content h2 span { color: var(--secondary); }

.cta-content p {
    font-size: 20px;
    margin-bottom: 30px;
    font-family: "Dekko", cursive;
    color: #666;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.cta-btn {
    padding: 16px 32px;
    border-radius: 40px;
    font-size: 16px;
    font-weight: 600;
    font-family: "Dekko", cursive;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
}

.cta-btn.primary {
    background: var(--secondary);
    color: white;
}

.cta-btn.primary:hover {
    background: var(--dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.cta-btn.secondary {
    background: transparent;
    color: var(--secondary);
    border: 2px solid var(--secondary);
}

.cta-btn.secondary:hover {
    background: var(--secondary);
    color: white;
    transform: translateY(-3px);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark);
    color: #fff;
    padding: 60px 20px 20px;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
}

.footer-logo {
    height: 220px;
    width: auto;
    margin-top: -75px;
    display: block;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 40px;
}

.footer-left h2 {
    font-size: 36px;
    line-height: 1.3;
    font-weight: 700;
    font-family: "Bagel Fat One", system-ui;
    color: var(--secondary);
    margin-top: -50px;
}

.footer-left h2 span { color: var(--bg-color); }

.footer-left p {
    font-family: "Dekko", cursive;
    color: var(--bg-color);
}

.footer-links h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--secondary);
    font-weight: 600;
    font-family: "Dekko", cursive;
}

.footer-links a {
    display: block;
    color: var(--bg-color);
    text-decoration: none;
    margin: 10px 0;
    transition: color 0.3s;
    font-size: 15px;
    font-family: "Dekko", cursive;
}

.footer-links a:hover { color: #fff; }

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 14px;
    color: var(--secondary);
    margin-top: 40px;
    font-family: "Dekko", cursive;
}

.abdul-link {
    color: var(--bg-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.abdul-link:hover {
    color: var(--secondary);
    text-decoration: underline;
}

/* ===== CONTACT MODAL ===== */
.contact-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: white;
    padding: 40px;
    border-radius: 30px;
    max-width: 400px;
    width: 90%;
    position: relative;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: #999;
    transition: color 0.3s;
}

.close-modal:hover { color: var(--dark); }

.modal-content h3 {
    font-size: 28px;
    color: var(--dark);
    margin-bottom: 15px;
    font-family: "Bagel Fat One", system-ui;
}

.modal-content p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
    font-family: "Dekko", cursive;
}

.contact-options {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.contact-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    border-radius: 20px;
    text-decoration: none;
    color: white;
    font-family: "Dekko", cursive;
    font-weight: 600;
    transition: all 0.3s;
    flex: 1;
}

.contact-option:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.call-option { background: #28a745; }
.whatsapp-option { background: #25D366; }

/* ===== TOAST NOTIFICATION ===== */
.toast-notification {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: white;
    border-radius: 12px;
    padding: 16px 24px;
    box-shadow: var(--shadow-hover);
    transform: translateX(400px);
    transition: transform 0.3s ease;
    z-index: 9999;
}

.toast-notification.show { transform: translateX(0); }

.toast-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.toast-icon { font-size: 24px; }
.toast-icon.success { color: #28a745; }
.toast-icon.error { color: #dc3545; }

.toast-message {
    font-size: 16px;
    color: var(--dark);
    font-family: "Dekko", cursive;
}

/* ===== RESPONSIVE DESIGN ===== */
@media only screen and (max-width: 1366px) {
    .desktop-navbar { width: 95%; }
    .menu-hero-title { font-size: 56px; }
    .category-header h2 { font-size: 42px; }
}

@media only screen and (max-width: 1024px) {
    .offer-bar { display: none; }
    .desktop-navbar { display: none; }
    .mobile-header { display: flex; }
    .main-content-wrapper { padding-top: 80px; }
    .menu-hero-title { font-size: 48px; }
    .category-nav-container { top: 100px; }
    .category-nav-item { min-width: 60px; padding: 6px 3px; font-size: 12px; }
    .category-nav-item .category-icon { width: 28px; height: 28px; }
    .products-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 20px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .mobile-logo .logo-img { height: 50px; }
    .bigger-logo .logo-img { height: 70px; }
}

@media only screen and (max-width: 767px) {
    .menu-hero-title { font-size: 36px; }
    .menu-hero-text { font-size: 18px; }
    .category-header h2 { font-size: 32px; }
    .category-header p { font-size: 16px; }
    .products-grid { grid-template-columns: 1fr; }
    .product-card { max-width: 100%; }
    .product-image { height: 200px; }
    .cta-buttons { flex-direction: column; }
    .footer-logo { height: 150px; margin-left: 90px; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .mobile-logo .logo-img { height: 50px; }
    .bigger-logo .logo-img { height: 70px; }
    .contact-options { flex-direction: column; }
}

@media only screen and (min-width: 414px) and (max-width: 430px) {
    .mobile-logo .logo-img { height: 60px; }
    .bigger-logo .logo-img { height: 80px; }
}

@media only screen and (max-width: 480px) {
    .menu-hero-title { font-size: 32px; }
    .category-nav-item { min-width: 50px; padding: 5px 2px; font-size: 11px; }
    .category-nav-item .category-icon { width: 24px; height: 24px; }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .mobile-header {
        height: 90px;
        min-height: 90px;
        padding: 0 15px;
        box-sizing: border-box;
        overflow: visible;
    }

    .products-icon-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        border: 1.8px solid #394e6e;
        border-radius: 50%;
        color: #ffffff;
        text-decoration: none;
        background: #394e6e;
        cursor: pointer;
        transition: all 0.3s;
        flex-shrink: 0;
        z-index: 2;
    }

    .products-icon-btn i {
        font-size: 16px;
    }

    .mobile-logo {
        flex-shrink: 0;
        margin-left: 0;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1;
    }

    .mobile-logo .logo-img {
        height: 122px;
        width: auto;
        max-height: none;
        flex-shrink: 0;
        object-fit: contain;
    }

    .bigger-logo .logo-img {
        height: 138px;
        width: auto;
        transform: none;
        max-height: none;
        flex-shrink: 0;
        object-fit: contain;
    }

    .mobile-menu-btn,
    .advanced-menu-btn {
        width: 42px;
        height: 42px;
        border: 1.8px solid #394e6e;
        border-radius: 50%;
        background: #394e6e;
        color: #ffffff;
        padding: 0;
        appearance: none;
        -webkit-appearance: none;
        cursor: pointer;
        transition: all 0.3s;
        flex-shrink: 0;
        z-index: 2;
    }

    .menu-icon,
    .advanced-menu-icon {
        width: 24px;
        gap: 5px;
    }

    .menu-icon span,
    .advanced-menu-icon span {
        height: 2.5px;
        background: #ffffff;
    }

    .mobile-menu,
    .advanced-mobile-menu {
        top: 80px;
        right: 15px;
        width: 180px;
    }
}

@media (max-width: 768px) {
    .mobile-header {
        height: 90px;
        min-height: 90px;
        padding: 0 15px;
        box-sizing: border-box;
        overflow: visible;
    }

    .products-icon-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        border: 1.8px solid #394e6e;
        border-radius: 50%;
        color: #ffffff;
        text-decoration: none;
        background: #394e6e;
        cursor: pointer;
        transition: all 0.3s;
        flex-shrink: 0;
        z-index: 2;
    }

    .products-icon-btn i {
        font-size: 16px;
    }

    .mobile-logo {
        flex-shrink: 0;
        margin-left: 0;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1;
    }

    .mobile-logo .logo-img {
        height: 122px;
        width: auto;
        max-height: none;
        flex-shrink: 0;
        object-fit: contain;
    }

    .bigger-logo .logo-img {
        height: 138px;
        width: auto;
        transform: none;
        max-height: none;
        flex-shrink: 0;
        object-fit: contain;
    }

    .mobile-menu-btn,
    .advanced-menu-btn {
        width: 42px;
        height: 42px;
        border: 1.8px solid #394e6e;
        border-radius: 50%;
        background: #394e6e;
        color: #ffffff;
        padding: 0;
        appearance: none;
        -webkit-appearance: none;
        cursor: pointer;
        transition: all 0.3s;
        flex-shrink: 0;
        z-index: 2;
    }

    .menu-icon,
    .advanced-menu-icon {
        width: 24px;
        gap: 5px;
    }

    .menu-icon span,
    .advanced-menu-icon span {
        height: 2.5px;
        background: #ffffff;
    }

    .mobile-menu,
    .advanced-mobile-menu {
        top: 80px;
        right: 15px;
        width: 180px;
    }
}
