* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: Arial, sans-serif;
            background-color: #f5f5f5;
            overflow-x: hidden;
        }

        /* ===========================
   GÓRNY PASEK KONTAKTOWY
   =========================== */

        .top-bar {
            background-color: #fff;
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
            padding: 15px 0;
        }

        .top-bar-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            flex-wrap: wrap;
            gap: 20px;
        }

        .logo-section {
            display: flex;
            align-items: center;
        }

        .logo-section img {
            width: 80px;
            height: 80px;
            object-fit: contain;
        }

        .contact-info {
            display: flex;
            gap: 30px;
            align-items: center;
        }

        .contact-person {
            text-align: center;
            font-size: 15px;
            color: #333;
        }

        .contact-person strong {
            display: block;
            margin-bottom: 5px;
            color: #6c151b;
            font-weight: 700;
        }

        .contact-person a {
            color: #333;
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s ease;
        }

        .contact-person a:hover {
            color: #6c151b;
        }

        .top-bar-buttons {
            display: flex;
            gap: 20px;
            align-items: center;
        }

        .top-btn {
            padding: 12px 20px;
            background-color: #6c151b;
            color: white;
            text-decoration: none;
            border-radius: 6px;
            font-size: 15px;
            font-weight: 700;
            transition: all 0.3s ease;
            white-space: nowrap;
            box-shadow: 0 2px 8px rgba(108, 21, 27, 0.3);
            border: 2px solid transparent;
        }

        .top-btn:hover {
            background-color: #5a1218;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(108, 21, 27, 0.4);
            border-color: #8a1a21;
        }

        .top-btn:active {
            transform: translateY(0);
            box-shadow: 0 2px 6px rgba(108, 21, 27, 0.3);
        }

        .top-btn.primary:active {
            transform: translateY(-1px);
            box-shadow: 0 4px 10px rgba(108, 21, 27, 0.4);
        }

        .top-icons {
            display: flex;
            gap: 15px;
            align-items: center;
        }

        .top-icon {
            color: #6c151b;
            font-size: 20px;
            transition: all 0.3s ease;
        }

        .top-icon:hover {
            color: #5a1218;
            transform: scale(1.1);
        }

        /* ===========================
   MENU NAWIGACYJNE - PODSTAWOWE STYLE
   =========================== */

        .navigation-wrapper {
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: relative;
            z-index: 1000;
            overflow: visible;
        }

        .main-menu {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            overflow: visible;
        }

        .nav-brand {
            font-size: 24px;
            font-weight: bold;
            color: #6c151b;
            text-decoration: none;
            padding: 15px 0;
            display: none;
        }

        .menu-list {
            display: flex;
            justify-content: center;
            align-items: center;
            list-style: none;
            margin: 0;
            padding: 0;
            flex: 1;
        }

        .menu-item {
            position: relative;
            display: flex;
            align-items: center;
        }

        .menu-item>a {
            display: flex;
            align-items: center;
            padding: 20px 12px;
            text-decoration: none;
            color: #333;
            font-weight: 600;
            font-size: 14px;
            text-transform: uppercase;
            transition: all 0.3s ease;
            border-bottom: 3px solid transparent;
            white-space: nowrap;
            min-width: 0;
        }

        .menu-item>a:hover {
            color: #6c151b;
            border-bottom-color: #6c151b;
        }

        .menu-item img {
            width: 20px;
            height: 20px;
            margin-right: 8px;
            filter: contrast(1);
            transition: all 0.3s ease;
        }

        .menu-item:hover img {
            filter: brightness(0) saturate(100%) invert(12%) sepia(38%) saturate(4576%) hue-rotate(332deg) brightness(96%) contrast(95%);
        }

        /* Hamburger Menu Button */
        .hamburger-menu {
            display: none;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            width: 50px;
            height: 50px;
            cursor: pointer;
            padding: 10px;
            background: transparent;
            border: none;
            z-index: 1001;
            transition: all 0.3s ease;
        }

        .hamburger-menu:hover {
            background-color: rgba(108, 21, 27, 0.1);
            border-radius: 8px;
        }

        .hamburger-line {
            width: 25px;
            height: 3px;
            background-color: #333;
            margin: 2px 0;
            transition: all 0.3s ease;
            border-radius: 2px;
        }

        .hamburger-menu.active .hamburger-line:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
            background-color: #6c151b;
        }

        .hamburger-menu.active .hamburger-line:nth-child(2) {
            opacity: 0;
        }

        .hamburger-menu.active .hamburger-line:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
            background-color: #6c151b;
        }

        /* ===========================
   DROPDOWN STYLE (DESKTOP) - POPRAWIONE
   =========================== */

       /* ===========================
   DROPDOWN STYLE (DESKTOP) - NAPRAWIONE
   =========================== */

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    width: 100vw;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1), 0 5px 15px rgba(0, 0, 0, 0.08);
    border-radius: 0 0 12px 12px;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-top: none;
    margin-left: calc(-50vw + 50%);
}

