* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Arsenal", sans-serif;
}

.sticky-sidebar {
    position: fixed;
    top: 50%;
    right: 3vw;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    z-index: 999999;
    transition: right 0.3s ease;
}

.sticky-sidebar.light {
    color: white;
}

.sticky-sidebar.dark {
    color: black;
}

.sticky-button {
    background: transparent;
    border: none;
    padding: 10px;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.sticky-button img {
    width: 21px;
    height: 21px;
}

.sticky-sidebar.dark .sticky-button img {
    filter: invert(1);
}

.sticky-sidebar.light .sticky-button:hover,
.sticky-sidebar.light .sticky-button:focus {
    background: white;
    border: 1px solid black;
}

.sticky-sidebar.dark .sticky-button:hover,
.sticky-sidebar.dark .sticky-button:focus {
    background: black;
    border: 1px solid white;
}

.sticky-sidebar.dark .sticky-button:hover img,
.sticky-sidebar.dark .sticky-button:focus img {
    filter: none;
}

.sticky-sidebar.light .sticky-button:hover img,
.sticky-sidebar.light .sticky-button:focus img {
    filter: invert(1);
}

.language-switcher {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-weight: bold;
    font-size: 14px;
    line-height: 12px;
    letter-spacing: 1.5px;
    gap: 25px;
    text-transform: uppercase;
}

.sticky-sidebar.light .language-switcher .lang {
    color: white;
    text-decoration: none;
    position: relative;
}

.sticky-sidebar.dark .language-switcher .lang {
    color: black;
    text-decoration: none;
    position: relative;
}

.sticky-sidebar.light .language-switcher .lang.active::after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background: white;
    margin-top: 6px;
}

.sticky-sidebar.dark .language-switcher .lang.active::after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background: black;
    margin-top: 6px;
}

.header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: white;
    transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
    border-radius: 0 0 16px 16px;
    justify-content: space-between;
    align-items: center;
}

.header .content.hovered{
    border-bottom: 1px solid #000;
    border-radius: 0 0 0 0;
}

.header .content{
    display: flex;
}

.header.scrolled {
    background-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.header.search-open {
    background-color: white !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    opacity: 1 !important;
    border-radius: 0 !important;
}

.header-inner {
    width: 100%;
    padding: 15px 20px 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 50px;
}

.logo img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.nav-section {
    display: flex;
    gap: 20px;
    flex-grow: 1;
    flex-basis: 50%;
}

.nav-item {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 14px;
    color: #000000;
    letter-spacing: 1.5px;
    cursor: pointer;
    padding: 10px 0;
    display: flex;
    align-items: center;
    position: relative;
}

.nav-item.has-dropdown::after {
    content: "";
    display: inline-block;
    width: 18px;
    height: 18px;
    margin-left: 5px;
    background-image: url("../images/chevron-down.svg");
    background-repeat: no-repeat;
    background-position: center;
    transition: transform 0.3s;
}

.nav-item[aria-expanded="true"]::after {
    background-image: url("../images/chevron-up.svg");
}

.football-btn {
    background-color: #AF1914;
    color: white;
    padding: 16px;
    border-radius: 60px;
    font-size: 14px;
    border: none;
    cursor: pointer;
    font-weight: 700;
    text-decoration: none;
}

.football-btn:hover {
    background-color: #9B2528;
}

#dropdownsParent {
    width: 100%;
    position: sticky;
    top: 0px;
    z-index: 10000;
}

#dropdownsParent .hide{
    padding-top: 25px;
    display: none;
}

.dropdown {
    position: absolute;
    top: 0px;
    left: 0;
    width: 100%;
    background: #FFF;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    display: none;
    z-index: 999;
    border-radius: 0 0 16px 16px;
}

.dropdown.show {
    display: block;
}

