.mobile-menu-container {
    width: 100%;
    position: fixed;
    height: 100%;
    top: 0;
    left: -100%;
    background-color: #fff;
    opacity: 0;
    visibility: hidden;
    transition: all .2s ease-in;
    z-index: 99;
}

.mobile-menu-container {
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    box-shadow: none;
    border-radius: 0;
    overflow-y: auto;
    max-height: 100vh;
    padding-bottom: 100px;
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    max-width: 100%;
    height: 100vh;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    -webkit-overflow-scrolling: touch;
}



.mmc-header {
    margin-bottom: 20px;
    border-bottom: 1px solid #e2e2e2;
}

.mmc-header {
    position: sticky;
    top: 0;
    z-index: 10;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    box-shadow: 0 2px 10px rgba(99, 102, 241, 0.2);
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 0;
}

.mmc-header img {
  height: 40px;
  filter: brightness(0) invert(1);
  transition: var(--transition-medium);
}

.mmc-close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  font-size: 18px;
  border: none;
  cursor: pointer;
  transition: all var(--transition-medium);
  outline: none;
}

.mmc-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}

.mmc-close:focus {
  outline: 2px solid rgba(255, 255, 255, 0.5);
  outline-offset: 2px;
}

/* ========================================
   MOBILE MENU TRIGGER BUTTON
   ======================================== */

.mob-menu {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 10px;
  z-index: var(--z-header);
  border-radius: 10px;
  background: var(--primary-gradient);
  box-shadow: var(--shadow-medium);
  transition: all var(--transition-medium);
  border: none;
  outline: none;
}

.mob-menu:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.3);
}

.mob-menu:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* ========================================
   HAMBURGER ICON
   ======================================== */

.hamburger-icon {
  width: 24px;
  height: 24px;
  position: relative;
  margin: auto;
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
  cursor: pointer;
}

.hamburger-icon span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: white;
  border-radius: 3px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}

.hamburger-icon span:nth-child(1) {
  top: 3px;
}

.hamburger-icon span:nth-child(2),
.hamburger-icon span:nth-child(3) {
  top: 10px;
}

.hamburger-icon span:nth-child(4) {
  top: 17px;
}

/* Hamburger Animation States */
.hamburger-icon.active span:nth-child(1) {
  top: 10px;
  transform: rotate(135deg);
}

.hamburger-icon.active span:nth-child(2),
.hamburger-icon.active span:nth-child(3) {
  opacity: 0;
  left: -60px;
}

.hamburger-icon.active span:nth-child(4) {
  top: 10px;
  transform: rotate(-135deg);
}

/* ========================================
   MENU ITEMS CONTAINER
   ======================================== */

.mobile-menu-items {
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* MAIN NAVIGATION LINKS */
.main-link {
    width: 100%;
    padding: 14px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: 500;
    color: #334155;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    cursor: pointer;
}

.main-link:hover {
    background-color: #00000010;
    color: #6366f1;
}

.main-link.with-sub-category {
    padding: 0;
}

.main-link.with-sub-category label {
    padding: 14px 20px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    margin: 0;
}

.main-link label {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    cursor: pointer;
    gap: 16px;
    margin: 0;
    font-weight: inherit;
}

.main-link input {
    display: none;
}

.main-link a {
    color: #000;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    text-decoration: none;
    width: 100%;
}

.main-link i {
    font-size: 18px;
    color: #6366f1;
}

/* SUB-CATEGORY GROUPS - Enhanced Aesthetics */
.sub-category-group {
    background: white;
    margin: 15px;
    margin-bottom: 15px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(99, 102, 241, 0.08);
    transform: translateY(0);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.sub-category-group:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
    border-color: rgba(99, 102, 241, 0.15);
}

.sub-category-group h3 {
    padding: 18px 20px 14px;
    margin: 0;
    font-size: 13px;
    color: #6366f1;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    position: relative;
    overflow: hidden;
}



/* Enhanced Sub-Links */
.sub-link {
    display: flex;
    align-items: center;
    padding: 16px 20px 16px 45px;
    position: relative;
    color: #475569;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    background: #ffffff;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    border-left: 3px solid transparent;
}

.sub-link:not(:last-child) {
    border-bottom: 1px solid rgba(241, 245, 249, 0.6);
}

.sub-link::before {
    content: '';
    position: absolute;
    left: 22px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: linear-gradient(135deg, #cbd5e1, #94a3b8);
    transition: all 0.3s ease;
}

.sub-link::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(139, 92, 246, 0.05));
    transition: all 0.3s ease;
    z-index: 0;
}

.sub-link:hover {
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    color: #6366f1;
    padding-left: 50px;
    border-left-color: #6366f1;
    transform: translateX(2px);
}

.sub-link:hover::before {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    transform: translateY(-50%) scale(1.4);
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.3);
}

.sub-link:hover::after {
    width: 100%;
}

/* VIEW ALL LINK - Enhanced */
.view-all-link {
    display: block;
    text-align: center;
    padding: 16px 20px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 12px;
    margin: 20px 15px 15px;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.2);
    position: relative;
    overflow: hidden;
}

.view-all-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.6s ease;
}

.view-all-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
}

.view-all-link:hover::before {
    left: 100%;
}

/* BASIC COMPONENTS */
.mobile-menu-items {
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-menu-overlay {
    width: 100vw;
    background: #0000009e;
    position: fixed;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    left: 0;
    top: 0;
    height: 100vh;
}

.table_center {
    display: table-cell;
    vertical-align: middle;
}

.nb-btn-container .table_center {
    width: 100%;
    flex: 1;
}

@media all and (max-width:1165px) {
    .nb-btn-container {
        display: flex;
        gap: 20px;
        padding: 0 20px;
        margin-bottom: 20px;
    }
}

.sub-category-container [for^="mobile-submenu-"] i {
    color: #FFF;
}

/* MOBILE MENU FOOTER */
.mobile-menu-footer {
    padding: 20px 15px;
    background: #f8fafc;
    border-top: 1px solid #f1f5f9;
    margin-top: auto;
}

.mobile-menu-footer .social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.mobile-menu-footer .social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6366f1;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    text-decoration: none;
}

.mobile-menu-footer .social-icons a:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.mobile-menu-footer .contact-info {
    text-align: center;
}

.mobile-menu-footer .contact-info a {
    color: #6366f1;
    text-decoration: none;
    font-weight: 500;
}

/* MOBILE MENU TRIGGER */
.mob-menu {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    border-radius: 10px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.2);
    transition: all 0.3s ease;
}

/* HAMBURGER ICON */
.hamburger-icon {
    width: 24px;
    height: 24px;
    position: relative;
    margin: auto;
    transform: rotate(0deg);
    transition: .5s ease-in-out;
    cursor: pointer;
}

.hamburger-icon span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: white;
    border-radius: 3px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}

.hamburger-icon span:nth-child(1) {
    top: 3px;
}

.hamburger-icon span:nth-child(2), .hamburger-icon span:nth-child(3) {
    top: 10px;
}

.hamburger-icon span:nth-child(4) {
    top: 17px;
}