

/*     Variable    */
:root {
    --primary-color: rgba(255, 150, 46, 1);
    --primary-light: rgba(255, 252, 247, 1);
    --dark-color: rgba(45, 45, 45, 1);
    --white-color: rgb(255, 255, 255);
    --gray-color: rgba(136, 136, 136, 1);
}
/* Variable */

/* Reset the default */
html {
    scroll-behavior: smooth;
}

*,
*::before,
*::after {
    box-sizing: border-box !important;
    text-decoration: none !important;
}

a {
    color: var(--dark-color);
    text-decoration: none !important;
}

a * {
    color: inherit;
}

a:hover {
    color: inherit;
}

body {
    font-family: "Nunito", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: var(--dark-color);
    background-color: var(--white-color);
    height: 100vh;
    display: flex;
    flex-direction: column;
    scroll-behavior: smooth;
}

footer {
    margin-top: auto;
}


p {
    margin-bottom: 0 !important;
}

input:focus,
button:focus {
    box-shadow: none !important;
    border: none;
    outline: none;
}

img {
    user-drag: none;
    -webkit-user-drag: none;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
  }

/* Reset the default */


/* GENERAL STYLE */
.bg--primary {
    background-color: var(--primary-color);
}

.clr--primary {
    color: var(--primary-color);
}

.bg--secondary {
    background-color: var(--secondary-color);
}

.clr--secondary {
    color: var(--secondary-color);
}

.bg--dark {
    background-color: var(--dark-color);
}

.clr--dark {
    color: var(--dark-color);
}

.bg--gray {
    background-color: var(--gray-color);
}

.clr--gray {
    color: var(--gray-color);
}

.py-120 {
    padding-block: 120px;
}

.py-100 {
    padding-block: 100px;
}

.py-80 {
    padding-block: 80px;
}

.py-60 {
    padding-block: 60px;
}

.py-40 {
    padding-block: 40px;
}

h2.section-heading {
    font-weight: 700;
    color: var(--dark-color);
}

.section-title {
    font-size: 24px;
    font-weight: 400;
    font-family: "Great Vibes", sans-serif;
    color: var(--primary-color);
    margin-bottom: 6px !important;
}
.subtitle {
    font-size: 16px;
    font-weight: 400;
    color: var(--gray-color);
}

/* THEME BUTTON */
.theme-btn {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white-color);
    font-size: 18px;
    font-weight: 600;
    padding: 13px 30px;
    border-radius: 20px;
    border: none;
    box-shadow: 0px 24px 48px 0px rgba(255, 146, 46, 0.25);
    transition: all .3s ease;
}

.theme-btn:hover {
    color: var(--white-color);
    background-color: var(--dark-color);
    box-shadow: 0px 24px 48px 0px rgba(0, 0, 0, 0.25);
}

/* THEME BUTTON */

/* PLAY BUTTON  */
.play-btn {
    font-size: 16px;
    font-weight: 600;
    color: var(--white-color);
    background-color: transparent;
    border: none;
    box-shadow: none;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all .3s ease;
    position: relative;
    z-index: 3;
}
.play-btn p {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-color);
}

.play-btn span {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--dark-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease;
    font-size: 16px;
    color: var(--primary-light);
    position: relative;
    z-index: 2;
}
.play-btn span i {
    font-size: 18px;
    color: var(--primary-light);
}
.play-btn span::before {
    content: "";
    width: 80px;
    height: 80px;
    background: var(--dark-color);
    border-radius: 50%;
    position: absolute;
    z-index: -1;
    -webkit-animation: wave 1.7s infinite linear;
    animation: wave 1.7s infinite linear;
}

@keyframes wave {
    0% {
        transform: scale(0.6);
        opacity: 0.5;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

.play-btn:hover span {
    color: var(--white-color);
    background-color: var(--dark-color);
}
/* PLAY BUTTON  */

/* Explode More BUTTON  */
.explode-more {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark-color);
    transition: all .3s ease;
}
.explode-more i {
    font-size: 16px;
    margin-left: 5px;
    transition: all .3s ease;
}
.explode-more:hover {
    color: var(--primary-color);
}
.explode-more:hover i {
    transform: translateX(5px);
}
/* Explode More BUTTON  */

.back-to-top.show {
    bottom: 40px;
    right: 40px;
    opacity: 1;
    transform: scale(1);
}

.back-to-top {
    position: fixed;
    bottom: -40px;
    right: 40px;
    display: block;
    width: 45px;
    height: 45px;
    line-height: 46px;
    background: var(--primary-color);
    color: var(--white-color);
    font-size: medium;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    opacity: 0;
    transform: scale(0.3);
    box-shadow: 4px 4px 10px rgba(0, 0, 0, .2);
    z-index: 9;
    transition: all .3s ease-in-out;
    overflow: hidden;
}

.back-to-top.show:hover {
    background-color: var(--dark-color);
    color: var(--white-color);
    bottom: 45px;
    opacity: 1;
}
/* ==============================
    GENERAL STYLE
==============================  */


/* ==============================
    HEADER Section Start
==============================  */
header {
    background-color: var(--white-color);
}
header.index_page {
    position: fixed;
    top: 0;
    z-index: 100;
    background-color: transparent;
}
header .navbar-brand {
    padding: 0;
}

header .navbar-nav {
    gap: 28px;
}

header .navbar-nav .nav-link {
    font-size: 16px;
    color: var(--dark-color);
    font-weight: 500;
    padding: 10px 0px !important;
}

header .navbar-nav .nav-link i {
    font-size: 16px;
    color: var(--primary-color);
    margin-right: 9px;
}

header .navbar-nav .nav-link:hover {
    color: var(--primary-color);
}

header .navbar-nav .nav-link {
    width: max-content;
    position: relative;
}
header .navbar-nav .nav-link:before {
    content: "";
    position: absolute;
    height: 2px;
    bottom: 0;
    left: 0;
    width: 100%;
    transform: scaleX(0);
    transform-origin: bottom right;
    background: var(--primary-color);
    transition: transform 0.25s ease-out;
}

header .navbar-toggler {
    width: 44px;
    height: 44px;
    padding: 0;
    font-size: 20px;
    line-height: 1;
    color: var(--white-color);
    background: var(--primary-color);
    border: none;
    border-radius: 14px;
    transition: all .3s ease-in-out;
}

header .navbar-toggler:hover {
    color: var(--white-color);
    background-color: var(--dark-color);
}

.demo-btn {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    margin-block: auto;
    margin-right: 20px;
    transition: all .3s ease-in-out;
}
.demo-btn:hover {
    color: var(--dark-color);
}

.bar {
    width: 100%;
    height: 1px;
}

header {
    width: 100%;
    transition: all 0.3s cubic-bezier(.72, .63, .34, .99);
}

header.is-sticky {
    position: fixed;
    left: 0;
    top: 0;
    box-shadow: 0 5px 16px rgba(0, 0, 0, 0.1);
    background-color: var(--white-color);
    animation: slideDown 0.4s ease-in-out;
    z-index: 999;
}

header nav.navbar {
    padding: 30px 0;
}

header.is-sticky nav.navbar {
    padding: 10px 0;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

header .offcanvas-header {
    border-bottom: 1px solid #ECECEC;
}

header .offcanvas-header,
header .offcanvas-body {
    padding: 30px;
}

header .offcanvas .btn-close {
    color: var(--dark-color) !important;
    opacity: 1;
    transition: all .3s ease-in-out;
    font-size: 20px;
}

header .offcanvas .btn-close:hover {
    color: var(--dark-color) !important;
    opacity: 1;
    transform: rotate(180deg);
}

.right-wrapper {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 14px;
}

header.index_page .right-wrapper a {
    color: rgb(31 24 24);
}
header.is-sticky .right-wrapper a {
    color: var(--dark-color);
}
.right-wrapper a {
    font-size: 16px;
    color: var(--dark-color);
}

.ec-header-user {
    position: relative;
}
.ec-header-user .dropdown-toggle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: none;
    transition: none;
    border: none;
    background-color: transparent;
    padding: 0;
    font-size: 14px;
    text-transform: capitalize;
    font-weight: 400;
    color: var(--gray-color);
}
.ec-header-user .dropdown-toggle::after {
    display: none;
}

.profile img {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 50px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    height: 100%;
    background: transparent;
    color: #9D9DA1;
    font-size: 20px;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: 50%;
    outline: 0;
    height: 50px;
    margin: 0 auto;
    border: 1px solid var(--white-color);
}
.ec-header-user .dropdown-menu {
    margin: 0;
    top: calc(100% + 9px) !important;
    left: auto !important;
    right: 0 !important;
    min-width: 130px;
    overflow: hidden;
    padding: 0 10px;
    background: var(--white-color);
    border-radius: 0;
    -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    -webkit-transform: translate3d(0, 0, 0) !important;
    transform: translate3d(0, 0, 0) !important;
    border: 1px solid #eeeeee;
}
.ec-header-user .dropdown-menu li {
    border-bottom: 1px solid #ebebeb;
}
.ec-header-user .dropdown-menu li:last-child {
    border-bottom: 0;
}
.ec-header-user .dropdown-menu .dropdown-item {
    padding: 7px;
    color: var(--dark-color);
    font-size: 14px;
    background: transparent;
    text-transform: capitalize;
    transition: color 0.3s ease;

    &:hover {
        color: var(--primary-color);
    }

}

.auth-btn-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}
.auth-btn-wrap button {
    font-size: 16px;
    font-weight: 500;
    padding: 12px 24px;
    border-radius: 20px;
    box-shadow: 0 24px 48px 0 rgba(45, 45, 45, 0.25);
    border: 0;
    transition: all 0.3s ease;
}
.auth-btn-wrap #register-btn {
    color: var(--dark-color);
    background-color: var(--white-color);

    &:hover {
        color: var(--white-color);
        background-color: var(--primary-color);
    }
}
.auth-btn-wrap #login-btn {
    color: var(--white-color);
    background-color: var(--dark-color);

    &:hover {
        color: var(--white-color);
        background-color: var(--primary-color);
    }
}
/* ==============================
    HEADER Section End
==============================  */

/* ==============================
    Side Csrt Style Start
==============================  */
.ec-side-cart .ec-cart-inner {
    display: flex;
    flex-direction: column;
    height: 100vh;
}
.ec-side-cart.ec-cart .ec-cart-inner .ec-cart-title {
    margin-bottom: 30px;
    padding: 0;
}

.eccart-pro-items {
    margin: 0;
    padding-left: 0;
    list-style: none;
}

.eccart-pro-items li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(244, 244, 244, 1);
}

.eccart-pro-items li .sidecart_pro_img {
    width: 120px;
    /* -webkit-box-flex: 1; */
    /* -ms-flex: 1 0 30%;
    flex: 1 0 30%; */
}

.eccart-pro-items li .sidecart_pro_img img {
    width: 100%;
    border-radius: 8px;
    background-color: #F2F2F2;
}

.eccart-pro-items li .ec-pro-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-grow: 1;
  padding-left: 8px;
  gap: 10px;
}

.ec-pro-content .left-block {
  flex: 1;
}

.eccart-pro-items li .ec-pro-content .cart_pro_title {
    text-decoration: none;
    color: var(--dark-color);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    width: 100%;
}

.eccart-pro-items li .ec-pro-content .cart_pro_title:hover {
    color: var(--primary-color);
}

.eccart-pro-items li .ec-pro-content .cart-price {
    font-size: 14px;
    display: block;
    color: var(--primary-color);
    margin-top: 3px;
}

.eccart-pro-items li .ec-pro-content .cart-price span {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 13px;
}

.ec-pro-content .right-block {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
}

.eccart-pro-items li .ec-pro-content .remove {
    padding: 0 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 34px;
    width: 34px;
    color: #D0D0D0;
    border: 1px solid #F2F2F2;
    border-radius: 8px;
    font-size: 18px;
}

.eccart-pro-items li .ec-pro-content .remove:hover {
    color: var(--primary-color);
}

.eccart-pro-items li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
}

.side_cart.quantity-controls {
    width: max-content;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 10px;
    border: 1px solid rgba(230, 230, 230, 1);
    border-radius: 8px;
    background-color: var(--white-color);
    margin-top: 5px;
}

.side_cart.quantity-controls .quantity-increase,
.side_cart.quantity-controls .quantity-decrease {
    width: 20px;
    float: left;
    font-size: 11px;
    font-weight: 600;
    color: rgba(208, 208, 208, 1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;

    &:hover {
        color: var(--primary-color);
    }
}

.side_cart.quantity-controls .quantity-decrease {
    float: left;
}
.side_cart.quantity-controls .quantity-increase {
    float: right;
}

.side_cart.quantity-controls .quantity-input {
    font-size: 13px;
    font-weight: 600;
    color: var(--dark-color);
    text-align: center;
    border: none;
    background-color: transparent;
    width: 28px;
    padding: 0;
    appearance: textfield;
}
.side_cart.quantity-controls .quantity-input::-webkit-outer-spin-button,
.side_cart.quantity-controls .quantity-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.side_cart.quantity-controls .quantity-input[type="number"] {
    -moz-appearance: textfield;
}

.ec-cart-bottom {
    margin-top: auto;
}
.cart-sub-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
}
.cart-sub-total label {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark-color);
}
.cart-sub-total h4 {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0;
}
.cart_btn {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.cart_btn .primary,
.cart_btn .dark {
    width: 100%;
    font-size: 16px;
    font-weight: 700;
    color: var(--white-color);
    padding: 10px 30px;
    border-radius: 8px;
    border: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.cart_btn .primary i,
.cart_btn .dark i {
    font-size: 20px;
}

.cart_btn .primary {
    background-color: var(--primary-color);
}
.cart_btn .dark {
    background-color: var(--dark-color);
}
.cart_btn .primary:hover {
    background-color: var(--dark-color);
}
.cart_btn .dark:hover {
    background-color: var(--primary-color);
}
/* ==============================
    Side Csrt Style End
==============================  */

/* ==============================
    Hero Section Start
==============================  */
.hero-section {
    background: var(--primary-light);
    position: relative;
}
.hero-section .container {
    position: relative;
    padding-block: 200px 120px;
}
.hero-vector {
    position: absolute;
    top: 0;
    right: 0;
}
.hero-section .wrap {
    position: relative;
    display: flex;
}
.hero-section .content {
    position: relative;
    max-width: 640px;
    align-self: center;
    z-index: 3;
}
.hero-banner {
    height: 100%;
}
.hero-banner img {
    width: 60%;
    position: absolute;
    right: -12px;
    top: -12%;
    z-index: 3;
}
.hero-section h1 {
    font-size: 64px;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 10px;
}
.hero-section h1 span {
    color: var(--primary-color);
}
.hero-section .lg-text {
    font-size: 18px;
    font-weight: 400;
    color: var(--gray-color);
}

.hero-section .border-left {
    padding: 0 0 0 10px;
    border-left: 4px solid var(--primary-color);
    margin-top: 20px;
}
.hero-section .border-left .badge {
    font-size: 16px;
    font-weight: 600;
    color: var(--white-color);
    padding: 8px 14px;
    background-color: var(--primary-color);
}
.hero-section .border-left h5 {
    font-size: 18px;
    font-weight: 500;
    padding-top: 5px;
    margin-right: 7px;
}
.hero-section .border-left p {
    font-size: 14px;
    color: var(--gray-color);
}

.hero-section .multi-users {
    display: flex;
    gap: 7px;
    margin-top: 40px;
}
.hero-section .multi-users ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}
.hero-section .multi-users ul li:not(:first-child) {
    display: inline-block;
    margin-left: -16px;
}
.hero-section .multi-users ul li img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--white-color);
}
.hero-section .partner-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hero-section .partner-title {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 16px;
    margin: 0;
}