.dropdown-inner {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.dropdown-nav-menu {
    padding: 15px 20px 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 1px solid #000;
}

.dropdown-categories {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    padding: 0 25px 10px;
}

.dropdown-category {
    text-align: center;
    max-width: 240px;
    color: #000000;
    text-decoration: none;
    font-weight: 400;
    cursor: pointer;
}

.image-container {
    border-radius: 60px;
    overflow: hidden;
    width: 200px;
    height: 182px;
    position: relative;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.image-container:hover img,
.image-container:focus img {
    transform: scale(1.5);
}

.dropdown-category p {
    margin-top: 20px;
    font-size: 21px;
    font-weight: 400;
}

.hover-underline {
    display: inline-block;
    position: relative;
    color: #000000!important;
    text-decoration: none!important;
}

.hover-underline::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: -8px;
    left: 0;
    background-color: #000;
    transition: transform 0.25s ease-out;
}

.nav-item[data-bs-toggle="collapse"] .hover-underline::after {
    width: 120%;
}

.hover-underline::after {
    transform-origin: bottom right;
}

.hover-underline:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.nav-item[aria-expanded="true"] .hover-underline::after {
    transform: scaleX(1);
}

.search {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    z-index: 10001;
    background: rgba(0, 0, 0, 0.87);
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    transition: all 0.3s ease;
}

.search #scrollProgress,
.search .progress-bar,
.search [id*="progress"] {
    display: none !important;
}

.search .search-close-wrapper {
    position: absolute;
    top: 30px;
    right: 30px;
    z-index: 10002;
}

.search-bar {
    display: flex;
    align-items: center;
    background: transparent;
    border-radius: 0;
    padding: 0 0 15px 0;
    height: auto;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
}

.search-bar .search-icon {
    width: 20px;
    height: 20px;
    margin-right: 15px;
    filter: invert(1);
    opacity: 0.7;
}

.search-bar input {
    flex: 1;
    border: none;
    background: transparent;
    outline: none;
    font-size: 18px;
    color: white;
    font-weight: 400;
    font-family: 'Arsenal', sans-serif;
}

.search-bar input::placeholder {
    color: rgba(255, 255, 255, 0.6);
    font-size: 18px;
    letter-spacing: 0px;
    font-weight: 400;
}

.search-bar .search-submit {
    background: none;
    border: none;
    padding: 0;
    margin-left: 8px;
}

.search-bar .search-submit img {
    width: 18px;
    height: 18px;
}

.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
}