.dropdown-header {
    background: linear-gradient(135deg, #6c151b 0%, #7c1f25 100%);
    padding: 10px 4%;
    border-radius: 0;
    max-width: 1200px;
    margin: 0 auto;
}

.dropdown-title {
    font-size: 35px;
    color: white;
    margin-bottom: 12px;
    font-weight: normal;
}

.dropdown-title a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.dropdown-title a:hover {
    opacity: 0.9;
    text-decoration: none;
}

.dropdown-content {
    padding: 2% 4%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.dropdown-column {
    padding: 20px 15px;
    min-height: 180px;
}

.column-title {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    color: #6c151b;
    margin: 25px 0 15px 0;
}

.column-title a {
    color: #6c151b;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.column-title a:hover {
    opacity: 0.8;
    text-decoration: none;
}

.column-title:first-child {
    margin-top: 0;
}

.dropdown a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

.dropdown a:visited {
    color: inherit;
}

.dropdown a:hover {
    text-decoration: none;
}

.dropdown-link {
    display: block;
    padding: 5px 0;
    color: #333;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.dropdown-link:hover {
    color: #6c151b;
    text-decoration: none;
    padding-left: 8px;
    background-color: rgba(108, 21, 27, 0.05);
}

        /* Mobile Overlay */
        .mobile-nav-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            display: none;
        }

        .mobile-nav-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        /* ===========================
   DESKTOP STYLES (1025px+) - POPRAWIONE
   =========================== */

        @media screen and (min-width: 1025px) {
            .hamburger-menu {
                display: none !important;
            }

            .nav-brand {
                display: none !important;
            }

            .mobile-nav-overlay {
                display: none !important;
            }

            /* Dropdown na pełną szerokość od początku strony */
            .dropdown {
                position: fixed;
                top: auto;
                left: 0;
                right: 0;
                transform: none;
                background: white;
                width: 100vw;
                max-width: none;
                box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1), 0 5px 15px rgba(0, 0, 0, 0.08);
                border-radius: 0 0 12px 12px;
                padding: 0;
                opacity: 0;
                visibility: hidden;
                transition: all 0.3s ease;
                z-index: 1001;
                border: 1px solid rgba(0, 0, 0, 0.05);
                border-top: none;
            }

            .dropdown-header {
                background: linear-gradient(135deg, #6c151b 0%, #7c1f25 100%);
                padding: 10px 0;
                border-radius: 0;
                width: 100%;
            }

            .dropdown-header .dropdown-title {
                font-size: 25px;
                color: white;
                margin-bottom: 12px;
                font-weight: normal;
                max-width: 1200px;
                margin-left: auto;
                margin-right: auto;
                padding: 0 20px;
            }

            .dropdown-content {
                padding: 2% 0;
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
                gap: 25px;
                max-width: 1200px;
                margin: 0 auto;
                padding-left: 20px;
                padding-right: 20px;
            }
        }

        /* ===========================
   LARGE DESKTOP STYLES (1200px+)
   =========================== */

        @media screen and (min-width: 1200px) {
            .dropdown {
                margin-left: calc(-50vw + 50%);
            }

            .dropdown-header .dropdown-title {
                padding: 0 40px;
            }

            .dropdown-content {
                padding-left: 40px;
                padding-right: 40px;
            }
        }

        /* ===========================
   EXTRA LARGE DESKTOP STYLES (1400px+)
   =========================== */

        @media screen and (min-width: 1400px) {
            .dropdown {
                margin-left: calc(-50vw + 50%);
            }

            .dropdown-header .dropdown-title {
                padding: 0 60px;
            }

            .dropdown-content {
                padding-left: 60px;
                padding-right: 60px;
                max-width: 1400px;
            }
        }

        /* ===========================
   VERY LARGE DESKTOP STYLES (1600px+)
   =========================== */

        @media screen and (min-width: 1600px) {
            .dropdown {
                margin-left: calc(-50vw + 50%);
            }

            .dropdown-header .dropdown-title {
                padding: 0 80px;
            }

            .dropdown-content {
                padding-left: 80px;
                padding-right: 80px;
                max-width: 1600px;
            }
        }

        /* ===========================
   TABLET STYLES (768px - 1024px)
   =========================== */

        @media screen and (min-width: 768px) and (max-width: 1024px) {

            /* Top bar adjustments */
            .top-bar-container {
                padding: 0 15px;
                gap: 15px;
            }

            .contact-info {
                gap: 20px;
            }

            .contact-person {
                font-size: 15px;
            }

            .top-btn {
                padding: 10px 16px;
                font-size: 14px;
                box-shadow: 0 2px 6px rgba(108, 21, 27, 0.25);
            }

            /* Navigation adjustments */
            .navigation-wrapper {
                position: sticky;
                top: 0;
                z-index: 1000;
            }

            .nav-brand {
                display: block;
            }

            .hamburger-menu {
                display: flex;
            }

            .mobile-nav-overlay {
                display: block;
            }

            /* Hide desktop menu elements */
            .menu-list {
                display: none;
            }

            /* Transform menu for mobile sidebar */
            .menu-list.mobile-active {
                display: flex;
                flex-direction: column;
                position: fixed;
                top: 0;
                right: -100%;
                width: 380px;
                max-width: 90vw;
                height: 100vh;
                background: white;
                box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
                z-index: 1000;
                overflow-y: auto;
                transition: right 0.3s ease;
                padding-top: 80px;
                align-items: stretch;
                justify-content: flex-start;
            }

            .menu-list.mobile-active.active {
                right: 0;
            }

            /* Mobile menu header */
            .menu-list.mobile-active::before {
                content: 'Menu';
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                height: 80px;
                background: linear-gradient(135deg, #6c151b 0%, #7c1f25 100%);
                display: flex;
                align-items: center;
                padding: 0 20px;
                color: white;
                font-size: 18px;
                font-weight: bold;
            }

            /* Close button */
            .menu-list.mobile-active::after {
                content: '×';
                position: absolute;
                top: 20px;
                right: 20px;
                width: 40px;
                height: 40px;
                background: rgba(255, 255, 255, 0.2);
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                color: white;
                font-size: 24px;
                cursor: pointer;
                transition: background-color 0.3s ease;
                z-index: 1001;
            }

            /* Menu items in mobile */
            .menu-list.mobile-active .menu-item {
                width: 100%;
                border-bottom: 1px solid rgba(108, 21, 27, 0.1);
                display: block;
            }

            .menu-list.mobile-active .menu-item>a {
                padding: 20px;
                background-color: #f8f9fa;
                color: #6c151b;
                font-weight: bold;
                font-size: 16px;
                border-bottom: none;
                cursor: pointer;
                position: relative;
                justify-content: space-between;
            }

            .menu-list.mobile-active .menu-item>a::after {
                content: '+';
                font-size: 20px;
                transition: transform 0.3s ease;
            }

            .menu-list.mobile-active .menu-item.active>a::after {
                transform: rotate(45deg);
            }

            .menu-list.mobile-active .menu-item>a:hover {
                background-color: rgba(108, 21, 27, 0.05);
                border-bottom: none;
            }

            /* Hide icons in mobile */
            .menu-list.mobile-active .menu-item img {
                display: none;
            }

            /* Dropdown transformation for mobile */
            .menu-list.mobile-active .dropdown {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                width: 100%;
                max-width: none;
                box-shadow: none;
                border: none;
                border-radius: 0;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s ease;
                background: white;
                margin-left: 0;
            }

            .menu-list.mobile-active .menu-item.active .dropdown {
                max-height: 10000px;
  overflow: visible;
            }

            .menu-list.mobile-active .dropdown-header {
                display: none;
            }

            .menu-list.mobile-active .dropdown-content {
                padding: 0;
                grid-template-columns: 1fr;
                gap: 0;
            }

            .menu-list.mobile-active .dropdown-column {
                padding: 15px 20px;
                border-bottom: 1px solid rgba(108, 21, 27, 0.05);
                min-height: auto;
            }

            .menu-list.mobile-active .dropdown-column:last-child {
                border-bottom: none;
            }

            .menu-list.mobile-active .column-title {
                font-size: 14px;
                margin: 10px 0 8px 0;
                text-transform: uppercase;
                letter-spacing: 0.5px;
            }

            .menu-list.mobile-active .dropdown-link {
                padding: 8px 0;
                font-size: 14px;
            }

            .menu-list.mobile-active .dropdown-link:hover {
                padding-left: 10px;
                background-color: rgba(108, 21, 27, 0.05);
            }
        }

        /* ===========================
   MOBILE STYLES (320px - 767px) - ULEPSZONE
   =========================== */

        @media screen and (max-width: 767px) {

            /* Top bar adjustments */
            .top-bar {
                padding: 8px 0;
            }

            .top-bar-container {
                flex-direction: column;
                gap: 12px;
                padding: 0 12px;
            }

            .logo-section img {
                width: 50px;
                height: 50px;
            }

            .contact-info {
                flex-wrap: wrap;
                justify-content: center;
                gap: 12px;
            }

            .contact-person {
                font-size: 13px;
                text-align: center;
            }

            .contact-person strong {
                font-size: 14px;
                margin-bottom: 3px;
            }

            .top-bar-buttons {
                flex-wrap: wrap;
                justify-content: center;
                gap: 8px;
            }

            .top-btn {
                padding: 8px 12px;
                font-size: 12px;
                border-radius: 4px;
                box-shadow: 0 2px 4px rgba(108, 21, 27, 0.2);
                font-weight: 600;
            }

            /* Navigation adjustments */
            .navigation-wrapper {
                position: sticky;
                top: 0;
                z-index: 1000;
                box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
            }

            .main-menu {
                padding: 0 12px;
                height: 60px;
            }

            .nav-brand {
                display: block;
                font-size: 18px;
                font-weight: 700;
                letter-spacing: 0.5px;
            }

            .hamburger-menu {
                display: flex;
                width: 44px;
                height: 44px;
                border-radius: 6px;
                transition: all 0.2s ease;
                position: relative;
                z-index: 999;
            }

            .hamburger-menu.active {
                opacity: 0;
                pointer-events: none;
            }

            .hamburger-menu:hover {
                background-color: rgba(108, 21, 27, 0.08);
            }

            .hamburger-line {
                width: 20px;
                height: 2px;
                background-color: #6c151b;
                border-radius: 1px;
            }

            .mobile-nav-overlay {
                display: block;
                backdrop-filter: blur(4px);
                background-color: rgba(0, 0, 0, 0.4);
            }

            /* Hide desktop menu */
            .menu-list {
                display: none;
            }

            /* Hide icons/images in mobile menu items */
            .menu-item img {
                display: none !important;
            }

            /* Mobile menu styling - PROFESJONALNE ULEPSZENIA */
            .menu-list.mobile-active {
                display: flex;
                flex-direction: column;
                position: fixed;
                top: 0;
                right: -100%;
                width: min(340px, 88vw);
                height: 100vh;
                background: #ffffff;
                box-shadow: -8px 0 32px rgba(0, 0, 0, 0.15);
                z-index: 1000;
                overflow-y: auto;
                transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
                padding-top: 0;
                align-items: stretch;
                justify-content: flex-start;
                border-left: 1px solid rgba(108, 21, 27, 0.1);
            }

            .menu-list.mobile-active.active {
                right: 0;
            }

            /* Mobile menu header - NOWOCZESNY DESIGN */
            .menu-list.mobile-active::before {
                content: 'Menu nawigacyjne';
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                height: 64px;
                background: linear-gradient(135deg, #6c151b 0%, #7c1f25 100%);
                display: flex;
                align-items: center;
                padding: 0 20px;
                color: white;
                font-size: 16px;
                font-weight: 600;
                letter-spacing: 0.3px;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }

            /* Close button - UKRYTY */
            .menu-list.mobile-active::after {
                display: none;
            }

            /* Menu scrollable content */
            .menu-list.mobile-active {
                padding-top: 64px;
                padding-bottom: 20px;
            }

            /* Menu items - PROFESJONALNY WYGLĄD */
            .menu-list.mobile-active .menu-item {
                width: 100%;
                border-bottom: 1px solid rgba(108, 21, 27, 0.08);
                display: block;
                transition: all 0.2s ease;
            }

            .menu-list.mobile-active .menu-item:last-child {
                border-bottom: none;
            }

            .menu-list.mobile-active .menu-item>a {
                padding: 16px 20px;
                background-color: #ffffff;
                color: #6c151b;
                font-weight: 600;
                font-size: 15px;
                border-bottom: none;
                cursor: pointer;
                position: relative;
                display: flex;
                justify-content: space-between;
                align-items: center;
                transition: all 0.2s ease;
                letter-spacing: 0.3px;
                text-transform: uppercase;
                min-height: 56px;
            }

            .menu-list.mobile-active .menu-item>a::after {
                content: '+';
                font-size: 18px;
                font-weight: 300;
                color: #6c151b;
                transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
                width: 24px;
                height: 24px;
                display: flex;
                align-items: center;
                justify-content: center;
                border-radius: 50%;
                background: rgba(108, 21, 27, 0.1);
            }

            .menu-list.mobile-active .menu-item.active>a::after {
                transform: rotate(45deg);
                background: rgba(108, 21, 27, 0.15);
            }

            .menu-list.mobile-active .menu-item>a:hover,
            .menu-list.mobile-active .menu-item.active>a {
                background-color: rgba(108, 21, 27, 0.04);
                padding-left: 24px;
            }

            /* Dropdown transformation for mobile - SMOOTH ANIMATIONS */
            .menu-list.mobile-active .dropdown {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                width: 100%;
                max-width: none;
                box-shadow: none;
                border: none;
                border-radius: 0;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
                background: #f8f9fa;
                margin-left: 0;
                border-top: 1px solid rgba(108, 21, 27, 0.06);
            }

            .menu-list.mobile-active .menu-item.active .dropdown {
                max-height: 10000px;
    overflow: visible;
            }

            .menu-list.mobile-active .dropdown-header {
                display: none;
            }

            .menu-list.mobile-active .dropdown-content {
                padding: 0;
                grid-template-columns: 1fr;
                gap: 0;
                margin: 0;
            }

            .menu-list.mobile-active .dropdown-column {
                padding: 0;
                border-bottom: none;
                min-height: auto;
            }

            .menu-list.mobile-active .column-title {
                font-size: 13px;
                margin: 16px 20px 8px 20px;
                text-transform: uppercase;
                letter-spacing: 0.5px;
                color: #6c151b;
                font-weight: 700;
                position: relative;
            }

            .menu-list.mobile-active .column-title:first-child {
                margin-top: 16px;
            }

            .menu-list.mobile-active .column-title::after {
                content: '';
                position: absolute;
                bottom: -4px;
                left: 0;
                width: 30px;
                height: 2px;
                background: linear-gradient(90deg, #6c151b, transparent);
            }

            .menu-list.mobile-active .dropdown-link {
                padding: 12px 20px;
                font-size: 14px;
                color: #333;
                font-weight: 500;
                transition: all 0.2s ease;
                border-left: 3px solid transparent;
                position: relative;
            }

            .menu-list.mobile-active .dropdown-link:hover {
                padding-left: 28px;
                background-color: rgba(108, 21, 27, 0.06);
                border-left-color: #6c151b;
                color: #6c151b;
            }

            /* Smooth scrolling for mobile menu */
            .menu-list.mobile-active {
                scroll-behavior: smooth;
                -webkit-overflow-scrolling: touch;
            }

            /* Custom scrollbar for mobile menu */
            .menu-list.mobile-active::-webkit-scrollbar {
                width: 4px;
            }

            .menu-list.mobile-active::-webkit-scrollbar-track {
                background: rgba(108, 21, 27, 0.1);
            }

            .menu-list.mobile-active::-webkit-scrollbar-thumb {
                background: rgba(108, 21, 27, 0.3);
                border-radius: 2px;
            }

            .menu-list.mobile-active::-webkit-scrollbar-thumb:hover {
                background: rgba(108, 21, 27, 0.5);
            }
        }

        /* Very small phones - ZOPTYMALIZOWANE */
        @media screen and (max-width: 480px) {
            .top-bar-container {
                padding: 0 8px;
                gap: 10px;
            }

            .contact-info {
                gap: 8px;
            }

            .contact-person {
                font-size: 12px;
            }

            .contact-person strong {
                font-size: 13px;
            }

            .top-btn {
                padding: 6px 10px;
                font-size: 11px;
                box-shadow: 0 1px 3px rgba(108, 21, 27, 0.2);
            }

            .main-menu {
                padding: 0 8px;
                height: 56px;
            }

            .nav-brand {
                font-size: 16px;
            }

            .hamburger-menu {
                display: flex;
                width: 40px;
                height: 40px;
                position: relative;
                z-index: 999;
            }

            .hamburger-menu.active {
                opacity: 0;
                pointer-events: none;
            }

            .hamburger-line {
                width: 18px;
                height: 2px;
            }

            .menu-list.mobile-active {
                width: min(300px, 92vw);
            }

            .menu-list.mobile-active::before {
                font-size: 15px;
                height: 56px;
                padding: 0 16px;
            }

            .menu-list.mobile-active::after {
                display: none;
            }

            .menu-list.mobile-active {
                padding-top: 56px;
            }

            .menu-list.mobile-active .menu-item>a {
                padding: 14px 16px;
                font-size: 14px;
                min-height: 50px;
            }

            .menu-list.mobile-active .menu-item>a::after {
                width: 20px;
                height: 20px;
                font-size: 16px;
            }

            .menu-list.mobile-active .column-title {
                font-size: 12px;
                margin: 14px 16px 6px 16px;
            }

            .menu-list.mobile-active .dropdown-link {
                padding: 10px 16px;
                font-size: 13px;
            }

            .menu-list.mobile-active .dropdown-link:hover {
                padding-left: 24px;
            }
        }


    .cart-icon {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #6c151b;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    min-width: 20px;
    padding: 0 4px;
    box-shadow: 0 2px 6px rgba(108, 21, 27, 0.3);
    transition: all 0.3s ease;
}

.cart-count:empty {
    display: none;
}

.cart-icon:hover .cart-count {
    background-color: #5a1218;
    transform: scale(1.1);
}

/* Responsive adjustments */
@media screen and (max-width: 767px) {
    .cart-count {
        width: 18px;
        height: 18px;
        font-size: 11px;
        top: -6px;
        right: -6px;
    }
}

@media screen and (max-width: 480px) {
    .cart-count {
        width: 16px;
        height: 16px;
        font-size: 10px;
        top: -5px;
        right: -5px;
    }
}