.hero-section .rating {
    display: flex;
    align-items: center;
    font-size: 14px;
}

.hero-section .rating i {
    color: var(--primary-color);
    margin-right: 5px;
}

.hero-section .rating-score {
    font-weight: bold;
    margin-right: 5px;
    color: var(--dark-color);
}

.hero-section .review-count {
    color: rgba(136, 136, 136, 1);
}
/* ==============================
    Hero Section End
==============================  */

/* ==============================
    Menu Category Section Start
==============================  */

.menu-cat .menu-box {
    padding: 24px 20px;
    background-color: var(--white-color);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 16px;
    border: 1px solid rgba(255, 150, 46, 0.07);
    transition: all 0.3s ease;

    &:hover {
        background-color: var(--primary-color);
        border: 1px solid var(--primary-color);
        box-shadow: 0 24px 48px rgba(255, 130, 15, 0.25);
    }
}

.menu-cat .menu-box svg path {
    fill: var(--primary-color);
    transition: fill 0.3s ease;
}

.menu-cat .menu-box h6 {
    color: var(--primary-color);
    margin-bottom: 0;
    transition: color 0.3s ease;
}
.menu-cat .menu-box:hover svg path,
.menu-cat .menu-box:hover h6 {
    fill: var(--white-color);
    color: var(--white-color);
}
/* ==============================
    Menu Category Section End
==============================  */

/* ==============================
    Dishes Section Start
==============================  */
.dishes-section .nav-pills.btn-pills {
    display: flex;
    align-items: end;
    justify-content: end;
    column-gap: 12px;
    row-gap: 10px;
}

.dishes-section .nav-pills.btn-pills .nav-link {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-color);
    background-color: var(--white-color);
    border-radius: 15px;
    padding: 10px 16px;
    transition: all 0.3s ease;
}

.dishes-section .nav-pills.btn-pills .nav-link.active,
.dishes-section .nav-pills.btn-pills .nav-link:hover {
    color: var(--white-color);
    background-color: var(--primary-color);
    box-shadow: 0 10px 30px -7px rgba(255, 150, 46, 0.5);
}

.dishes-section .card {
    height: 100%;
    padding: 0;
    border-radius: 20px;
    border: 0;
    background-color: var(--white-color);
    overflow: hidden;
    box-shadow: 0 25px 50px 0 rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}
.dishes-section .img-wrapper {
    position: relative;
    overflow: hidden;
}
.dishes-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.favourite-mark {
    position: absolute;
    top: 8px;
    right: 14px;
}
.favourite-mark i {
    font-size: 18px;
}
.favourite-mark i.fa-regular.fa-heart {
    color: rgba(255, 255, 255, 0.8);
}

.favourite-mark i.fa-solid.fa-heart {
    color: rgb(255, 15, 15);
}

.dishes-section .card-body {
    padding: 20px 15px 15px 15px;
}

.dishes-section .product-category {
    font-size: 12px;
    color: var(--gray-color);
}
.dishes-section .product-title {
    font-weight: 600;
    color: var(--dark-color);
    margin-block: 4px;
}

.dishes-section .product-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.dishes-section .product-rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.dishes-section .product-rating .stars i {
    font-size: 15px;
    color: var(--primary-color);
}

.dishes-section .review-count {
    font-size: 11px;
    font-weight: 500;
    color: var(--gray-color);
}

.dishes-section .product-purchase {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.dishes-section .price {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-color);
}

.dishes-section .add-to-cart-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 0.5rem 0.75rem;
    border-radius: 9px;

    &:hover {
        color: var(--white-color);
        box-shadow: 0 6px 12px 0 rgba(255, 150, 46, 0.37);
    }
}

.dishes-section .card:hover img {
    transform: scale(1.08);
}
/* ==============================
    Dishes Section End
==============================  */

/* ==============================
    Featured-Single-Dish Section Start
==============================  */
.feature-single-dish {
    background-color: var(--primary-light);
}

.feature-single-dish .wrapper {
    position: relative;
}

.feature-single-dish .chef-card {
    position: absolute;
    top: 0px;
    right: 30px;
}

.feature-single-dish .card-stack {
    position: relative;
    width: 120px;
    height: 144px;

}

.feature-single-dish .card-bg {
    position: absolute;
    width: 90px;
    height: 115px;
    background-color: var(--primary-color);
    opacity: 0.32;
    border-radius: 20px;
    top: 0;
    left: 0;
    z-index: 0;
    transform: scale(0.9) rotate(0deg);
}

.feature-single-dish .card-bg.right.first {
    transform: translate(35px, 7px) rotate(22deg);
    z-index: 0;
}

.feature-single-dish .card-bg.right.last {
    transform: translate(47px, 20px) rotate(24deg) scale(0.9);
    z-index: 1;
}

.feature-single-dish .card-bg.left.first {
    transform: translate(-10px, 7px) rotate(-20deg);
    z-index: 0;
}

.feature-single-dish .card-bg.left.last {
    transform: translate(-25px, 21px) rotate(-26deg) scale(0.9);
    z-index: 1;
}

.feature-single-dish .card-content {
    position: relative;
    z-index: 2;
    background-color: var(--primary-color);
    border-radius: 20px;
    padding: 20px 10px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 16px 16px 54px rgba(0, 0, 0, 0.1);
}

.feature-single-dish .avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 12px;
}

.feature-single-dish .name {
    font-size: 16px;
    font-weight: 600;
    color: white;
    margin: 0;
}

.feature-single-dish .role {
    font-size: 14px;
    color: white;
    margin: 0;
    opacity: 0.9;
}

.feature-single-dish .dish-card {
    width: max-content;
    display: flex;
    align-items: center;
    padding: 16px;
    background-color: var(--white-color);
    border-radius: 24px;
    position: absolute;
    bottom: 0;
    left: 0;
    box-shadow: 16px 16px 54px 0 rgba(0, 0, 0, 0.1);
}

.feature-single-dish .dish-card .img-wrapper {
    width: 65px;
    height: 65px;
    border-radius: 15px;
    margin-right: 10px;
    overflow: hidden;
}

.feature-single-dish .dish-card .img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.feature-single-dish .dish-card .title {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
}

.feature-single-dish .dish-card .price {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark-color);
    margin-right: 5px;
}

.feature-single-dish .dish-card .rating i {
    font-size: 12px;
    color: rgba(255, 198, 63, 1);
}
/* ==============================
    Featured-Single-Dish Section End
==============================  */

/* ==============================
    Best Selling Section Start
==============================  */
.bestSelling-prev,
.bestSelling-next {
    color: var(--dark-color);
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border-radius: 16px;
    font-size: 20px;
}

.best-sellings .card {
    background-color: var(--white-color);
    border: none;
    border-radius: 20px;
    box-shadow: 0px 5px 21px 0px rgba(48, 54, 61, 0.05);
    text-align: center;
    position: relative;
    padding: 20px 20px 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.best-sellings .card .favourite {
    width: max-content;
    height: max-content;
    background-color: transparent;
    position: absolute;
    top: 20px;
    right: 20px;
}

.best-sellings .card .favourite i {
    font-size: 20px;
    color: rgba(203, 207, 212, 1);
    transition: color 0.3s ease;
}

.best-sellings .card .favourite.active i {
    color: red;
}

.best-sellings .card .img-wrapper {
    margin: 10px auto 20px;
    overflow: hidden;
}

.best-sellings .card .img-wrapper img {
    width: 100%;
    height: 150px;
    transition: all 0.3s ease;
}

.best-sellings .card .product-title {
    font-weight: 500;
    color: var(--dark-color);
    margin-bottom: 0;
    transition: color 0.3s ease;
}

.best-sellings .card .brand-rating .delivery-time,
.best-sellings .card .brand-rating .rating {
    font-size: 10px;
    color: var(--gray-color);
    transition: color 0.3s ease;
}

.best-sellings .card .brand-rating i {
    font-size: 9px;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.best-sellings .card .cart-price-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
}

.best-sellings .card .cart-price-wrapper a {
    font-size: 18px;
    color: var(--white-color);
    padding: 11px 26px;
    background-color: var(--primary-color);
    border-top-right-radius: 20px;
    border-bottom-left-radius: 20px;
    border: none;
    box-shadow: none;
    margin-left: -20px;
    transition: background-color .3s ease;
}

.best-sellings .card .cart-price-wrapper .price {
    font-size: 22px;
    font-weight: 600;
    color: var(--dark-color);
    transition: color 0.3s ease;
}

.best-sellings .card:hover {
    background-color: var(--primary-color);
}
.best-sellings .card:hover .favourite i,
.best-sellings .card:hover .delivery-time,
.best-sellings .card:hover .rating,
.best-sellings .card:hover .brand-rating i,
.best-sellings .card:hover .product-title,
.best-sellings .card:hover .price {
    color: var(--white-color);
}

.best-sellings .card:hover .cart-price-wrapper a {
    color: var(--white-color);
    background-color: var(--dark-color);
}

.best-sellings .card:hover img {
    transform: scale(1.07);
}

.swiper-pagination {
    text-align: center;
    margin-top: 24px;
    position: static !important;
}
.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: var(--primary-color);
}
.swiper-pagination-bullet-active {
    width: 20px;
    border-radius: 28px;
}

.swiper-horizontal>.swiper-pagination-bullets
.swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 3px;
}
/* ==============================
    Best Selling Section End
==============================  */

/* ==============================
    Banner Section Start
==============================  */
.banner-section .banner {
    border-radius: 30px;
    overflow: hidden;
}

.banner-section .figure {
    width: 100%;
    position: relative;
    margin-bottom: 0;
    display: flex;
    align-items: stretch;
    min-height: 320px;
}

.banner-section .figure img {
    width: 100%;
    object-fit: cover;
    object-position: center;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.banner-section .figure::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(45, 45, 45, 0.3);
}

.banner-section .figure-caption {
    position: relative;
    z-index: 2;
    padding: 40px 30px 40px 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
    color: white;
    background-color: rgba(0, 0, 0, 0.3);
}

.banner-section .figure-caption .badge {
    font-size: 12px;
    font-weight: 400;
    color: var(--white-color);
    padding: 7px;
    background: var(--primary-color);
    border-radius: 6px;
    margin-bottom: 14px;
    width: max-content;
}
.banner-section .figure-caption .title {
    font-size: 28px;
    font-weight: 500;
    color: var(--white-color);
    margin-bottom: 12px;
}

.banner-section .figure-caption .description {
    font-size: 18px;
    font-weight: 400;
    color: var(--white-color);
    margin-bottom: 20px !important;
}
.banner-section .figure-caption .theme-btn {
    width: max-content;
    margin-top: auto;
}

/* ==============================
    Banner Section End
==============================  */

/* ==============================
    Order-Steps Section Start
==============================  */
.order-steps {
    background-color: var(--primary-light);
}

.step-card {
    height: 100%;
    padding: 40px;
    background-color: var(--white-color);
    border-radius: 40px;
    box-shadow: 0 25px 50px 0 rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.step-card svg {
    margin-bottom: 30px;
}

.step-card svg path {
    fill: var(--primary-color);
    transition: all 0.3s ease;
}

.step-card h4 {
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.step-card p {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-color);
    transition: all 0.3s ease;
}


.arrow-circle {
    width: 36px;
    height: 36px;
    background-color: transparent;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.step-card:hover {
    background-color: var(--primary-color);
    box-shadow: 0 24px 48px 0 rgba(255, 150, 46, 0.24);
}

.step-card:hover h4,
.step-card:hover p {
    color: var(--white-color);
}
.step-card:hover svg path {
    fill: var(--white-color);
}

/* ==============================
    Order-Steps Section End
==============================  */

/* ==============================
    Limited-Offer Section Start
==============================  */
.limited-offer {
    background: var(--primary-color);
}

.limited-offer .section-title {
    color: var(--dark-color);
}
.limited-offer .section-heading,
.limited-offer .subtitle {
    color: var(--white-color);
}

.limited-offer .border-left {
    padding: 0 0 0 10px;
    border-left: 4px solid var(--dark-color);
    margin-top: 20px;
}
.limited-offer .border-left .badge {
    font-size: 16px;
    font-weight: 600;
    color: var(--white-color);
    padding: 8px 14px;
    background-color: var(--dark-color);
}
.limited-offer .border-left h5 {
    font-size: 18px;
    font-weight: 500;
    color: var(--dark-color);
    padding-top: 5px;
    margin-right: 7px;
}
.limited-offer .border-left p {
    font-size: 14px;
    color: var(--white-color);
}

.limited-offer .theme-btn {
    color: var(--white-color);
    background: var(--dark-color);

    &:hover {
        background: var(--primary-color);
    }
}

.periodDisplay {
    display: none;
}

.numberDisplay {
    font-size: 40px;
    font-weight: 800;
    color: var(--white-color);
    position: relative;
    padding: 0;
    min-width: 30px !important;
    margin-bottom: 4px;
    border-bottom: none;
    border-radius: 0;
}

.displaySection {
    color: var(--white-color);
    background-color: transparent;
    width: 80px;
    height: 70px;
}

.countdowntimer .numberDisplay::before {
    content: ":";
    font-size: 40px;
    font-weight: 800;
    color: var(--white-color);
    position: absolute;
    top: 50%;
    right: -26px;
    transform: translateY(-50%);
}

.countdowntimer .displaySection:last-child .numberDisplay::before {
    content: none;
}

.countdowntimer {
    margin: 20px 0px 20px 0px;
}
/* ==============================
    Limited-Offer Section End
==============================  */

/* ==============================
    Top Section Start
==============================  */
.top-section .category-name {
    font-size: 24px;
    font-weight: 600;
    color: var(--dark-color);
    position: relative;
}

.top-section .category-name::before {
    content: "";
    width: 96px;
    height: 2px;
    border-radius: 24px;
    background-color: var(--primary-color);
    position: absolute;
    bottom: -9px;
    left: 0;
}

.top-section .category-divider {
    height: 1px;
    width: 200px;
    background-color: #2524220D;
    margin-bottom: 30px;
}

.top-section .card {
    background-color: var(--white-color);
    border: none;
    display: flex;
    flex-direction: row;
    margin-bottom: 16px;
}

.top-section .card .img-wrapper {
    width: 90px;
    height: 90px;
    background-color: var(--primary-light);
    border-radius: 3px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.top-section .card .img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.3s ease;
}

.top-section .card .product-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0px;
}

.top-section .rating {
    display: flex;
    align-items: center;
    gap: 2px;
}
.top-section .rating i {
    font-size: 12px;
    color: rgba(212, 212, 212, 1);
}
.top-section .rating i.fill {
    color: var(--primary-color);
}

.top-section .rating span {
    margin-left: 4px;
}

.top-section .card .price {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-color);
    margin-top: 6px;
}

.top-section .card .price .old-price {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-color);
    margin-top: 7px;
    margin-left: 5px;
    text-decoration: line-through !important;
}

.top-section .review-count {
    font-size: 11px;
    color: var(--secondary-color);
}

