@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;0,1000;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900;1,1000&display=swap');

/* Common styles */
* {
    font-family: 'Nunito', sans-serif;
}
h1, h2, h3, h4, h5, h6, p {
    margin-bottom: 0;
}
a {
    text-decoration: none;
}
.form-control:focus {
    border-color: var(--black)!important;
    outline: 0;
    box-shadow: none!important;
}

:root {
    --white: #ffffff;
    --black: #000000;
    --red: #d90d0e;
    --light_red: #ed1b24;
    --gray: #505050;
    --yellow: #fdd900;
}

.wrapper {
    width: 97%;
    margin: auto;
}
.min-wrapper {
    width: 85%;
    margin: auto;
}
.page-wrapper {
    width: 80%;
    margin: auto;
}
.checkout-wrapper {
    width: 50%;
    margin: auto;
}
.medium-wrapper {
    width: 80%;
    margin: auto;
}
.notification-box {
    padding-top: 30px;
}
.auth-wrapper {
    width: 35%;
    margin: auto;
}
.refresh-btn {
    background-color: var(--light_red);
    color: var(--white);
    border-radius: 0;
    transition: all 0.5s;
}
.refresh-btn:hover {
    background-color: var(--red);
    color: var(--white);
    transition: all 0.5s;
}
/* Common styles */


/* Navbar styles */
.navbar {
    background-color: var(--red);
    padding: 2px 0;
}
.navbar .navbar-brand {
    color: var(--white);
    font-size: 27px;
    font-weight: bold;
    margin-right: 25px;
}
.navbar .search {
    position: relative;
}
.navbar .search .submit {
    padding: 0;
    position: absolute;
    right: 10px;
    border: 0;
    background-color: initial;
    font-size: 17px;
    color: gray;
}
.navbar .form-control {
    border-radius: 4px;
    border: 2px solid #a9a9a9;
    font-size: 12px;
    width: 450px;
    height: 30px;
    border-radius: 0;
}
.navbar .nav-link {
    color: var(--white);
    font-size: 14px;
}
.navbar .location .btn {
    color: var(--white);
    border-color: var(--red);
}
.navbar .location .btn .city {
    margin-left: 5px;
}
.navbar .location .dropdown-item {
    font-size: 15px;
}
.navbar .location .dropdown-toggle::after {
    margin-left: 0.4em;
    vertical-align: 0.1em;
}
.navbar .my-account {
    font-size: 15px;
    color: var(--white);
    background-color: transparent;
    border: none;
}
.first-navbar .nav-item.my-account-btn {
    position: relative;
}
.navbar .account.dropdown-menu {
    border-radius: 0;
    min-width: 185px;
    background-color: #fff;
    box-shadow: 0px 8px 16px 0px rgb(0 0 0 / 20%);
    z-index: 9999;
    padding: 0;
    border: 0;
    left: -30%;
}
.navbar .account.dropdown-menu .auth {
    color: #505050;
    text-align: center;
    padding: 10px 0;
}
.navbar .account.dropdown-menu .auth .name {
    font-size: 16px;
    font-weight: 600;
}
.navbar .account.dropdown-menu .auth .number {
    font-size: 14px;
}
.navbar .account.dropdown-menu a {
    color: #505050;
    font-size: 15px;
    padding: 10px 15px;
    border-top: 1px solid #a1a1a1;
}
.navbar .account.dropdown-menu a:hover {
    background-color: #ff2424;
    color: var(--white);
}
.first-navbar .nav-item.my-cart-btn {
    margin-right: 40px;
    margin-left: 20px;
    position: relative;
}
.first-navbar .nav-item.my-cart-btn a {
    cursor: pointer;
}
.first-navbar .nav-item.my-cart-btn .cart-total {
    font-size: 14px;
    font-weight: 600;
    position: absolute;
    background-color: var(--yellow);
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    top: 0px;
    right: -15px;
}