.no-scroll {
    overflow: hidden;
    height: 100vh;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.close-search-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1100;
    background-color: transparent;
    border: none;
    padding: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-search-btn:hover {
    transform: rotate(90deg);
}

.close-search-btn img {
    width: 40px;
    height: 40px;
    filter: invert(1);
}

.close-search-btn.d-none {
    display: none;
}


/* .collapse {
transition-duration: 0ms !important;
}

.collapsing {
transition-duration: 0ms !important;
} */

@media only screen and (max-width: 769px) {
    .mobile-header {
        background: white;
        border-radius: 0 0 24px 24px;
        padding: 10px 20px;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        min-height: 80px;
        z-index: 100000;
        position: fixed;
        width: 100%;
    }
    .mobile-header.no-radius {
        border-radius: 0 !important;
    }
    .mobile-header-icons {
        display: flex;
        width: 100%;
        justify-content: space-between;
        align-items: center;
    }
    .menu-btn {
        background: transparent;
        border: none;
        /* width: 56px; */
        display: flex;
        align-items: center;
        padding: 12px;
    }
    .menu-btn img {
        width: 32px;
        height: 32px;
    }
    .icon {
        width: 32px;
        height: 32px;
    }
    .mobile-logo img {
        width: 120px;
        height: 90px;
    }
    .icon-dots {
        opacity: 1;
    }
    .icon-close {
        display: none;
    }
    .menu-btn[aria-expanded="true"] .icon-dots {
        display: none;
    }
    .menu-btn[aria-expanded="true"] .icon-close {
        display: block;
    }
    .mobile-header-right {
        display: flex;
        gap: 30px;
        align-items: center;
    }
    .mobile-menu {
        background: white;
        padding: 45px 20px 40px;
        border-radius: 0 0 0 0;
        position: fixed;
        top: 110px;
        bottom: 0;
        overflow: auto;
        width: 100%;
        z-index: 99999999999;
    }
    .mobile-menu-inner {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    .mobile-menu-item {
        font-size: 32px;
        color: #252C04;
        font-weight: 400;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px solid #252C04;
        padding-bottom: 10px;
    }

    .mobile-menu-item a{
        text-decoration: none;
        color: #252C04;
    }

    .dropdown-arrow {
        width: 28px;
        height: 28px;
        background-image: url("../images/chevron-down.svg");
        background-size: 28px 28px;
        background-repeat: no-repeat;
        background-position: center;
        transition: transform 0.3s;
    }
    .mobile-menu-item[aria-expanded="true"] .dropdown-arrow {
        background-image: url("../images/chevron-up.svg");
    }
    .arrow-up-right {
        width: 28px;
        height: 28px;
        background-image: url("../images/arrow-up-right.svg");
        background-size: 28px 28px;
        background-repeat: no-repeat;
        background-position: center;
    }
    .mobile-dropdown-categories {
        margin-top: 10px;
        margin-bottom: 10px;
    }
    .mobile-category {
        display: flex;
        align-items: center;
        gap: 25px;
        text-decoration: none;
        color: black;
        font-size: 24px;
        margin-bottom: 24px;
    }
    .mobile-image-container {
        width: 86px;
        height: 78px;
        border-radius: 24px;
        overflow: hidden;
    }
    .mobile-image-container img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .mobile-simple-links {
        margin: 30px 0 15px;
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    .mobile-simple-links a {
        text-decoration: none;
        text-transform: uppercase;
        font-weight: 700;
        color: black;
    }
    .football-btn {
        background-color: #AF1914;
        color: white;
        padding: 16px;
        border-radius: 60px;
        font-size: 18px;
        border: none;
        cursor: pointer;
        font-weight: 700;
        width: 208px;
        height: 68px;
        margin-top: 15px;
    }
    .search {
        max-width: unset;
        z-index: 999;
        border-top: unset;
        top: 96px;
    }
    .search-toggle-btn {
        background: transparent;
        border: none;
        padding: 12px;
        visibility: hidden;
    }

    .search-toggle-btn[aria-expanded="true"] {
        padding: 0;
    }

    .search-icon-close {
        display: none;
    }
    .search-toggle-btn[aria-expanded="true"] .search-icon-default {
        display: none;
    }
    .search-toggle-btn[aria-expanded="true"] .search-icon-close {
        display: flex;
        width: 56px;
        height: 56px;
    }
    .mobile-header-icons:has(.search-toggle-btn[aria-expanded="true"]) .logo-default {
        display: none;
    }
    .mobile-header-icons:has(.search-toggle-btn[aria-expanded="true"]) .logo-search {
        display: inline;
        width: 120px;
        height: 90px;
    }
    .mobile-lang-switch {
        display: flex;
        justify-content: center;
        gap: 20px;
        font-weight: 700;
        font-size: 14px;
        letter-spacing: 1.5px;
        margin-top: 15px;
    }
    .mobile-lang-switch .lang {
        color: black;
        text-decoration: none;
        position: relative;
    }
    .mobile-lang-switch .lang.active::after {
        content: '';
        display: block;
        width: 100%;
        height: 2px;
        background: black;
        margin-top: 4px;
    }
    .mobile-social-icons {
        justify-content: center;
        margin-top: 10px;
        display: flex;
        gap: 20px;
    }
    .mobile-social-icons img {
        width: 32px;
        height: 32px;
    }
    .search-bar {
        height: 70px;
    }
    .search-bar input {
        font-size: 20px;
    }
    .search-bar input::placeholder {
        font-size: 20px;
        letter-spacing: -0.3px;
    }
}

/* Search Component Dark Theme */
.search .search-component {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding-top: 40px;
}

.search .search-component .search-bar .clear-search {
    filter: invert(1);
    opacity: 0.7;
}

.search .search-component .search-bar .clear-search:hover {
    opacity: 1;
}

.search .search-component .search-results {
    margin-top: 60px;
    max-height: calc(100vh - 300px);
}

.search .search-component .search-results .search-result-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.search .search-component .search-results .search-result-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.search .search-component .search-results .search-result-item .result-content .result-title {
    color: white;
}

.search .search-component .search-results .search-result-item .result-content .result-type {
    background: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
}

.search .search-component .search-results .search-result-item .result-content .result-description {
    color: rgba(255, 255, 255, 0.7);
}

.search .search-component .search-no-results {
    color: rgba(255, 255, 255, 0.7);
}

.search-component{width:100%}.search-component .search-bar{position:relative}.search-component .search-bar .clear-search{position:absolute;right:60px;top:50%;transform:translateY(-50%);background:none;border:none;padding:8px;cursor:pointer;display:flex;align-items:center;justify-content:center;opacity:.6;transition:opacity .2s}.search-component .search-bar .clear-search:hover{opacity:1}.search-component .search-bar .clear-search img{width:16px;height:16px}.search-component .search-results{max-height:60vh;overflow-y:auto;margin-top:20px;padding:0 10px}.search-component .search-results .search-result-item{display:flex;gap:16px;padding:16px;margin-bottom:12px;background:#f8f8f8;border-radius:12px;text-decoration:none;color:inherit;transition:all .3s ease}.search-component .search-results .search-result-item:hover{background:#ececec;transform:translateX(5px)}.search-component .search-results .search-result-item .result-image{flex-shrink:0;width:100px;height:80px;border-radius:8px;overflow:hidden}.search-component .search-results .search-result-item .result-image img{width:100%;height:100%;object-fit:cover}.search-component .search-results .search-result-item .result-content{flex:1;display:flex;flex-direction:column;gap:4px}.search-component .search-results .search-result-item .result-content .result-title{font-size:18px;font-weight:500;margin:0;color:#1a1a1a}.search-component .search-results .search-result-item .result-content .result-type{display:inline-block;font-size:12px;color:#666;background:#e0e0e0;padding:2px 8px;border-radius:4px;width:fit-content;text-transform:capitalize}.search-component .search-results .search-result-item .result-content .result-description{font-size:14px;color:#666;margin:4px 0 0 0;line-height:1.4}.search-component .search-no-results{text-align:center;padding:40px 20px;color:#666}.search-component .search-no-results p{font-size:16px;margin:0}@media(max-width: 768px){.search-component .search-results .search-result-item{flex-direction:column}.search-component .search-results .search-result-item .result-image{width:100%;height:150px}}.rtl .search-component .search-bar .clear-search{right:auto;left:60px}.rtl .search-component .search-bar .search-icon{margin-right:0;margin-left:8px}.rtl .search-component .search-results .search-result-item:hover{transform:translateX(-5px)}