.top-section .card:hover img {
    transform: scale(1.07);
}

.add-to-cart {
    font-size: 15px;
    color: var(--white-color);
    padding: 6px 10px;
    background-color: var(--primary-color);
    border-radius: 9px;
    box-shadow: 0 12px 15px 0 rgba(255, 150, 46, 0.25);
    height: max-content;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
    cursor: pointer;
}

.top-section .card:hover .add-to-cart {
    color: var(--white-color);
    visibility: visible;
    opacity: 1;
}
/* ==============================
    Top Section End
==============================  */

/* ==============================
    Our-Story Section Start
==============================  */
.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background-color: var(--dark-color);
    color: var(--white-color);
    box-shadow: 0px 12px 29px 0px rgba(21, 29, 40, 0.08);
}
.contact-icon i {
    font-size: 18px;
    color: var(--white-color);
}

.contact-label {
    font-size: 14px;
    color: var(--gray-color);
    margin-bottom: 5px !important;
}

.contact-number {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0;
}
/* ==============================
    Our-Story Section End
==============================  */

/* ==============================
    Testimonial Section Start
==============================  */
.testimonial-section {
    background-color: var(--primary-light);
}
.testimonial-section .feedback-summary > div {
    width: 140px;
    max-width: 100%;
}

.testimonial-section .stat-value {
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0px;
}

.testimonial-section .stat-value span {
    color: var(--primary-color);
}

.testimonial-section .stat-label,
.testimonial-section .rating-count {
    font-size: 14px;
    color: var(--gray-color);
    margin: 0;
}

.testimonial-section .rating-score {
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0px;
}

.testimonial-section .rating-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 4px;
}

.testimonial-section .rating-stars i {
    font-size: 14px;
    color: var(--primary-color);
}

.testimonial-section .card {
    height: 100%;
    gap: 24px;
    padding: 30px;
    border: 1px solid rgba(45, 45, 45, 0.05);
    border-radius: 30px;
    background-color: var(--white-color);
    transition: all .3s ease;
}

.testimonial-section .card .img-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    transition: all .3s ease;
}

.testimonial-section .card .img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .3s ease;
}

.testimonial-section .card .star-icon i {
    color: var(--primary-color);
    transition: all .3s ease;
}

.testimonial-section .card .main-text {
    color: var(--gray-color);
    transition: all .3s ease;
}

.testimonial-section .card .name-title {
    font-weight: 600;
    color: var(--dark-color);
    text-transform: uppercase;
    margin-bottom: 0;
    transition: all .3s ease;
}

.testimonial-section .card .name-title span {
    font-size: 14px;
    text-transform: capitalize;
}

.testimonial-section .card:hover {
    background-color: var(--primary-color);
    box-shadow: 0px 24px 48px 0px rgba(255, 150, 46, 0.24);
    border-color: var(--primary-color);
}

.testimonial-section .card:hover svg path {
    stroke: rgba(255, 255, 255, 0.25);
}

.testimonial-section .card:hover .name-title,
.testimonial-section .card:hover .main-text,
.testimonial-section .card:hover .star-icon i {
    color: var(--white-color);
}

/* ==============================
    Testimonial Section End
==============================  */

/* ==============================
    Slideshow Section Start
==============================  */
.slideshow-section .swiper-slide {
    overflow: hidden;
    border-radius: 30px;
    height: 360px;
    position: relative;
}
.slideshow-section .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
    display: block;
    border-radius: 0;
}
.slideshow-section .swiper-slide img:hover {
    transform: scale(1.07);
}
/* ==============================
    Slideshow Section End
==============================  */

/* ==============================
    Blog Section Start
==============================  */
.blog-section .wrapper {
    border-radius: 30px;
    overflow: hidden;
}
.blog-section .wrapper img {
    width: 100%;
    height: auto;
    height: 450px;
    object-fit: cover;
    object-position: center;
}
.blog-section .figure {
    width: 100%;
    position: relative;
    margin-bottom: 0;
}
.blog-section .figure::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(45, 45, 45, 0) 38%, rgba(45, 45, 45, 1) 88%);
    transition: transform 0.3s ease;
}
.blog-section .figure .figure-caption {
    align-self: end;
    padding: 30px;
    inset: 0;
    position: absolute;
}
.blog-section .figure .figure-caption h5 a {
    font-weight: 500;
    color: var(--primary-color);
    position: relative;
    margin-left: 36px;
    margin-bottom: 8px;
}
.blog-section .figure .figure-caption h5 a::before {
    content: "";
    width: 25px;
    height: 2px;
    background-color: var(--primary-color);
    position: absolute;
    top: 50%;
    left: -36px;
}
.blog-section .figure .figure-caption h4 {
    margin-bottom: 0;
}
.blog-section .figure .figure-caption h4 a {
    color: var(--white-color);
    font-weight: 700;
    margin-bottom: 0;
}
.view-more-prim {
    font-size: 16px;
    font-weight: 500;
    color: var(--primary-color);
}

/* ==============================
    Blog Section End
==============================  */

/* ==============================
    Footer Section Start
==============================  */
.custom-footer {
    background-color: rgba(32, 32, 32, 1);
    color: white;
    /*padding-block: 60px;*/
}

.footer-logo {
    width: 150px;
    margin-bottom: 20px;
}

.brand-description {
    color: white;
    font-size: 0.875rem;
    margin-bottom: 25px;
    line-height: 1.7;
    max-width: 280px;
}

footer .social-icons {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 30px;
}

footer .social-icon {
    color: white;
    font-size: 1.25rem;
    width: 58px;
    height: 58px;
    border-radius: 12px;
    background-color: rgba(112, 112, 112, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

footer .social-icon:hover {
    background-color: var(--primary-color);
    box-shadow: 0 15px 20px 0 rgba(255, 150, 46, 0.2);
    transform: translateY(-5px);
}

.nav-section h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.nav-section .nav-links {
    list-style: none;
    padding-left: 0;
}

.nav-section .nav-links li {
    margin-bottom: 12px;
}

.nav-section .nav-links a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.nav-section .nav-links a:hover {
    color: white;
    padding-left: 5px;
}
.location-timing h4 {
    font-size: 20px;
}
.location-timing i {
    color: var(--primary-color);
}

.footer-contact input::placeholder {
    font-size: 14px;
    color: var(--white-color);
}
.footer-contact input:focus {
    color: var(--white-color);
    background-color: rgba(67, 67, 67, 1);
    border: 1px solid rgba(50, 50, 50, 1);
}
.footer-contact input {
    font-size: 14px;
    color: var(--white-color);
    padding: 16px 18px;
    background-color: rgba(67, 67, 67, 1);
    border: 1px solid rgba(50, 50, 50, 1);
}
.footer-contact button {
    font-size: 16px;
    color: var(--white-color);
    width: 38px;
    height: 38px;
    border-radius: 9px;
    background-color: var(--primary-color);
    border: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 12px;
    transition: all 0.3s ease;

    &:hover {
        background-color: var(--dark-color);
    }
}

.contact-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    gap: 20px;
}

.footer-bottom {
    padding-block: 24px;
    background-color: rgba(255, 150, 46, 1);
}

.copyright {
    color: white;
    font-size: 0.8125rem;
    margin-bottom: 15px;
}

.payment-methods {
    display: flex;
    align-items: center;
    gap: 7px;
}

.payment-methods a {
    transition: all 0.3s ease;
}

.payment-methods a:hover {
    transform: translateY(-5px);
}
/* ==============================
    Footer Section End
==============================  */


/* ==============================  About Page Style  ==============================  */
/* ==============================
    Breadcrumb Section Start
==============================  */
.breadcrumb-section {
    background: url("../images/banner/breadcrumb.png") center no-repeat;
    background-size: cover;
    position: relative;
}
.breadcrumb-section::before {
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    position: absolute;
    top: 0;
    left: 0;
}
.breadcrumb-section .content {
    position: relative;
    z-index: 1;
}
.breadcrumb-section .content h1 {
    font-size: 48px;
    font-weight: 700;
    color: var(--white-color);
    margin-bottom: 30px;
}

.breadcrumb-section .content .shadow-text {
    font-size: 88px;
    font-weight: 700;
    color: transparent;
    margin-bottom: -60px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 85%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-stroke: 2px transparent;
}

.breadcrumb-section .breadcrumb-btn {
    font-size: 16px;
    font-weight: 400;
    color: var(--white-color);
    border-radius: 6px;
    background: linear-gradient(90deg, var(--primary-color) 0%, rgba(255, 150, 46, 0.2) 100%);
    padding: 7px 36px;
    transition: background 0.3s ease;

    &:hover {
        background: linear-gradient(90deg, var(--dark-color) 0%, rgba(45, 45, 45, 0.2) 100%);
    }
}
/* ==============================
    Breadcrumb Section End
==============================  */

/* ==============================
    Top-Chefs Section Start
==============================  */
.top-chefs {
    background-color: var(--primary-light);
}

.top-chef-card {
    height: auto;
    background: var(--primary-color);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}
.top-chef-card .chef-image {
    width: 100%;
    height: 330px;
    overflow: hidden;
}
.top-chef-card .chef-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.chef-details {
    width: max-content;
    padding: 20px;
    background-color: var(--white-color);
    border-radius: 0 20px 0 20px;
    border: 1px solid rgba(238, 238, 238, 1);
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    transition: all 0.3s ease;
    visibility: hidden;
    opacity: 0;
}
.top-chef-card:hover .chef-details {
    visibility: visible;
    opacity: 1;
}
.chef-name {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 5px;
}
.chef-position {
    font-size: 14px;
    font-weight: 400;
    color: var(--gray-color);
}
.chef-socials {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
}
.chef-socials .social-link {
    font-size: 20px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(244, 244, 244, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;

    &:hover {
        background: var(--primary-color);
    }
}
.chef-socials .social-link svg path {
    stroke: var(--gray-color);
}
.chef-socials .social-link:hover svg path {
    stroke: var(--white-color);
}
/* ==============================
    Top-Chefs Section End
==============================  */

/* ==============================
    Gallery Section Start
==============================  */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 200px;
    gap: 20px;
    border-radius: 20px;
    overflow: hidden;
}

.gallery-grid .item {
  position: relative;
  overflow: hidden;
}

.gallery-grid .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-grid .item:nth-child(1) {
  grid-column: span 6;
  grid-row: span 1;
}

.gallery-grid .item:nth-child(2),
.gallery-grid .item:nth-child(3) {
  grid-column: span 3;
  grid-row: span 1;
}

.gallery-grid .item:nth-child(4) {
  grid-column: span 3;
  grid-row: span 1;
}

.gallery-grid .item:nth-child(5) {
  grid-column: span 3;
  grid-row: span 2; /* This one is taller */
}

.gallery-grid .item:nth-child(6) {
  grid-column: span 6;
  grid-row: span 1;
}

.gallery-grid .item:nth-child(7),
.gallery-grid .item:nth-child(8),
.gallery-grid .item:nth-child(9) {
  grid-column: span 3;
  grid-row: span 1;
}
/* ==============================
    Gallery Section End
==============================  */

/* ==============================  Contact Us Page Style  ==============================  */
/* ==============================
    Contact-Detail Section Start
==============================  */
.contact-detail-section .card {
    max-width: 100%;
    width: 330px;
    padding: 24px 40px;
    background-color: var(--primary-color);
    border: none;
    border-radius: 20px;
    transition: all .3s ease;
}

.contact-detail-section .card:hover {
    background-color: var(--dark-color);
}

.contact-detail-section .card h5 {
    color: var(--white-color);
    margin-bottom: 0;
}

.contact-detail-section .card i {
    font-size: 30px;
    color: var(--white-color);
}

.contact-detail-section .card p {
    font-size: 18px;
    font-weight: 400;
    color: var(--white-color);
}

.share-social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
}
.social-link {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    font-size: 14px;
    color: var(--white-color);
    background: var(--dark-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;

    &:hover {
        color: var(--white-color);
        background: var(--primary-color);
        box-shadow: 0 12px 16px 0 rgba(255, 150, 46, 0.25);
    }
}

/* ==============================
    Contact-Detail Section End
==============================  */

/* ==============================
    Contact-Map Section Start
==============================  */
.contact-map-section .row {
    position: relative;
}

.contact-map-section .float-form {
    position: absolute;
    top: 50%;
    left: 80px;
    transform: translateY(-50%);
}

.contact-map-section #display-google-map {
    overflow: hidden;
    max-width: 100%;
    width: 100%;
    height: 800px;
}

.contact-map-section .box {
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
}

.contact-form {
    max-width: 500px;
    width: 100%;
    padding: 40px;
    background-color: var(--white-color);
    border: none;
    border-radius: 30px;
    box-shadow: 0 13px 19px 0 rgba(0, 0, 0, 0.06);
}

.contact-form h1 {
    color: var(--dark-color);
    font-weight: 600;
    margin-bottom: 16px;
}

.contact-form p {
    font-size: 14px;
    color: var(--gray-color);
}

.contact-form label {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 8px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    font-size: 14px;
    font-weight: 400;
    color: var(--gray-color);
}

.contact-form input,
.contact-form textarea {
    font-size: 14px;
    font-weight: 400;
    color: var(--primary-color);
    padding: 12px 18px;
    background: rgba(250, 250, 250, 1);
    border-color: rgba(45, 45, 45, 0.08);
    border-radius: 15px;
    box-shadow: none !important;
    transition: border-color .3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    background-color: rgba(250, 250, 250, 1);
    border: 1px solid var(--primary-color);
}

.contact-form .theme-btn {
    background: var(--dark-color);
    box-shadow: none;
}
/* ==============================
    Contact-Map Section End
==============================  */


/* ==============================  Menu Page Style  ==============================  */
.menu-slider-wrapper {
    position: relative;
    padding: 20px 40px;
}
.menu-slider-wrapper .menu-box {
    box-shadow: none;

    &:hover {
        box-shadow: none;
    }
}
.menu-slider-wrapper .menu-box.active {
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
}
.menu-slider-wrapper .menu-box.active svg path,
.menu-slider-wrapper .menu-box.active h6 {
    fill: var(--white-color);
    color: var(--white-color);
}
.menuSlider-button-prev,
.menuSlider-button-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    color: var(--dark-color);
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    user-select: none;
    transition: all 0.3s ease;

    &:hover {
        color: var(--primary-color);
    }
}

.menuSlider-button-prev {
    left: -15px;
}

.menuSlider-button-next {
    right: -15px;
}


.sub-menu-cat .nav-pills {
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}
.sub-menu-cat .nav-link {
    font-size: 16px;
    font-weight: 400;
    color: var(--dark-color);
    background: transparent;
    padding: 0px 11px;
    border-right: 1px solid rgba(45, 45, 45, 0.4);
    border-radius: 0;
}
.sub-menu-cat .nav-link.active {
    font-weight: 600;
    color: var(--primary-color);
    background: transparent;
}
.sub-menu-cat .nav-pills .nav-item:last-child .nav-link {
    border-right: none;
}

.search-filter-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.search-filter-wrapper .form-select {
    font-size: 16px;
    color:  var(--dark-color);
    padding: 13px 18px;
    padding-right: 40px;
    background-image: url("../images/element/option-slide.svg");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    border-radius: 16px;
    border-color: rgba(228, 228, 228, 1);
    width: max-content;
}
.search-filter-wrapper .form-select:focus {
    box-shadow: none;
}