.second-navbar .navbar-nav {
    flex-direction: row;
}
.second-navbar .navbar-nav .nav-item {
    margin-right: 15px;
}
.second-navbar .navbar-nav .mobile-auth-buttons {
    display: none;
}
.second-navbar .navbar-nav .main-dropdown {
    background-color: var(--yellow);
    cursor: pointer;
}
.second-navbar .navbar-nav .main-dropdown .bi-chevron-right::before {
    font-size: 14px;
    transition: all 0.5s;
}
.second-navbar .navbar-nav .nav-link {
    font-size: 13px;
    font-weight: 600;
    padding: 10px 12px;
    transition: all 0.5s;
}
.second-navbar .navbar-nav .nav-link:hover {
    background-color: var(--yellow);
    transition: all 0.5s;
}
.second-navbar .navbar-nav .main-dropdown:hover .bi-chevron-right::before  {
    transform: rotate(90deg);
    transition: all 0.5s;
}
.second-navbar .navbar-nav .dropdown-menu  {
    position: absolute;
    border-radius: 0;
    padding: 5px 10px;
    width: 85%;
}
.second-navbar .navbar-nav .dropdown-menu ul {
    list-style: none;
    padding-left: 0;
}
.second-navbar .navbar-nav .dropdown-menu ul a {
    font-size: 15px;
    color: #212529;
    padding: 10px 0;
    display: block;
    letter-spacing: 0.3px;
}
.second-navbar .navbar-nav .dropdown-menu ul a:hover {
    color: #16181b;
    text-decoration: none;
    background-color: #f8f9fa;
}
.second-navbar .navbar-nav .dropdown-menu ul a:last-child {
    margin-bottom: 0px;
}
.second-navbar .navbar-nav .dropdown-menu ul li .menu-image {
    width: 15%;
    height: 40px;
    object-fit: cover;
    margin-right: 8px;
}
/* Navbar styles */



/* Swiper styles */
.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 22px;
    font-weight: bold;
    color: gray;
}
/* Swiper styles */



/* Cart modal styles */
.cart-modal .modal-content {
    border-radius: 0;
    border: 0;
}
.cart-modal .modal-header {
    padding: 10px;
    background-color: #e5e5e5;
    border-radius: 0;
}
.cart-modal .modal-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--gray);
    text-align: center;
}
.cart-modal .btn-close:focus {
    box-shadow: none;
}
.cart-modal .modal-footer {
    background-color: var(--light_red);
    padding: 10px;
    justify-content: space-between;
    border-radius: 0;
}
.cart-modal .modal-footer .total-value {
    font-size: 15px;
    color: var(--white);
    margin: 0;
}
.cart-modal .modal-footer .buttons {
    margin: 0;
}
.cart-modal .modal-footer .buttons .btn {
    font-size: 14px;
    color: var(--white);
    border-radius: 0;
}
.cart-modal .modal-body .no-product {
    font-size: 23px;
    font-weight: 600;
    color: var(--red);
    text-align: center;
}
.cart-modal .modal-body .single-cart {
    padding: 5px;
    border-bottom: 1px solid #dbdbdb;
    position: relative;
}
.cart-modal .modal-body .single-cart .single-cart-image {
    width: 100%;
    height: 120px;
    object-fit: contain;
}
.cart-modal .modal-body .single-cart .title {
    color: var(--gray);
    font-weight: 700;
    font-size: 17px;
    display: flex;
    align-items: center;
}
.cart-modal .modal-body .single-cart .price {
    color: #565951;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 0px;
}
.cart-modal .modal-body .single-cart .price span {
    font-size: 13px;
    color: #8c9184;
    text-decoration: line-through;
}
.cart-modal .modal-body .single-cart .description {
    font-weight: 600;
    font-size: 12px;
    color: #8c9184;
}
.cart-modal .modal-body .single-cart .quantity-number-div {
    margin-top: 15px;
    display: flex;
    align-items: center;
}
.cart-modal .modal-body .single-cart .quantity-number-div .bi {
    font-size: 18px;
    color: var(--light_red);
    margin: 0 10px;
    position: relative;
    top: 3px;
    cursor: pointer;
}
.cart-modal .modal-body .single-cart .quantity-number-div .number {
    font-size: 18px;
    color: var(--light_red);
    position: relative;
    top: 2px;
    border: 0;
    width: 25px;
    padding: 0;
    text-align: center;
    background-color: transparent;
}
.cart-modal .modal-body .single-cart .quantity-number-div .btn {
    padding: 0;
}
.cart-modal .modal-body .single-cart .quantity-number-div .number:focus-visible {
    outline: none!important;
}
.cart-modal .single-cart .delete-cart-product {
    position: absolute;
    right: 1%;
    top: 4%;
    cursor: pointer;
}
/* Cart modal styles */



