/*==============
== Header Start
===============*/

 /* Header */
 header{
    font-family: var(--font-gotham); 
    font-weight: 200;
 }
 #ei-header, #ei-header-other {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    background: var(--white);
    transition: all 0.3s ease-in-out;
}
#ei-header .ei-container, #ei-header-other .ei-container{
    overflow-x: hidden !important;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
}
/* Sticky Header on Scroll */
#ei-header.sticky, #ei-header-other {
    background: var(--white);
    /* box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(15px); */
}
.ei-header-notice{
    background: transparent;
}
.logo a img {
    max-width: 74px;
    border-radius: 4px;
    margin-top: 5px;
}
.logo.outlast-logo a img {
    width: 50px;
}
.since-logo ul li a {
    text-decoration: none;
    text-transform: uppercase;
    color: #222222;
}
.since-logo ul li a:hover{text-decoration: underline;}

header ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 0;
}
/* Navigation */
/* .ei-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
} */

.ei-nav ul li {
    margin: 0 15px;
}

.ei-nav ul li a {
    text-decoration: none;
    color: black;
    font-size: 14px;
    transition: color 0.3s ease;
    text-transform: uppercase;
}
.ei-nav ul li a:hover{color: var(--iron);}
.menu-toggle svg {
    color: white;
}

.sticky .ei-nav ul li a {
    color: black;
}
ul.ei-store-child li{
    font-family: var(--font-times-new-roman); 
    font-style: italic;
}
ul.ei-store-child > li >a {
    font-size: 20px;
}

ul.ei-store-child {
    margin-left: 0;
    list-style-type: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

ul.ei-store-grand-child > li > a {
    font-size: 16px;
}

ul.ei-store-grand-child {
    list-style: none;
    margin-left: 0;
}

.logo.outlast-logo {
    padding-left: 20px;
}
/* Hero Section */
.ei-hero {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
}



.ei-hero-content {
    padding: 20px;
    position: absolute;
    z-index: 2;
    color: white;
    text-align: center;
    bottom: 10%;
    left: 50%;
    transform: translate(-50%, -10%);
    background: rgba(0, 0, 0, .3);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(15px);
    width: 800px;
    border-radius: 5px;
    text-align: left;
}
.ei-hero-buttons {
    display: flex;
    justify-content: space-between;
}
.ei-cataloque-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.ei-cataloque-pill-wrap{
    margin-top: 30px;
}
.ei-cataloque-links a{
    color: var(--white);
    text-decoration: none;
    background-color: var(--brown);
    font-size: 12px !important;
    padding: 5px;
    border-radius: 5px;
}
.ei-cataloque-links a:hover{
    text-decoration: underline;
}
/* Content Section */
.ei-content {
    padding: 100px 20px;
    text-align: center;
}

.ei-header-notice{
    padding: 10px 0;
}
.menu-container {
  position: fixed;
  top: 0;
  right: -310px; /* hide off-screen */
  width: 310px;
  height: 100vh;
  background: #fbfbfb;
  overflow-y: auto;
  transition: right 0.4s ease, box-shadow 0.3s ease;
}

.menu-container.open {
  right: 0; /* slide in */
  box-shadow: 0 0 15px rgba(0,0,0,0.2);
}

.search-container {
    position: absolute;
    top: 0;
    right: 0;
    width: 310px;
    background: #fbfbfb;
    overflow-y: auto;
    margin-right: -9999px;
    transition: margin-left 0.4s ease, box-shadow 0.3s 
ease;
}
.search-close {
    color: white;
}
.menu-search {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 8px 12px;
    border-radius: 8px;
    margin: 70px auto 20px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
    max-width: 100%;
}

.menu-search input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-size: 15px;
    color: #000;
    font-weight: 200;
}

.menu-search button {
    background: none;
    border: none;
    cursor: pointer;
    color: #555;
    font-size: 16px;
    transition: color 0.2s ease;
}