.search-filter-wrapper input {
    font-size: 16px;
    font-weight: 400;
    color: var(--dark-color);
    border-radius:  16px;
    border-color: rgba(228, 228, 228, 1);
    padding: 12px 16px;
}
.search-filter-wrapper input::placeholder {
    color: var(--gray-color);
}
.search-filter-wrapper input:focus {
    border: 1px solid rgba(228, 228, 228, 1);
}

.search-filter-wrapper input+i {
    font-size: 15px;
    color: var(--dark-color);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 16px;
}

/* ==================  BLOG-DETAILS PAGE STYLE START  ====================  */
.detail-overlay-section {
    height: 570px;
    position: relative;
}
.project-tag {
    margin-bottom: 0;
    display: flex;
}
.project-tag li {
    font-size: 14px;
    font-weight: 500;
    color: var(--white-color);
    margin-right: 40px;
    position: relative;
    list-style-type: disc;
}
.detail-overlay-section h1,
.detail-overlay-section p {
    color: var(--white-color);
}

.project-detail {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.project-detail div {
    min-width: 130px;
}
.project-detail label {
    font-size: 14px;
    font-weight: 400;
    color: var(--white-color);
    opacity: .8;
    margin-bottom: 10px;
}
.project-detail p {
    font-size: 15px;
    font-weight: 700;
    color: var(--white-color);
}
.overlay-wrapper {
    margin-top: 50px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}
.overlay-video-wrapper {
    border-radius: 30px;
    overflow: hidden;
}
.overlay-video-wrapper img {
    width: 100%;
    height: 580px;
    object-fit: cover;
    object-position: center;
}
.hidden-section {
    width: 100%;
    height: 285px;
    background-color: transparent;
}
.blog-details-page .detail-overlay-section {
    height: 480px;
    background-color: var(--primary-color);
}
.blogger-info {
    display: flex;
    align-items: center;
}
.blogger-info .blogger-profile {
    display: inline-block;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 12px;
}
.blogger-info .blogger-profile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.blogger-info label {
    font-size: 14px;
    font-weight: 400;
    color: var(--gray-color);
    margin-bottom: 8px;
}
.blogger-info h6 {
    font-size: 15px;
    font-weight: 700;
    color: var(--dark-color);
}
.blog-info {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    column-gap: 40px;
    row-gap: 16px;
}
.blog-info label {
    font-size: 14px;
    font-weight: 400;
    color: var(--gray-color);
    margin-bottom: 8px;
}
.blog-info h6 {
    font-size: 15px;
    font-weight: 700;
    color: var(--dark-color);
}

/*   PORTFOLIO OVERVIEW-SECTION    */
.overview-section .xsm-heading {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 20px;
}
.overview-section h2 {
    font-weight: 700;
}
.overview-section ul {
    margin-top: 30px;
    margin-bottom: 0px;
}
.overview-section ul li {
    font-size: 20px;
    font-weight: 700;
    color: #74787C;
}
.overview-section .wrapper {
    border-radius: 30px;
    overflow: hidden;
}
.overview-section .wrapper img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    object-position: center;
}

.overview-section .gray-text {
    font-size: 18px;
    color: rgba(116, 120, 124, 1);
    margin-bottom: 20px !important;
}
.overview-section .col-lg-12 .gray-text:last-child {
    margin-bottom: 0px !important;
}
/*   PORTFOLIO OVERVIEW-SECTION    */
.tags-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}
.filter-tag span {
    display: block;
    font-size: 15px;
    font-weight: 500;
    color: var(--dark-color);
    padding: 8px 20px;
    background-color: rgba(37, 36, 34, 0.07);
    border-radius: 7px;
   transition: all .3s ease;
   cursor: pointer;
}
.filter-tag span.active,
.filter-tag span:hover {
    color: var(--white-color);
    background-color: var(--primary-color);
}
.social-link-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}
.social-link-wrapper a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 150, 46, 0.1);
    border-radius: 50%;
    transition: all .3s ease;
}
.social-link-wrapper a:hover {
    color: var(--white-color);
    background-color: var(--primary-color);
}
/* ==================  BLOG-DETAILS PAGE STYLE End  ====================  */


/* ==============================
    Cart Page Cart Section Start
==============================  */
.cart-content .table-wrapper table {
    width: 100%;
    overflow: hidden;
}

.cart-content .table-wrapper table tbody > tr {
    background-color: var(--primary-light);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 20px;
    margin-bottom: 20px;
}
.cart-content .table-wrapper table tbody > tr:last-child {
     margin-bottom: 0px;
}

.cart-content .table-wrapper table tbody > tr td.product-info {
    width: 40%;
}

.cart-content .table-wrapper table tbody > tr td.product-info a {
    color: var(--dark-color);
    font-weight: 600;
    font-size: 16px;
    display: flex;
    align-items: center;
}

.cart-content .table-wrapper table tbody > tr td .product-img {
    width: 94px;
    height: 84px;
    object-fit: cover;
    border-radius: 9px;
    margin-right: 15px;
}

.cart-content .table-wrapper table tbody > tr td.product-price {
    color: var(--dark-color);
    font-weight: 600;
    font-size: 16px;
}

.cart-content .table-wrapper table tbody > tr td.product-total {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 16px;
}

.cart-content .table-wrapper table tbody > tr td.product-action {
    width: auto;
    text-align: right;
}

.cart-content .table-wrapper table tbody > tr td.product-action .remove {
    font-size: 20px;
    color: var(--dark-color);
}
.cart-content .table-wrapper table tbody > tr td.product-action .update {
    font-size: 20px;
    color: var(--primary-color);
    cursor: pointer;
}

.cart-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 0 0;
}

.cart-actions .btn-return {
    font-size: 16px;
    font-weight: 700;
    padding: 14px 30px;
    color: var(--dark-color);
    background-color: transparent;
    border-radius: 20px;
    border: 1px solid rgba(45, 45, 45, 0.2);
    transition: all 0.3s ease;

    &:hover {
        color: var(--white-color);
        background-color: var(--dark-color);
        border-color: var(--dark-color);
    }
}

.cart-content .cart-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 0 0;
}

.cart-content .coupon-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 30px;
    border-top: 1px solid rgba(45, 45, 45, 0.09);
    padding-top: 30px;
}

.coupon-wrapper > p {
    color: var(--dark-color);
    font-size: 17px;
    font-weight: 600;
}

.coupon-form {
    display: flex;
    align-items: center;
    border: 1px solid rgba(228, 228, 228, 1);
    border-radius: 20px;
    overflow: hidden;
}
.coupon-form .coupon-input::placeholder {
    color: rgba(153, 153, 153, 1);
}
.coupon-form .coupon-input {
    display: inline-block;
    color: var(--dark-color);
    font-size: 16px;
    font-weight: 500;
    width: 100%;
    border: 0;
    background: transparent;
    padding: 14px 20px;
}

.coupon-form .coupon-btn {
    font-size: 14px;
    font-weight: 700;
    padding: 14px 16px;
    border-radius: 0 8px 8px 0;
    white-space: nowrap;
    background-color: var(--dark-color);
}

.cart-page .sidebar-wrapper {
    border-radius: 20px;
    background-color: var(--primary-light);
}

.cart-page .sidebar-wrapper .summary-block {
    padding: 20px;
}

.cart-page .sidebar-wrapper h3 {
    color: var(--dark-color);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
}

.cart-page .sidebar-wrapper .summary-content {
    margin-bottom: 0;
    border-bottom: none;
}

.summary-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.summary-items > * {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.summary-items .label {
    color: var(--gray-color);
    font-size: 16px;
    font-weight: 500;
}

.summary-items .value {
    color: var(--dark-color);
    font-size: 16px;
    font-weight: 600;
}

.summary-items .summary-total {
    margin-bottom: 0;
}

.summary-items .summary-total .label {
    font-size: 16px;
    font-weight: 500;
}

.summary-items .total-amount {
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 700;
}

/* Quantity control */
.qty-control {
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #f0f0f0;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
}

.qty-input {
    width: 50px;
    text-align: center;
    margin: 0 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
}
/* ==============================
    Cart Page Cart Section End
==============================  */

/* ==============================
    Update Item Modal Start
==============================  */
.update-item-modal .modal-content {
    padding: 30px;
    border-radius: 30px;
    border: none;
}
.update-item-modal .modal-header,
.update-item-modal .modal-body,
.update-item-modal .modal-footer {
    padding: 0px;
}
.update-item-modal .modal-header,
.update-item-modal .modal-body {
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(238, 238, 238, 1);
    margin-bottom: 20px;
}
.update-item-modal .modal-footer {
    border: none;
}


.modal .btn-close {
    font-size: 20px;
    width: unset;
    height: unset;
    padding: 0;
    color: var(--dark-color);
    background: none;
    border: 0;
    border-radius: .375rem;
    opacity: 1;
    background: transparent;
}

.update-item-modal .cart-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.update-item-modal .cart-product-info {
    display: flex;
    align-items: center;
    gap: 15px;
}
.update-item-modal .cart-product-info .product-img {
    width: 95px;
    height: 84px;
    border-radius: 9px;
    object-fit: cover;
    object-position: center;
}
.update-item-modal .cart-product-info .product-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 4px;
}
.update-item-modal .cart-product-info .product-price {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
}

.quantity-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 12px;
    border: 1px solid rgba(255, 150, 46, 0.2);
    border-radius: 20px;
    background-color: rgba(255, 242, 227, 1);
}

.quantity-controls .quantity-decrease {
    width: 30px;
    float: left;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.quantity-controls .quantity-increase {
    width: 30px;
    float: right;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-color);
    cursor: pointer;
        display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-controls .quantity-input {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-color);
    text-align: center;
    border: none;
    background-color: transparent;
    width: 40px;
    padding: 0;
    appearance: textfield;
}
.quantity-controls .quantity-input::-webkit-outer-spin-button,
.quantity-controls .quantity-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.quantity-controls .quantity-input[type="number"] {
    -moz-appearance: textfield;
}


.update-item-modal .extras-wrapper .extras-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.update-item-modal .extras-wrapper .extras-heading {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 16px;
}

.update-item-modal .extra-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 8px !important;
}