/* Mini shop styles */
.mini-shop .mini-shop-swiper {
    padding: 20px 10px 25px 10px;
}
.mini-shop .row {
    padding-bottom: 35px;
}
.mini-shop .top-row {
    position: relative;
    align-items: center;
    display: flex;
    justify-content: center;
}
.mini-shop .shop-title {
    font-size: 26px;
    color: var(--gray);
    font-weight: 600;
    text-align: center;
}
.mini-shop .view-more {
    font-size: 15px;
    color: var(--red);
    position: absolute;
    right: 2%;
    top: 4px;
    font-weight: 600;
    transition: all 0.5s;
}
.mini-shop .view-more:hover {
    color: var(--light_red);
    text-decoration: underline;
    transition: all 0.5s;
}
/* Mini shop styles */



/* Single product styles */
.single-product {
    height: 300px;
    border: 1px solid #eee;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 1px 3px #777;
    transition: all 0.5s;
    position: relative;
}
.single-product:hover {
    border: 1px solid #ccc;
    box-shadow: 0 5px 8px #777;
    transition: all 0.5s;
}
.single-product .off-box {
    position: absolute;
    background-color: #e83737;
    font-size: 10px;
    color: var(--white);
    padding: 5px;
    border: 1px solid var(--black);
    border-radius: 10px;
}
.single-product .single-product-image {
    /* width: 40%; */
    height: 130px;
    object-fit: cover;
    display: flex;
    margin: 5px auto auto auto;
}
.single-product .title {
    color: var(--gray);
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
}
.single-product .single-product-veg-image {
    padding-right: 8px;
}
.single-product .card-body {
    padding: 30px 5px 20px 5px;
}
.single-product .price {
    color: #565951;
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 0px;
}
.single-product .price span {
    font-size: 14px;
    color: #8c9184;
    text-decoration: line-through;
}
.single-product .description {
    font-weight: 700;
    font-size: 14px;
    color: #8c9184;
}
.single-product .price-div {
    width: 75%;
}
.single-product .add-div {
    width: 25%;
}
.single-product .add-btn {
    background-color: var(--light_red);
    color: #fff;
    /* width: 75px; */
    width: 100%;
    height: 35px;
    display: flex;
    justify-content: center;
    border-radius: 4px;
    transition: all 0.5s;
    margin-left: auto;
}
.single-product .auth-add-btn {
    background-color: var(--light_red);
    color: #fff;
    width: 75px;
    height: 35px;
    display: flex;
    justify-content: center;
    border-radius: 4px;
    transition: all 0.5s;
    margin-left: auto;
}
.single-product .add-btn:hover {
    background-color: var(--yellow);
    color: var(--black);
    transition: all 0.5s;
}
.single-product .auth-add-btn:hover {
    background-color: var(--yellow);
    color: var(--black);
    transition: all 0.5s;
}
.single-product .login-btn-div .single-product-link {
    width: 75%;
}
.single-product .login-btn-div .single-product-link .price-div {
    width: 100%;
}

.single-product .quantity-number-div {
    display: flex;
    align-items: center;
}
.single-product .quantity-number-div .bi {
    font-size: 20px;
    color: var(--light_red);
    margin: 0 10px;
    position: relative;
    top: 3px;
    cursor: pointer;
}
.single-product .quantity-number-div .number {
    font-size: 20px;
    color: var(--light_red);
    position: relative;
    top: 2px;
    border: 0;
    width: 25px;
    padding: 0;
    text-align: center;
    background-color: transparent;
}
.single-product .quantity-number-div .btn {
    padding: 0;
}
.single-product .quantity-number-div .number:focus-visible {
    outline: none!important;
}
/* Single product styles */


