/* Extract of Beta Header and Hero text CSS */
.beta-navbar {
    position: absolute;
    top: 0;
    width: 100%;
    height: 80px;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    color: white;
    z-index: 1000;
    background-color: transparent;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.beta-navbar.scrolled,
.beta-navbar.dark-nav {
    position: fixed !important;
    height: 70px !important;
    padding: 0 20px !important;
    background-color: #fff !important;
    color: #111 !important;
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.08) !important;
    top: 0 !important;
}

.beta-navbar.scrolled .nav-right .nav-icon-item i,
.beta-navbar.scrolled .nav-right .nav-cart i,
.beta-navbar.scrolled .nav-left i,
.beta-navbar.scrolled .hamburger-menu,
.beta-navbar.scrolled .nav-right button {
    color: #000 !important;
}

.beta-navbar.scrolled .logo img,
.beta-navbar.dark-nav .logo img {
    filter: invert(1);
}

.nav-left {
    justify-self: start;
    display: flex;
    gap: 25px;
    font-size: 20px;
}

.nav-left i,
.hamburger-menu {
    cursor: pointer;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.hamburger-menu {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 22px;
    padding: 5px 0;
}

.hamburger-menu span {
    display: block;
    height: 1.5px;
    background-color: currentColor;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hamburger-menu span:first-child {
    width: 100%;
}

.hamburger-menu span:last-child {
    width: 14px;
}

.hamburger-menu:hover span:last-child {
    width: 100%;
}

.beta-navbar.scrolled .hamburger-menu,
.beta-navbar.dark-nav .hamburger-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.nav-center {
    justify-self: center;
}

.logo img {
    height: 20px;
}

.nav-right {
    justify-self: end;
    display: flex;
    gap: 15px;
    font-size: 20px;
    cursor: pointer;
}

.bookmark-btn a,
.nav-right a {
    /*color: inherit;*/
    /* changed from #000 to inherit */
    text-decoration: none;
}

.hero {
    height: 100vh;
    height: 100dvh;
    width: 100%;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.15);
    z-index: 1;
}

.hero-blur {
    position: absolute;
    inset: 0;
    z-index: 2;
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    background: rgba(0, 0, 0, 0);
    transition: backdrop-filter 0.6s ease, background 0.6s ease;
}

.hero:hover .hero-blur {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    background: rgba(0, 0, 0, 0.38);
}

.hero>a {
    position: absolute;
    inset: 0;
    z-index: 15;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.92);
    color: white;
    font-size: 25px;
    font-weight: 400;
    z-index: 10;
    opacity: 0;
    text-align: center;
    white-space: nowrap;
    letter-spacing: -1px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
    transition: opacity 0.5s cubic-bezier(0.165, 0.84, 0.44, 1),
        transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    pointer-events: none;

}

.hero:hover .section-title {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.scrolled-active .first-hero .section-title {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
}

.first-hero {
    background-color: #000;
    z-index: 90;
}

.hero-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.second-hero {
    background-image: url("../beta/assets/images/img02.avif");
    z-index: 20;
    cursor: pointer;
}

.third-hero {
    background-image: url("../beta/assets/images/img03.avif");
    z-index: 25;
    cursor: pointer;
}

.fourth-hero {
    background-image: url("../beta/assets/images/img04.avif");
    z-index: 30;
    cursor: pointer;

}

.fifth-hero {
    background-image: url("../beta/assets/images/img05.avif");
    z-index: 35;
    cursor: pointer;
}

.hero-scroll-track {
    height: 180vh;
    height: 180dvh;
    position: relative;
    background-color: #000;
}

.sticky-hero {
    position: sticky;
    top: 0;
    height: 100vh;
    height: 100dvh;
    width: 100%;
    overflow: hidden;
}

.hero-categories-container {
    position: absolute;
    top: calc(100dvh - 140px);
    left: 60px;
    z-index: 100;
    width: auto;
}

.hero-categories {
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform 0.25s cubic-bezier(0.2, 1, 0.3, 1);
    will-change: transform;
}

.hero-categories a {
    color: white;
    text-decoration: none;
    font-size: clamp(30px, 2.1vw, 35px);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -1.5px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease, color 0.3s ease;
    white-space: nowrap;
    display: block;
}

.hero-categories a.visible {
    opacity: 1;
    transform: translateX(-20px) translateY(0);
}

.hero-categories a.active {
    opacity: 1;
    color: #fff;
    transform: translateY(0);
}

.hero-categories a:hover {
    opacity: 1;
    color: #fff;
}

.sidebar {
    position: fixed;
    top: 0;
    left: -380px;
    width: 380px;
    height: 100vh;
    height: 100dvh;
    background: white;
    z-index: 1010;
    transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    padding: 25px 25px;
    display: flex;
    flex-direction: column;
}

.sidebar.active {
    transform: translateX(380px);
}

/* .sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    font-size: 20px;
} */

.sidebar-header i {
    cursor: pointer;
}

.close-menu {
    width: 22px;
    height: 20px;
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-menu span {
    position: absolute;
    display: block;
    width: 22px;
    height: 1.5px;
    background-color: #111;
    transition: all 0.3s ease;
}

.close-menu span:first-child {
    transform: rotate(45deg);
}

.close-menu span:last-child {
    transform: rotate(-45deg);
}

.close-menu:hover span {
    opacity: 0.6;
}

.sidebar-menu {
    list-style: none;
    margin-bottom: 40px;
}

.sidebar-menu li {
    margin-bottom: 20px;
}

.sidebar-menu li a {
    text-decoration: none;
    color: #000;
    font-size: 15px;
    font-weight: 400;
    transition: opacity 0.3s ease;
}

.sidebar-menu li a:hover {
    opacity: 0.6;
}

.search-overlay {
    position: fixed;
    top: 0;
    left: -380px;
    width: 380px;
    height: 100vh;
    height: 100dvh;
    background: white;
    z-index: 1009;
    transition: left 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    padding: 25px 40px;
    display: flex;
    flex-direction: column;
    border-right: 1px solid #f0f0f0;
}

.search-overlay.active {
    left: 0;
    z-index: 1020;
}

.search-overlay.active.side-by-side {
    left: 380px;
    z-index: 1009;
    border-left: 1px solid #f0f0f0;
    box-shadow: 10px 0 30px rgba(0, 0, 0, 0.05);
}

.search-header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 40px;
}

.search-content {
    width: 100%;
}

.search-title {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #111;
    letter-spacing: -0.5px;
}

.search-field {
    width: 100%;
    margin-bottom: 30px;
}

.search-field input {
    width: 100%;
    padding: 18px 25px;
    font-size: 16px;
    border: 1px solid #e0e0e0;
    border-radius: 3px;
    outline: none;
    font-weight: 400;
    color: #111;
    transition: all 0.3s ease;
}

.search-field input:focus {
    border-color: #111;
    background-color: #fafafa;
}

.search-field input::placeholder {
    color: #aaa;
}

.popular-searches {
    margin-top: 50px;
}

.popular-searches h3 {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
    color: #333;
    margin-bottom: 25px;
}

.popular-searches ul {
    list-style: none;
    padding-left: 0;
}

.popular-searches li {
    margin-bottom: 12px;
}

.popular-searches li a {
    text-decoration: none;
    color: #111;
    font-size: 19px;
    font-weight: 400;
    transition: color 0.3s ease;
    letter-spacing: -0.2px;
}

.popular-searches li a:hover {
    color: #767676;
}

.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1005;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}