.update-item-modal .extra-options {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 6px;
}
.update-item-modal .extra-option {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.update-item-modal .extra-option > div {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.update-item-modal .extra-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
}

.update-item-modal .extra-checkbox input[type="checkbox"] {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border: 1px solid rgba(232, 232, 232, 1);
    border-radius: 4px;
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease;
    outline: none;
    background-color: white;
    display: inline-block;
    flex-shrink: 0;
}

.update-item-modal .extra-checkbox input[type="checkbox"]::before {
    content: '';
    position: absolute;
    font-family: "Font Awesome 6 Pro";
    font-weight: 900;
    font-size: 12px;
    color: var(--white-color);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.update-item-modal .extra-checkbox input[type="checkbox"]:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.update-item-modal .extra-checkbox input[type="checkbox"]:checked::before {
    content: '\f00c';
}

.update-item-modal .extra-name,
.update-item-modal .extra-price {
    font-size: 14px;
    font-weight: 500;
    color: rgba(151, 151, 151, 1);
}

.update-item-modal .extra-price {
    flex: 1;
    min-width: 40px;
    text-align: left;
}

.update-item-modal .extra-img {
    width: 33px;
    height: 26px;
    object-fit: cover;
    object-position: center;
    flex-shrink: 0;
}

.update-item-modal .cart-summary .cart-extra-text {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark-color);
}

.update-item-modal .cart-summary .cart-total-price {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0;
}
/* ==============================
    Update Item Modal End
==============================  */

/* ============================== Checkout Page Start  ==============================  */
/* ==============================
    Billing Section Start
==============================  */
 .billing-section .billing-options {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(238, 238, 238, 1);
}

.billing-section .billing-options h5 {
    color: var(--dark-color);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.billing-section .delivery-selection {
    display: flex;
    gap: 18px;
}

.delivery-option-wrapper {
    position: relative;
}

.delivery-option-wrapper input[type="radio"] {
    display: none;
}

.delivery-option-box {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    border: 2px solid rgba(255, 242, 227, 1);
    border-radius: 20px;
    background-color: var(--primary-light);
    transition: all 0.3s ease;
}

.delivery-option-box .icon {
    margin-bottom: 10px;
}

.delivery-option-box .title {
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
}

.delivery-option-box .description {
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 500;
}
.delivery-option-box .icon svg {
    color: var(--primary-color) ;
}

/* Checked style */
.delivery-selection input[type="radio"]:checked+.delivery-option-box .icon svg {
    color: var(--white-color);
}

.delivery-selection input[type="radio"]:checked+.delivery-option-box {
    background-color: var(--primary-color);
    color: var(--white-color);
    border-color: var(--primary-color);
}

.delivery-selection input[type="radio"]:checked+.delivery-option-box .title,
.delivery-selection input[type="radio"]:checked+.delivery-option-box .description {
    color: var(--white-color);
}

.delivery-action-buttons button {
    font-size: 16px;
    font-weight: 700;
    padding: 14px 30px;
    color: var(--dark-color);
    background-color: transparent;
    border-radius: 20px;
    border: 1px solid rgba(45, 45, 45, 0.2);
    transition: all 0.3s ease;

    &:hover {
        color: var(--white-color);
        background-color: var(--dark-color);
        border-color: var(--dark-color);
    }
}

.accordion {
    overflow: unset;
}

.billing-section .accordion-item {
    border: 1px solid rgba(231, 233, 235, 1);
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
}

.accordion-header {
    margin-bottom: 0;
}

.billing-section .accordion-item .accordion-button {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-color);
    padding: 1rem 1.25rem;
    border-radius: 0;
    background-color: #FBFBFB;
    box-shadow: none;
}

.accordion-item .accordion-button.collapsed {
    border: 0;
    background-color: var(--white-color);
}

.billing-section .accordion-item .accordion-button svg {
    margin-right: 10px;
}

.accordion-button::after {
    flex-shrink: 0;
    width: var(--bs-accordion-btn-icon-width);
    height: var(--bs-accordion-btn-icon-width);
    margin-left: auto;
    content: "";
    background-image: var(--bs-accordion-btn-icon);
    background-repeat: no-repeat;
    background-size: var(--bs-accordion-btn-icon-width);
    transition: var(--bs-accordion-btn-icon-transition);
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.billing-section .accordion-item .accordion-body {
    border-top: 1px solid rgba(45, 45, 45, 0.09);
    padding: 2rem 2.25rem;
    border-radius: 0;
    background-color: rgba(251, 251, 251, 1);
}

.billing-section form label {
    color: var(--dark-color);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
}
.billing-section form .form-control::placeholder {
    color: rgba(164, 164, 164, 1);
}
.billing-section form .form-control {
    padding: 14px 16px;
    border: 1px solid rgba(45, 45, 45, 0.09);
    color: var(--dark-color);
    background-color: var(--white-color);
    margin-bottom: 20px;
    border-radius: 12px;
}

.billing-section form .form-select {
    padding-block: 14px;
    border: 1px solid rgba(45, 45, 45, 0.09);
    color: var(--dark-color);
    background-color: var(--white-color);
    margin-bottom: 20px;
    border-radius: 12px;
}

.billing-section form .input-icon {
    display: flex;
    align-items: center;
    gap: 10px;
    position: absolute;
    top: 47px;
    right: 24px;
    margin-right: 10px;
}
.billing-section .terms-conditions {
    display: flex;
    align-items: center;
}
.billing-section .terms-conditions .form-check-input {
    width: 20px;
    height: 20px;
    padding: 0;
    margin: 0;
    box-shadow: none;
    border: 1px solid #E6E6E6;
}

.billing-section .terms-conditions label {
    color: var(--dark-color);
    font-size: 14px;
    font-weight: 500;
    margin-left: 8px;
    margin-bottom: 0;
}

.billing-section .terms-conditions label a {
    color: var(--primary-color);
}

.custom-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
}

.custom-checkbox input[type="checkbox"] {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border: 1px solid rgba(232, 232, 232, 1);
    border-radius: 4px;
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease;
    outline: none;
    background-color: white;
    display: inline-block;
}

.custom-checkbox input[type="checkbox"]::before {
    content: '';
    position: absolute;
    font-family: "Font Awesome 6 Pro";
    font-weight: 900;
    font-size: 12px;
    color: var(--white-color);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.custom-checkbox input[type="checkbox"]:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.custom-checkbox input[type="checkbox"]:checked::before {
    content: '\f00c';
}

.billing-section .additional-info .form-control {
    padding: 14px 16px;
    border: 1px solid rgba(45, 45, 45, 0.09);
    color: var(--dark-color);
    background-color: var(--white-color);
    margin-bottom: 20px;
    border-radius: 12px;
}

.cart-page .sidebar-wrapper {
    border-radius: 20px;
    background-color: var(--primary-light);
}

.cart-page .sidebar-wrapper .summary-block {
    padding: 20px;
}

.cart-page .sidebar-wrapper h3 {
    color: var(--dark-color);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
}

.cart-page .sidebar-wrapper .summary-content {
    margin-bottom: 0;
    border-bottom: none;
}

.summary-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.summary-items>* {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.summary-items .label {
    color: var(--gray-color);
    font-size: 16px;
    font-weight: 500;
}

.summary-items .value {
    color: var(--dark-color);
    font-size: 16px;
    font-weight: 600;
}

.summary-items .summary-total {
    margin-bottom: 0;
}

.summary-items .summary-total .label {
    font-size: 24px;
    font-weight: 500;
    color: var(--dark-color);
}

.summary-items .summary-subtotal .label {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark-color);
}

.summary-items .total-amount {
    color: var(--primary-color);
    font-size: 24px;
    font-weight: 700;
}
/* ==============================
    Billing Section Start
==============================  */

/* ==============================
    Add Address Modal Start
==============================  */
.add_address-modal .modal-content {
    padding: 30px;
    border-radius: 30px;
    border: none;
}
.add_address-modal .modal-header,
.add_address-modal .modal-body,
.add_address-modal .modal-footer {
    padding: 0px;
    border: 0;
}

.modal .btn-close {
    font-size: 20px;
    width: unset;
    height: unset;
    padding: 0;
    color: var(--dark-color);
    background: none;
    border: 0;
    border-radius: .375rem;
    opacity: 1;
    background: transparent;
}

.add_address-modal .map-wrap {
    width: 100%;
    height: 350px;
    margin-bottom: 24px;
    position: relative;
}
.add_address-modal .map-wrap .map {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    border: 18px solid rgba(224, 229, 233, 1);
    overflow: hidden;
}
.add_address-modal .map-wrap .map img {
    width: 100%;
    height: 100%;
}

.add_address-modal .map-wrap .search-location-wrap {
    display: flex;
    align-items: center;
    gap: 20px;
    position: absolute;
    top: 30px;
    right: 30px;
}
.add_address-modal .map-wrap .search-location-wrap input::placeholder {
    color: rgba(164, 164, 164, 1);
}
.add_address-modal .map-wrap .search-location-wrap input {
    font-size: 14px;
    font-weight: 500;
    padding: 14px 16px;
    border: 1px solid rgba(45, 45, 45, 0.09);
    color: var(--dark-color);
    background-color: var(--white-color);
    border-radius: 12px;
}

.add_address-modal .map-wrap .search-location-wrap input+i {
    font-size: 15px;
    color: var(--dark-color);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 16px;
}

.add_address-modal .map-wrap .search-location-wrap .full-view {
    font-size: 18px;
    padding: 11px 16px;
    color: var(--white-color);
    background-color: var(--primary-color);
    border-radius: 10px;
    border: 0;
    transition: all .3s ease;

    &:hover {
        background-color: var(--dark-color);
    }
}

.modal .form-grid label {
    font-size: 14px;
    font-weight: 500;
    color: var(--dark-color);
    margin-bottom: 8px;
}
.modal .form-grid input::placeholder,
.modal .form-grid template::placeholder {
    color: rgba(164, 164, 164, 1);
}
.modal .form-grid input,
.modal .form-grid textarea {
    font-size: 14px;
    font-weight: 500;
    padding: 14px 16px;
    border: 1px solid rgba(45, 45, 45, 0.09);
    color: var(--dark-color);
    background-color: var(--white-color);
    border-radius: 12px;
}
.modal .form-grid textarea:focus {
    box-shadow: none;
}
.modal .form-grid .form-column {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
/* ==============================
    Add Address Modal End
==============================  */


/* ==============================  User Dashboard Page Start ==============================  */
.ec-vendor-sidebar .ec-sidebar-wrap .ec-sidebar-block {
  padding: 25px 0 20px 0;
}

.p-30 {
  padding: 30px;
}

.ec-vendor-dashboard .ec-vendor-dashboard-card,
.ec-vendor-uploads .ec-vendor-dashboard-card {
  background: var(--primary-light);
}

.ec-vendor-dashboard .ec-vendor-sidebar .ec-sidebar-wrap,
.ec-vendor-uploads .ec-vendor-sidebar .ec-sidebar-wrap {
  border-color: #eeeeee;
  position: sticky;
  top: 30px;
  border-radius: 12px;
}

.ec-vendor-dashboard .ec-vendor-sidebar .ec-border-box,
.ec-vendor-uploads .ec-vendor-sidebar .ec-border-box {
    background-color: var(--primary-light);
  border: 1px solid rgba(255, 150, 46, 0.08);
}

.ec-vendor-dashboard .ec-vendor-sidebar .ec-sidebar-block .ec-vendor-block .ec-vendor-block-detail,
.ec-vendor-uploads .ec-vendor-sidebar .ec-sidebar-block .ec-vendor-block .ec-vendor-block-detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: start;
}

.ec-vendor-dashboard .ec-vendor-sidebar .ec-sidebar-block .ec-vendor-block .ec-vendor-block-detail h5,
.ec-vendor-uploads .ec-vendor-sidebar .ec-sidebar-block .ec-vendor-block .ec-vendor-block-detail h5 {
  font-weight: 500;
  color: var(--dark-color);
  padding-left: 15px;
  margin-bottom: 20px;
}

.ec-vendor-dashboard .ec-vendor-sidebar .ec-sidebar-block .ec-vendor-block .ec-vendor-block-items ul {
    list-style: none;
    padding: 0;
    margin-bottom: 0;
}

.ec-vendor-dashboard .ec-vendor-sidebar .ec-sidebar-block .ec-vendor-block .ec-vendor-block-items ul li,
.ec-vendor-uploads .ec-vendor-sidebar .ec-sidebar-block .ec-vendor-block .ec-vendor-block-items ul li {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding: 13px 0 13px 0;
  padding-left: 15px;
}

.ec-vendor-dashboard .ec-vendor-sidebar .ec-sidebar-block .ec-vendor-block .ec-vendor-block-items ul li a {
    transition: all 0.3s ease;
}

.ec-vendor-dashboard .ec-vendor-sidebar .ec-sidebar-block .ec-vendor-block .ec-vendor-block-items ul li a svg {
    color: #cccccc;
    margin-right: 6px;
    transition: all 0.3s ease;
}

.ec-vendor-dashboard .ec-vendor-sidebar .ec-sidebar-block .ec-vendor-block .ec-vendor-block-items ul li:hover a,
.ec-vendor-dashboard .ec-vendor-sidebar .ec-sidebar-block .ec-vendor-block .ec-vendor-block-items ul li:hover a svg,
.ec-vendor-uploads .ec-vendor-sidebar .ec-sidebar-block .ec-vendor-block .ec-vendor-block-items ul li:hover a {
  color: var(--primary-color);
  margin-left: 5px;
}

.ec-vendor-dashboard .ec-vendor-sidebar .ec-sidebar-block .ec-vendor-block .ec-vendor-block-items ul li.active a,
.ec-vendor-dashboard .ec-vendor-sidebar .ec-sidebar-block .ec-vendor-block .ec-vendor-block-items ul li.active a svg,
.ec-vendor-uploads .ec-vendor-sidebar .ec-sidebar-block .ec-vendor-block .ec-vendor-block-items ul li.active a {
  color: var(--primary-color);
}

.ec-vendor-dashboard .ec-vendor-sidebar .ec-sidebar-block .ec-vendor-block .ec-vendor-block-items ul li.active,
.ec-vendor-uploads .ec-vendor-sidebar .ec-sidebar-block .ec-vendor-block .ec-vendor-block-items ul li.active {
  color: var(--primary-color);
  background-color: rgba(255, 150, 46, 0.1);
  border-left: 3px solid var(--primary-color);
}

.ec-vendor-dashboard .ec-vendor-sidebar .ec-sidebar-block .ec-vendor-block .ec-vendor-block-items ul li a,
.ec-vendor-uploads .ec-vendor-sidebar .ec-sidebar-block .ec-vendor-block .ec-vendor-block-items ul li a {
  width: 100%;
  display: block;
  color: rgba(102, 102, 102, 1);
  font-weight: 500;
}

.ec-vendor-dashboard .ec-vendor-sidebar .ec-sidebar-block .ec-vendor-block .ec-vendor-block-items ul li:first-child,
.ec-vendor-uploads .ec-vendor-sidebar .ec-sidebar-block .ec-vendor-block .ec-vendor-block-items ul li:first-child {
  border-top: 0;
}

.ec-vendor-dashboard .ec-vendor-detail-block h6,
.ec-vendor-uploads .ec-vendor-detail-block h6 {
  margin-bottom: 15px;
  padding: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  font-weight: 700;
  color: #777;
  background: #f7f7f7;
  border: 1px solid #eeeeee;
}

.ec-vendor-dashboard .space-bottom-30,
.ec-vendor-uploads .space-bottom-30 {
  margin-bottom: 30px;
}

.ec-vendor-dashboard .ec-vendor-dashboard-card-profile,
.ec-vendor-uploads .ec-vendor-dashboard-card-profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  height: 278px;
  background-color: var(--primary-light);
  border: 1px solid rgba(255, 150, 46, 0.08);
  border-radius: 12px;
  padding: 30px;
}

.ec-vendor-dashboard .ec-vendor-dashboard-card-profile img,
.ec-vendor-uploads .ec-vendor-dashboard-card-profile img {
    width: 120px;
  height: 120px;
  border-radius: 12px;
  margin-bottom: 10px;
}

.ec-vendor-dashboard .ec-vendor-dashboard-card-profile h3,
.ec-vendor-uploads .ec-vendor-dashboard-card-profile h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  color: var(--dark-color);
}

.ec-vendor-dashboard .ec-vendor-dashboard-card-profile p,
.ec-vendor-uploads .ec-vendor-dashboard-card-profile p {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  color: #808080;
}

.ec-vendor-dashboard .ec-vendor-dashboard-card-profile .ec-profile-btn a {
    color: var(--primary-color);
}

.ec-vendor-dashboard .ec-vendor-dashboard-card-address,
.ec-vendor-uploads .ec-vendor-dashboard-card-address {
  display: flex;
  flex-direction: column;
  align-items: start;
  text-align: start;
  justify-content: center;
  height: 278px;
  background-color: var(--primary-light);
  border: 1px solid rgba(255, 150, 46, 0.08);
  border-radius: 12px;
  padding: 30px;
}

.ec-vendor-dashboard .ec-vendor-dashboard-card-address h5,
.ec-vendor-uploads .ec-vendor-dashboard-card-address h5 {
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 600;
  color: #999999;
}

.ec-vendor-dashboard .ec-vendor-dashboard-card-address h3,
.ec-vendor-uploads .ec-vendor-dashboard-card-address h3 {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 600;
  color: var(--dark-color);
}

.ec-vendor-dashboard .ec-vendor-dashboard-card-address h4,
.ec-vendor-uploads .ec-vendor-dashboard-card-address h4 {
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 500;
  color: var(--dark-color);
}

.ec-vendor-dashboard .ec-vendor-dashboard-card-address p,
.ec-vendor-uploads .ec-vendor-dashboard-card-address p {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  color: #808080;
}

.ec-vendor-dashboard .ec-vendor-dashboard-card-address .ec-address-btn a {
    color: var(--primary-color);
}

.ec-vendor-dashboard .ec-vendor-dashboard-card,
.ec-vendor-uploads .ec-vendor-dashboard-card {
  border: 1px solid rgba(255, 150, 46, 0.08);
  border-radius: 12px;
}

.ec-vendor-dashboard .ec-vendor-dashboard-card .ec-vendor-card-header,
.ec-vendor-uploads .ec-vendor-dashboard-card .ec-vendor-card-header {
  padding: 20px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.ec-vendor-dashboard .ec-vendor-dashboard-card .ec-vendor-card-header-inner,
.ec-vendor-uploads .ec-vendor-dashboard-card .ec-vendor-card-header-inner {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ec-vendor-dashboard .ec-vendor-dashboard-card .ec-vendor-card-header h5,
.ec-vendor-uploads .ec-vendor-dashboard-card .ec-vendor-card-header h5 {
  margin: 0;
  font-size: 20px;
  text-transform: capitalize;
  font-weight: 600;
  color: var(--dark-color);
}

.ec-vendor-dashboard .ec-vendor-dashboard-card .ec-vendor-card-header .ec-header-btn a {
    color: var(--primary-color);
}

.ec-vendor-dashboard .order-summary .address-card .card-header h3,
.ec-vendor-uploads .order-summary .address-card .card-header h3 {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark-color);
}

.ec-vendor-dashboard .order-summary .card-total .card-header h3,
.ec-vendor-uploads .order-summary .card-total .card-header h3 {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  color: var(--dark-color);
}

.ec-vendor-dashboard .order-summary .card-total .card-header h5,
.ec-vendor-uploads .order-summary .card-total .card-header h5 {
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 600;
  color: #999999;
}

.ec-vendor-dashboard .order-summary #ec-progressbar,
.ec-vendor-uploads .order-summary #ec-progressbar {
  overflow: hidden;
  margin: 25px 15px 35px;
}

.ec-vendor-dashboard .ec-vendor-dashboard-card .ec-vendor-card-header .ec-header-btn .btn,
.ec-vendor-uploads .ec-vendor-dashboard-card .ec-vendor-card-header .ec-header-btn .btn {
  margin-left: 5px;
}

.ec-vendor-dashboard .ec-vendor-dashboard-card .ec-vendor-card-body .ec-vendor-card-table,
.ec-vendor-uploads .ec-vendor-dashboard-card .ec-vendor-card-body .ec-vendor-card-table {
  overflow-y: auto;
}

