/* Původní styly pro mobilní menu */
.custom-mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: white;
    transition: left 0.5s ease-in-out;
    overflow-y: auto;
    padding: 10px 10px 120px;
    z-index: 999999999;
}
.custom-mobile-menu.open {
    left: 0;
}
.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}
.menu-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    gap: 12px;
}
.menu-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
    text-decoration: none;
    color: var(--e-global-color-a9ae841);
    background-color: #F8F8F8;
    padding: 6px;
    width: 100%;
}
.menu-icon .icon-image {
    width: 22px;
    height: 22px;
    margin-bottom: 5px;
}
.menu-close .icon-image {
    width: 30px;
    height: 30px;
    margin-bottom: 5px;
}
.menu-icon span {
    font-size: 10px;
    font-weight: 500;
}

.currency-select {
    width: 70px;
    height: 25px;
    font-size: 12px;
    font-weight: 600;
    color: var(--e-global-color-a9ae841);
    background-color: #F8F8F8;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 0 5px;
    margin-bottom: 2px;
    text-align: center;
}
.menu-close a {
    text-decoration: none;
}
.menu-content {
    color: var(--e-global-color-a9ae841);
    font-weight: 600;
    font-size: 14px;
    line-height: 1.4em;
}
.menu-title {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 0 16px 0;
    font-size: 24px;
    font-weight: 800;
    color: #fa60d1;
    gap: 12px;
}
.menu-title .icon-image {
    width: 28px;
    height: 28px;
}
.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 6px;
    padding: 5px 0;
}
.grid-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    background-color: #f5f5f5;
    min-height: 64px;
    text-decoration: none;
    color: var(--e-global-color-a9ae841);
}
.grid-item img.icon-image-small {
    width: 45px;
    height: 45px;
}
.section-title {
    font-size: 24px;
    color: var(--e-global-color-a9ae841);
    font-weight: 800;
    padding: 32px 0 16px 0;
    margin: 0;
    text-align: center;
}
.kury-btn {
    padding-top: 24px;
}
.hubnouci-kura-inner {
    background-color: var(--e-global-color-fa21a45);
    padding: 16px 0;
    font-size: 15px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 4px;
}
.hubnouci-kura-inner:last-child {
    margin-bottom: 0;
}
.hubnouci-kura-btn {
    color: #fff!important;
    text-decoration: none;
    display: block;
}
.currency-switcher {
    margin-top: 24px;
    text-align: center;
}
.currency-switcher a, .currency-switcher span {
    font-size: 16px;
    font-weight: 600;
    margin: 0 5px;
    color: #9B9B9B!important;
}

/* Nové styly pro navigační menu */
.nav-container {
    max-width: 800px;
    margin: 20px auto;
    padding: 0px;
}

.nav-section {
    position: relative;
}

.nav-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    background-color: #f3f3f3;
    border-radius: 0px;
    text-decoration: none;
    color: #000;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 2px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.nav-item:hover {
    background-color: #e8e8e8;
}

.submenu {
    display: none;
    background: #f8f8f8;
    border-radius: 8px;
    margin-top: 2px;
    overflow: hidden;
}

.submenu.active {
    display: block;
}

.submenu a {
    display: block;
    padding: 12px;
    text-decoration: none;
    color: #333;
    font-size: 16px;
    background-color: #f3f3f3;
    margin-bottom: 2px;
    transition: all 0.2s ease;
}

.submenu a:last-child {
    margin-bottom: 0;
}

.submenu a:hover {
    background-color: #e8e8e8;
    padding-left: 25px;
}

.arrow {
    font-size: 24px;
    transition: transform 0.2s;
}

.nav-section.active .arrow {
    transform: rotate(90deg);
}

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

.submenu.active {
    animation: slideDown 0.3s ease forwards;
}

/* Nové styly pro položky bez podmenu */
.nav-item.no-submenu {
    width: 100%;
    border-radius: 0;
    justify-content: flex-start; /* Zarovnání textu na střed, pokud je to požadováno */
    cursor: pointer; /* Můžete změnit na 'default' pokud nechcete, aby vypadalo jako tlačítko */
}

/* Odstranění kurzoru pointer pro položky bez podmenu, pokud chcete */
.nav-item.no-submenu {
    cursor: default;
}

/* Odstranění šipky pro položky bez podmenu */
.nav-item.no-submenu .arrow {
    display: none;
}
