
body {
    background-color: #292929;
}

h1,
h2,
h3,
h4,
h5 {
    font-weight: bold;
    font-family: 'General Sans', sans-serif;
}


h1 {
    font-weight: bold;
    font-size: 40px;
}

h2 {
    font-weight: 500;
    font-size: 32px;
}

h3 {
    font-weight: 500;
    font-size: 28;
}

h4 {
    font-weight: 500;
    font-size: 24;
}

h5 {
    font-weight: normal;
    font-size: 20;
}

.para--1 {
    font-family: 'Switzer', sans-serif;
    font-size: 20px;
}

.para--2 {
    font-family: 'Switzer', sans-serif;
    font-size: 16px;
}

.logo-image {
    height: 90px;
    user-select: none;
    cursor: pointer;
}

nav a {
    color: white;
    text-decoration: none;
    font-family: 'General Sans', sans-serif;
    font-size: 20px;
    font-weight: bold;
    transition: 0.25s ease-out;
}

nav a:hover {
    color: #AD2023;
}

nav a.active {
    color: #AD2023;
}


.login-button {
    background-color: #AD2023;
    padding: 5px 25px 5px;
    border: none;
    color: white;
    font-family: 'General Sans', sans-serif;
    font-size: 20px;
    border-radius: 8px;
}

.portal-button {
    position: relative;
    user-select: none;
    display: inline-block;
    overflow: hidden;
    background-color: #AD2023;
    padding: 5px 25px;
    border: none;
    color: white;
    font-family: 'Mulish', sans-serif;
    font-size: 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: color 0.4s ease-in-out;
}

/* Create the hover effect using ::before */
.portal-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #F7A291;
    transition: left 0.4s ease-in-out;
    border-radius: 8px;
    z-index: 0;
}

/* Move the background color from left to right on hover */
.portal-button:hover::before {
    left: 0;
}

/* Ensure text stays above the effect */
.portal-button span {
    position: relative;
    z-index: 1;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -250px;
    width: 250px;
    height: 100%;
    background: #fff;
    box-shadow: -2px 0px 5px rgba(0, 0, 0, 0.2);
    transition: right 0.3s ease-in-out;
    z-index: 1000;
}

.menu-content {
    padding: 20px;
}

.mobile-nav a {
    display: block;
    padding: 10px;
    text-decoration: none;
    color: #333;
    border-bottom: 1px solid #ddd;
}

.mobile-nav a.active {
    font-weight: bold;
    color: #007bff;
}

.close-btn {
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
    display: block;
    text-align: right;
    width: 100%;
}

.burger-menu {
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
}

.outline-button {
    padding: 10px 24px 10px;
    color: #CE321C;
    font-family: 'General Sans', sans-serif;
    font-size: 20px;
    background-color: transparent;
    border: solid 1px #CE321C;
    border-radius: 4px;
    transition: 0.25s ease-out;
}

.outline-button:hover {
    color: white;
    background-color: #CE321C;
}

.style-button {
    padding: 10px 24px 10px;
    font-family: 'General Sans', sans-serif;
    font-size: 20px;
    color: white;
    background-color: #AD2023;
    border-radius: 4px;
    transition: 0.25s ease-out;
    border: solid 1px #AD2023;
}

.cart-panel {
    position: fixed;
    top: 25px;
    right: -350px; /* Hidden by default */
    width: 350px;
    background-color: white;
    transition: right 0.3s ease;
    z-index: 1050; /* Above everything */
    border-top-left-radius: 16px;
    border-bottom-left-radius: 16px;
    overflow-y: auto;
  }
  
  .cart-panel.active {
    right: 0;
  }
  
  
.user_zone_block{
    height: 37px;
    line-height: 37px;
    margin: 17px 0 17px;
}
.user_zone_block .text{
    font-size: 14px;
    font-weight: 500;
    margin: 0;
    height: 38px;
    line-height: 38px;
    background-color: #353530;
    padding-left: 15px;
    padding-right: 30px;
    color: #b9b5aa;
}
.user_zone_block .icon{
    font-size: 15px;
    height: 38px;
    width: 41px;
    line-height: 40px;
    text-align: center;
    background-color: #AD2023;
    color:white
}



.deliverylocation_popup_wrap {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0,0,0);
    background-color: rgba(0, 0, 0, 0.8);
    opacity: 0;
    z-index: 111;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all ease .1s;
    -ms-transition: all ease .1s;
    transition: all ease .1s;
    -webkit-box-shadow: 0 3px 5px rgba(0,0,0,.1);
    -ms-box-shadow: 0 3px 5px rgba(0,0,0,.1);
    box-shadow: 0 3px 5px rgba(0,0,0,.1);
}

.deliverylocation_popup_wrap.st-show {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}
.deliverylocation_content {
    /* border-top: solid 5px #ffb902; */
    position: absolute;
    right: 30px;
    left: 30px;
    bottom: 0;
    top: 0;
    margin: auto;
    max-height: 465px;
    max-width: 701px;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    vertical-align: middle;
}


/* Default states */
.fadeIn,
.fadeLeft,
.fadeRight {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

/* Final animation states */
.fade-in-animate {
    opacity: 1;
    transform: translateY(0);
}

.fadeLeft {
    transform: translateX(-30px);
}

.fade-left-animate {
    opacity: 1;
    transform: translateX(0);
}

.fadeRight {
    transform: translateX(30px);
}

.fade-right-animate {
    opacity: 1;
    transform: translateX(0);
}