.ec-vendor-dashboard .ec-vendor-dashboard-card .ec-vendor-card-body .ec-table thead tr th,
.ec-vendor-uploads .ec-vendor-dashboard-card .ec-vendor-card-body .ec-table thead tr th {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
  color: var(--dark-color);
  padding-left: 30px;
  border: 0;
  background-color: rgba(255, 242, 227, 1);
  white-space: nowrap;
}

.ec-vendor-dashboard .ec-vendor-dashboard-card .ec-vendor-card-body .ec-table tbody,
.ec-vendor-uploads .ec-vendor-dashboard-card .ec-vendor-card-body .ec-table tbody {
  vertical-align: middle;
}


.ec-vendor-dashboard .ec-vendor-dashboard-card .ec-vendor-card-body .ec-table tbody tr th,
.ec-vendor-dashboard .ec-vendor-dashboard-card .ec-vendor-card-body .ec-table tbody tr td,
.ec-vendor-uploads .ec-vendor-dashboard-card .ec-vendor-card-body .ec-table tbody tr th,
.ec-vendor-uploads .ec-vendor-dashboard-card .ec-vendor-card-body .ec-table tbody tr td {
  color: var(--dark-color);
  border: 0;
  padding-left: 30px;
  white-space: nowrap;
}

.ec-vendor-dashboard .ec-vendor-dashboard-card .ec-vendor-card-body .ec-table tbody tr th .prod-img,
.ec-vendor-dashboard .ec-vendor-dashboard-card .ec-vendor-card-body .ec-table tbody tr td .prod-img,
.ec-vendor-uploads .ec-vendor-dashboard-card .ec-vendor-card-body .ec-table tbody tr th .prod-img,
.ec-vendor-uploads .ec-vendor-dashboard-card .ec-vendor-card-body .ec-table tbody tr td .prod-img {
  width: 50px;
  height: 50px;
}

.ec-vendor-dashboard .ec-vendor-dashboard-card .ec-vendor-card-body .ec-table tbody tr th span,
.ec-vendor-dashboard .ec-vendor-dashboard-card .ec-vendor-card-body .ec-table tbody tr td span,
.ec-vendor-uploads .ec-vendor-dashboard-card .ec-vendor-card-body .ec-table tbody tr th span,
.ec-vendor-uploads .ec-vendor-dashboard-card .ec-vendor-card-body .ec-table tbody tr td span {
  font-size: 14px;
  font-weight: 500;
  padding: 14px 0 0 0 !important;
  display: block;
}

.ec-vendor-dashboard .ec-vendor-dashboard-card .ec-vendor-card-body .ec-table tbody tr th .text-primary,
.ec-vendor-dashboard .ec-vendor-dashboard-card .ec-vendor-card-body .ec-table tbody tr td .text-primary,
.ec-vendor-uploads .ec-vendor-dashboard-card .ec-vendor-card-body .ec-table tbody tr th .text-primary,
.ec-vendor-uploads .ec-vendor-dashboard-card .ec-vendor-card-body .ec-table tbody tr td .text-primary {
  color: rgba(36, 151, 242, 1) !important;
}

.ec-vendor-dashboard .ec-vendor-dashboard-card .ec-vendor-card-body .ec-table tbody tr th .text-warning,
.ec-vendor-dashboard .ec-vendor-dashboard-card .ec-vendor-card-body .ec-table tbody tr td .text-warning,
.ec-vendor-uploads .ec-vendor-dashboard-card .ec-vendor-card-body .ec-table tbody tr th .text-warning,
.ec-vendor-uploads .ec-vendor-dashboard-card .ec-vendor-card-body .ec-table tbody tr td .text-warning {
  color: rgba(249, 160, 0, 1) !important;
}

.ec-vendor-dashboard .ec-vendor-dashboard-card .ec-vendor-card-body .ec-table tbody tr th .text-success,
.ec-vendor-dashboard .ec-vendor-dashboard-card .ec-vendor-card-body .ec-table tbody tr td .text-success,
.ec-vendor-uploads .ec-vendor-dashboard-card .ec-vendor-card-body .ec-table tbody tr th .text-success,
.ec-vendor-uploads .ec-vendor-dashboard-card .ec-vendor-card-body .ec-table tbody tr td .text-success {
  color: rgba(24, 146, 20, 1) !important;
}


.ec-vendor-dashboard .ec-vendor-dashboard-card .ec-vendor-card-body .ec-table tbody tr th .text-danger,
.ec-vendor-dashboard .ec-vendor-dashboard-card .ec-vendor-card-body .ec-table tbody tr td .text-danger,
.ec-vendor-uploads .ec-vendor-dashboard-card .ec-vendor-card-body .ec-table tbody tr th .text-danger,
.ec-vendor-uploads .ec-vendor-dashboard-card .ec-vendor-card-body .ec-table tbody tr td .text-danger {
  color: rgba(207, 21, 24, 1) !important;
}

.ec-vendor-dashboard .ec-vendor-dashboard-card .ec-vendor-card-body .ec-table tbody tr th .btn,
.ec-vendor-dashboard .ec-vendor-dashboard-card .ec-vendor-card-body .ec-table tbody tr td .btn,
.ec-vendor-uploads .ec-vendor-dashboard-card .ec-vendor-card-body .ec-table tbody tr th .btn,
.ec-vendor-uploads .ec-vendor-dashboard-card .ec-vendor-card-body .ec-table tbody tr td .btn {
  font-size: 12px;
  font-weight: 500;
  border-radius: 4px;
  color: var(--dark-color);
  background-color: rgba(255, 242, 227, 1);
  float: right;
}

.ec-vendor-dashboard .ec-vendor-dashboard-card .ec-vendor-card-body .ec-table tbody tr th .tbl-btn,
.ec-vendor-dashboard .ec-vendor-dashboard-card .ec-vendor-card-body .ec-table tbody tr td .tbl-btn,
.ec-vendor-uploads .ec-vendor-dashboard-card .ec-vendor-card-body .ec-table tbody tr th .tbl-btn,
.ec-vendor-uploads .ec-vendor-dashboard-card .ec-vendor-card-body .ec-table tbody tr td .tbl-btn {
  padding: 10px 0 !important;
}

.ec-vendor-dashboard .ec-vendor-dashboard-card .ec-vendor-card-body canvas,
.ec-vendor-uploads .ec-vendor-dashboard-card .ec-vendor-card-body canvas {
  height: 400px;
}

.ec-vendor-dashboard .ec-vendor-dashboard-sort-card,
.ec-vendor-uploads .ec-vendor-dashboard-sort-card {
  margin-bottom: 30px;
  padding: 30px;
  border: 1px solid #eeeeee !important;
  position: relative;
  overflow: hidden;
}

.ec-vendor-dashboard .ec-vendor-dashboard-sort-card h5,
.ec-vendor-dashboard .ec-vendor-dashboard-sort-card h3,
.ec-vendor-dashboard .ec-vendor-dashboard-sort-card p,
.ec-vendor-uploads .ec-vendor-dashboard-sort-card h5,
.ec-vendor-uploads .ec-vendor-dashboard-sort-card h3,
.ec-vendor-uploads .ec-vendor-dashboard-sort-card p {
  color: #fff;
}

.ec-vendor-dashboard .ec-vendor-dashboard-sort-card h5,
.ec-vendor-uploads .ec-vendor-dashboard-sort-card h5 {
  margin-bottom: 15px;
  font-size: 17px;
  text-transform: uppercase;
  font-weight: 600;
}

.ec-vendor-dashboard .ec-vendor-dashboard-sort-card h3,
.ec-vendor-uploads .ec-vendor-dashboard-sort-card h3 {
  margin: 0;
  line-height: 24px;
  font-weight: 800;
}

.ec-vendor-dashboard .ec-vendor-dashboard-sort-card h3 span,
.ec-vendor-uploads .ec-vendor-dashboard-sort-card h3 span {
  position: absolute;
  font-size: 15px;
  font-weight: 400;
  margin-left: 10px;
}

.ec-vendor-dashboard .ec-vendor-dashboard-sort-card:after,
.ec-vendor-uploads .ec-vendor-dashboard-sort-card:after {
  content: "";
  width: 90px;
  height: 90px;
  position: absolute;
  right: -2px;
  bottom: -35px;
  background: #fff;
  border-radius: 50%;
  opacity: 0.3;
}

.ec-vendor-dashboard .ec-vendor-dashboard-sort-card:before,
.ec-vendor-uploads .ec-vendor-dashboard-sort-card:before {
  content: "";
  width: 90px;
  height: 90px;
  position: absolute;
  right: -35px;
  bottom: -2px;
  background: #fff;
  border-radius: 50%;
  opacity: 0.3;
}

.ec-vendor-dashboard .color-blue,
.ec-vendor-uploads .color-blue {
  background-image: linear-gradient(145deg, #b1d1ff 0%, #588fe4 100%);
}

.ec-vendor-dashboard .color-pink,
.ec-vendor-uploads .color-pink {
  background-image: linear-gradient(145deg, #fdb8c3, #ec6f85);
}

.ec-vendor-dashboard .color-green,
.ec-vendor-uploads .color-green {
  background-image: linear-gradient(145deg, #78ecc7 0%, #2fce9a 100%);
}

.ec-vendor-dashboard .color-orange,
.ec-vendor-uploads .color-orange {
  background-image: linear-gradient(145deg, #f9c899, #f79165);
}

.ec-vendor-dashboard .ec-vendor-dashboard-card.bg_white,
.ec-vendor-uploads .ec-vendor-dashboard-card.bg_white,
.ec-vendor-uploads .ec-vendor-dashboard-card.bg_white {
    border: 1px solid rgba(45, 45, 45, 0.09);
    background-color: transparent;
}

.ec-vendor-dashboard .ec-vendor-dashboard-card .ec-vendor-card-setting-header,
.ec-vendor-uploads .ec-vendor-dashboard-card .ec-vendor-card-setting-header {
  padding: 0 0 16px 0;
  margin: 20px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 1px solid rgba(45, 45, 45, 0.09);
}
.ec-vendor-dashboard .ec-vendor-dashboard-card .ec-vendor-card-setting-header h5,
.ec-vendor-uploads .ec-vendor-dashboard-card .ec-vendor-card-setting-header h5 {
    font-weight: 600;
    margin-bottom: 0;
}

.ec-vendor-dashboard .ec-vendor-dashboard-card .ec-vendor-card-setting-table,
.ec-vendor-uploads .ec-vendor-dashboard-card .ec-vendor-card-setting-table {
  padding: 5px 30px 20px 30px;
}

.ec-vendor-dashboard .ec-vendor-dashboard-card .setting-form .setting-image,
.ec-vendor-uploads .ec-vendor-dashboard-card .setting-form .setting-image {
  width: 200px;
  position: relative;
}

.ec-vendor-dashboard .ec-vendor-dashboard-card .setting-form .setting-image img,
.ec-vendor-uploads .ec-vendor-dashboard-card .setting-form .setting-image img {
  height: 200px;
  border-radius: 12px;
  object-fit: cover;
}

.ec-vendor-dashboard .ec-vendor-dashboard-card .setting-form .setting-image .edit-avatar,
.ec-vendor-uploads .ec-vendor-dashboard-card .setting-form .setting-image .edit-avatar {
  position: absolute;
  left: 50%;
  bottom: 13px;
  transform: translateX(-50%);
}

.ec-vendor-dashboard .ec-vendor-dashboard-card .setting-form .setting-image .ec-image-upload,
.ec-vendor-uploads .ec-vendor-dashboard-card .setting-form .setting-image .ec-image-upload {
  display: none;
}

.ec-vendor-dashboard .ec-vendor-dashboard-card .setting-form .setting-image .change-btn,
.ec-vendor-uploads .ec-vendor-dashboard-card .setting-form .setting-image .change-btn {
  color: var(--dark-color);
  font-size: 10px;
  font-weight: 700;
  padding: 0 13px;
  width: max-content;
  height: 34px;
  line-height: 34px;
  background-color: rgb(255, 255, 255, 0.72);
  border-radius: 8px;
}

.ec-vendor-dashboard .ec-vendor-dashboard-card .setting-form label,
.ec-vendor-uploads .ec-vendor-dashboard-card .setting-form label {
  color: var(--dark-color);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 6px;
}

.ec-vendor-dashboard .ec-vendor-dashboard-card .setting-form .auth-input,
.ec-vendor-uploads .ec-vendor-dashboard-card .setting-form .auth-input {
  font-size: 14px;
  font-weight: 500;
  height: 50px;
  border: 1px solid rgba(45, 45, 45, 0.09);
  color: rgba(102, 102, 102, 1);
  background-color: rgba(250, 250, 250, 1);
  margin-bottom: 12px;
}

.ec-vendor-dashboard .ec-vendor-dashboard-card .setting-form .auth-input:focus,
.ec-vendor-dashboard .ec-vendor-dashboard-card .setting-form .auth-input:active,
.ec-vendor-uploads .ec-vendor-dashboard-card .setting-form .auth-input:focus,
.ec-vendor-uploads .ec-vendor-dashboard-card .setting-form .auth-input:active {
  color: var(--dark-color);
  border: 1px solid rgba(45, 45, 45, 0.09);
  background-color: var(--white-color);
}

.ec-vendor-dashboard .ec-vendor-dashboard-card .setting-form .password-show,
.ec-vendor-uploads .ec-vendor-dashboard-card .setting-form .password-show {
    color: rgba(141, 141, 141, 1);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 15px;
}

.ec-vendor-dashboard .ec-vendor-dashboard-card .setting-form button,
.ec-vendor-uploads .ec-vendor-dashboard-card .setting-form button {
    color: var(--white-color);
    font-size: 16px;
    font-weight: 700;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 8px 16px;
    margin-top: 20px;
    transition: 0.3s ease;
}

.ec-vendor-dashboard .ec-vendor-dashboard-card .setting-form button:hover,
.ec-vendor-uploads .ec-vendor-dashboard-card .setting-form button:hover {
    color: var(--white-color);
    background-color: var(--dark-color);
    border-color: var(--dark-color);
}

.ec-vendor-card-header-inner .dot {
    width: 5px;
    height: 5px;
    background-color: var(--dark-color);
    border-radius: 50%;
}


.track_order_page .ec-page-content .section-title {
  margin-bottom: 22px;
}

.track_order_page .ec-page-content .section-title .ec-title {
  padding: 0 64px;
}

.track_order_page .ec-page-content .section-title .ec-title:after {
  width: 50px;
}

.track_order_page .ec-page-content .section-title .ec-title:before {
  width: 50px;
}

.ec-trackorder-he {
  text-align: center;
  margin-bottom: 50px;
}

.ec-trackorder-he h1 {
  color: var(--dark-color);
  font-size: 32px;
  font-weight: 600;
}

.ec-trackorder-he h1 span {
  color: var(--primary-color);
}

.ec-trackorder-he p {
  color: var(--dark-color);
  font-size: 16px;
  font-weight: 400;
  margin-top: 10px;
}

.ec-trackorder-he .ec-order-search {
  height: 60px;
  -webkit-box-shadow: none;
  box-shadow: none;
  width: 100%;
  margin-bottom: 30px;
  outline: none;
  border-radius: 12px;
  color: #444444;
  padding: 0;
  position: relative;
}

.ec-trackorder-he .ec-order-search .ec-order-search-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #FAFAFA;
  border: 1px solid #E6E6E6;
  border-radius: 12px;
}

.ec-trackorder-he .ec-order-search .form-control {
  display: block;
  width: 100%;
  min-height: 60px;
  height: 60px;
  padding: 0 20px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  color: #777777;
  border-radius: 0;
  background-color: transparent;
  border: none;
  letter-spacing: 0;
}

.ec-trackorder-he .ec-order-search .submit {
  position: relative;
  height: 60px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 60px;
  border-radius: 0 12px 12px 0;
  border: 1px solid var(--primary-color);
  color: #ffffff;
  background-color: var(--primary-color);
}

.ec-trackorder-he .ec-order-search .submit i {
  font-weight: 700;
}

.ec-trackorder-inner {
  background: none;
  padding: 50px 0;
  overflow: hidden;
  border-top: 1px solid #eeeeee;
}

.ec-trackorder-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: left;
  flex-wrap: wrap;
}

.ec-trackorder-top .ec-order-id {
  font-family: "Poppins, sans-serif";
  font-size: 25px;
  font-weight: 600;
  line-height: 40px;
  margin-bottom: 0;
  color: #252422;
  letter-spacing: 0;
  position: relative;
  text-transform: capitalize;
}

.ec-trackorder-top .ec-order-detail {
  font-size: 15px;
  color: #444444;
  letter-spacing: 0;
  line-height: 1.1;
}

.ec-trackorder-top .ec-order-detail span {
  color: #3474d4;
  text-transform: uppercase;
  font-weight: 600;
}

#ec-progressbar {
  overflow: hidden;
  margin: 36px -8% 5px;
  padding: 0;
}

#ec-progressbar li {
  list-style-type: none;
  font-size: 14px;
  width: 25%;
  float: left;
  position: relative;
  font-weight: 400;
  text-align: center;
}

