:root {
    /* ORANGE - #FB7700 */
    --zenzoh-orange-r: 251;
    --zenzoh-orange-g: 119;
    --zenzoh-orange-b: 0;

    /* RED - #f72220 */
    --zenzoh-red-r: 247;
    --zenzoh-red-g: 34;
    --zenzoh-red-b: 32;

    /* PURPLE - #7027b0 */
    --zenzoh-purple-r: 112;
    --zenzoh-purple-g: 39;
    --zenzoh-purple-b: 176;

    /* BLUE - #004abc */
    --zenzoh-blue-r: 0;
    --zenzoh-blue-g: 74;
    --zenzoh-blue-b: 188;

    /* TURQUOISE - #00aa9c */
    --zenzoh-turquoise-r: 0;
    --zenzoh-turquoise-g: 170;
    --zenzoh-turquoise-b: 156;

    /* WHITE - #fdfdfd */
    --zenzoh-white-r: 253;
    --zenzoh-white-g: 253;
    --zenzoh-white-b: 253;
    
}

h1, h2, h3, h4, h5, h6, a, p, li, span, strong{
  font-family: Arial, sans-serif;
}

a{
    color: inherit;
    text-decoration: none;
}

body {
    margin: 0;

    position: relative;

    min-height: 100vh;
    width: 100%;
    max-width: 100%;
    background: #111;
    overflow-x: hidden;

    padding: 0;
}

* {
    box-sizing: border-box;
}

.background-wave {
    position: fixed;
    inset: -15%;
    z-index: -1;

    background:
        radial-gradient(circle at 20% 25%, color-mix(in srgb, var(--theme-color) 35%, black), transparent 50%),
        radial-gradient(circle at 75% 35%, color-mix(in srgb, var(--theme-color) 30%, black), transparent 50%),
        radial-gradient(circle at 30% 80%, color-mix(in srgb, var(--theme-color) 20%, black), transparent 50%),
        radial-gradient(circle at 85% 85%, color-mix(in srgb, var(--theme-color) 30%, black), transparent 50%);

    filter: blur(80px);
}
#rings {
    /*position: absolute;*/
    inset: 0;
    overflow: hidden;
}

.rings {
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    overflow: hidden;
    pointer-events: none;

    z-index: -1;
}

.ring {
    position: absolute;

    border-radius: 50%;

    mask:
        radial-gradient(
            circle,
            transparent 55%,
            black 56%
        );

    -webkit-mask:
        radial-gradient(
            circle,
            transparent 44%,
            black 45%
        );
}

body {
    margin: 0;
}

.main-nav {
    position: relative;
    width: 100%;

    background: rgba(0, 0, 0, 0.32);

    border-bottom: 1px solid var(--theme-color);

    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);

    z-index: 1000;
}

.nav-inner {
    max-width: 1400px;
    margin: 0 auto;

    min-height: 70px;

    padding: 0 35px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 40px;
}

/* LOGO */

.brand {
    display: flex;
    align-items: center;

    gap: 10px;

    text-decoration: none;

    transition: transform 0.2s ease;
}

.brand-logo:hover, .brand-text:hover{
    transform: scale(1.04);
}

.brand-logo {
    width: 65px;
    height: 65px;

    object-fit: contain;
}

.brand-text {
    color: white;

    font-size: 28px;
    font-weight: 700;

}

/* MENÜ */

.nav-links {
    display: flex;
    align-items: center;
}

.nav-link {
    color: white;

    text-decoration: none;

    font-size: 15px;

    padding: 11px 18px;

    border-radius: 10px;

    transition:
        background 0.2s ease,
        transform 0.2s ease,
        color 0.2s ease;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.10);

    transform: translateY(-2px);
}

.nav-link.active {
    background: var(--theme-color);

    color: white;

    box-shadow:
        0 0 12px rgba(0, 170, 156, 0.45);
}

/* JOBB OLDAL */

.nav-actions {
    display: flex;
    align-items: center;

    gap: 24px;
}

/* KOSÁR */

.cart-button {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    color: white;

    text-decoration: none;

    transition:
        transform 0.2s ease,
        color 0.2s ease;
}

.cart-button:hover {
    transform: scale(1.12);

    color: var(--theme-color);
}

.cart-icon {
    font-size: 27px;
}

.cart-count {
    position: absolute;

    top: -3px;
    right: -3px;

    min-width: 18px;
    height: 18px;

    padding: 0 4px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--theme-color);

    color: white;

    font-size: 11px;
    font-weight: 700;

    box-sizing: border-box;
}

/* NYELVVÁLASZTÓ */

.language-button {
    display: flex;
    align-items: center;

    gap: 8px;

    background: transparent;

    border: none;

    color: white;

    cursor: pointer;

    padding: 5px;

    transition: transform 0.2s ease;
}

.language-button:hover {
    transform: scale(1.05);
}

.flag-circle {
    width: 30px;
    height: 30px;

    border-radius: 50%;

    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;
}

.flag-circle img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.language-code {
    font-size: 14px;
}

.language-arrow {
    font-size: 16px;

    transform: translateY(-2px);
}

@media (max-width: 1000px) {
    .brand-text{
        display: none;
    }
}
@media (max-width: 850px) {

    .nav-inner {
        padding: 0 15px;
        gap: 15px;
    }

    .brand-text {
        font-size: 22px;
    }

    .nav-links {
        gap: 5px;
    }

    .nav-link {
        padding: 9px 10px;
        font-size: 13px;
    }

    .nav-actions {
        gap: 12px;
    }
}
@media (max-width: 650px) {
    .brand-logo{
        display: none;
    }

}