/* Footer styles */
.footer {
    padding: 15px 0 0 0;
    background-color: #f5f5f5;
}
.footer .top-row {
    padding: 20px 30px;
    border-top: 1px solid #dadada;
    text-align: center;
}
.footer .top-row p {
    font-size: 15px;
    color: #212529;
}
.footer .middle-row {
    padding: 25px 0;
    border-top: 1px solid #dadada;
    border-bottom: 1px solid #dadada;
}
.footer .middle-row .content {
    padding: 0 20px;
}
.footer .middle-row .title {
    font-size: 16px;
    color: #505050;
    font-weight: bold;
    padding-bottom: 4px;
}
.footer .middle-row .description {
    font-size: 15px;
    color: #212529;
}

.footer .bottom-row {
    border-bottom: 1px solid #dadada;
}
.footer .bottom-row .main-column {
    padding: 25px 0 15px 0;
}
.footer .bottom-row .column-1 {
    width: 45%;
    display: flex;
    border-right: 1px solid #dadada;
}
.footer .bottom-row .column-1 .column {
    width: 33.33%;
}
.footer .bottom-row .other-column {
    padding-top: 30px;
}
.footer .bottom-row .column .title {
    font-size: 18px;
    color: #505050;
    font-weight: 700;
    padding-bottom: 10px;
}
.footer .bottom-row .column ul {
    list-style-type: none;
    padding-left: 0;
}
.footer .bottom-row .column ul li {
    padding-bottom: 5px;
}
.footer .bottom-row .column ul a {
    font-size: 15px;
    color: #505050;
}
.footer .bottom-row .column ul a:hover {
    text-decoration: underline;
}
.footer .bottom-row .column ul a.active {
    text-decoration: underline;
}
.footer .bottom-row .column-2 {
    width: 30%;
    display: flex;
    border-right: 1px solid #dadada;
    padding-left: 20px;
}
.footer .bottom-row .column-2 .column {
    width: 50%;
}
.footer .bottom-row .column .payment-method {
    padding-bottom: 5px;
}
.footer .bottom-row .column-3 {
    width: 25%;
}
.footer .bottom-row .column-3 .download-column {
    border-bottom: 1px solid #dadada;
    padding-bottom: 25px;
}
.footer .bottom-row .column-3 .column {
    width: 100%;
    padding-left: 20px;
}
.footer .bottom-row .column-3 .footer-app-image {
    margin-right: 20px;
}
.footer .bottom-row .column-3 .social-links a {
    font-size: 28px;
    color: #c2c2c2;
    margin-right: 15px;
    transition: all 0.5s;
}
.footer .bottom-row .column-3 .social-links a:hover {
    color: var(--light_red);
    transition: all 0.5s;
}
.footer .copyright-row .copy {
    font-size: 15px;
    color: #707070;
    padding: 10px 0px;
    text-align: center;
}
/* Footer styles */