#ec-progressbar li .ec-progressbar-track {
  position: relative;
  display: block;
}

#ec-progressbar li .ec-progressbar-track:before {
  width: 40px;
  height: 40px;
  line-height: 40px;
  display: block;
  font-size: 14px;
  font-weight: 600;
  background: none;
  border: 1px dashed var(--primary-color);
  border-radius: 50%;
  margin: auto;
  padding: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: var(--primary-color);
  background-color: var(--primary-light);
  z-index: 9;
  position: relative;
}

#ec-progressbar li .ec-progressbar-track:after {
  content: "";
  width: 100%;
  height: 10px;
  background: var(--primary-light);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

#ec-progressbar li .ec-track-icon {
  display: block;
  margin-bottom: 11px;
}

#ec-progressbar li .ec-track-title {
  position: relative;
  color: var(--dark-color);
  font-size: 15px;
  text-transform: capitalize;
  font-weight: 600;
  line-height: 24px;
  max-width: 50%;
  display: block;
  margin: 0 auto;
  text-align: center;
  letter-spacing: 0;
  margin-top: 16px;
  word-break: break-all;
}
#ec-progressbar li .ec-track-title.active {
    color: var(--primary-color);
}

#ec-progressbar li:first-child .ec-progressbar-track:after {
  content: none;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  position: absolute;
  left: 50%;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

#ec-progressbar li:last-child .ec-progressbar-track:after {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  position: absolute;
  left: -50%;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

#ec-progressbar li:nth-child(2) .ec-progressbar-track:after {
  left: -50%;
}

#ec-progressbar li:nth-child(3) .ec-progressbar-track:after {
  left: -50%;
}

#ec-progressbar li:nth-child(4) .ec-progressbar-track:after {
  left: -50%;
}

#ec-progressbar li.active .ec-progressbar-track:before {
  color: var(--white-color);
  background: var(--primary-color);
  font-family: "Font Awesome 6 Pro";
  content: "\f00c";
  z-index: 2;
}

#ec-progressbar li.active .ec-progressbar-track:after {
  background: var(--primary-color);
}

#ec-progressbar .step1 .ec-progressbar-track:before {
  content: "01";
}

#ec-progressbar .step2 .ec-progressbar-track:before {
  content: "02";
}

#ec-progressbar .step3 .ec-progressbar-track:before {
  content: "03";
}

#ec-progressbar .step4 .ec-progressbar-track:before {
  content: "04";
}

.order-summary .address-card {
  display: flex;
  height: 100%;
}

.order-summary .card.billing-card {
  border-radius: 20px 0 0 20px;
  border: 1px solid rgba(255, 150, 46, 0.09);
  background-color: var(--primary-light);
}

.order-summary .card.shipping-card {
  border-radius: 0 20px 20px 0;
  border: 1px solid rgba(255, 150, 46, 0.09);
  background-color: var(--primary-light);
}

.order-summary .card .card-header {
  padding: 20px;
  background: none;
  border-bottom-color: rgba(255, 150, 46, 0.09);
}

.order-summary .card .card-header h3 {
  color: #999999;
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
}

.order-summary .card .card-body {
  padding: 20px;
}

.order-summary .card-body h5 {
  color: var(--dark-color);
  font-size: 16px;
  font-weight: 500;
}

.order-summary .card-body p {
  color: #666666;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 4px;
}
.order-summary .card-total {
  height: 100%;
  border-radius: 20px;
  border: 1px solid rgba(255, 150, 46, 0.09);
  background-color: var(--primary-light);
}

.order-summary .card-total .card-header {
  padding: 20px;
  background: none;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 150, 46, 0.09);
}

.order-summary .card-total ul {
    padding-left: 0;
    margin-bottom: 0;
}

.order-summary .card-total .card-header h3 {
  color: var(--dark-color);
  font-size: 14px;
  font-weight: 500;
}

.order-summary .card-total .card-total-divider {
  margin: 0 10px;
  border-left: 1.5px solid rgba(255, 150, 46, 0.09);
}

.order-summary .card-total .card-header h5 {
  color: #999999;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}

.order-summary .card-total .card-body {
  padding: 0px 20px;
}

.order-summary .card-total ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.order-summary .card-total ul li {
  color: var(--dark-color);
  font-size: 14px;
  font-weight: 600;
  padding-block: 14px;
  border-bottom: 1px solid rgba(255, 150, 46, 0.09);
}

.order-summary .card-total ul li a {
  color: #666666;
  font-size: 14px;
  font-weight: 500;
}

.order-summary .card-total ul li:last-child {
  color: var(--dark-color);
  font-size: 18px;
  font-weight: 500;
  padding-block: 18px;
  border-bottom: 0;
}

.order-summary .card-total ul li:last-child a {
  color: var(--primary-color);
  font-size: 18px;
  font-weight: 700;
}

.order-summary .product-item {
  display: flex;
  align-items: center;
  gap: 12px;
  height: 100%;
  /* height: 118px; */
  border-radius: 10px;
  padding: 20px 20px 20px 10px;
  background: var(--primary-light);
  border: 1px solid rgba(255, 150, 46, 0.09);
}

.order-summary .product-item img {
  width: 90px;
  height: 80px;
  object-fit: cover;
}

.order-summary .product-item h2 {
  color: var(--dark-color);
  font-size: 20px;
  font-weight: 700;
  margin: 0;
}

.order-summary .product-item .product-item-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 6px;
}

.order-summary .product-item p {
  color: var(--dark-color);
  font-size: 13px;
  font-weight: 600;
  margin: 0;
}

.order-summary .product-item .product-item-inner h5 {
    color: var(--dark-color);
    font-weight: 700;
    margin-bottom: 0;
}

.order-summary .product-item .product-item-inner p {
    color: var(--dark-color);
    font-size: 16px;
    font-weight: 500;
}



/* ==============================  Help Center Page Style Start  ==============================  */
/* ==============================
    Help Header Start
==============================  */
header.help-center-header {
    position: unset;
    top: unset;
}
header.help-center-header.is-sticky {
    position: fixed;
    left: 0;
    top: 0;
    box-shadow: 0 5px 16px rgba(0, 0, 0, 0.1);
    background-color: var(--white-color);
    animation: slideDown 0.4s ease-in-out;
    z-index: 999;
}
header.help-center-header .right-wrapper a {
    color: var(--white-color);
}
header.help-center-header nav.navbar {
    padding: 16px 0;
}
/* ==============================
    Help Header End
==============================  */

/* ==============================
   Help Hero Section Start
==============================  */
.help-hero {
    background: var(--primary-light) url(../images/banner/hero-bg.png) no-repeat center center;
    background-size: cover;
    position: relative;
}
.help-hero .container {
    position: relative;
    padding-block: 120px;
}
.hero-vector {
    height: 100%;
    position: absolute;
    bottom: 0;
    right: 0;
}
.help-hero .wrap {
    position: relative;
    display: flex;
}
.help-hero .content {
    position: relative;
    max-width: 640px;
    align-self: center;
    z-index: 3;
}
.help-hero .hero-banner {
    height: 100%;
}
.help-hero .hero-banner img {
    width: 55%;
    /* height: 100%; */
    position: absolute;
    right: -12px;
    top: -38%;
    z-index: 3;
}
.help-hero h1 {
    font-size: 64px;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 10px;
}
.help-hero h1 span {
    color: var(--primary-color);
}

.help-hero .search-wrapper {
    position: relative;
    margin-block: 10px;
}
.help-hero .search-wrapper input::placeholder {
    color: var(--gray-color);
}
.help-hero .search-wrapper input {
    width: 100%;
    font-size: 18px;
    color: var(--dark-color);
    padding: 18px 18px 18px 52px;
    border-radius: 20px;
    border: 1px solid rgba(45, 45, 45, 0.1);

}

.help-hero .search-wrapper i {
    font-size: 22px;
    color: var(--gray-color);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 16px;
    z-index: 3;
}

.help-hero .search-wrapper button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 8px;
    z-index: 3;
}

.help-hero .popular-searches-wrapper {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
    margin-top: 30px;
    flex-wrap: wrap;
}
.help-hero .popular-searches-wrapper label {
    font-size: 16px;
    color: var(--gray-color);
    margin-right: 16px;
}

.help-hero .popular-searches-wrapper a {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    padding: 8px 16px;
    background-color: rgba(255, 232, 207, 1);
    border: 1px solid rgba(255, 150, 46, 0.2);
    border-radius: 10px;
    transition: all 0.3s ease;

    &:hover {
        color: var(--white-color);
        background-color: var(--dark-color);
    }
}

.help-hero .multi-users {
    display: flex;
    gap: 7px;
    margin-top: 30px;
}
.help-hero .multi-users ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}
.help-hero .multi-users ul li:not(:first-child) {
    display: inline-block;
    margin-left: -16px;
}
.help-hero .multi-users ul li img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--white-color);
}
.help-hero .partner-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.help-hero .partner-title {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 16px;
    margin: 0;
}

.help-hero .rating {
    display: flex;
    align-items: center;
    font-size: 14px;
}

.help-hero .rating i {
    color: var(--primary-color);
    margin-right: 5px;
}

.help-hero .rating-score {
    font-weight: bold;
    margin-right: 5px;
    color: var(--dark-color);
}

.help-hero .review-count {
    color: rgba(136, 136, 136, 1);
}
/* ==============================
    Help Hero Section End
==============================  */

/* ==============================
    Help Category Section Start
==============================  */
.help-category-card {
    height: 100%;
    padding: 30px;
    background-color: var(--white-color);
    border-radius: 30px;
    border: 1px solid rgba(224, 224, 224, 1);
    transition: all 0.3s ease;
}

.help-category-card svg {
    color: var(--primary-color);
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.help-category-card h5 {
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 6px;
    transition: all 0.3s ease;
}

.help-category-card p {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-color);
    transition: all 0.3s ease;
}

.help-category-card:hover {
    background-color: var(--primary-color);
    box-shadow: 0 24px 48px 0 rgba(255, 150, 46, 0.24);
    border: 1px solid var(--primary-color);
}

.help-category-card:hover h5,
.help-category-card:hover p,
.help-category-card:hover svg {
    color: var(--white-color);
}

/* ==============================
    Help Category Section End
==============================  */

/* ==============================
    Help POpular Article Start
==============================  */
.help-popular-articles {
    background: rgba(255, 150, 46, 0.08) url(../images/banner/hero-bg.png) no-repeat center center;
    background-size: cover;
}

.help-article-columns {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.help-article-list {
    padding-left: 1rem;
    margin-bottom: 0;
}

.help-article-item {
    font-size: 22px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 4px;
}

.help-article-item:last-child {
    margin-bottom: 0px;
}

.help-article-item a:hover {
    text-decoration: underline !important;
    text-decoration-thickness: 1px !important;
}
/* ==============================
    Help POpular Article End
==============================  */


/* ==============================
     Help Footer Section Start
==============================  */
.footer-help {
    padding-block: 16px;
    background-color: var(--dark-color);
}

.footer-help .copyright {
    color: var(--white-color);
    font-size: 1rem;
    font-weight: 600;
}

.footer-help .social-icons {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 0;
}

.footer-help .social-icon {
    color: var(--white-color);
    font-size: 1rem;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background-color: rgba(112, 112, 112, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-help .social-icon:hover {
    background-color: var(--primary-color);
    box-shadow: 0 15px 20px 0 rgba(255, 150, 46, 0.2);
    transform: translateY(-5px);
}
/* ==============================
     Help Footer Section End
==============================  */

/* ==============================
    Help Contact Section Start
==============================  */
.help-contact {
    background-color: var(--primary-color);
}
.help-contact .section-heading {
    color: var(--white-color);
}
.help-contact .subtitle {
    color: var(--white-color);
}
.help-contact .contact-btn {
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    color: var(--dark-color);
    border-radius: 41px;
    padding: 18px 38px;
    background-color: var(--white-color);
    transition: all 0.3s ease;
    cursor: pointer;

    &:hover {
        color: var(--white-color);
        background-color: var(--dark-color);
    }
}
.help-contact .help-banner {
    position: absolute;
    right: 0;
    bottom: -60px;
}

/*   Chat interface    */
body.no-scroll {
  overflow: hidden;
}
.chat-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
}
.help-chat-container {
    width: 500px;
    max-width: 90vw;
    margin: 0 auto;
    background: var(--white-color);
    border-radius: 16px;
    box-shadow: -10px -12px 33px 0 rgba(0, 0, 0, 0.06);
    overflow: hidden;
    display: none;
    position: fixed;
    bottom: 30px;
    padding: 20px;
    right: 20px;
    z-index: 1000;
    scrollbar-width: none;
}
.help-chat-container ::-webkit-scrollbar {
    display: none;
}
.help-chat-container .help-chat-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 20px;
    border-bottom: 1px solid rgb(40, 40, 40, 0.10);
}
.help-chat-header .chat-info .dropdown-toggle {
    width: auto;
    height: auto;
    font-size: 24px;
    color: var(--dark-color);
    background-color: transparent;
    border: none;
}
.chat-info .dropdown-toggle::after {
    display: none !important;
}
.chat-info .dropdown-menu {
    overflow: auto;
    padding: 0.5rem 0;
    position: absolute;
    inset: 0px auto auto 0px !important;
    margin: 0px;
    transform: translate3d(0px, 54px, 0px) !important;
}
.help-chat-header .logo {
    width: 100px;
}
.help-chat-header .close-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    color: var(--vz-light);
    background: none;
    border: 1px solid var(--vz-light);
    border-radius: 100px;
}
.help-chat-messages {
    height: 600px;
    overflow-y: auto;
    padding: 1rem;
    background: var(--vz-light);
}
.help-chat-messages .chat-message {
    display: flex;
    align-items: end;
    gap: 10px;
    margin-bottom: 40px;
    position: relative;
}
.chat-message .message-details {
    max-width: 75%;
    position: relative;
}
.chat-message.received img {
    width: 32px;
    height: 32px;
}
.chat-message.received .text {
    background: rgba(255, 242, 227, 1);
    border-radius: 16px 16px 16px 0;
}
.chat-message.sent {
    flex-direction: row-reverse;
}
.chat-message.sent img {
    width: 32px;
    height: 32px;
    object-fit: cover;
    border-radius: 50%;
}
.chat-message.sent .text {
    background: rgba(248, 248, 248, 1);
    border-radius: 16px 16px 0 16px;
}
.chat-message.sent .text,
.chat-message.received .text {
    padding: 10px 15px;
    position: relative;
    margin-bottom: 0;
}
.chat-message .timestamp {
    color: var(--secondary-color);
    font-size: 12px;
    position: absolute;
}
.chat-message.sent .timestamp {
    right: 0;
    bottom: -27px;
}
.chat-message.received .timestamp {
    left: 0;
    bottom: -27px;
}
.help-chat-messages .reply-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 60px;
}
.reply-message {
    font-size: 15px;
    color: var(--dark-color);
    border: 1px solid var(--primary-color);
    border-radius: 15px;
    padding: 16px;
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
    display: inline-block;
    max-width: 100%;
    width: fit-content;
}
.help-chat-footer {
    position: relative;
    margin-top: 10px;
}
.help-chat-footer input::placeholder {
    color: var(--gray-color);
}
.help-chat-footer input:focus {
    border-color: var(--primary-color);
}
.help-chat-footer input {
    color: var(--dark-color);
    background-color: rgba(251, 251, 251, 1);
    border: 1px solid rgba(45, 45, 45, 0.09);
    padding: 16px;
    border-radius: 15px;
}
.help-chat-footer .send-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 41px;
    height: 41px;
    color: var(--white-color);
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 10px;
    transition: background-color 0.3s ease;

    &:hover {
        background-color: var(--dark-color);
    }
}