.menu-search button:hover {
    color: #000;
}
.search-close {
    top: 20px;
    color: white;
    position: absolute;
    right: 0;
    cursor: pointer;
}

.search-container.opened {
    position: fixed;
    margin-right: 0;
    right: 0;
    height: 100vh;
    width: 100%;
    background: #00000085;
}

p.ei-cataloque-pill {
    background: rgb(0, 0, 0);
    font-style: normal;
    padding: 0px 5px;
    border-radius: 5px;
    font-size: 14px !important;
    width: fit-content;
    text-align: left;
    font-family: var(--font-gotham) !important;
}


.menu-content {
    color: white;
    padding: 20px;
}

.menu-icon{
    display: flex;
    align-items: center;
    gap: 30px;
    margin-left: 20px;
}
.menu-toggle, .menu-close, .search-toggle {
    font-size: 14px;
    color: var(--white);
    border: none;
    padding: 10px;
    cursor: pointer;
    background: transparent;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 200;
}
.menu-toggle{padding: 0; display: none;}

.search-toggle {
    color: white;
    padding: 0;
}
/* .menu-close {
    position: absolute;
    right: 35px;
    top: 35px;
    color: var(--black);
} */
 .mobile-search {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}
/* .menu-toggle{
    background-color: var(--black);
    border: 1px solid var(--black);
    border-radius: 5px;
    min-width: 74px;
} */
.menu-close{
    background-color: transparent;
    border: none;
}

.header-social-items {
    display: flex;
    list-style-type: none;
    margin-left: 0;
    padding-left: 0;
    gap: 15px;
    margin-top: 30px;
}
.header-social-items svg{
    width: 30px;
}
.ei-menu-items {
    margin-top: 70px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ei-menu-items a {
    color: var(--black);
    text-decoration: none;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 200;
}
.ei-menu-items a:hover{color: var(--iron);}
.ei-hero-content .ei-title {
    font-size: 26px;
}
.ms-form {
    display: flex;
    align-items: center;
    gap: 10px;
}
.ms-form input {
    padding: 8px;
}
.ms-form input::placeholder {
    font-size: 14px;
    text-align: center;
}
.ms-form input:focus {
    outline: none;
}
.menu-search .ms-form{width: 100%; justify-content: space-between;}
.menu-search .ms-form input::placeholder{text-align: center;}
.ei-hero-buttons .ei-button {
    width: 200px;
    text-decoration: none;
    color: var(--white);
}
.ei-hero-buttons .ei-button:visited{
    color: var(--white);
}
.ei-after-hero-banner{
    width: 100%;
    object-fit: cover;
}



ul.ei-store-grandchild {
    margin-left: 0;
    list-style: none;
    padding-left: 15px;
}

ul.ei-store-grandchild li a img {
    width: 30px;
}

ul.ei-store-grandchild li a {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
    font-size: 14px;
    font-style: normal;
}

.ei-store-inner-header a {
    font-size: 14px;
    font-style: normal;
    border: 1px solid #fff;
    padding: 5px;
    border-radius: 3px;
}

.ei-store-inner-header {
    font-style: normal;
}

.ei-store-inner-header p {
    font-style: normal;
    font-size: 14px !important;
}
a.ei-has-grandchild::after, .ei-store-inner-header h3::before, .ei-has-arrow::after {
    content: "";
    background-image: url(../assets/icons/angle-right.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    display: inline-block;
    height: 25px;
    width: 25px;
    vertical-align: middle;
    position: absolute;
    right: 15px;
    margin-top: -2px;
}

.ei-store-grandchild {
    position: absolute;
    left: 100%;
    width: 100%;
    margin-top: -30px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 99;
}

.ei-store-grandchild.active {
    left: 10px;
    opacity: 1;
    visibility: visible;
    background: #4f4c4c;
}
.ei-store-inner-header h3::before{
    transform: rotate(180deg);
    right: 50px;
}


/*==============
== Header End
===============*/