/* Address modal styles */
.address-modal .single-form-input {
    margin-bottom: 10px;
}
.address-modal .single-form-input .form-label {
    font-size: 13px;
    margin-bottom: 0px;
}
.address-modal .single-form-input .form-control {
    border-radius: 0;
    font-size: 14px;
}
.address-modal .modal-content {
    border-radius: 0;
}
.address-modal .modal-header .modal-title {
    font-size: 17px;
    color: var(--gray);
    font-weight: 600;
}
.address-modal .modal-footer .btn-save {
    font-size: 16px;
    color: var(--white);
    background-color: var(--light_red);
    border-radius: 0;
    transition: all 0.5s;
    width: 100px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.address-modal .modal-footer .btn-save:hover {
    background-color: var(--red);
    transition: all 0.5s;
}
/* Address modal styles */




/* Responsive */
@media screen and (max-width: 1920px) {
}

@media screen and (max-width: 1900px) {
}

@media screen and (max-width: 1850px) {
}

@media screen and (max-width: 1800px) {
}

@media screen and (max-width: 1750px) {
}

@media screen and (max-width: 1680px) {
}

@media screen and (max-width: 1600px) {
}

@media screen and (max-width: 1536px) {
}

@media screen and (max-width: 1440px) {
    .footer .bottom-row .column-3 .footer-app-image {
        margin-right: 0px;
    }
}

@media screen and (max-width: 1366px) {
}

@media screen and (max-width: 1360px) {
}

@media screen and (max-width: 1280px) {
    .second-navbar .navbar-nav .dropdown-menu ul a {
        font-size: 14px;
    }

    .footer .bottom-row .column-3 .footer-app-image {
        height: 40px;
    }
}

@media screen and (max-width: 1024px) {
    .first-navbar .nav-item.nav-image {
        display: none;
    }
    .navbar .nav-link {
        font-size: 13px;
    }
    .second-navbar .navbar-nav .nav-item {
        margin-right: 5px;
    }
    .second-navbar .navbar-nav .nav-link {
        font-size: 11px;
    }
    .second-navbar .navbar-nav .dropdown-menu {
        width: 95%;
    }
    .second-navbar .navbar-nav .dropdown-menu ul a {
        font-size: 12px;
    }
    .footer .top-row p {
        font-size: 14px;
    }
    .footer .middle-row .title {
        font-size: 14px;
        padding-bottom: 0px;
    }
    .footer .middle-row .description {
        font-size: 12px;
    }
    .footer .bottom-row .column .title {
        font-size: 13px;
        padding-bottom: 2px;
    }
    .footer .bottom-row .column ul a {
        font-size: 13px;
    }
    .footer .bottom-row .column ul li {
        padding-bottom: 3px;
    }
    .footer .bottom-row .other-column {
        padding-top: 18px;
    }
    .footer .copyright-row .copy {
        font-size: 12px;
        padding: 5px 0px;
    }
    .footer .bottom-row .column-3 .footer-app-image {
        height: 25px;
    }

    .min-wrapper {
        width: 95%;
    }
    .auth-wrapper {
        width: 50%;
    }
    .medium-wrapper {
        width: 95%;
    }

    .mini-shop .row {
        padding-bottom: 10px;
    }
    .mini-shop .shop-title {
        font-size: 22px;
    }
    .mini-shop .view-more {
        font-size: 14px;
        top: 1px;
    }

    .cart-modal .modal-title {
        font-size: 16px;
    }
}

@media screen and (max-width: 992px) {
    .second-navbar .navbar-nav .dropdown-menu {
        width: 97%;
    }
}

@media screen and (max-width: 844px) {
    .navbar .navbar-brand {
        font-size: 25px;
        margin-right: 0;
    }
    .navbar-toggler {
        border: 0;
    }
    .navbar-toggler:focus {
        box-shadow: none;
    }
    .second-navbar .navbar-nav {
        flex-direction: column;
        text-align: center;
    }
    .second-navbar .navbar-nav .nav-link {
        font-size: 13px;
    }
    .second-navbar .navbar-nav .dropdown-menu {
        width: 96.5%;
    }
    .second-navbar .navbar-nav .dropdown-menu ul a {
        font-size: 17px;
        padding: 5px 0;
    }
    .second-navbar .navbar-nav .dropdown-menu ul li .menu-image {
        height: 60px;
    }
    .second-navbar .navbar-nav .mobile-auth-buttons {
        display: block;
    }
    .second-navbar .navbar-nav .mobile-auth-buttons a {
        font-size: 13px;
        color: var(--bs-nav-link-color);
        font-weight: 600;
    }
    .second-navbar .navbar-nav .mobile-auth-buttons .dropdown-menu a {
        padding: 5px 0;
    }
    .auth-wrapper {
        width: 65%;
    }
    .mobile-auth-buttons .dropdown-menu {
        width: initial!important;
        left: -15px!important;
    }
    .single-product .auth-d-flex {
        justify-content: space-between;
    }
    .single-product .auth-add-btn {
        width: 40px;
        font-size: 13px;
        align-items: center;
    }

    .checkout-wrapper {
        width: 75%;
    }
}

@media screen and (max-width: 768px) {
    .second-navbar .navbar-nav .dropdown-menu {
        width: 96%;
    }
    .footer .bottom-row .column-3 .social-links a {
        font-size: 20px;
        margin-right: 10px;
    }

    .single-product .auth-add-btn {
        width: 75px;
        font-size: 15px;
        align-items: center;
    }

    .page-wrapper {
        width: 95%;
    }
}

@media screen and (max-width: 650px) {
    .navbar .form-control {
        width: 350px;
    }
    .footer .middle-row {
        padding: 10px 0;
    }
    .footer .bottom-row .main-column {
        padding: 15px 0 0px 0;
    }
    .footer .bottom-row .column-1 {
        width: 100%;
        border-right: 0;
        border-bottom: 1px solid #dadada;
    }
    .footer .bottom-row .column-2 {
        width: 50%;
    }
    .footer .bottom-row .column-3 {
        width: 50%;
    }
}

@media screen and (max-width: 428px) {
    .navbar .navbar-brand {
        font-size: 22px;
        width: 100%;
        text-align: center;
    }
    .navbar .form-control {
        width: 300px;
    }
    .second-navbar .navbar-nav .dropdown-menu {
        width: 93%;
    }
    .page-wrapper {
        width: 95%;
    }
    .footer .top-row {
        padding: 10px 0px;
    }
    .footer .bottom-row .column-1 ul {
        margin-bottom: 0;
    }
    .footer .bottom-row .column-1 {
        width: 100%;
        flex-wrap: wrap;
    }
    .footer .bottom-row .column-1 .column {
        width: 50%;
    }
    .footer .bottom-row .column-1 .other-column:last-child {
        padding-top: 0px;
    }
    .footer .bottom-row .column .title {
        font-size: 15px;
        padding-bottom: 5px;
    }
    .footer .bottom-row .main-column {
        padding: 15px 0 5px 0;
    }
    .footer .bottom-row .column-2 {
        width: 100%;
    }
    .footer .bottom-row .column-3 {
        width: 100%;
    }
    .footer .bottom-row .column-3 .column {
        padding-left: 0px;
        padding-bottom: 15px;
    }
    .footer .bottom-row .column-3 .footer-app-image {
        height: 50px;
        margin-right: 10px;
    }
    .footer .bottom-row .column-3 .social-links a {
        font-size: 30px;
        margin-right: 15px;
    }

    .mini-shop .shop-title {
        font-size: 20px;
    }
    .mini-shop .mini-shop-swiper {
        padding: 10px 10px 20px 10px;
    }

    .auth-wrapper {
        width: 95%;
    }

    .cart-modal .modal-body .single-cart .title {
        font-size: 15px;
    }
    .cart-modal .modal-footer {
        flex-direction: column;
    }
    .cart-modal .modal-footer .total-value {
        padding-bottom: 10px;
    }

    .checkout-wrapper {
        width: 95%;
    }
}

@media screen and (max-width: 414px) {
}

@media screen and (max-width: 395px) {
}

@media screen and (max-width: 376px) {
    .navbar .form-control {
        width: 275px;
    }
    .footer .bottom-row .column-3 .social-links a {
        font-size: 25px;
    }
    .footer .bottom-row .column-3 .footer-app-image {
        height: 35px;
    }
}

@media screen and (max-width: 360px) {
    .second-navbar .navbar-nav .dropdown-menu {
        width: 92%;
    }
}

@media screen and (max-width: 320px) {
    .navbar .form-control {
        width: 225px;
    }
    .second-navbar .navbar-nav .dropdown-menu {
        width: 91%;
    }
    .second-navbar .navbar-nav .dropdown-menu ul a {
        font-size: 14px;
    }
    .second-navbar .navbar-nav .dropdown-menu ul li .menu-image {
        height: 40px;
    }

    .single-product {
        height: 265px;
    }
    .single-product .title {
        font-size: 14px;
        margin-bottom: 15px;
    }
    .single-product .price {
        font-size: 14px;
    }
    .single-product .description {
        font-size: 11px;
    }
    .single-product .add-btn {
        height: 30px;
        font-size: 13px;
    }
    .single-product .auth-add-btn {
        width: 50px;
        height: 30px;
        font-size: 13px;
    }

    .mini-shop .shop-title {
        font-size: 18px;
    }
    .mini-shop .view-more {
        font-size: 12px;
    }
}
/* Responsive */