/* ==============================
    Help Contact Section End
==============================  */

/* ==============================
    Help Category Tabs Start
==============================  */
.help-cat-search {
    position: relative;
    float: right;
}
.help-cat-searchr input::placeholder {
    color: var(--gray-color);
}
.help-cat-search input {
    /* width: 100%; */
    font-size: 18px;
    color: var(--dark-color);
    padding: 18px 18px 18px 52px;
    border-radius: 20px;
    border: 1px solid rgba(45, 45, 45, 0.1);
    background-color: rgba(250, 250, 250, 1);

}

.help-cat-search i {
    font-size: 22px;
    color: var(--gray-color);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 16px;
    z-index: 3;
}

.help-tabs-wrapper {
    width: 100%;
    border: 1px solid rgba(45, 45, 45, 0.09);
    background-color: var(--white-color);
    border-radius: 12px;
    overflow: hidden;
    position: sticky;
    top: 100px;
}
.help-tabs-wrapper h5 {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-color);
    padding: 20px 16px 16px 24px;
    margin-bottom: 0;
}

.help-tabs-wrapper .nav-pills {
    flex-direction: column;

}
.help-tabs-wrapper .nav-pills .nav-link {
    font-size: 16px;
    font-weight: 500;
    color: var(--gray-color);
    width: 100%;
    padding: 16px;
    padding-left: 24px;
    border-radius: 0;
    background-color: transparent;
    display: flex;
    text-align: left;
    justify-content: space-between;
    gap: 14px;
    transition: all 0.2s ease;
}
.help-tabs-wrapper .nav-pills .nav-item:last-child {
    margin-bottom: 6px;
}
.help-tabs-wrapper .nav-pills .nav-link:hover,
.help-tabs-wrapper .nav-pills .nav-link.active {
    color: var(--primary-color);
    border-left: 3px solid var(--primary-color);
    background-color: rgba(255, 150, 46, 0.1);
}


.help-tab-content-wrapper {
    width: 100%;
    border: 1px solid rgba(45, 45, 45, 0.09);
    background-color: var(--white-color);
    border-radius: 12px;
    padding: 20px;
    overflow: hidden;
}
.help-tab-content-wrapper h5 {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 12px;
}

.help-tab-content-wrapper .help-question-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.help-tab-content-wrapper .help-question-link {
    font-size: 16px;
    font-weight: 500;
    color: var(--dark-color);
    width: 100%;
    padding: 16px 20px;
    border-radius: 12px;
    border: 1px solid rgba(45, 45, 45, 0.08);
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    transition: all 0.2s ease;
}
.help-tab-content-wrapper .help-question-link:hover {
    color: var(--primary-color);
}
/* ==============================
    Help Category Tabs End
==============================  */

/* ==============================
    Help SubCategory Tabs Start
==============================  */
.help-subcategory .subcategory-description {
    font-size: 16px;
    font-weight: 400;
    color: var(--gray-color);
    margin-bottom: 20px !important;
}
.help-subcategory .subcategory-steps .step-item {
    margin-bottom: 16px !important;
}
.help-subcategory .subcategory-steps .step-item:last-child {
    margin-bottom: 0 !important;
}
.help-subcategory .step-item .step-description {
    font-size: 16px;
    font-weight: 400;
    color: var(--gray-color);
}
.help-subcategory .step-item .step-description .step-title {
    font-weight: 700;
    color: var(--dark-color);
}

/* Articles Feedback */
.article-feedback {
    margin-top: 24px;
}
.article-feedback .feedback-question {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 14px;
}

.article-feedback .feedback-buttons {
    display: flex;
    align-items: center;
    gap: 0;
}
.article-feedback .feedback-button {
    font-size: 16px;
    font-weight: 500;
    color: var(--primary-color);
    padding: 13px 30px;
    border: 1px solid var(--primary-color);
    background-color: transparent;
    transition: all 0.3s ease;

    &:hover {
        color: var(--white-color);
        background-color: var(--dark-color);
        border-color: var(--dark-color);
    }
}
.article-feedback .feedback-button.feedback-yes {
    border-radius: 41px 0 0 41px;
}
.article-feedback .feedback-button.feedback-no {
    border-radius: 0 41px 41px 0;
}

/* Related Articles */
.related-articles {
    margin-top: 24px;
}
.related-articles .related-articles-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 14px;
}
.related-articles .related-articles-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}
.related-articles .related-article-item {
    margin-bottom: 6px;
}
.related-articles .related-article-item:last-child {
    margin-bottom: 0;
}
.related-articles .related-article-link {
    font-size: 16px;
    font-weight: 500;
    color: var(--dark-color);
    transition: color 0.3s ease;

    &:hover {
        color: var(--primary-color);
    }
}
/* ==============================
    Help SubCategory Tabs End
==============================  */

/* ==============================
    Support Request Page Start
==============================  */
.support-request-header {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(45, 45, 45, 0.1);
}
.support-title-row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.support-intro-text {
    color: var(--gray-color);
    margin-top: 16px;
}
.support-title {
    font-weight: 700;
    color: var(--dark-color);
    margin: 0;
}
.support-status-badge {
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 40px;
    background-color: var(--primary-color);
    color: var(--white-color);
    font-weight: 600;
}

.support-agent-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.support-message-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.support-agent-info .agent-name {
    font-weight:400;
    margin: 0;
}

.support-agent-info .agent-time {
    font-size: 10px;
    color: var(--gray-color);
    margin: 0;
}
.support-message-body {
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(45, 45, 45, 0.1);
}
.support-message-body p {
    color: var(--gray-color);
    margin-bottom: 16px !important;
}
.support-message-body p:last-child {
    margin-bottom: 0 !important;
}

.support-signature {
    padding: 12px 0;
    border-bottom: 1px solid rgba(45, 45, 45, 0.1);
}

.support-signature-link {
    color: var(--primary-color);
    text-decoration: none;
}

.support-footer-note {
    color: var(--dark-color);
    margin-top: 16px;
}

.support-info-card {
    background-color: rgba(255, 242, 227, 1);
    border-radius: 14px;
    padding: 20px;
    flex: 1 1 300px;
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-list li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
}
.info-list li:last-child {
    margin-bottom: 0;
}


.info-label {
    font-size: 18px;
    color: var(--dark-color);
}

.info-value {
    font-size: 18px;
    color: var(--dark-color);
    font-weight: 700;
}
/* ==============================
    Support Request Page End
==============================  */


/* ==============================
    auth Modal style Start
==============================  */
.auth-modal .modal-content {
    border-radius: 30px;
}

.auth-modal .modal-body {
    padding: 0;
}

.auth-modal .authincation-wrapper {
    position: relative;
}
.auth-modal .authincation-wrapper .btn-close {
    position: absolute;
    right: 30px;
    top: 20px;
    z-index: 10;
}
.auth-modal .aside-img,
.auth-modal .aside-form {
    height: 100%;
}
.auth-modal .aside-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
.auth-modal .aside-form {
    padding: 48px;
}
.auth-modal .logo-wrap {
    text-align: center;
    margin-bottom: 20px;
}
.auth-modal .logo-wrap img {
    width: auto;
    height: auto;
}
.auth-modal .title {
    text-align: center;
    margin-bottom: 24px;
}
.auth-modal .title h3 {
    color: var(--dark-color);
    font-weight: 700;
    margin-bottom: 12px;
}
.auth-modal .title p {
    color: var(--gray-color);
    font-size: 13px;
    font-weight: 500;
}
.auth-modal label {
    color: var(--dark-color);
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 6px;
}
.auth-modal input::placeholder {
    color: var(--gray-color);
}
.auth-modal .form-control:focus {
    border: 1px solid rgba(45, 45, 45, 0.09);
    background-color: rgba(250, 250, 250, 1);
}
.auth-modal .form-control  {
    color: var(--dark-color);
    font-size: 14px;
    font-weight: 500;
    padding: 13px 16px !important;
    border-radius: 6px;
    border-color: rgba(45, 45, 45, 0.09);
    background-color: rgba(250, 250, 250, 1);
}
.auth-modal .divider {
    height: 1px;
    width: 100%;
    background-color: rgba(229, 229, 229, 1);
    margin-block: 30px;
}
.auth-modal .primary-btn {
    width: 100%;
    font-size: 15px;
    font-weight: 700;
    color: var(--white-color);
    background-color: var(--primary-color);
    padding: 14px 24px;
    border-radius: 9px;
    border: 1px solid var(--primary-color);
    transition: all 0.3s ease;

    &:hover {
        color: var(--white-color);
        background-color: var(--dark-color);
        border-color: var(--dark-color);
    }

}

.auth-modal .dark-btn {
    width: 100%;
    font-size: 15px;
    font-weight: 700;
    color: var(--white-color);
    background-color: var(--dark-color);
    padding: 14px 24px;
    border-radius: 9px;
    border: 1px solid var(--dark-color);
    transition: all 0.3s ease;
}
.auth-modal .dark-btn svg {
    margin-right: 10px;
}
.auth-modal .form-check {
    display: flex;
    align-items: center;
}
.auth-modal .form-check .switch {
    font-size: 17px;
    position: relative;
    display: inline-block;
    width: 40px;
    height: 20px;
}

.auth-modal .form-check .switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.auth-modal .form-check .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(250, 250, 250, 1);
    border: 1px solid rgba(37, 36, 34, 0.09);
    transition: .4s;
    border-radius: 30px;
}

.auth-modal .form-check .slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    border-radius: 20px;
    left: 2px;
    bottom: 1px;
    background-color: var(--dark-color);
    transition: .4s;
}

.auth-modal .form-check input:checked + .slider {
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.auth-modal .form-check input:focus + .slider {
    box-shadow: none;
}

.auth-modal .form-check input:checked + .slider:before {
    transform: translateX(19px);
    background-color: var(--white-color);
}
.forgot-password {
    font-size: 12px;
    color: var(--primary-color);
    text-align: end;
}
.auth-modal .show-pass {
    font-size: 14px;
    color: var(--dark-color);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 16px;
}
.auth-modal .show-pass .fa-eye-slash {
    display: none;
}
.auth-modal .show-pass .fa-eye {
    display: block;
}
.auth-modal .show-pass.active .fa-eye-slash {
    display: block;
}
.auth-modal .show-pass.active .fa-eye {
    display: none;
}
.auth-modal .auth-toggle {
    font-size: 12px;
    color: var(--gray-color);
    text-align: center;
    margin-top: 20px;
}
.auth-modal .auth-toggle a {
    color: var(--primary-color) !important;
    cursor: pointer;
    margin-left: 5px;
}
/* ==============================
    auth Modal style End
==============================  */


/* ==============================
    News Letter Modal style Start
==============================  */
.newsletter-modal .modal-content {
    border-radius: 30px;
}

.newsletter-modal .modal-body {
    padding: 0;
}

.newsletter-modal .authincation-wrapper {
    position: relative;
}
.newsletter-modal .authincation-wrapper .btn-close {
    position: absolute;
    right: 30px;
    top: 20px;
    z-index: 10;
}
.newsletter-modal .aside-img,
.newsletter-modal .aside-form {
    height: 100%;
}
.newsletter-modal .aside-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
.newsletter-modal .aside-form {
    padding: 30px;
}
.newsletter-modal .title {
    margin-bottom: 24px;
}
.newsletter-modal .title h2 {
    color: var(--dark-color);
    font-weight: 800;
    margin-bottom: 12px;
}
.newsletter-modal .title h2 span {
    color: var(--primary-color);
}
.newsletter-modal .title p {
    color: var(--gray-color);
    font-size: 16px;
    font-weight: 400;
}
.newsletter-modal input::placeholder {
    color: var(--gray-color);
}
.newsletter-modal .form-control:focus {
    border: 1px solid rgba(45, 45, 45, 0.09);
    background-color: rgba(250, 250, 250, 1);
}
.newsletter-modal .form-control  {
    color: var(--dark-color);
    font-size: 14px;
    font-weight: 500;
    padding: 13px 16px !important;
    border-radius: 9px;
    border-color: rgba(45, 45, 45, 0.09);
    background-color: rgba(250, 250, 250, 1);
}

.newsletter-modal .dark-btn {
    font-size: 12px;
    font-weight: 700;
    color: var(--white-color);
    background-color: var(--dark-color);
    padding: 14px 24px;
    border-radius: 0 9px 9px 0;
    transition: all 0.3s ease;
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;

}

.newsletter-modal .newsletter-check {
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    padding-left: 0;
    margin-top: 30px;
}
.newsletter-modal .newsletter-check label {
    font-size: 14px;
    color: var(--gray-color);
}
.newsletter-modal .newsletter-check input[type="checkbox"] {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border: 1px solid rgba(212, 212, 212, 1);
    border-radius: 3px;
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease;
    outline: none;
    background-color: var(--white-color);
    display: inline-block;
}

.newsletter-modal .newsletter-check input[type="checkbox"]::before {
    content: '';
    position: absolute;
    font-family: "Font Awesome 6 Pro";
    font-weight: 900;
    font-size: 12px;
    color: var(--white-color);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.newsletter-modal .newsletter-check input[type="checkbox"]:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.newsletter-modal .newsletter-check input[type="checkbox"]:checked::before {
    content: '\f00c';
}
/* ==============================
    News Letter Modal style End
==============================  */
